Movatterモバイル変換


[0]ホーム

URL:


W3C

WOFF 2.0 Evaluation Report

W3C Working Group Note, 15 March 2016

This version:
http://www.w3.org/TR/2016/NOTE-WOFF20ER-20160315/
Latest version:
http://www.w3.org/TR/WOFF20ER/
Previous version:
http://www.w3.org/TR/2015/WD-WOFF20ER-20150414/
Latest editor's draft:
http://www.w3.org/Fonts/WG/WOFF2ER/
Editor:
Chris Lilley (W3C)

Copyright © 2016W3C® (MIT,ERCIM,Keio,Beihang). W3Cliability,trademark anddocument use rules apply.


Abstract

Web Open Font Format (WOFF) 2.0 is a proposed update to the existingWOFF 1.0 with improved compression. This report lists requirements for successful deployment, evaluates how the requirement may be met, and examines the compression gains and tradeoffsvs. code complexity, encode and decode time. This document is non-normative.

Status of this document

This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in theW3C technical reports index at http://www.w3.org/TR/.

This is a Working Group Note of the WOFF 2.0 Evaluation Report. This document was developed by theWebFonts Working Group.

Please send comments about this document towww-font@w3.org (withpublic archive).

Publication as a Working Group Note does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.

This document was produced by a group operating under the5 February 2004 W3C Patent Policy. W3C maintains apublic list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes containsEssential Claim(s) must disclose the information in accordance withsection 6 of the W3C Patent Policy.

This document is governed by the1 September 2015 W3C Process Document.

Requirements

A successor to WOFF 1.0 must be deployable in parallel with WOFF 1.0, without relying on style sheet switching, content negotiation, user-agent version sniffing or suchlike fragile methods.

An improved compression method used in WOFF must:

It should be noted that pathological fonts can be found which compress badly. Equally, some poorly constructed fonts trivially compress well, due to needless duplication. The main goal of this work is to optimally compress fonts that are already well optimized.

Deployment

In WOFF 1.0 [WOFF 1.0], fonts are deployed using the@font-face feature of CSS3 [CSS3 Fonts]. The format part of the src descriptor identifies the font as WOFF 1.0. Multiple formats are allowed, and form a prioritized list; the font with the first supported format in the list will be loaded. This mechanism thus allows fonts in WOFF 2.0 to be deployed in parallel with those in WOFF 1.0, using the same style sheet and without any user-agent sniffing or server configuration.

/* load WOFF 2.0 font if possible, otherwise use WOFF 1.0 font */@font-face {  font-family: something;  src: url(example.woff2) format("woff2"),       url(example.woff) format("woff");  }

This feature of CSS3 Fonts fulfills theparallel deployment requirement, independent of the compression method ultimately chosen.

Preprocessing

WOFF 2.0 adds a preprocessing step, before entropy coding.The reason for this is that many fonts contain redundant or duplicate information, or information that can be deduced from other items of data also present. Data may also be padded to a convenient multiple of 8 bits, because aligned data is faster to access. They are thus optimized for convenience and speed of access at the expense of size. Preprocessing detects and eliminates redundant data, more efficiently encodes derived data, and stores data in the minimal number of bits. Following decompression, a reconstruction step is needed to re-align data and to compute derived values.

This step is based on the MicroType Express-style [MTX] submission, but uses a subset of the methods in that specification, chosen for maximal gain balanced against minimal processing cost.

The preprocessing steps used for initial explorations are summarized inAppendix D.

The placement of knots in a glyph path follows a set of rules, which can in some cases allow a point to be predicted based on nearby points and the overall position on the curve (for example, at local curve minima or maxima). A novel preprocessing stage was considered which removes predictable points before entropy compression, and restores them in the reconstruction step. Experiments showed that a modest reduction in filesize could be obtained, but that the prediction capabilities of the entropy coder were already accounting for these points and thus, the size of the compressed result was not significantly reduced. These experiments are summarized inAppendix C.

Lossless compression

The compression in WOFF 1.0 is (subject to certain preconditions, such as prior removal of extraneous spacebetweentables)bitwise lossless; the exact same bitstream is produced on decompression as was input to the compression process.

The use of a  preprocessing step means that the overall compression in WOFF 2.0 will not be bitwise lossless. The preprocessing converts some data to the most space-efficient form, and removes redundant information or information which could be regenerated on decompression. This is not a disadvantage; the resulting font functions the same as the original one and in some cases will be more consistent between rendering implementations. The secondary, entropy coding step is bitwise lossless.

Thus, WOFF 2.0 is said to befunctionally lossless.

Continuation streams

In WOFF 1.0, each OFF table is separately compressed. This was originally done to allow individual tables to be decompressed as needed, although that facility is rarely used in practice. For WOFF 1.0 with Flate compression, resetting the compression stream like this also turns out to give a slightly smaller filesize compared to compressing all the tables in a single stream.This is because Flate compression uses a small buffer and cannot cache previous states.

For WOFF 2.0, the impact of per-table compression versus entire-font compression with continuation streams was examined. For the better entropy coding schemes, there was an overall benefit to entire-font streams. As an example, WOFF2 with Brotli compression and continuation streams gave an overall reduction of -29.21% compared to WOFF 1.0, while resetting the compressor on a per-table basis gave a less good filesize reduction of -28.26%.

Candidate A: MicroType Express-style plus LZMA

Specification

LZMA is defined primarily by reference code, portions of which are (in the words of the originator) “hard to explain”. A specification would need to reverse engineer this code. Work was started on this, but it was abandoned when other difficulties indicated that the LZMA approach was no longer worth pursuing.

Intellectual Property

The WebFonts Working Group was unable, despite reaching out to LZMA developers, to secure a commitment to the development of a re-implementable, Royalty-Free specification.

Compression compared to WOFF 1.0

Compression compared to WOFF 1.0 was impressive. (Part of this was due to the MicroType Express-style preprocessing step). Several complete font collections were examined, each font in the collection compressed and the compression gains tabulated. The results are presented in detail inAppendix A.

Decompression time and memory requirements

The decompression time required ( for example, a decompression rate of 36.5 MB/s on the Google Fonts corpus) was considerably worse than for WOFF 1.0 (194.3 MB/s on the same hardware with the same corpus).This was primarily due to the LZMA step; MicroType Express-style step is an optimization and removal of redundancy, so the impact of reconstruction on decompression time was minimal (in fact, omitting the preprocessing stepdecreaseddecompression throughput slightly, to 36.0 MB/s, as the entropy coder was working on a larger data stream).

The memory required for LZMA  decompression was around twice that needed for gzip decompression.

Analysis

Compression gains over WOFF 1.0 are largely consistent (within a few percent) across all of the font collections studied. This implies that they would be applicable to other collections too. In general 20-26% median compression improvements for TrueType were observed, and 12-13% for CFF. This satisfies the requirement to producenotably better median compression than WOFF 1.0.

Improvements up to 94.51% were observed in some cases (in the Monotype collection, for fonts with exceptionally large kern tables.) The smallest improvements seen were of the order of 1% (again, in the Monotype collection); most other collections had smallest improvements of 4-6%. It is notable that in no case was a font found that compressed to the same size as WOFF 1.0, and no cases were observed where a font became larger.

Decompression time precluded use of this candidate if multiple fonts were decompressed in parallel, or if decompressed on resource-constrained mobile devices. The requirement fordecompression time was not satisfied.

After extensive discussion with the original LZMA developer, and examination of the sample code which is the primary documentation, the Working group concluded that theRoyalty-Free andreimplementable algorithm requirements could not be met.

Accordingly, the WebFonts Working Group hasdiscontinued efforts on this candidate.

Candidate B: MicroType Express-style plus Brotli

Specification

The specification [Brotli] is being developed by the Google Compression team in Zürich. Being a derivative of the widely deployed Flate [Flate] algorithm, it proceeds from a well-understood basis. The improvements are well documented and open source, sample code is freely available.

Intellectual Property

The proposers have made the specification freely available as IETF Drafts, and are pursueing it's standardization through the IETF.

Compression compared to WOFF 1.0

Compression compared to WOFF 1.0 was good. It was initially less impressive than candidate A but improved significantly over the course of study as the algorithm was tuned. (Part of this was due to the MicroType Express-style preprocessing step). To date, three font collections have been  examined. Each font in each collection was compressed and the compression gains tabulated. The initial results are presented in detail inAppendix B.

In summary, for fonts using TTF outlines, median gains of23.94% over WOFF1 were observed on the Google font corpus and26.79% over WOFF1 for the Adobe font corpus. The minimum gain observed for any font containing TTF outlines was 6.61% and the maximum, 70.82%. For fonts using CFF outlines, a smaller but still significant median gain of13.51% over WOFF1 was observed on the Adobe font corpus. The minimum gain observed for any font containing CFF outlines was 5.32% and the maximum, 57.96%. The lower compression is expected, because CFF fonts do not benefit from the preprocessing step. The Working Group plans to continue with analysis of other font corpi.

Decompression time and memory requirements

The decompression time required (for example, a decompression rate of 61.1 MB/s on the Google Fonts corpus) was worse than for WOFF 1.0 (194.3 MB/s on the same hardware with the same corpus) but twice as good as for WOFF 2.0 with LZMA (36.5 MB/s). Omitting the preprocessor step made decompression throughput worse (56.4 Mb/s).

The memory required for Brotli decompression of WOFF2 fonts was on average 1.05x that required for WOFF1 with gzip decompression, in a study on the Google Fonts corpus (1654files. At the medianthere was no memory increase. The worst result was 1.7x more memory forWOFF2 decompression.

decompression memory useage

Analysis

Results are consistently good over the three large corpi studied. The Working Group will continue to examine other data sets.

Conclusions

Initial results indicated that the final compression gains achieved by Brotli (median 23.94% on the Google Fonts corpus) have significantly outperformed our initial goal of half WOFF 2.0 Candidate A (LZMA) gains (median 24.96% on the same corpus). Additional results from the Adobe corpi confirm that similar compression gains should be expected for fonts using TTF outlines, with lower gains for fonts using CFF outlines. This has been achieved while significantly increasing decompression speed and lowering decompression memory requirements.

References

[Brotli]
Brotli Compressed Data Format, draft-alakuijala-brotli-08 J. Alakuijala and Z. Szabadka, December 2015.
[CSS3Fonts]
John Daggett, editor.CSS Fonts Module Level 3. W3C Candidate Recommendation 3 October 2013. Available athttp://www.w3.org/TR/2013/CR-css-fonts-3-20131003/.
[LZMA]
7-Zip, LZMA SDK (Software Development Kit). Available athttp://www.7-zip.org/sdk.html
[Flate]
Deutsch, P.RFC 1951: DEFLATE Compressed Data Format Specification version 1.3. May 1996. Available athttp://tools.ietf.org/html/rfc1951
[MTX]
Sarah Martin,et. al, editors.MicroType® Express (MTX) Font Format. W3C Member Submission 5 March 2008. Available athttp://www.w3.org/Submission/2008/SUBM-MTX-20080305/
[WOFF 1.0]
Jonathan Kew, Tal Leming, Erik van Blokland, editors.WOFF File Format 1.0. W3C Recommendation 13 December 2012. Available athttp://www.w3.org/TR/2012/REC-WOFF-20121213/.
[WOFF 2.0]
Vladimir Levantovsky, Raph Levien, editors.WOFF File Format 2.0. W3C Working Draft, 15 March 2016. Available athttp://www.w3.org/TR/WOFF2/.

Changes

Since first publication

Since previous publication

Appendix A: MicroType Express-style plus LZMA compression data

Compression results, Google Fonts corpus, with LZMA [June 2013]

Results for 1,194 fonts using TTF outlines, from the Google font corpus.

Average compression improvement with WOFF 2.0: 26.61%
Median 24.96%
Standard deviation 7.87%
Minimum 11.94%
Maximum 60.89%
Font filenameOriginal (bytes)GZIPWOFF 2.0 (LZMA)Improvement
GochiHand-Regular.ttf37,35224,82021,85611.94%
Pacifico.ttf43,63228,49225,04412.10%
Rochester-Regular.ttf37,84824,12321,14012.37%
NotoSansOsmanya-Regular.ttf7,2124,8604,23612.84%
NotoSansThaiUI-Regular.ttf32,95217,87915,58012.86%
Cousine-Italic.ttf49,60034,32629,88412.94%
Cousine-Regular.ttf43,91230,32726,36813.05%
NotoSansThai-Regular.ttf32,78817,71715,40413.06%
Tinos-Bold.ttf55,13237,40932,42413.33%
DroidSansThai-Regular.ttf35,58418,83016,30013.44%
DroidSerif-Bold.ttf48,88031,66227,35613.60%
Knewave-Regular.ttf32,46021,69318,69213.83%
Miniver-Regular.ttf45,82429,27125,20013.91%
Tinos-Italic.ttf58,11638,81333,39613.96%
Cousine-BoldItalic.ttf45,48431,29626,91614.00%
Cousine-Bold.ttf42,20029,15725,07614.00%
Tinos-BoldItalic.ttf62,03239,74934,16014.06%
MysteryQuest-Regular.ttf42,12427,50623,61214.16%
DroidSerifThai-Bold.ttf28,62416,39914,06814.21%
Tinos-Regular.ttf57,96838,17732,71614.30%
DroidSerif.ttf43,64827,78923,81214.31%
NotoSerifThai-Bold.ttf28,28016,54014,15214.44%
SnowburstOne-Regular.ttf68,36046,95540,15614.48%
Damion-Regular.ttf51,99630,56626,12814.52%
DroidSerif-BoldItalic.ttf45,65229,16524,89214.65%
DroidSans-Bold.ttf42,48027,45123,40414.74%
NotoSerifArmenian-Bold.ttf24,58415,51213,21614.80%
DroidSerifThai-Regular.ttf29,15616,16513,76414.85%
DroidSans.ttf41,02826,27122,34814.93%
NotoSerifThai-Regular.ttf28,84416,30213,86814.93%
DroidSansThai-Bold.ttf28,12415,98213,58814.98%
NotoSansThaiUI-Bold.ttf27,84016,20013,77214.99%
SigmarOne.ttf66,50439,14733,26015.04%
NotoSansThai-Bold.ttf27,75616,10813,68015.07%
Souliyo-Regular.ttf22,41613,00611,03615.15%
Chewy.ttf41,19225,20621,37215.21%
Arvo-Regular.ttf40,34027,02722,87215.37%
Arbutus-Regular.ttf81,81641,51934,98815.73%
Molle-Regular.ttf52,20434,01928,66015.75%
NothingYouCouldDo.ttf34,92021,97818,51615.75%
Oregano-Regular.ttf80,32044,11537,16015.77%
Pompiere-Regular.ttf36,74025,11221,15215.77%
Arvo-Bold.ttf37,40025,18521,20015.82%
ArchitectsDaughter.ttf43,38023,85120,07215.84%
Arvo-Italic.ttf43,63228,07423,62815.84%
Kavoon-Regular.ttf58,01235,37329,75215.89%
NotoSerifArmenian-Regular.ttf23,79214,92512,55215.90%
GiveYouGlory.ttf43,01226,30522,12015.91%
Arvo-BoldItalic.ttf42,94827,81723,37215.98%
NotoSansArmenian-Regular.ttf22,97214,30512,01216.03%
DenkOne-Regular.ttf45,89225,02121,00816.04%
Oregano-Italic.ttf87,00047,91140,16416.17%
NotoSansHebrew-Regular.ttf25,74413,41811,24416.20%
Asset.ttf52,02825,52221,38416.21%
ButchermanCaps-Regular.ttf66,45644,40437,18016.27%
Satisfy-Regular.ttf47,92828,92724,21216.30%
Engagement-Regular.ttf76,40839,43632,95616.43%
EaterCaps-Regular.ttf84,11656,29847,04416.44%
Eater-Regular.ttf83,92856,23046,97616.46%
AmaticSC-Regular.ttf40,00025,26021,10016.47%
Arimo-Italic.ttf42,13627,54723,00416.49%
DonegalOne-Regular.ttf56,94435,17229,36816.50%
NotoSansArmenian-Bold.ttf22,70814,20311,84816.58%
NotoSansHebrew-Bold.ttf25,99613,58011,32816.58%
FjallaOne-Regular.ttf36,57223,23519,37216.63%
NotoSansLaoUI-Regular.ttf40,32019,10715,92016.68%
Calligraffitti-Regular.ttf59,85238,00131,64816.72%
Butcherman-Regular.ttf66,34444,50637,06016.73%
VampiroOne-Regular.ttf29,04419,11515,91216.76%
Slackey.ttf38,40024,09120,04416.80%
BadScript-Regular.ttf54,42037,29131,02416.81%
DroidSerif-Italic.ttf40,41626,40821,96416.83%
RugeBoogie-Regular.ttf63,53635,64129,61616.90%
Cedarville-Cursive.ttf69,43638,57832,04816.93%
ClickerScript-Regular.ttf64,01235,23529,23617.03%
FingerPaint-Regular.ttf107,40468,23656,61617.03%
NotoSerifGeorgian-Regular.ttf34,22421,17417,56417.05%
IndieFlower.ttf61,55633,39427,68017.11%
TheGirlNextDoor.ttf53,36432,76127,14817.13%
MrBedfort-Regular.ttf37,25221,76718,03617.14%
ShadowsIntoLight.ttf54,30428,64223,73217.14%
SwankyandMooMoo.ttf58,89231,27825,91217.16%
LaBelleAurore.ttf59,62431,59926,15217.24%
AnnieUseYourTelescope.ttf51,12427,27322,56817.25%
Sniglet-Regular.ttf31,90417,30414,31217.29%
Tienne-Bold.ttf69,37239,82032,93217.30%
Kristi.ttf47,47632,56126,92417.31%
CreepsterCaps-Regular.ttf58,18435,35029,22017.34%
ShortStack-Regular.ttf68,15235,44929,29217.37%
UnifrakturCook-Bold.ttf42,68827,90623,05217.39%
JollyLodger-Regular.ttf39,80024,18419,97617.40%
AllertaStencil-Regular.ttf20,26012,98910,72817.41%
Prociono-Regular.ttf31,13618,80615,53217.41%
Sancreek-Regular.ttf49,67232,10826,50817.44%
NotoSerifLao-Regular.ttf41,22419,15015,80817.45%
Allerta-Regular.ttf19,59612,22910,09217.47%
NotoSansLao-Regular.ttf41,12819,54716,13217.47%
Corben-Regular.ttf36,00023,52019,40017.52%
Zeyada.ttf63,06433,52027,63217.57%
Tauri-Regular.ttf35,14021,82917,97217.67%
CraftyGirls.ttf75,25647,83839,38017.68%
BowlbyOneSC-Regular.ttf55,20038,85331,97217.71%
Phetsarath-Regular.ttf40,54419,33115,90817.71%
Stalemate-Regular.ttf75,35639,90232,81217.77%
AmaticSC-Bold.ttf37,85224,53920,17217.80%
IrishGrover.ttf52,68830,50825,06817.83%
IrishGrowler.ttf52,73630,47925,04017.85%
NotoSerifGeorgian-Bold.ttf31,85219,88616,33617.85%
NotoSansGeorgian-Bold.ttf30,68418,99215,58817.92%
NotoSerifLao-Bold.ttf40,47217,65714,49217.92%
Parisienne-Regular.ttf61,24834,94028,67617.93%
Rancho-Regular.ttf44,84026,72321,93217.93%
Bentham-Regular.ttf55,49631,24325,62018.00%
OldStandard-Italic.ttf65,85235,39829,01218.04%
Fruktur-Regular.ttf68,31641,83434,27618.07%
NosiferCaps-Regular.ttf43,65222,59418,51218.07%
NotoSansLao-Bold.ttf39,37617,65614,45618.12%
IMFeFCit28P.ttf158,18495,32778,04418.13%
Norican-Regular.ttf46,86027,70322,67218.16%
NotoSansTamilUI-Regular.ttf57,24831,83726,04818.18%
Dynalight-Regular.ttf53,14828,22823,09218.19%
Tienne-Regular.ttf73,90839,74132,50818.20%
NotoSansGeorgian-Regular.ttf30,51619,03815,56818.23%
NotoSansTamil-Regular.ttf57,11231,73325,94418.24%
GrandHotel-Regular.ttf65,01230,69425,09218.25%
jsMath-cmmi10.ttf46,14827,49222,47218.26%
Piedra-Regular.ttf75,98436,33429,70018.26%
Lancelot-Regular.ttf49,53631,93426,09618.28%
GoudyBookletter1911.ttf73,49642,78534,96018.29%
CherryCreamSoda.ttf50,15631,68125,88018.31%
HennyPenny-Regular.ttf92,59659,64748,72418.31%
LondrinaOutline-Regular.ttf79,92443,04935,16418.32%
BowlbyOne-Regular.ttf61,62036,27629,62818.33%
EuphoriaScript-Regular.ttf38,42420,77116,96418.33%
Romanesco-Regular.ttf52,52828,55723,31218.37%
Qwigley-Regular.ttf40,45222,34018,22818.41%
RougeScript-Regular.ttf46,75222,11718,04418.42%
Unkempt-Bold.ttf191,09693,11775,95618.43%
BerkshireSwash-Regular.ttf58,36429,24523,85218.44%
Yesteryear-Regular.ttf64,85637,14430,29618.44%
Arimo-BoldItalic.ttf42,60026,99422,00818.47%
AutourOne-Regular.ttf87,88853,87343,92418.47%
Arimo-Bold.ttf41,51626,10321,28018.48%
OvertheRainbow.ttf47,50828,09122,88418.54%
Nosifer-Regular.ttf43,27222,44618,28018.56%
NotoSansLaoUI-Bold.ttf39,21217,51814,26418.58%
LovedbytheKing.ttf28,25218,40514,97218.65%
Nokora-Regular.ttf50,80425,10920,42418.66%
CoveredByYourGrace.ttf57,04029,04023,61218.69%
Cagliostro-Regular.ttf37,82020,73916,86018.70%
DawningofaNewDay.ttf65,34430,06324,43618.72%
Arimo-Regular.ttf43,61626,93821,88018.78%
NotoSansTamilUI-Bold.ttf57,18031,23925,36418.81%
AlexBrush-Regular.ttf49,02025,42820,62818.88%
Marcellus-Regular.ttf46,00424,27219,68818.89%
NotoSansTamil-Bold.ttf56,99231,08225,20818.90%
jsMath-cmti10.ttf47,61627,27122,10818.93%
LondrinaSolid-Regular.ttf52,02825,24720,45618.98%
DrSugiyama-Regular.ttf39,92821,55317,46018.99%
GloriaHallelujah.ttf60,05233,19726,88019.03%
DroidTV-Regular.ttf37,27220,95316,96019.06%
LeckerliOne-Regular.ttf43,21222,00117,80819.06%
RockSalt.ttf125,13676,33861,78419.07%
ComingSoon.ttf59,13635,75228,92019.11%
Orienta-Regular.ttf63,92428,56123,10419.11%
BilboSwashCaps-Regular.ttf58,14830,32524,52819.12%
ShadowsIntoLightTwo-Regular.ttf39,39625,59720,70019.13%
DeliusUnicase-Regular.ttf32,90416,49113,33219.16%
IMFeFCrm28P.ttf145,83285,49969,11619.16%
Smythe-Regular.ttf90,65247,16838,11219.20%
Cookie-Regular.ttf43,80021,55017,40819.22%
MacondoSwashCaps-Regular.ttf33,01617,66714,27219.22%
MarkoOne-Regular.ttf34,48421,38817,26819.26%
MissFajardose-Regular.ttf58,87230,17924,36419.27%
TradeWinds-Regular.ttf85,74447,43438,27219.32%
BenchNine-Regular.ttf57,65632,54026,24019.36%
Arizonia-Regular.ttf50,73626,87421,66819.37%
StardosStencil-Bold.ttf34,82022,38618,04419.40%
MarcellusSC-Regular.ttf47,88824,62219,84019.42%
DroidTV-Bold.ttf37,01620,77616,74019.43%
LondrinaShadow-Regular.ttf85,51244,69136,00419.44%
BenchNine-Light.ttf55,24832,00525,77619.46%
Lohit-Devanagari.ttf64,23234,75527,98419.48%
Rosarivo-Regular.ttf41,34421,37917,21219.49%
GravitasOne.ttf41,44819,68815,84819.50%
WaitingfortheSunrise.ttf59,24031,76425,55619.54%
Aladin-Regular.ttf42,16020,81216,74419.55%
Oswald-Regular.ttf50,94426,92821,65219.59%
PinyonScript-Regular.ttf62,12433,11926,63219.59%
Fascinate-Regular.ttf51,90025,79020,73619.60%
Michroma.ttf64,94033,65327,04419.64%
Niconne-Regular.ttf45,61624,67919,83219.64%
Iceberg-Regular.ttf42,80819,63115,77219.66%
FascinateInline-Regular.ttf59,60429,92724,03219.70%
LifeSavers-Bold.ttf179,81671,46457,38019.71%
Schoolbell.ttf49,15228,77623,10019.72%
Coda-Regular.ttf86,99238,66431,03219.74%
IMFeFCsc28P.ttf136,18878,56963,05619.74%
jsMath-cmsy10.ttf43,45625,15920,19219.74%
MrDafoe-Regular.ttf47,97624,69719,82019.75%
Ovo-Regular.ttf50,86423,87519,15619.77%
MerriweatherSans-Regular.ttf48,52830,08624,13619.78%
Rokkitt-Regular.ttf57,28027,34021,93219.78%
FjordOne-Regular.ttf54,15626,53721,28019.81%
Ruthie-Regular.ttf57,20830,07224,10419.85%
Dhyana-Bold.ttf61,30437,82430,30819.87%
Oxygen-Light.ttf43,85225,85120,71219.88%
PasseroOne-Regular.ttf33,62419,84415,90019.88%
BenchNine-Bold.ttf59,27233,05726,48019.90%
CaesarDressing-Regular.ttf89,62840,35832,32819.90%
Candal.ttf32,81619,82015,87219.92%
LindenHill-Italic.ttf94,54050,07340,10019.92%
Radley-Italic.ttf90,74444,78735,86019.93%
HoltwoodOneSC.ttf36,74419,52315,62819.95%
Unna-Regular.ttf26,42415,52312,42019.99%
OleoScriptSwashCaps-Bold.ttf39,78421,90117,52020.00%
Monofett.ttf58,13221,48217,18020.03%
Rokkitt-Bold.ttf62,69630,84824,66020.06%
JacquesFrancois-Regular.ttf60,44836,90029,49620.07%
Nunito-Bold.ttf49,54430,24024,16420.09%
Nokora-Bold.ttf42,34420,53116,40420.10%
Chicle-Regular.ttf41,01221,15716,90020.12%
Tienne-Heavy.ttf77,06038,03030,36820.15%
LoversQuarrel-Regular.ttf61,87231,56225,19620.17%
VastShadow-Regular.ttf62,36432,21725,71620.18%
OverlockSC-Regular.ttf36,64018,57014,82020.19%
Overlock-BlackItalic.ttf44,08822,52617,97620.20%
Iceland-Regular.ttf47,63219,37715,46020.21%
MeriendaOne-Regular.ttf30,54817,30413,80020.25%
MerriweatherSans-Light.ttf47,11229,68823,67620.25%
MountainsofChristmas-Regular.ttf122,54474,36459,30820.25%
OleoScriptSwashCaps-Regular.ttf40,08821,44417,10020.26%
Stoke-Light.ttf50,82027,21421,69220.29%
Karla-BoldItalic.ttf18,67211,6329,26820.32%
Oldenburg-Regular.ttf46,24827,41321,84020.33%
Oswald-Light.ttf44,74025,02719,93620.34%
FanwoodText-Italic.ttf96,36451,68841,16820.35%
MerriweatherSans-ExtraBold.ttf50,96830,78024,51620.35%
Bilbo-Regular.ttf42,91223,54918,74420.40%
Bonbon-Regular.ttf83,05243,61434,71620.40%
GoblinOne.ttf36,73618,83514,99220.40%
Habibi-Regular.ttf36,26021,95417,47620.40%
AguafinaScript-Regular.ttf47,22822,52717,92420.43%
Overlock-Black.ttf43,22421,82217,36420.43%
Oswald-Bold.ttf53,05628,52122,68820.45%
Gruppo-Regular.ttf84,71635,09527,91620.46%
MrDeHaviland-Regular.ttf44,67223,96419,06020.46%
Coustard-Regular.ttf79,55638,92230,95220.48%
Overlock-Bold.ttf42,36821,84117,36420.50%
DellaRespira-Regular.ttf51,20827,47921,84020.52%
MerriweatherSans-Bold.ttf51,06830,73424,42820.52%
MonsieurLaDoulaise-Regular.ttf54,28826,44921,02020.53%
OleoScript-Bold.ttf34,62819,29715,33220.55%
Spinnaker-Regular.ttf24,98815,85312,59620.55%
MrsSheppards-Regular.ttf42,38422,96418,22820.62%
Rosarivo-Italic.ttf39,24420,65516,39620.62%
SortsMillGoudy-Regular.ttf121,37248,62338,57620.66%
Overlock-Italic.ttf44,16022,46317,82020.67%
Merriweather-Light.ttf47,04824,88119,73620.68%
SeaweedScript-Regular.ttf117,07258,10346,08420.69%
Oxygen-Regular.ttf48,09228,10322,28420.71%
Vollkorn-Regular.ttf62,00431,87725,27620.71%
Lusitana-Bold.ttf29,28416,12112,78020.72%
JosefinSans-Regular.ttf33,00819,87115,75220.73%
MrsSaintDelafield-Regular.ttf49,39626,61221,09620.73%
Radley-Regular.ttf90,32845,80936,31220.73%
Vollkorn-BoldItalic.ttf55,20827,90922,12420.73%
Inika-Bold.ttf38,73620,94916,60420.74%
HomemadeApple.ttf110,08064,20350,88420.75%
IMFeGPit28P.ttf249,324141,550112,13220.78%
IMFeENit28P.ttf202,368122,28096,82420.82%
JosefinSans-Light.ttf33,18019,75315,64020.82%
JosefinSans-SemiBold.ttf33,00419,86015,72420.83%
LemonOne-Regular.ttf31,43617,74014,04420.83%
Meddon.ttf128,63285,21167,45620.84%
Prata-Regular.ttf33,39218,18514,38820.88%
DroidSansMono.ttf117,07275,51859,73220.90%
IMFePIrm28P.ttf216,968124,56598,51620.91%
JosefinSans-Bold.ttf32,91219,56715,47620.91%
OleoScript-Regular.ttf34,98018,63214,73620.91%
Coustard-Black.ttf82,65241,08232,48420.93%
JacquesFrancoisShadow-Regular.ttf82,49254,27542,91620.93%
SixCaps.ttf46,38826,02620,58020.93%
Anaheim-Regular.ttf43,43625,81920,41220.94%
Inconsolata-Bold.ttf67,72433,44026,43620.94%
Lusitana-Regular.ttf30,18816,61113,13220.94%
Karla-Bold.ttf17,86810,4808,28420.95%
Merriweather-Bold.ttf46,94825,13519,86020.99%
ChelaOne-Regular.ttf35,72419,81015,64821.01%
JosefinSans-Thin.ttf33,00019,32315,26421.01%
Oxygen-Bold.ttf48,81228,44522,46821.01%
StintUltraCondensed-Regular.ttf40,27221,87517,28021.01%
DoppioOne-Regular.ttf55,70431,60624,96021.03%
DeliusUnicase-Bold.ttf36,12015,63212,34021.06%
Dhyana-Regular.ttf72,34841,64732,87621.06%
PortLligatSlab-Regular.ttf38,16019,02215,01221.08%
IMFeDPrm28P.ttf210,916120,88195,39221.09%
IMFeENrm28P.ttf194,992118,34093,37621.10%
RumRaisin-Regular.ttf61,81235,18927,76021.11%
SortsMillGoudy-Italic.ttf105,68444,97235,47621.12%
Akronim-Regular.ttf109,54069,85455,08821.14%
IMFeDPit28P.ttf255,092143,497113,12821.16%
IMFePIit28P.ttf244,584138,400109,09621.17%
jsMath-cmbx10.ttf51,86028,60322,54821.17%
Nunito-Regular.ttf49,79228,31922,32421.17%
Monda-Regular.ttf43,60424,85319,58821.18%
Overlock-BoldItalic.ttf45,83623,48618,51221.18%
JosefinSans-SemiBoldItalic.ttf37,09221,49116,93621.19%
StardosStencil-Regular.ttf46,89225,04119,73621.19%
CutiveMono-Regular.ttf69,18035,18127,72421.20%
Sofia-Regular.ttf29,79616,96413,36821.20%
BubblegumSans-Regular.ttf38,82020,65716,27621.21%
Merriweather-Black.ttf46,97224,15019,02821.21%
Tangerine_Regular.ttf61,48432,15625,32821.23%
JosefinSans-BoldItalic.ttf37,00821,14716,65221.26%
Sail-Regular.ttf32,65619,14115,07221.26%
SeymourOne-Regular.ttf74,44042,86233,74821.26%
JosefinSans-Italic.ttf37,04421,38516,83621.27%
AlmendraSC-Regular.ttf36,05617,09113,45221.29%
HerrVonMuellerhoff-Regular.ttf46,62425,25619,88021.29%
jsMath-cmr10.ttf50,31227,73721,83221.29%
Devonshire-Regular.ttf67,24030,64424,10821.33%
JosefinSans-LightItalic.ttf37,33621,35116,79621.33%
IMFeGPrm28P.ttf216,552124,14897,64821.35%
Condiment-Regular.ttf43,39223,79918,71621.36%
DiplomataSC-Regular.ttf42,44421,38116,81221.37%
Paprika-Regular.ttf42,34022,29617,52821.39%
Lemon-Regular.ttf34,64817,99414,14421.40%
WalterTurncoat.ttf154,11279,42962,43221.40%
Merienda-Regular.ttf41,07621,29416,72421.46%
Merriweather-Regular.ttf46,78423,27618,28021.46%
Playball-Regular.ttf42,82022,04017,30821.47%
Economica-Regular.ttf26,75615,23111,96021.48%
Vollkorn-Italic.ttf57,55228,75122,57621.48%
Asul-Bold.ttf33,54818,47814,50821.49%
ChelseaMarket-Regular.ttf172,92482,13564,47221.50%
Karla-Italic.ttf18,54810,7728,45621.50%
Revalia-Regular.ttf61,43630,48723,92821.51%
Quicksand-Bold.ttf23,40813,15910,32421.54%
Chango-Regular.ttf40,73220,86116,36421.56%
Kreon-Bold.ttf38,22018,95014,86021.58%
Inconsolata-Regular.ttf84,86850,98039,95621.62%
JosefinSans-ThinItalic.ttf37,62421,25516,65621.64%
Kreon-Light.ttf37,40817,94214,06021.64%
Merienda-Bold.ttf35,03217,89314,02021.65%
Julee-Regular.ttf30,87617,62313,80421.67%
Puritan-Bold.ttf54,56429,05122,75221.68%
Corben-Bold.ttf139,58870,15254,90021.74%
Diplomata-Regular.ttf43,32022,17817,34821.78%
CevicheOne-Regular.ttf36,92022,01517,21621.80%
Karla-Regular.ttf16,8169,9797,80421.80%
DroidSansTamil-Bold.ttf36,44819,01414,86421.83%
Molengo-Regular.ttf65,46433,23125,97621.83%
DroidSansTamil-Regular.ttf36,30819,15014,96821.84%
Anton.ttf42,37623,24918,16821.85%
Tangerine_Bold.ttf66,49234,55127,00021.85%
Podkova-Regular.ttf60,17237,16129,02421.90%
Skranji-Bold.ttf207,29297,01375,76021.91%
StintUltraExpanded-Regular.ttf42,78823,12918,06021.92%
Puritan-Regular.ttf54,74828,71922,42021.93%
Frijole-Regular.ttf227,860122,15495,34821.94%
ElsieSwashCaps-Black.ttf39,41220,97016,36821.95%
Arapey-Italic.ttf29,56816,39512,78822.00%
Asul-Regular.ttf33,51618,39414,34822.00%
Salsa-Regular.ttf56,68024,58319,17222.01%
Trykker-Regular.ttf38,14023,63118,42822.02%
UnifrakturMaguntia-Book.ttf88,50845,47335,46022.02%
Griffy-Regular.ttf208,77698,22976,58022.04%
Almendra-Italic.ttf35,32417,11913,34422.05%
LifeSavers-Regular.ttf198,20869,87054,44822.07%
Almendra-BoldItalic.ttf35,49617,59213,70822.08%
Combo-Regular.ttf132,84844,75234,87222.08%
Kreon-Regular.ttf37,43218,74314,60422.08%
Economica-Bold.ttf27,19615,71212,24022.10%
IMFePIsc28P.ttf198,012112,60487,71622.10%
Inika-Regular.ttf39,70020,98916,34822.11%
PortLligatSans-Regular.ttf34,38818,08114,08422.11%
Astloch-Regular.ttf51,01224,12818,79222.12%
Economica-Italic.ttf27,69216,18412,60422.12%
Kranky.ttf199,680101,15178,78022.12%
Nunito-Light.ttf48,57627,86521,69622.14%
ArbutusSlab-Regular.ttf70,00439,09830,43622.15%
FredokaOne-Regular.ttf43,50021,79116,96422.15%
Almendra-Bold.ttf36,73217,39913,54422.16%
Creepster-Regular.ttf62,72437,82429,44022.17%
Puritan-Italic.ttf59,59631,49224,50822.18%
Vollkorn-Bold.ttf68,60835,46727,60022.18%
SirinStencil-Regular.ttf69,33240,10731,20422.20%
LindenHill-Regular.ttf124,84454,69142,53622.22%
Macondo-Regular.ttf48,77622,05217,15222.22%
SueEllenFrancisco.ttf60,96028,11121,86422.22%
CrimsonText-Italic.ttf99,88055,51443,16822.24%
IMFeENsc28P.ttf183,932110,05885,57222.25%
Puritan-BoldItalic.ttf59,23631,71024,65622.25%
Basic-Regular.ttf32,98819,63415,25622.30%
Monda-Bold.ttf48,75226,95120,94022.30%
Warnes-Regular.ttf99,01234,88227,08822.34%
LeagueScript.ttf69,21639,60230,75222.35%
Geo-Regular.ttf38,68016,85713,08422.38%
MountainsofChristmas-Bold.ttf123,40474,61657,89222.41%
Coda-Heavy.ttf90,47639,21830,42422.42%
Economica-BoldItalic.ttf27,02416,32812,66422.44%
ElsieSwashCaps-Regular.ttf38,04418,42114,28822.44%
OFLGoudyStMTT-Italic.ttf161,22877,82960,35222.46%
LilitaOne-Regular.ttf28,09215,27111,84022.47%
MontserratSubrayada-Bold.ttf24,36411,4208,85222.49%
BigelowRules-Regular.ttf59,44433,71026,12422.50%
Handlee-Regular.ttf39,13222,81217,68022.50%
IMFeDPsc28P.ttf197,012111,35886,30822.50%
OFLGoudyStMTT.ttf173,52081,07062,82022.51%
Elsie-Black.ttf42,42422,32617,27622.62%
MontserratSubrayada-Regular.ttf24,33211,4828,88022.66%
Galindo-Regular.ttf58,10433,96126,26022.68%
Overlock-Regular.ttf49,65625,52119,73222.68%
OldStandard-Regular.ttf64,78432,09124,80822.69%
EmilysCandy-Regular.ttf237,216114,82988,76422.70%
Lekton-Italic.ttf34,21217,11413,22822.71%
AlfaSlabOne-Regular.ttf36,50419,96415,42822.72%
RibeyeMarrow-Regular.ttf84,89645,54535,19622.72%
Lustria-Regular.ttf37,40018,34914,17622.74%
Felipa-Regular.ttf40,00021,57716,66422.77%
Mate-Regular.ttf28,21615,39011,88422.78%
OldStandard-Bold.ttf65,92433,02125,50022.78%
Mate-Italic.ttf27,70816,04512,38822.79%
Astloch-Bold.ttf75,68438,39229,63622.81%
NewsCycle-Bold.ttf73,91236,42728,11622.82%
Shojumaru-Regular.ttf71,67241,67832,16822.82%
Allan-Regular.ttf56,46034,24726,42422.84%
CrimsonText-SemiboldItalic.ttf75,58840,31131,10422.84%
Arapey-Regular.ttf26,76414,80711,42022.87%
nobile_bold.ttf61,59640,02530,86822.88%
Skranji-Regular.ttf207,92497,67575,31222.90%
Copse-Regular.ttf72,25234,99826,97622.92%
Sunshiney.ttf160,25682,67363,68822.96%
Monoton-Regular.ttf51,60426,51420,41223.01%
Elsie-Regular.ttf41,04419,68715,15623.02%
nobile.ttf65,14041,07831,62023.02%
Quicksand-Light.ttf21,00412,2249,40423.07%
SpicyRice-Regular.ttf67,24438,70529,77223.08%
GermaniaOne-Regular.ttf33,24015,81612,16423.09%
HanaleiFill-Regular.ttf92,10838,90129,92023.09%
Podkova-Bold.ttf50,56431,72524,39223.11%
SansitaOne.ttf47,44024,74719,02423.13%
FanwoodText-Regular.ttf119,21663,45448,76023.16%
KronaOne-Regular.ttf35,16820,94816,09223.18%
PollerOne.ttf31,58816,34512,55623.18%
EagleLake-Regular.ttf78,00046,06735,38423.19%
Boogaloo-Regular.ttf33,92818,27714,03623.20%
Average-Regular.ttf37,83619,04514,62023.23%
Marmelad-Regular.ttf117,39658,77245,08823.28%
YanoneKaffeesatz-Bold.ttf73,00035,90427,54423.28%
Ewert-Regular.ttf70,75219,96215,31223.29%
AlmendraDisplay-Regular.ttf39,33216,34012,53223.30%
CabinSketch-Bold.ttf282,864178,466136,88023.30%
Cutive-Regular.ttf98,18443,41933,30023.31%
Bitter-Bold.ttf25,89615,40711,81223.33%
Inder-Regular.ttf34,13220,30615,56823.33%
Quicksand-Regular.ttf23,82413,36210,24423.33%
Codystar-Regular.ttf106,50055,85942,82423.34%
MateSC-Regular.ttf29,85615,59511,95223.36%
MouseMemoirs-Regular.ttf55,93232,70925,06823.36%
Numans-Regular.ttf39,36819,27414,77223.36%
DroidNaskh-Bold.ttf94,62053,19740,76023.38%
IMFeGPsc28P.ttf203,776115,58088,50423.43%
Spirax-Regular.ttf49,06422,50017,22823.43%
PlayfairDisplaySC-Bold.ttf138,45665,49950,14423.44%
Gabriela-Regular.ttf36,85618,11613,86823.45%
Montaga-Regular.ttf33,95617,81913,64023.45%
PlayfairDisplaySC-Regular.ttf134,34860,43846,26823.45%
Englebert-Regular.ttf53,04830,99423,72423.46%
GildaDisplay-Regular.ttf36,80419,13314,64423.46%
NotoSerif-Bold.ttf370,884225,277172,42023.46%
Ruda-Bold.ttf24,84814,82211,34023.49%
Sacramento-Regular.ttf79,69642,01432,14423.49%
PlayfairDisplaySC-BoldItalic.ttf132,73668,83652,65623.51%
PlayfairDisplaySC-Black.ttf136,24063,69048,70023.54%
Fenix-Regular.ttf45,14421,70716,59623.55%
Cambo-Regular.ttf29,10415,19111,61223.56%
jsMath-cmex10.ttf34,16418,91114,45623.56%
Lohit-Bengali.ttf139,46068,76152,56023.56%
Ribeye-Regular.ttf78,49244,63434,12023.56%
Esteban-Regular.ttf46,50423,43517,90423.60%
PrincessSofia-Regular.ttf272,628130,38899,61623.60%
Glegoo-Regular.ttf28,15215,27111,66423.62%
Gudea-Bold.ttf22,56014,17910,82823.63%
Rambla-Italic.ttf37,14418,38314,04023.63%
EricaOne-Regular.ttf26,24414,73511,25223.64%
nobile_bold_italic.ttf86,17254,16441,35223.65%
McLaren-Regular.ttf54,50431,87324,33223.66%
DroidNaskh-Regular.ttf91,34050,95538,89223.67%
PontanoSans-Regular.ttf126,59644,76234,13623.74%
Balthazar-Regular.ttf28,22415,72811,99223.75%
Ruda-Black.ttf24,74814,64711,16823.75%
OxygenMono-Regular.ttf68,94034,28026,13623.76%
CrimsonText-BoldItalic.ttf75,76439,52030,12823.77%
nobile_italic.ttf92,03256,03442,71223.77%
ButterflyKids-Regular.ttf202,82498,22874,86423.79%
Neuton-Regular.ttf56,68829,23222,27223.81%
Telex-Regular.ttf68,80427,24220,75623.81%
QuattrocentoSans-BoldItalic.ttf100,74840,36630,74023.85%
RopaSans-Italic.ttf42,39624,12518,36823.86%
Unkempt-Regular.ttf192,51296,12273,18423.86%
Voltaire-Regular.ttf28,82414,85311,30823.87%
Ruda-Regular.ttf24,94414,74311,22023.90%
LondrinaSketch-Regular.ttf172,44083,95363,88423.91%
FrederickatheGreat-Regular.ttf486,216278,132211,61223.92%
Gafata-Regular.ttf37,43217,54213,34423.93%
PlayfairDisplaySC-Italic.ttf128,14465,52349,84423.93%
NotoSerif-Regular.ttf350,668208,647158,67223.95%
QuattrocentoSans-Regular.ttf98,34038,93829,61223.95%
Hanuman.ttf128,37644,94234,16823.97%
Quintessential-Regular.ttf73,89244,28833,66823.98%
Quando-Regular.ttf119,68852,26739,72424.00%
Scada-Bold.ttf85,71239,63530,12424.00%
KottaOne-Regular.ttf36,62417,06012,96424.01%
Lohit-Tamil.ttf66,18427,62320,96824.09%
WendyOne-Regular.ttf22,77212,6059,56824.09%
Cantarell-Bold.ttf49,27627,21520,65624.10%
RammettoOne-Regular.ttf30,42019,09414,48824.12%
CinzelDecorative-Bold.ttf62,44828,54321,65224.14%
ChangaOne-Regular.ttf22,71613,51610,24824.18%
CarterOne.ttf66,53240,50730,70824.19%
FugazOne-Regular.ttf27,86816,78312,72024.21%
SofadiOne-Regular.ttf52,73228,11921,29624.26%
CinzelDecorative-Regular.ttf60,54026,84520,32824.28%
AtomicAge-Regular.ttf31,04817,90413,55624.29%
Phetsarath-Bold.ttf156,84035,33626,75224.29%
Trochut-Italic.ttf27,90814,31810,84024.29%
JosefinSlab-BoldItalic.ttf42,84822,74717,22024.30%
Ruluko-Regular.ttf27,43614,94411,31224.30%
BigshotOne.ttf45,19219,96015,10824.31%
CrimsonText-Semibold.ttf77,63639,75030,08824.31%
Hanumanb.ttf121,94843,09632,61624.32%
Asap-BoldItalic.ttf32,22016,53612,51224.33%
Convergence-Regular.ttf30,22016,30312,33624.33%
Trochut-Regular.ttf25,30012,7199,62424.33%
Chivo-Regular.ttf50,84428,11921,27224.35%
Geo-Oblique.ttf50,03620,84815,77224.35%
Rufina-Regular.ttf40,04019,16614,49624.37%
PlayfairDisplaySC-BlackItalic.ttf133,90067,18050,80424.38%
ExpletusSans-Italic.ttf39,44419,97015,10024.39%
QuattrocentoSans-Bold.ttf100,56038,98529,47224.40%
OriginalSurfer-Regular.ttf57,79234,29225,92024.41%
RopaSans-Regular.ttf41,79622,08116,68424.44%
Scada-Regular.ttf86,47239,75830,04024.44%
TextMeOne-Regular.ttf37,35217,30013,07224.44%
Cinzel-Bold.ttf57,74027,31720,63624.46%
Gudea-Regular.ttf22,93214,17110,70024.49%
Milonga-Regular.ttf209,94869,67552,60024.51%
Rambla-BoldItalic.ttf37,37218,75214,15224.53%
SourceSansPro-BoldItalic.ttf116,08851,19138,63624.53%
Yellowtail-Regular.ttf62,42432,46924,49624.56%
NotoSansDevanagariUI-Regular.ttf176,17278,77859,41224.58%
NotoSansDevanagari-Regular.ttf177,67279,48659,94024.59%
Rufina-Bold.ttf40,05619,16514,45224.59%
BubblerOne-Regular.ttf30,99214,93311,26024.60%
ChauPhilomeneOne-Italic.ttf44,27221,91416,52424.60%
NotoSansDevanagariUI-Bold.ttf170,15674,11855,87624.61%
Scada-BoldItalic.ttf88,05641,92731,60824.61%
ABeeZee-Italic.ttf47,76425,84019,47224.64%
KiteOne-Regular.ttf37,60819,76414,89224.65%
JustMeAgainDownHere.ttf72,06036,23227,29224.67%
NotoSerif-BoldItalic.ttf333,656197,472148,75224.67%
NotoSansDevanagari-Bold.ttf171,72474,85156,37624.68%
Risque-Regular.ttf59,39233,80725,46424.68%
Fresca-Regular.ttf32,64418,51613,94424.69%
SourceSansPro-BlackItalic.ttf116,24450,16037,76824.70%
SourceSansPro-SemiboldItalic.ttf116,46851,48138,76024.71%
Thabit.ttf124,08457,56843,34424.71%
Clara-Regular.ttf168,25679,15059,58824.72%
StalinistOne-Regular.ttf49,96023,34217,57224.72%
ABeeZee-Regular.ttf46,12424,90718,74824.73%
Strait-Regular.ttf33,08816,37912,32824.73%
Trochut-Bold.ttf25,41212,7839,62024.74%
Gudea-Italic.ttf27,02816,07912,10024.75%
Stoke-Regular.ttf133,34057,95943,61224.75%
CarroisGothic-Regular.ttf41,68023,03217,32824.77%
Cinzel-Black.ttf58,61626,72920,10824.77%
StalinOne-Regular.ttf49,91223,33017,55224.77%
Asap-Bold.ttf30,35215,49511,65624.78%
Acme-Regular.ttf23,46013,30710,00824.79%
ArchivoBlack-Regular.ttf129,84850,01037,60024.82%
ChangaOne-Italic.ttf26,72814,95311,24024.83%
Dorsa-Regular.ttf20,84410,9258,21224.83%
YanoneKaffeesatz-ExtraLight.ttf77,02438,42528,88024.84%
Cantarell-BoldOblique.ttf52,20030,49122,91224.86%
Fondamento-Italic.ttf78,76040,13130,14424.89%
Peralta-Regular.ttf59,60035,61426,74824.89%
PermanentMarker.ttf74,75241,53731,20024.89%
YanoneKaffeesatz-Regular.ttf76,58838,55328,95624.89%
Sintony-Bold.ttf26,01614,52110,90424.91%
Asap-Italic.ttf32,03216,72912,56024.92%
SourceSansPro-Italic.ttf116,68451,59338,73624.92%
Electrolize-Regular.ttf55,71224,70118,54424.93%
Montez-Regular.ttf77,19240,35630,29624.93%
NoticiaText-Bold.ttf113,24460,09645,10024.95%
Sintony-Regular.ttf25,71214,75311,07224.95%
Cinzel-Regular.ttf56,22825,55419,17624.96%
Domine-Regular.ttf137,88053,49240,14024.96%
YanoneKaffeesatz-Light.ttf77,29638,77929,10024.96%
Asap-Regular.ttf30,74015,76911,83224.97%
Plaster-Regular.ttf32,85218,41613,81225.00%
YesevaOne-Regular.ttf101,03647,07535,30825.00%
Orbitron-Bold.ttf38,58017,58813,18825.02%
CinzelDecorative-Black.ttf62,82427,25520,43225.03%
Kenia-Regular.ttf65,15629,40322,04425.03%
SourceSansPro-LightItalic.ttf116,38451,42738,55625.03%
AnonymousPro-BoldItalic.ttf142,01663,35247,48825.04%
Codystar-Light.ttf101,53651,37738,50025.06%
Amethysta-Regular.ttf67,04435,78426,81225.07%
Belleza-Regular.ttf27,82016,05712,03225.07%
CherrySwash-Regular.ttf30,59614,56810,91625.07%
ContrailOne-Regular.ttf31,18416,37512,26825.08%
Chivo-Italic.ttf30,86417,76513,30825.09%
Scada-Italic.ttf86,52441,32930,96025.09%
Imprima-Regular.ttf24,91214,11510,57225.10%
SourceSansPro-ExtraLightItalic.ttf116,94050,22637,62025.10%
Unlock-Regular.ttf27,08014,69411,00425.11%
PTM55FT.ttf185,91296,15071,98825.13%
ChauPhilomeneOne-Regular.ttf40,05620,38915,26425.14%
Galdeano-Regular.ttf24,86814,36310,75225.14%
Carme-Regular.ttf78,02826,06619,50825.16%
Orbitron-Regular.ttf39,48417,57413,14825.18%
Orbitron-Black.ttf37,58417,74213,26425.24%
Quattrocento-Regular.ttf158,20056,87542,50825.26%
ShareTechMono-Regular.ttf23,97612,5209,35625.27%
PassionOne-Regular.ttf25,10414,12310,54825.31%
PlayfairDisplay-Bold.ttf192,58889,63666,95225.31%
PassionOne-Bold.ttf24,78813,93910,40825.33%
Rambla-Bold.ttf34,68817,31312,92825.33%
UncialAntiqua-Regular.ttf63,40433,99625,38025.34%
Cantarell-Oblique.ttf50,06827,82120,76825.35%
Syncopate-Bold.ttf65,43230,86223,03225.37%
PlayfairDisplay-Black.ttf189,51686,39464,46825.38%
Domine-Bold.ttf146,20056,92742,47625.39%
Margarine-Regular.ttf148,82083,60162,37225.39%
PatuaOne-Regular.ttf35,62419,66314,66825.40%
Rosario-Regular.ttf33,91619,36714,44425.42%
Belgrano-Regular.ttf29,07617,48713,04025.43%
Offside-Regular.ttf30,84015,45911,52425.45%
Rambla-Regular.ttf34,33217,00112,66025.53%
Chivo-Black.ttf55,12826,00519,35625.57%
PassionOne-Black.ttf24,32013,56910,10025.57%
CherrySwash-Bold.ttf30,03214,44910,74825.61%
Amaranth-Regular.ttf79,79640,79030,33625.63%
Viga-Regular.ttf28,43615,86111,79625.63%
DroidKufi-Bold.ttf81,22041,74631,04425.64%
PlayfairDisplay-BoldItalic.ttf182,08493,53769,53625.66%
SourceSansPro-ExtraLight.ttf150,15262,11546,17225.67%
Homenaje-Regular.ttf22,19212,3269,15225.75%
Orbitron-Medium.ttf39,81617,29712,84025.77%
PlayfairDisplay-Regular.ttf186,85682,94261,56825.77%
SourceSansPro-Light.ttf149,91663,70547,27625.79%
KarlaTamilInclined-Bold.ttf108,80448,09335,66425.84%
Rosario-BoldItalic.ttf33,04419,95114,79625.84%
SourceSansPro-Black.ttf148,17661,36345,50825.84%
NoticiaText-Regular.ttf115,28860,93045,17225.86%
Chivo-BlackItalic.ttf32,32418,60413,79225.87%
RuslanDisplay.ttf57,28820,07414,88025.87%
DroidKufi-Regular.ttf81,22441,46030,72025.90%
AnonymousPro-Bold.ttf153,70868,34150,63225.91%
SourceSansPro-Regular.ttf149,50863,80047,26425.92%
SourceSansPro-Semibold.ttf149,35263,62847,13625.92%
Thabit-Bold.ttf120,16858,24643,14025.93%
Cantarell-Regular.ttf47,50424,78618,35625.94%
Rosario-Bold.ttf31,86419,64914,54825.96%
FasterOne-Regular.ttf45,30420,45815,14425.98%
CabinSketch-Regular.ttf194,436103,49876,59226.00%
SourceSansPro-Bold.ttf148,61663,22446,78426.00%
AnonymousPro-Italic.ttf144,51665,37948,37626.01%
KarlaTamilInclined-Regular.ttf109,70048,66036,00426.01%
NewsCycle-Regular.ttf193,99685,78863,46426.02%
Fondamento-Regular.ttf87,16044,32132,78426.03%
CarroisGothicSC-Regular.ttf40,30821,98016,25226.06%
Flavors-Regular.ttf186,64095,15970,30826.12%
CodaCaption-Heavy.ttf74,04441,02830,30826.13%
Italiana-Regular.ttf31,82814,98011,06426.14%
Flamenco-Regular.ttf36,70019,03314,05226.17%
NotoSerif-Italic.ttf323,188191,072141,06426.17%
MontserratAlternates-Regular.ttf27,05615,83811,69226.18%
Neuton-Bold.ttf50,08025,24118,63226.18%
SignikaNegative-Bold.ttf53,64427,74520,47226.21%
ExpletusSans-BoldItalic.ttf49,42822,51516,61226.22%
TitanOne-Regular.ttf55,71225,49518,80426.24%
ExpletusSans-SemiBoldItalic.ttf49,08823,46417,30426.25%
SignikaNegative-Regular.ttf53,79627,71420,44026.25%
PurplePurse-Regular.ttf62,86836,43526,86026.28%
PlayfairDisplay-BlackItalic.ttf177,40089,64566,05626.31%
Enriqueta-Bold.ttf45,24020,57815,16026.33%
MedulaOne-Regular.ttf33,68416,33712,03626.33%
PlayfairDisplay-Italic.ttf174,85688,98865,53226.36%
Abel-Regular.ttf36,40016,57112,20026.38%
LibreBaskerville-Bold.ttf161,10461,92445,56026.43%
Rosario-Italic.ttf33,56418,91113,91226.43%
Bangers.ttf39,67621,65315,92826.44%
Neuton-ExtraBold.ttf50,32424,45617,98426.46%
Neuton-Italic.ttf74,20434,90925,67226.46%
NoticiaText-BoldItalic.ttf86,04445,87433,73626.46%
Alegreya-Bold.ttf177,57682,16160,36026.53%
ExpletusSans-Regular.ttf57,42828,04020,59626.55%
Alegreya-Black.ttf172,46879,88558,64426.59%
BreeSerif-Regular.ttf46,66022,50616,51626.62%
Amaranth-Bold.ttf73,75637,18827,28426.63%
Bitter-Italic.ttf39,42020,16714,78826.67%
SignikaNegative-Light.ttf55,03227,07919,83626.75%
SignikaNegative-Semibold.ttf53,40427,63720,24426.75%
Amaranth-Italic.ttf97,62047,98335,13626.77%
Alegreya-BoldItalic.ttf170,75680,60959,02426.78%
SourceCodePro-ExtraLight.ttf121,56850,20836,76426.78%
Flamenco-Light.ttf34,73619,07913,96826.79%
Magra-Bold.ttf44,50024,30717,79626.79%
ArchivoNarrow-BoldItalic.ttf130,26854,47439,84826.85%
Federant-Regular.ttf78,12837,89327,70826.88%
SourceCodePro-Black.ttf120,35649,90236,48826.88%
ShareTech-Regular.ttf29,53614,97510,94826.89%
CrimsonText-Bold.ttf93,84844,63432,62826.90%
MontserratAlternates-Bold.ttf28,64016,73312,23226.90%
LibreBaskerville-Regular.ttf160,36460,84744,47626.91%
ConcertOne-Regular.ttf71,07234,20824,99626.93%
Junge-Regular.ttf71,40039,40028,78426.94%
Actor-Regular.ttf64,94432,84023,98826.95%
Exo-ExtraBoldItalic.ttf104,55250,72737,04426.97%
Kameron-Bold.ttf64,79638,34527,99626.99%
SourceCodePro-Light.ttf121,28451,04637,25227.02%
Alegreya-BlackItalic.ttf173,23281,13259,19227.04%
AnonymousPro-Regular.ttf158,08071,37852,08027.04%
Thabit-Oblique.ttf135,55261,85845,12827.05%
KaushanScript-Regular.ttf210,67279,09257,66827.09%
Neuton-ExtraLight.ttf49,54025,09118,29227.10%
Bitter-Regular.ttf90,62845,72133,32027.12%
RussoOne-Regular.ttf39,32419,38014,12427.12%
FreckleFace-Regular.ttf121,08868,18049,68027.13%
SourceCodePro-Bold.ttf120,50450,70436,94827.13%
Exo-BoldItalic.ttf105,14052,08937,95227.14%
SourceCodePro-Regular.ttf120,54850,83637,02427.17%
KeaniaOne-Regular.ttf38,81217,75012,92427.19%
SourceCodePro-Semibold.ttf120,25250,67336,89627.19%
AdventPro-Thin.ttf46,80023,37517,01627.20%
Raleway-Thin.ttf123,94053,22338,73627.22%
SourceCodePro-Medium.ttf120,24450,65436,86427.22%
ArchivoNarrow-Bold.ttf126,70450,57136,78427.26%
DeliusSwashCaps-Regular.ttf63,05230,62622,27227.28%
QuattrocentoSans-Italic.ttf108,70045,71233,23627.29%
CreteRound-Regular.ttf59,31224,62417,90027.31%
NoticiaText-Italic.ttf87,39246,14733,52027.36%
Muli-Italic.ttf51,18430,05721,82827.38%
ArchivoNarrow-Italic.ttf126,50453,11038,55227.41%
PatrickHandSC-Regular.ttf152,60866,77148,46427.42%
Exo-SemiBoldItalic.ttf106,55252,41138,02827.44%
Graduate-Regular.ttf22,73211,1468,08427.47%
JosefinSlab-Light.ttf113,84452,11137,79227.48%
Neuton-Light.ttf49,79224,98818,11227.52%
DroidSansEthiopic-Regular.ttf227,92891,32766,18827.53%
Exo-Medium.ttf98,13647,42434,35227.56%
ExpletusSans-Bold.ttf62,98429,58821,43227.57%
Exo-MediumItalic.ttf106,74452,87838,28427.60%
JosefinSlab-SemiBold.ttf101,32847,02734,04827.60%
Raleway-Heavy.ttf129,52056,86041,12427.67%
MavenPro-Regular.ttf99,25232,55223,53627.70%
RacingSansOne-Regular.ttf145,79658,64442,38827.72%
Exo-Bold.ttf96,26846,84033,84427.75%
Exo-ExtraBold.ttf95,73245,33132,74827.76%
Thabit-BoldOblique.ttf130,39261,92644,71627.79%
Alegreya-Regular.ttf202,16893,31167,36827.80%
Alegreya-Italic.ttf199,74492,73166,93627.82%
Exo-Light.ttf98,12447,01533,93227.83%
Simonetta-Black.ttf124,70065,23447,08027.83%
MavenPro-Medium.ttf100,06432,52223,45627.88%
NotoSans-Regular.ttf306,788177,443127,93227.90%
AdventPro-Regular.ttf47,30822,58216,28027.91%
NotoSansUI-Regular.ttf306,804177,446127,92827.91%
Exo-ExtraLightItalic.ttf106,93652,06937,52827.93%
JuliusSansOne-Regular.ttf33,54416,73312,06027.93%
DroidSansEthiopic-Bold.ttf222,59287,57863,06827.99%
NotoSans-Bold.ttf311,480178,445128,49227.99%
Exo-SemiBold.ttf96,74046,34933,37228.00%
JosefinSlab-Italic.ttf115,49254,09538,94828.00%
NotoSansUI-Bold.ttf311,496178,447128,48828.00%
Montserrat-Regular.ttf29,01617,06912,28828.01%
Montserrat-Bold.ttf29,56017,13712,33628.02%
Exo-LightItalic.ttf107,04052,27037,61628.04%
CroissantOne-Regular.ttf54,74422,89116,46428.08%
NotoSans-BoldItalic.ttf290,436173,805125,00028.08%
NotoSansUI-BoldItalic.ttf290,452173,811125,00428.08%
ScheherazadeRegOT.ttf261,792117,69484,61628.11%
GenBkBasBI.ttf249,924103,00174,00828.15%
Raleway-Regular.ttf130,12860,63543,56828.15%
JimNightshade-Regular.ttf153,68083,65660,09228.17%
NotoSans-Italic.ttf279,268166,921119,88028.18%
NotoSansUI-Italic.ttf279,284166,928119,88028.18%
MavenPro-Bold.ttf99,54432,70923,48428.20%
Wallpoet-Regular.ttf39,90420,11214,44028.20%
Raleway-ExtraLight.ttf122,40057,99841,63628.21%
AdventPro-ExtraLight.ttf46,84023,42616,81628.22%
Raleway-Light.ttf132,20060,25743,24428.23%
AdventPro-Light.ttf46,78823,14516,60828.24%
Aldrich-Regular.ttf57,02027,31219,59628.25%
Raleway-Medium.ttf129,30860,47843,38428.26%
Sevillana-Regular.ttf162,87279,61057,10828.27%
GenBasBI.ttf250,668104,32974,82428.28%
JotiOne-Regular.ttf45,58421,59415,48828.28%
Quantico-BoldItalic.ttf20,66012,0088,60428.35%
Raleway-SemiBold.ttf130,88061,00143,70828.35%
AbrilFatface-Regular.ttf67,36429,17920,90028.37%
Raleway-Bold.ttf128,24860,45643,29628.38%
HappyMonkey-Regular.ttf76,34440,09128,70428.40%
Magra-Regular.ttf45,53623,03816,49228.41%
MedievalSharp.ttf148,71275,45753,98828.45%
MavenPro-Black.ttf99,11632,59723,32028.46%
AdventPro-Bold.ttf56,44827,28219,50828.49%
JosefinSlab-Bold.ttf88,30842,67830,51628.50%
Raleway-ExtraBold.ttf125,13659,79442,74828.51%
SquadaOne-Regular.ttf19,0729,2976,64428.54%
MaidenOrange.ttf60,92832,89723,50428.55%
Muli-Regular.ttf56,26032,06022,90828.55%
Almendra-Regular.ttf68,74428,73920,52428.58%
Righteous-Regular.ttf43,10423,47416,76028.60%
SpecialElite.ttf166,22491,84265,56428.61%
Rye-Regular.ttf183,24466,27347,30028.63%
TitilliumWeb-Black.ttf49,35624,97417,82428.63%
DancingScript-Bold.ttf115,56861,30143,74428.64%
Simonetta-BlackItalic.ttf123,03664,31045,86428.68%
Allura-Regular.ttf88,08440,91029,15228.74%
PatrickHand-Regular.ttf214,77288,06262,74028.75%
Poly-Regular.ttf76,80033,27523,70828.75%
Buenard-Bold.ttf58,99223,92317,02828.82%
Baumans-Regular.ttf53,40828,46620,26028.83%
Buenard-Regular.ttf60,18823,85316,97628.83%
ModernAntiqua-Regular.ttf70,10826,76819,05228.83%
JosefinSlab-Regular.ttf110,74052,46637,33228.85%
Bevan.ttf90,65249,22635,00828.88%
ExpletusSans-SemiBold.ttf67,94832,87223,36028.94%
Quantico-Bold.ttf20,89611,5008,17228.94%
Brawler-Regular.ttf106,04455,39139,35228.96%
Quattrocento-Bold.ttf164,94860,12442,68829.00%
DuruSans-Regular.ttf88,08840,00728,38429.05%
Enriqueta-Regular.ttf53,48022,58016,02029.05%
CantoraOne-Regular.ttf163,11664,44745,72029.06%
ExpletusSans-Medium.ttf69,07632,95723,37229.08%
Quantico-Regular.ttf20,94011,4538,12029.10%
AdventPro-Medium.ttf51,42426,28718,63629.11%
AdventPro-SemiBold.ttf51,20026,51418,79629.11%
CrimsonText-Roman.ttf189,60496,05468,09629.11%
GlassAntiqua-Regular.ttf63,01226,61818,84429.21%
Muli-LightItalic.ttf50,68829,92421,18429.21%
Simonetta-Regular.ttf132,08469,90749,46429.24%
JosefinSlab-SemiBoldItalic.ttf143,22064,79945,82429.28%
ArchivoNarrow-Regular.ttf145,69256,33939,82429.31%
Limelight-Regular.ttf132,29252,53737,13629.31%
TerminalDosis-Light.ttf109,50052,53237,12429.33%
DancingScript-Regular.ttf116,58060,25242,55229.38%
AnticDidone-Regular.ttf39,68819,04013,44429.39%
Roboto-LightItalic.ttf162,92076,29553,86829.40%
AlegreyaSC-Italic.ttf73,72032,18122,70829.44%
AlegreyaSC-Bold.ttf72,46032,24822,75229.45%
LateefRegOT.ttf246,224108,67576,66829.45%
AlegreyaSC-BoldItalic.ttf73,09632,68023,04829.47%
UnicaOne-Regular.ttf39,92416,96811,96029.51%
Exo-ExtraLight.ttf93,44442,88330,22429.52%
Roboto-Italic.ttf167,90878,87355,58829.52%
Roboto-MediumItalic.ttf165,28077,74454,78829.53%
Quantico-Italic.ttf22,14412,3418,69629.54%
Ultra.ttf53,20827,75419,54829.57%
AlegreyaSC-BlackItalic.ttf72,32031,57622,23629.58%
Capriola-Regular.ttf106,63247,87633,71229.58%
Megrim.ttf57,87227,03219,03229.59%
RobotoCondensed-BoldItalic.ttf164,84077,60454,64029.59%
AverageSans-Regular.ttf44,01220,64214,52829.62%
Gorditas-Bold.ttf109,80059,74042,03229.64%
RobotoCondensed-Italic.ttf163,90076,85054,06429.65%
Exo-BlackItalic.ttf101,13245,55632,04029.67%
Italianno-Regular.ttf137,36460,17042,31229.68%
Gorditas-Regular.ttf110,33662,14443,68829.70%
AlegreyaSC-Black.ttf71,14030,53021,46029.71%
Lekton-Bold.ttf113,68449,16234,55229.72%
Roboto-BlackItalic.ttf167,25279,12755,59629.74%
RobotoCondensed-LightItalic.ttf164,43276,34453,63229.75%
Armata-Regular.ttf90,59640,85528,69629.76%
CreteRound-Italic.ttf67,26427,99519,66429.76%
Roboto-Medium.ttf153,78073,31651,50029.76%
Roboto-Light.ttf159,64074,17952,07229.80%
AnticSlab-Regular.ttf36,97218,25812,81629.81%
Exo-Black.ttf91,50441,13928,86429.84%
RobotoCondensed-Bold.ttf161,41674,14251,98429.89%
Exo-ThinItalic.ttf104,44447,39833,22829.90%
Sanchez-Regular.ttf72,55226,77218,76829.90%
Exo-Regular.ttf93,84842,64129,87629.94%
Exo-Italic.ttf104,18847,13933,00029.99%
Exo-Thin.ttf93,10041,97229,38030.00%
Neucha.ttf141,83267,11746,98030.00%
EmblemaOne-Regular.ttf61,83228,84020,18030.03%
Roboto-BoldItalic.ttf161,75277,42954,15630.06%
Lekton-Regular.ttf114,32048,65434,02030.08%
Poly-Italic.ttf74,23631,99822,36430.11%
Cardo-Italic.ttf262,868153,494107,21630.15%
ExpletusSans-MediumItalic.ttf74,07233,13323,14030.16%
CantataOne-Regular.ttf96,82843,19730,15630.19%
Petrona-Regular.ttf80,76029,86920,85230.19%
RobotoCondensed-Regular.ttf159,86872,79450,82030.19%
RobotoCondensed-Light.ttf160,80072,82650,82430.21%
BlackOpsOne-Regular.ttf76,11633,46623,34430.25%
TenorSans-Regular.ttf131,89652,47436,59230.27%
Cardo-Bold.ttf348,320192,401134,10030.30%
Simonetta-Italic.ttf122,35664,71245,10030.31%
SonsieOne-Regular.ttf75,99235,11124,46830.31%
JockeyOne-Regular.ttf48,60822,45715,64030.36%
HammersmithOne-Regular.ttf103,42845,00731,34030.37%
Roboto-Black.ttf162,16076,24453,01230.47%
Roboto-Bold.ttf152,65272,13950,12830.51%
Delius-Regular.ttf77,48837,20825,84030.55%
Underdog-Regular.ttf101,48051,89536,03630.56%
AlegreyaSC-Regular.ttf73,38831,23421,67630.60%
Share-Regular.ttf91,94045,45331,54030.61%
KarlaTamilUpright-Regular.ttf144,44065,34745,31230.66%
Share-Bold.ttf91,04845,36431,45230.67%
Voces-Regular.ttf67,69635,03424,28830.67%
Lobster.ttf140,85659,16140,99630.70%
Sanchez-Italic.ttf75,21229,14420,19630.70%
GreatVibes-Regular.ttf106,00449,90534,54830.77%
KarlaTamilUpright-Bold.ttf143,22464,52144,66830.77%
GFSDidot-Regular.ttf191,16879,44954,97230.81%
MetalMania-Regular.ttf254,568123,17985,22430.81%
Roboto-Regular.ttf166,66877,18253,39230.82%
Ledger-Regular.ttf62,32028,61419,79230.83%
MeieScript-Regular.ttf128,42859,96541,48030.83%
DaysOne-Regular.ttf65,58030,74521,26430.84%
PirataOne-Regular.ttf56,31620,24113,97630.95%
MarckScript-Regular.ttf83,66439,14126,98031.07%
FontdinerSwanky.ttf45,52426,02917,91231.18%
NovaRound.ttf93,21241,29428,42031.18%
Rationale-Regular.ttf57,15628,17619,37231.25%
JosefinSlab-LightItalic.ttf160,14472,30649,69231.28%
Share-Italic.ttf76,60836,95525,37231.34%
FrancoisOne.ttf113,11254,85937,64831.37%
GenBkBasI.ttf266,156109,73375,29231.39%
GenBkBasR.ttf272,460106,81773,24831.43%
Muli-Light.ttf60,66034,12623,39631.44%
PoiretOne-Regular.ttf47,70822,81715,64031.45%
Courgette-Regular.ttf122,07255,19837,82831.47%
Comfortaa-Light.ttf127,53266,70445,66431.54%
Metamorphous-Regular.ttf135,74054,35437,20831.55%
Antic-Regular.ttf39,32020,85814,27631.56%
Sarina-Regular.ttf96,10442,92729,38031.56%
Share-BoldItalic.ttf75,83636,90525,24431.60%
Dosis-ExtraBold.ttf137,20066,37345,39231.61%
NovaSlim.ttf93,95639,95427,32031.62%
Dosis-Bold.ttf136,41266,42645,40431.65%
NewRocker-Regular.ttf173,22465,42044,70031.67%
Fasthand-Regular.ttf124,82843,53829,74431.68%
GenBasI.ttf263,504106,99073,07231.70%
NovaFlat.ttf93,84439,82327,20031.70%
GenBasB.ttf271,648107,98473,70431.75%
Kameron-Regular.ttf76,68841,22528,13631.75%
TitilliumWeb-Bold.ttf59,90830,39420,74431.75%
NovaSquare.ttf87,96836,38024,73632.01%
Koulen.ttf246,02859,08440,16032.03%
Comfortaa-Bold.ttf105,22054,57137,08032.05%
Padauk-Bold.ttf443,268134,76491,57232.05%
NovaCut.ttf94,48840,34727,41232.06%
GenBasR.ttf269,048102,76969,77232.11%
Dosis-SemiBold.ttf135,52065,57944,50432.14%
Amaranth-BoldItalic.ttf107,53647,81332,43232.17%
Crushed.ttf57,85628,03618,99632.24%
NovaOval.ttf96,65641,71528,25232.27%
Dosis-Medium.ttf136,44465,64344,38832.38%
Amarante-Regular.ttf148,11655,41237,44832.42%
Redressed.ttf79,22043,63029,48432.42%
GenBkBasB.ttf271,832107,56672,58032.53%
Lato-BlackItalic.ttf111,61650,23933,85632.61%
Dosis-Regular.ttf136,94065,62744,19632.66%
Amiri-Bold.ttf602,420234,560157,81232.72%
Snippet.ttf39,28419,45413,08832.72%
SupermercadoOne-Regular.ttf143,18051,41634,59232.72%
Judson-Bold.ttf195,50487,15358,60032.76%
NovaScript.ttf117,37648,04632,28432.81%
Dosis-Light.ttf136,37665,17743,75232.87%
Bayon.ttf248,20856,68038,03232.90%
TitilliumWeb-ExtraLight.ttf63,12431,68321,22433.01%
EBGaramond-Regular.ttf231,904120,36680,58833.05%
Varela-Regular.ttf188,24079,10552,94833.07%
Khmer.ttf343,06474,86450,08433.10%
TitilliumWeb-SemiBold.ttf63,04432,12221,47233.15%
TitilliumWeb-Light.ttf64,03232,77121,90433.16%
Bokor.ttf349,24066,61744,52033.17%
Oranienbaum-Regular.ttf141,22061,98241,42433.17%
TitilliumWeb-Regular.ttf63,75232,57121,76433.18%
TulpenOne-Regular.ttf35,24419,39712,96033.19%
NovaMono.ttf302,380148,63399,28033.20%
Dosis-ExtraLight.ttf135,14063,64042,50833.21%
DidactGothic.ttf246,24492,75061,92833.23%
Cuprum-Regular.ttf100,60844,87029,93633.28%
Judson-Regular.ttf220,844100,34666,94433.29%
ProstoOne-Regular.ttf96,86849,02132,70433.29%
Dangrek.ttf269,62060,83440,52833.38%
Battambang-Bold.ttf346,21275,86950,52033.41%
Battambang-Regular.ttf357,86878,26652,11633.41%
Audiowide-Regular.ttf70,90033,18722,08433.46%
HeadlandOne-Regular.ttf149,69259,23539,41633.46%
Wellfleet-Regular.ttf82,01634,54422,97633.49%
Cuprum-Bold.ttf100,17244,62029,60433.65%
IstokWeb-BoldItalic.ttf238,08495,04763,06833.65%
IstokWeb-Italic.ttf238,04495,02963,05633.65%
JosefinSansStd-Light.ttf45,56421,52114,28033.65%
TitilliumWeb-BoldItalic.ttf69,79635,47523,53233.67%
Aclonica.ttf68,78437,58624,92833.68%
LibreBaskerville-Italic.ttf175,48074,63849,50033.68%
NanumGothicCoding-Bold.ttf2,246,2401,020,726676,80433.69%
Andada-Regular.ttf108,62033,21422,01233.73%
Amiri-BoldSlanted.ttf606,816245,340162,49233.77%
Lato-Italic.ttf118,35252,21634,53633.86%
Preahvihear.ttf253,96854,09135,76433.88%
Judson-Italic.ttf212,00897,51064,40833.95%
NanumGothic-Bold.ttf2,300,3881,029,963679,94833.98%
Lato-BoldItalic.ttf120,31252,55634,68034.01%
Smokum-Regular.ttf63,94834,49822,76034.03%
Siemreap.ttf285,32061,45740,52834.05%
Cuprum-BoldItalic.ttf96,18843,44228,64434.06%
Cuprum-Italic.ttf96,40043,75228,82834.11%
Angkor.ttf266,09654,08135,58434.20%
NixieOne-Regular.ttf52,58024,68316,23234.24%
Chenla.ttf293,58862,10940,83234.26%
Suwannaphum.ttf336,76865,83543,27634.27%
Content-Bold.ttf306,29263,72141,88034.28%
TitilliumWeb-ExtraLightItalic.ttf67,78834,75122,83634.29%
OdorMeanChey.ttf310,82463,47341,65234.38%
Content-Regular.ttf313,09264,15742,08834.40%
Moulpali.ttf308,66864,93742,58034.43%
Ranchers-Regular.ttf167,42068,79545,10034.44%
Cardo-Regular.ttf400,468224,880147,23634.53%
Lato-Black.ttf114,58849,81832,58834.59%
IstokWeb-Bold.ttf251,38898,18064,15234.66%
Amiri-Regular.ttf608,236239,808156,64034.68%
Comfortaa-Regular.ttf98,40847,17530,80834.69%
PetitFormalScript-Regular.ttf175,06870,07745,76834.69%
Moul.ttf386,96875,75649,47234.70%
NanumGothicCoding-Regular.ttf2,315,9241,001,054652,80034.79%
Syncopate-Regular.ttf175,61668,97344,94034.84%
TitilliumWeb-LightItalic.ttf71,72036,92024,05634.84%
Lato-Regular.ttf120,19651,32833,42034.89%
TitilliumWeb-Italic.ttf72,41637,25924,24434.93%
TitilliumWeb-SemiBoldItalic.ttf71,81237,14324,11635.07%
NanumGothic-Regular.ttf2,369,6961,009,397654,98035.11%
Signika-Regular.ttf141,13277,73150,42035.14%
Amiri-Slanted.ttf620,348250,364161,56435.47%
Alike-Regular.ttf107,93253,40234,37235.64%
Hanalei-Regular.ttf184,17689,20157,40435.65%
LobsterTwo-Bold.ttf241,10489,31357,47635.65%
Andika-R.ttf1,469,776528,762340,12035.68%
ReenieBeanie.ttf147,87264,35641,32835.78%
LobsterTwo-BoldItalic.ttf235,63286,23955,37235.79%
Taprom.ttf331,87667,54043,33235.84%
VT323-Regular.ttf86,57618,92912,13635.89%
Lato-Bold.ttf121,78851,82933,10036.14%
Freehand.ttf462,01281,24051,80436.23%
NanumGothic-ExtraBold.ttf2,355,2161,021,593650,62436.31%
LuckiestGuy.ttf73,72840,10325,32036.86%
Signika-Bold.ttf161,11679,29450,00836.93%
Signika-Light.ttf186,03689,32056,27637.00%
Artifika-Regular.ttf131,78868,49243,10437.07%
LobsterTwo-Italic.ttf249,89687,77955,10837.22%
Padauk-Regular.ttf472,488142,00488,97237.35%
LobsterTwo-Regular.ttf254,33290,82256,78437.48%
WireOne.ttf140,66857,76936,09237.52%
PressStart2P-Regular.ttf69,74816,19610,10837.59%
Vibur-Regular.ttf173,60491,43157,06037.59%
Miltonian-Regular.ttf124,09271,35544,52437.60%
Signika-Semibold.ttf166,24480,70550,16837.84%
Allan-Bold.ttf115,32860,69137,66837.93%
Lato-Hairline.ttf115,31650,05631,01238.05%
Lora-Italic.ttf153,04078,22448,45638.05%
Philosopher-Italic.ttf240,984106,65065,69238.40%
Lato-HairlineItalic.ttf91,46041,59825,61638.42%
Lato-LightItalic.ttf91,60042,71826,25238.55%
AveriaSerifLibre-Light.ttf109,97262,55438,28838.79%
IstokWeb-Regular.ttf348,780141,60886,16039.16%
Philosopher-BoldItalic.ttf220,08099,16360,32439.17%
AveriaSerifLibre-Regular.ttf109,98862,20037,76439.29%
Metal.ttf409,66076,19046,23639.31%
LoveYaLikeASister.ttf271,924135,51681,95639.52%
AveriaLibre-Light.ttf108,19261,36637,08439.57%
MiltonianTattoo-Regular.ttf189,460100,01260,42039.59%
Lora-Regular.ttf167,39685,97851,84839.70%
Play-Regular.ttf171,08465,84639,69639.71%
AveriaSansLibre-Light.ttf107,75260,85636,66839.75%
Play-Bold.ttf170,23264,62738,92839.77%
Philosopher-Bold.ttf211,38094,63356,89639.88%
AveriaLibre-Regular.ttf108,46861,33436,86439.90%
AveriaSansLibre-Regular.ttf108,36061,03436,64839.95%
AveriaSerifLibre-Bold.ttf113,95663,96638,38040.00%
Lato-Light.ttf122,52454,33032,59240.01%
Tharlon-Regular.ttf353,228138,00382,75640.03%
Adamina-Regular.ttf117,34057,36934,40040.04%
Vidaloka-Regular.ttf135,70466,76039,94040.17%
Marvel-Bold.ttf36,96821,04812,58840.19%
Philosopher-Regular.ttf257,540110,33965,94040.24%
AveriaSansLibre-Bold.ttf113,01663,49237,88040.34%
AveriaLibre-Bold.ttf112,22863,17337,60840.47%
AveriaGruesaLibre-Regular.ttf111,54462,71837,31640.50%
Lora-BoldItalic.ttf173,08089,39653,10440.60%
CabinCondensed-Regular.ttf153,12877,75846,08840.73%
Lora-Bold.ttf162,54481,27147,90441.06%
Caudex-Bold.ttf471,708195,910115,36041.12%
KellySlab-Regular.ttf77,81637,83222,25241.18%
Caudex-Regular.ttf466,324188,220110,24041.43%
Marvel-BoldItalic.ttf40,08022,77613,30041.61%
Marvel-Regular.ttf38,22021,25712,40041.67%
Metrophobic.ttf68,92838,01522,14841.74%
PT_Serif-Caption-Web-Italic.ttf406,612197,621115,14041.74%
Trocchi-Regular.ttf143,88064,40337,46441.83%
Mako-Regular.ttf87,78447,68327,69241.92%
PT_Serif-Caption-Web-Regular.ttf399,840200,560116,40441.96%
PT_Serif-Web-Italic.ttf375,356186,079107,96841.98%
Caudex-BoldItalic.ttf555,156224,790130,27642.05%
JustAnotherHand.ttf192,54494,04554,49242.06%
AveriaSerifLibre-Italic.ttf130,95670,86141,01642.12%
Alice-Regular.ttf150,51271,23341,10842.29%
AveriaSerifLibre-LightItalic.ttf135,97672,97242,06842.35%
Volkhov-BoldItalic.ttf102,72851,44029,60842.44%
Buda-Light.ttf105,98853,72930,92042.45%
PT_Sans-Web-Regular.ttf442,960225,325129,60042.48%
PT_Sans-Caption-Web-Regular.ttf387,192192,239110,37242.59%
AveriaSansLibre-Italic.ttf128,89669,82940,01642.69%
Marvel-Italic.ttf40,66822,65412,97642.72%
Volkhov-Bold.ttf112,22054,78431,37242.74%
AveriaSerifLibre-BoldItalic.ttf138,20874,21542,47642.77%
AveriaSansLibre-LightItalic.ttf134,20072,10741,26042.78%
AveriaLibre-Italic.ttf128,84869,59339,80842.80%
Cabin-BoldItalic.ttf176,99281,96246,88042.80%
Cabin-SemiBold.ttf173,02078,40944,80842.85%
Volkhov-Regular.ttf112,27655,24431,56442.86%
PT_Serif-Web-Regular.ttf359,048176,546100,78442.91%
AveriaLibre-LightItalic.ttf133,54471,53940,83242.92%
Caudex-Italic.ttf559,440218,129124,39642.97%
CabinCondensed-Bold.ttf166,91275,68743,15242.99%
CabinCondensed-SemiBold.ttf168,73276,68543,70043.01%
Cabin-SemiBoldItalic.ttf181,88084,39948,06843.05%
CabinCondensed-Medium.ttf167,00475,69043,10043.06%
Cabin-Italic.ttf190,74488,46750,33243.11%
PT_Sans-Narrow-Web-Bold.ttf487,720249,274141,39243.28%
Cabin-MediumItalic.ttf183,84485,73748,59243.32%
Cabin-Medium.ttf176,07680,00345,29243.39%
Cabin-Regular.ttf188,32085,86148,60443.39%
AveriaSansLibre-BoldItalic.ttf135,85273,09241,33243.45%
OpenSans-CondBold.ttf264,372122,22269,11643.45%
AveriaLibre-BoldItalic.ttf135,66472,90141,21243.47%
Cabin-Bold.ttf172,57677,72643,92843.48%
PT_Sans-Web-Italic.ttf436,452219,713123,91243.60%
AlikeAngular-Regular.ttf123,28059,75433,68043.64%
Shanti-Regular.ttf91,35249,65927,90843.80%
Volkhov-Italic.ttf102,36049,26627,68443.81%
Geostar-Regular.ttf41,28821,52412,04844.03%
JosefinSlab-Thin.ttf200,01269,01738,61644.05%
PT_Sans-Web-Bold.ttf470,240238,930133,41244.16%
PT_Serif-Web-Bold.ttf339,996161,67290,28044.16%
Roboto-ThinItalic.ttf197,892105,22658,60844.30%
PT_Sans-Web-BoldItalic.ttf375,204183,406102,11244.32%
Aubrey-Regular.ttf112,41655,23730,73644.36%
Roboto-Thin.ttf195,576101,91956,67644.39%
PT_Sans-Narrow-Web-Regular.ttf396,212192,746106,97244.50%
JosefinSlab-ThinItalic.ttf197,40467,27537,25644.62%
PT_Serif-Web-BoldItalic.ttf337,580160,91389,04044.67%
Forum-Regular.ttf303,316131,78672,41245.05%
NanumMyeongjo-Bold.ttf4,144,2161,543,206845,34445.22%
GeostarFill-Regular.ttf38,82420,28011,09645.29%
GFSNeohellenicItalic.ttf369,060117,44163,04846.32%
OpenSans-Semibold.ttf221,328112,39860,21646.43%
NanumMyeongjo-ExtraBold.ttf4,739,7161,913,8821,023,99646.50%
Federo-Regular.ttf145,05669,00536,84846.60%
PT_Sans-Caption-Web-Bold.ttf398,780194,274103,42046.77%
OpenSans-Bold.ttf224,592112,95560,03646.85%
OpenSans-ExtraBold.ttf222,584112,50559,78046.86%
GFSNeohellenicBold.ttf344,708109,09557,90446.92%
OpenSans-Light.ttf222,412112,06159,41246.98%
OpenSans-CondLight.ttf221,108110,84558,63247.10%
OpenSans-Regular.ttf217,360110,30358,30047.15%
OpenSans-SemiboldItalic.ttf212,820108,80557,40047.25%
NanumMyeongjo-Regular.ttf3,800,0081,347,779708,72047.42%
RalewayDots-Regular.ttf465,136120,28163,13247.51%
OpenSans-Italic.ttf212,896108,26156,44847.86%
GFSNeohellenicBoldItalic.ttf362,080114,76359,52048.14%
OpenSans-BoldItalic.ttf213,292108,16756,03648.19%
GFSNeohellenic.ttf460,072152,30478,87248.21%
OpenSans-ExtraBoldItalic.ttf213,420108,62556,19248.27%
OpenSans-LightItalic.ttf213,128108,27355,91648.36%
OpenSans-CondLightItalic.ttf210,804106,93855,06448.51%
NanumPenScript-Regular.ttf3,789,7521,543,584785,86049.09%
Questrial-Regular.ttf64,55232,64315,77651.67%
NanumBrushScript-Regular.ttf3,745,3761,517,249714,58852.90%
VarelaRound-Regular.ttf84,02840,97519,10053.39%
Jura-DemiBold.ttf326,140151,04267,93255.02%
Jura-Medium.ttf345,824155,99370,04455.10%
Jura-Regular.ttf338,940154,31369,00855.28%
PaytoneOne.ttf193,47291,08239,12857.04%
Jura-Light.ttf266,744117,03445,76860.89%


Appendix B: MicroType Express-style plus Brotli compression data

Compression results, Google Fonts corpus, with Brotli [October 2013]

Average compression improvement with WOFF 2.0
 25.11%
Median 23.94%
Standard deviation 6.46%
Minimum 11.93%
Maximum 55.32%

Font filenameOriginal (bytes)WOFF 1.0 (gzip)WOFF 2.0 (Brotli)% Improvement
Total Corpus156,317,37671,154,97250,524,08028.99%
Rochester-Regular37,84824,23621,34411.93%
Tinos-Italic58,11639,03634,26412.22%
Tinos-Bold55,12837,48832,86012.35%
Cousine-Italic49,60034,36029,98412.74%
Tinos-BoldItalic62,03239,93634,80012.86%
Cousine-Regular43,91230,40426,49212.87%
DroidSerif-Bold48,87631,58427,49212.96%
Pacifico43,63228,73624,85213.52%
Tinos-Regular57,96438,19233,02813.52%
DroidSansThai-Regular35,68818,88016,32013.56%
Cousine-BoldItalic45,48431,38027,12413.56%
Miniver-Regular45,82429,18825,18413.72%
Damion-Regular51,99630,24426,08813.74%
Chewy41,19224,87621,45613.75%
NotoSansThai-Regular32,90017,88015,42013.76%
NotoSansThaiUI-Regular33,06018,03215,54813.78%
GochiHand-Regular37,35225,15221,63213.99%
Cousine-Bold42,20029,28025,18014.00%
DroidSerif43,64827,82423,91614.05%
Arbutus-Regular81,81641,35635,50414.15%
DroidSerif-BoldItalic45,65229,12424,99214.19%
DroidSans-Bold42,48027,54823,61214.29%
HennyPenny-Regular92,59658,79250,32814.40%
DroidSans41,02826,34422,53214.47%
MysteryQuest-Regular42,12427,38823,36014.71%
CherryCreamSoda50,34031,11226,47214.91%
SigmarOne66,50439,20433,20815.29%
Arvo-Regular40,52427,16822,99615.36%
Cedarville-Cursive69,43637,88832,06015.38%
Phetsarath-Bold156,84033,13628,02015.44%
SnowburstOne-Regular68,36047,03639,76815.45%
Arvo-BoldItalic43,12827,89223,56015.53%
Calligraffitti-Regular59,85237,99232,06015.61%
Arvo-Italic43,81628,17223,76015.66%
Satisfy-Regular47,92828,60024,12015.66%
Oregano-Regular80,32044,22837,28415.70%
IrishGrowler52,66829,82025,11215.79%
Oregano-Italic87,00047,90440,32815.81%
Slackey37,93223,95620,16415.83%
SwankyandMooMoo58,89230,85225,96815.83%
Arvo-Bold37,56425,30821,29615.85%
Kavoon-Regular58,01235,24429,63615.91%
DroidSerifThai-Bold28,72016,62013,96815.96%
DenkOne-Regular45,89224,93620,95615.96%
FingerPaint-Regular107,40467,92857,05216.01%
Asset52,01625,65621,54816.01%
IMFeFCit28P158,18494,52479,37216.03%
ClickerScript-Regular64,01234,96029,34816.05%
Engagement-Regular76,40839,29232,96016.12%
DonegalOne-Regular56,94434,98829,32416.19%
IMFeFCrm28P145,83284,48070,80416.19%
GloriaHallelujah60,05232,59227,30016.24%
Zeyada63,06433,04827,68016.24%
NotoSerifThai-Bold28,38016,74814,02416.26%
IrishGrover52,68829,85624,98816.30%
OldStandard-Italic65,85235,27229,51616.32%
ComingSoon59,20434,96029,22016.42%
GoudyBookletter191173,49242,28035,33616.42%
LifeSavers-Bold179,81670,99659,30816.46%
Smythe-Regular90,65246,74039,02016.52%
NotoSansLaoUI-Regular40,32019,32816,12416.58%
IndieFlower61,55633,04427,56416.58%
CraftyGirls75,42047,55239,64416.63%
Michroma64,94033,36827,80016.69%
NotoSansThaiUI-Bold27,96016,41213,67216.70%
NotoSansThai-Bold27,87616,31613,58816.72%
Stalemate-Regular75,35639,70433,04816.76%
Eater-Regular83,92856,06846,66816.77%
Rancho-Regular44,84026,32821,91216.77%
Knewave-Regular32,46021,90418,22416.80%
IMFeFCsc28P136,18877,68464,61616.82%
Molle-Regular52,20434,14028,38816.85%
TheGirlNextDoor53,46032,44026,97216.86%
NotoSerifArmenian-Bold24,67215,74813,09216.87%
EaterCaps-Regular84,11656,18846,69616.89%
DroidSansThai-Bold28,24416,18813,45216.90%
jsMath-cmmi1046,14827,16422,55216.98%
Gruppo-Regular84,71634,69628,80016.99%
ShadowsIntoLight54,30428,50023,65617.00%
NotoSerifThai-Regular28,95216,54013,72817.00%
LaBelleAurore59,62431,26425,94417.02%
ArchitectsDaughter43,38023,90019,82017.07%
Pompiere-Regular36,73625,22020,90817.10%
RockSalt125,13675,29262,39217.13%
JacquesFrancois-Regular60,44836,46030,20417.16%
Romanesco-Regular52,52828,45623,57217.16%
DroidSerifThai-Regular29,26016,41213,59217.18%
Tienne-Bold69,36839,93233,04817.24%
DroidSerif-Italic40,41626,45621,89217.25%
AnnieUseYourTelescope51,12027,11622,43617.26%
Souliyo-Regular22,50813,33211,02817.28%
Lancelot-Regular49,78431,52826,07617.29%
JollyLodger-Regular39,80024,15219,97217.31%
AutourOne-Regular87,88853,59644,32017.31%
NotoSansLao-Regular41,12819,76016,33617.33%
Bonbon-Regular83,05243,04435,58017.34%
GiveYouGlory43,01226,40421,81217.39%
WaitingfortheSunrise59,24031,20425,77617.40%
jsMath-cmti1047,61626,92422,24017.40%
Orienta-Regular63,92428,38823,44817.40%
ShortStack-Regular68,15235,34029,18817.41%
CoveredByYourGrace57,04028,52023,55217.42%
Tienne-Regular73,90039,78832,84817.44%
FjallaOne-Regular36,57223,26819,20817.45%
JacquesFrancoisShadow-Regular82,49253,80044,40017.47%
CreepsterCaps-Regular58,18435,04028,90417.51%
GrandHotel-Regular65,01230,51625,16017.55%
jsMath-cmsy1043,45624,82420,46017.58%
Arimo-Italic42,13627,70022,82017.62%
BadScript-Regular54,40037,36430,78017.62%
Fruktur-Regular68,31641,70434,33217.68%
Parisienne-Regular61,24834,80028,63617.71%
Podkova-Regular60,17236,71230,20817.72%
Monofett58,13221,08817,34817.74%
Butcherman-Regular66,33644,38036,50017.76%
Sancreek-Regular49,67232,10826,40417.77%
NotoSerifLao-Regular41,22419,37615,93217.77%
Yesteryear-Regular64,85636,92030,34017.82%
Inconsolata-Regular84,86850,86041,78417.85%
Unkempt-Bold191,09693,17676,51617.88%
RugeBoogie-Regular63,53235,62829,25617.88%
Phetsarath-Regular40,54419,50016,01217.89%
NotoSansHebrew-Regular25,85613,63611,19617.89%
NotoSansHebrew-Bold26,10813,78811,32017.90%
Piedra-Regular75,98036,00429,54417.94%
NotoSansTamilUI-Regular57,46832,00426,26017.95%
ButchermanCaps-Regular66,45644,61636,60817.95%
Kristi47,47632,78026,87618.01%
jsMath-cmbx1051,86028,18023,09618.04%
Arimo-Regular43,61627,06822,18418.04%
BerkshireSwash-Regular58,36429,12423,86818.05%
Bentham-Regular55,49631,18425,55618.05%
Meddon128,63284,34869,10018.08%
Tangerine_Regular61,48431,74025,97618.16%
Schoolbell48,88828,28023,14018.18%
RumRaisin-Regular61,81234,81228,48418.18%
BowlbyOneSC-Regular55,20038,86031,78818.20%
NothingYouCouldDo34,92022,33618,26418.23%
NotoSerifArmenian-Regular23,88415,19212,41618.27%
NotoSansTamil-Regular57,34431,90826,07618.28%
IMFeENit28P202,368121,04098,81218.36%
TradeWinds-Regular85,74446,92438,29618.39%
Arimo-Bold41,51226,24421,41218.41%
Arimo-BoldItalic42,60027,14422,14418.42%
NotoSerifGeorgian-Regular34,34021,45217,50018.42%
Tangerine_Bold66,49234,17227,86018.47%
NotoSansArmenian-Regular23,05614,49211,81218.49%
NotoSansTamil-Bold57,14831,22825,43618.55%
BenchNine-Regular57,64832,55226,50018.59%
IMFePIrm28P216,968123,344100,40818.60%
NotoSansTamilUI-Bold57,35231,38025,54418.60%
Corben-Bold139,57669,67656,70818.61%
SortsMillGoudy-Italic105,67644,46836,18418.63%
Rokkitt-Regular57,28027,38822,28418.64%
BenchNine-Light55,24832,00426,03618.65%
NotoSerifGeorgian-Bold31,98420,07216,32418.67%
jsMath-cmr1050,31227,30822,20818.68%
NotoSansLao-Bold39,37617,86814,52818.69%
NotoSerifLao-Bold40,47217,87614,52418.75%
IMFePIit28P244,584137,272111,46418.80%
SirinStencil-Regular69,33239,48432,06018.80%
Shojumaru-Regular71,67241,05233,32018.83%
Tauri-Regular35,14021,87617,75218.85%
NotoSansGeorgian-Bold30,79219,17215,55618.86%
IMFeDPit28P255,092142,336115,45618.88%
IMFeGPit28P249,324140,432113,89618.90%
IMFeGPrm28P216,552123,05299,79618.90%
Nokora-Regular50,80425,28420,50418.91%
IMFeDPrm28P210,916119,92497,24818.91%
Radley-Italic90,74444,83636,35618.91%
Tienne-Heavy77,05237,98430,79618.92%
Vollkorn-Bold68,60834,93228,31618.94%
MountainsofChristmas-Regular122,54474,19260,14018.94%
OFLGoudyStMTT173,52080,56865,27218.99%
Lohit-Devanagari64,23234,67628,08819.00%
Dynalight-Regular53,14828,26822,89619.00%
NotoSansArmenian-Bold22,82414,43211,68819.01%
Marcellus-Regular46,00424,36019,72819.01%
OFLGoudyStMTT-Italic161,22877,44862,70419.04%
IMFeENrm28P194,992117,23294,88819.06%
EagleLake-Regular78,00045,60436,90819.07%
Marmelad-Regular117,39658,00446,94019.07%
SofadiOne-Regular52,73227,75222,45219.10%
Nosifer-Regular43,25622,50018,20019.11%
AmaticSC-Regular39,98825,49220,62019.11%
Oswald-Regular50,94427,01621,85219.11%
CaesarDressing-Regular89,62840,13232,46019.12%
PlayfairDisplaySC-Bold131,14063,29251,17619.14%
NotoSansGeorgian-Regular30,62819,18815,50819.18%
SpicyRice-Regular67,24438,01630,72019.19%
BenchNine-Bold59,27233,05626,70419.22%
LondrinaOutline-Regular79,92043,15634,84819.25%
Nunito-Bold49,54430,12024,32019.26%
SortsMillGoudy-Regular121,36848,50039,15619.27%
GravitasOne41,44819,74015,93619.27%
UnifrakturCook-Bold42,68428,16022,72819.29%
DroidSansMono117,89275,35660,80019.32%
Inconsolata-Bold67,72433,33626,88019.37%
Vollkorn-Regular62,00431,69625,55219.38%
PTM55FT185,91299,80080,44419.39%
Sniglet-Regular31,90417,52414,12419.40%
Rokkitt-Bold62,69230,89224,89619.41%
Coustard-Regular79,54439,04031,45619.43%
NotoSansLaoUI-Bold39,21217,74414,29619.43%
Vollkorn-BoldItalic55,20827,52422,16419.47%
Revalia-Regular61,43230,67624,69619.49%
CarterOne66,53239,94032,15219.50%
OvertheRainbow47,50828,21222,70819.51%
Ribeye-Regular78,49244,09635,48419.53%
LifeSavers-Regular198,20869,26455,72819.54%
Radley-Regular90,32045,85236,88819.55%
Combo-Regular132,84844,39635,71219.56%
RibeyeMarrow-Regular84,88845,20836,36419.56%
SeaweedScript-Regular117,07257,46046,21219.58%
MarcellusSC-Regular47,88824,63619,81219.58%
Puritan-Bold54,56428,92023,25219.60%
Puritan-BoldItalic59,23231,50425,32819.60%
PlayfairDisplaySC-Black128,89661,68849,58819.61%
Podkova-Bold50,56431,41225,24419.64%
PlayfairDisplaySC-Regular127,06458,64847,12819.64%
MrBedfort-Regular37,25222,14417,79219.65%
OldStandard-Regular64,77631,66025,43619.66%
Creepster-Regular62,72436,64829,43219.69%
PlayfairDisplay-Bold181,96485,63668,77219.69%
YanoneKaffeesatz-Bold73,00035,47628,48419.71%
IMFePIsc28P198,012111,35289,38019.73%
Vollkorn-Italic57,55228,37622,77619.73%
Akronim-Regular109,54068,98455,34819.77%
Copse-Regular72,47234,80027,88819.86%
FascinateInline-Regular59,60429,96424,01219.86%
AmaticSC-Bold37,85224,70419,79619.87%
Dhyana-Bold61,29637,84430,32419.87%
HanaleiFill-Regular92,10838,22030,62419.87%
IMFeDPsc28P197,012110,00888,12819.89%
CutiveMono-Regular69,17235,18028,18019.90%
NosiferCaps-Regular43,63622,76418,23219.91%
DawningofaNewDay65,34029,86823,92019.91%
VastShadow-Regular62,33232,25625,83219.92%
Nunito-Regular49,79228,23622,60019.96%
PinyonScript-Regular62,12033,16426,54419.96%
Dhyana-Regular72,34441,51633,22819.96%
EuphoriaScript-Regular38,42420,89616,72419.97%
SixCaps46,38826,15220,92419.99%
PlayfairDisplay-Black178,79282,95666,37219.99%
Oswald-Light44,74025,10820,08819.99%
Coustard-Black82,64841,25633,00420.00%
LeckerliOne-Regular43,21222,20417,76020.01%
IMFeENsc28P183,932109,12087,28020.01%
Astloch-Bold75,68438,20830,56020.02%
OldStandard-Bold65,92432,54426,02820.02%
Puritan-Regular54,73628,54822,82820.04%
Puritan-Italic59,59231,28425,01220.05%
PlayfairDisplaySC-BoldItalic126,02866,79653,39220.07%
BilboSwashCaps-Regular58,14830,37224,27620.07%
Coda-Regular86,99239,12831,27220.08%
VampiroOne-Regular29,04419,38815,49220.09%
DoppioOne-Regular55,70431,71625,34020.10%
AnonymousPro-BoldItalic142,01661,71649,30820.10%
Fascinate-Regular51,90025,87620,66820.13%
GoblinOne36,73618,90815,10020.14%
RougeScript-Regular46,75222,36417,85620.16%
LindenHill-Italic94,52050,30840,16020.17%
MissFajardose-Regular58,87230,29624,17620.20%
MouseMemoirs-Regular55,93232,46825,90820.20%
HomemadeApple110,00864,14051,17620.21%
PlayfairDisplay-Regular176,25279,41663,35620.22%
LondrinaShadow-Regular85,51244,74835,68420.26%
Amaranth-Regular80,00839,86031,78020.27%
Norican-Regular46,86027,98022,30420.29%
Ovo-Regular50,85623,89219,04020.31%
LondrinaSolid-Regular52,02825,35620,20020.33%
AnonymousPro-Bold153,70866,80053,21620.34%
NewsCycle-Bold73,91236,06428,72420.35%
FanwoodText-Italic96,35651,87641,31620.36%
BowlbyOne-Regular61,61236,33628,93620.37%
BigelowRules-Regular59,44433,46826,65220.37%
Galindo-Regular58,10433,74826,87220.37%
MerriweatherSans-Regular48,52430,18824,02420.42%
Oldenburg-Regular46,24427,47621,86420.43%
PlayfairDisplaySC-Italic121,45263,57650,57620.45%
Stoke-Light50,82027,31621,71620.50%
Oswald-Bold53,05628,68022,80020.50%
SourceSansPro-BoldItalic116,08855,72844,30020.51%
Iceberg-Regular42,80819,73615,68820.51%
Sacramento-Regular79,69641,09232,66020.52%
WalterTurncoat153,86879,08862,84420.54%
NotoSansOsmanya-Regular7,1925,1724,10820.57%
NoticiaText-Bold113,24459,12446,95620.58%
Corben-Regular36,00023,90818,98420.60%
Iceland-Regular47,63219,50415,48020.63%
ChelseaMarket-Regular172,92481,83264,93620.65%
JosefinSans-Thin33,00019,05615,12020.65%
JosefinSans-Regular33,00819,61615,56420.66%
QuattrocentoSans-Regular98,34038,29230,37620.67%
Englebert-Regular53,04830,88024,49220.69%
DrSugiyama-Regular39,92821,77217,26820.69%
Quintessential-Regular73,89243,86834,79220.69%
McLaren-Regular54,50431,74825,17620.70%
YanoneKaffeesatz-ExtraLight77,02437,90030,05220.71%
MrDafoe-Regular47,97624,79619,66020.71%
Warnes-Regular99,01234,79627,58820.72%
jsMath-cmex1034,16418,84814,94020.73%
IMFeGPsc28P203,776114,45290,72020.74%
StardosStencil-Bold34,81622,47617,80820.77%
ABeeZee-Regular46,12424,82419,66820.77%
QuattrocentoSans-BoldItalic100,74839,74431,48820.77%
Oxygen-Light43,85225,98820,58420.79%
QuattrocentoSans-Bold100,56038,33230,36020.80%
DroidTV-Regular37,51221,27216,84420.82%
Nunito-Light48,57627,82422,03220.82%
OriginalSurfer-Regular57,79234,11627,01220.82%
Coda-Heavy90,47639,20431,04020.82%
SueEllenFrancisco60,96027,81222,02020.83%
Arizonia-Regular50,73626,99221,36820.84%
Simonetta-Black124,70063,97250,64020.84%
Amethysta-Regular67,04434,99627,70020.85%
NotoSerif-Bold373,248224,992178,08420.85%
SourceSansPro-Italic116,68456,05244,36420.85%
YanoneKaffeesatz-Regular76,58838,03630,10020.86%
MerriweatherSans-ExtraBold50,96830,90424,45220.88%
PlayfairDisplay-BoldItalic173,12089,69670,96020.89%
ShadowsIntoLightTwo-Regular39,39625,56820,22420.90%
HoltwoodOneSC36,74019,78415,64820.91%
MarkoOne-Regular34,48021,56417,05220.92%
PlayfairDisplaySC-BlackItalic127,19665,17251,52820.94%
DroidTV-Bold37,22821,06416,65220.95%
Anaheim-Regular43,43625,84420,42820.96%
Alegreya-Bold177,57680,72863,79620.97%
Qwigley-Regular40,44422,59217,85220.98%
DellaRespira-Regular51,20827,80421,96820.99%
Prociono-Regular31,13219,09215,08420.99%
YanoneKaffeesatz-Light77,29638,27630,23621.01%
SeymourOne-Regular74,42842,84033,84021.01%
UncialAntiqua-Regular63,40433,77226,67221.02%
AnonymousPro-Italic144,51663,76450,34821.04%
ABeeZee-Italic47,76425,72020,30821.04%
nobile_bold_italic86,16853,98442,62421.04%
ConcertOne-Regular71,07234,25227,04421.04%
SourceSansPro-SemiboldItalic116,46856,00844,22021.05%
HerrVonMuellerhoff-Regular46,62425,37620,02821.08%
NotoSerif-Regular353,044208,420164,49221.08%
KarlaTamilInclined-Bold108,80447,88037,78821.08%
SourceSansPro-BlackItalic116,24454,65243,13221.08%
JosefinSlab-Regular110,74051,68440,78821.08%
PontanoSans-Regular126,59644,73635,30421.08%
Cagliostro-Regular37,82020,91616,50421.09%
FjordOne-Regular54,15226,65621,02821.11%
nobile_bold61,59240,00431,55621.12%
MerriweatherSans-Light47,11229,82423,52421.12%
MountainsofChristmas-Bold123,40074,43658,70821.13%
MrsSheppards-Regular42,38423,15218,26021.13%
nobile_italic92,02855,86044,05621.13%
Prata-Regular33,39218,26414,40421.13%
KarlaTamilInclined-Regular109,70048,44838,20421.14%
MrsSaintDelafield-Regular49,39626,72821,07621.15%
JosefinSlab-Light113,84451,31240,46021.15%
RopaSans-Italic42,39624,16419,05221.16%
LovedbytheKing28,25218,52014,60021.17%
SourceSansPro-LightItalic116,38455,90044,04821.20%
JosefinSans-Bold32,91219,28815,19621.22%
Aladin-Regular42,16020,94816,50021.23%
JosefinSans-SemiBold33,00419,58015,42021.25%
Chicle-Regular41,00821,27216,75221.25%
Monda-Regular43,60424,94419,64021.26%
Amaranth-Italic97,71247,23237,18421.27%
Nokora-Bold42,34420,64416,25221.27%
DroidNaskh-Bold95,31252,92841,66421.28%
Bitter-Regular90,62844,92435,36021.29%
AguafinaScript-Regular47,22822,69617,86421.29%
JosefinSlab-Bold88,30841,89232,97221.29%
JosefinSans-LightItalic37,33621,05216,56821.30%
Kranky199,320100,93679,43221.30%
Oxygen-Regular48,09228,26422,24021.31%
AnonymousPro-Regular158,08070,00455,07621.32%
AlexBrush-Regular49,02025,61620,15221.33%
MerriweatherSans-Bold51,04830,81624,24021.34%
JosefinSlab-SemiBold101,32846,28436,40421.35%
PlayfairDisplay-BlackItalic168,42885,91667,56821.36%
nobile65,14041,10032,32021.36%
JosefinSans-Light33,18019,50015,33221.37%
DroidNaskh-Regular91,97650,73639,88421.39%
Griffy-Regular208,77697,87676,93621.39%
JosefinSans-SemiBoldItalic37,09221,20816,66821.41%
MacondoSwashCaps-Regular33,00817,85614,03221.42%
UnifrakturMaguntia-Book88,50845,59635,82421.43%
JosefinSans-BoldItalic37,00820,82816,36421.43%
Cutive-Regular98,18443,57234,23221.44%
Chivo-Regular50,84428,20422,15221.46%
QuattrocentoSans-Italic108,70044,67235,08421.46%
Cookie-Regular43,80021,72817,06421.47%
DeliusUnicase-Regular32,90416,71213,12421.47%
CodaCaption-Heavy74,04440,90832,12421.47%
JosefinSlab-Italic115,49253,32041,86821.48%
SourceSansPro-ExtraLightItalic116,94054,68842,94021.48%
NoticiaText-Regular115,28859,96847,08421.48%
Frijole-Regular227,860121,92095,72421.49%
AllertaStencil-Regular20,26013,32010,45621.50%
PlayfairDisplay-Italic165,86885,15266,84021.51%
AlfaSlabOne-Regular36,50419,95615,66421.51%
Alegreya-BoldItalic170,75679,23662,19221.51%
Bilbo-Regular42,90823,57218,50021.52%
Lohit-Bengali139,45668,48053,73221.54%
Quattrocento-Regular158,20056,13244,03621.55%
Ruthie-Regular57,19630,21223,70021.55%
Sevillana-Regular162,87278,58461,64021.56%
Peralta-Regular59,60035,36827,74021.57%
LoversQuarrel-Regular61,87231,54024,73621.57%
NotoSansDevanagariUI-Regular176,78078,68461,70421.58%
Anton42,37623,18418,18021.58%
Geo-Oblique50,03620,65216,19221.60%
CarroisGothic-Regular41,68022,99618,02821.60%
Alegreya-Black172,46878,69661,69221.61%
Molengo-Regular65,46433,22026,03621.63%
SourceCodePro-Black120,35654,59642,78821.63%
Rosarivo-Regular41,34421,62016,94421.63%
ArbutusSlab-Regular70,00439,13630,66821.64%
LindenHill-Regular124,84454,60442,78021.65%
PasseroOne-Regular33,62419,94815,62821.66%
RopaSans-Regular41,79622,10817,32021.66%
NotoSansDevanagari-Regular178,28079,47662,25621.67%
MrDeHaviland-Regular44,67224,10818,88421.67%
JosefinSans-Italic37,04421,08016,51221.67%
Oxygen-Bold48,81228,59222,39621.67%
Milonga-Regular209,94869,04454,07621.68%
Risque-Regular59,39233,65226,35621.68%
Fondamento-Italic78,76039,83231,19621.68%
CabinSketch-Bold282,864177,496138,99621.69%
Condiment-Regular43,37623,98818,78421.69%
Amaranth-Bold73,97636,51628,58821.71%
Merriweather-Light47,04425,01619,58421.71%
SourceCodePro-Regular120,54855,47243,42021.73%
Bangers39,67621,53616,85621.73%
SourceCodePro-ExtraLight121,56854,89642,95621.75%
Candal32,81620,10415,72021.81%
NotoSansDevanagariUI-Bold170,78474,26458,06821.81%
Geo-Regular38,67616,72413,07621.81%
Simonetta-BlackItalic123,03663,05249,29621.82%
NotoSerif-BoldItalic336,020197,072154,06821.82%
NotoSansDevanagari-Bold172,35275,08458,68821.84%
Alegreya-BlackItalic173,23279,86862,42421.84%
SourceCodePro-Bold120,50455,34443,25621.84%
Astloch-Regular51,01224,36019,03621.86%
Merriweather-Bold46,94025,28419,75621.86%
Allerta-Regular19,59612,6129,85221.88%
JosefinSlab-BoldItalic42,84822,32817,44021.89%
StintUltraCondensed-Regular40,27221,97617,16421.90%
SourceCodePro-Light121,28455,69643,49621.90%
MeriendaOne-Regular30,54017,45613,62821.93%
Skranji-Bold207,29297,04075,75221.94%
SourceCodePro-Medium120,24455,34443,18821.96%
StardosStencil-Regular46,88824,92419,44421.99%
LeagueScript69,21639,73230,99222.00%
Actor-Regular64,94432,11625,04422.02%
Federant-Regular78,12836,84828,73222.03%
PurplePurse-Regular62,86836,11628,16022.03%
Habibi-Regular36,26022,32817,40822.04%
KronaOne-Regular35,16820,81616,22822.04%
OleoScriptSwashCaps-Bold39,78022,10017,22822.05%
JosefinSans-ThinItalic37,62420,93216,31622.05%
MonsieurLaDoulaise-Regular54,28826,64020,76422.06%
FredokaOne-Regular43,50021,94417,10022.07%
Sunshiney160,22882,12863,99222.08%
Baumans-Regular53,40827,82821,68022.09%
SourceCodePro-Semibold120,25255,36043,12022.11%
Fondamento-Regular87,16043,95234,23222.12%
Scada-Bold85,70439,31630,62022.12%
DancingScript-Bold115,56860,15646,84822.12%
Trykker-Regular38,14023,74018,48422.14%
Brawler-Regular106,04454,42442,37222.14%
Spirax-Regular49,06422,37217,41222.17%
JosefinSlab-SemiBoldItalic143,22063,97649,78822.18%
Simonetta-Regular132,08468,49253,29622.19%
Overlock-BoldItalic45,83223,54418,32022.19%
Alegreya-Regular202,16892,32871,83622.19%
KaushanScript-Regular210,67277,76460,50022.20%
Quando-Regular119,68852,16840,58422.21%
EmilysCandy-Regular237,216114,80089,29222.22%
Monda-Bold48,75227,02021,01622.22%
OverlockSC-Regular36,64018,75614,58822.22%
CevicheOne-Regular36,92022,18417,24822.25%
Scada-BoldItalic88,04841,63232,36822.25%
Alegreya-Italic199,74491,65671,24422.27%
Handlee-Regular39,12822,93217,82422.27%
Carme-Regular78,02826,28820,42822.29%
ChelaOne-Regular35,72019,84815,42022.31%
FanwoodText-Regular119,20063,88049,62422.32%
Niconne-Regular45,61624,99219,41222.33%
SourceSansPro-Regular149,50868,38453,10022.35%
SourceSansPro-Light149,91668,29253,00422.39%
SourceSansPro-ExtraLight150,15266,84451,87622.39%
OleoScriptSwashCaps-Regular40,08821,65216,79222.45%
Montez-Regular77,19239,24830,43222.46%
Hanuman128,37644,74434,68822.47%
Overlock-BlackItalic44,08822,67617,57622.49%
StintUltraExpanded-Regular42,78823,19217,96422.54%
Overlock-Black43,22422,04017,06822.56%
Electrolize-Regular55,71224,24018,76422.59%
DroidKufi-Regular81,59240,90031,65622.60%
YesevaOne-Regular101,03646,46835,96422.60%
Spinnaker-Regular24,98816,08412,44822.61%
Stoke-Regular133,34057,78044,71622.61%
Kreon-Bold38,22019,00414,70422.63%
Rosarivo-Italic39,23620,83616,12022.63%
Merriweather-Black46,96024,29618,79222.65%
OxygenMono-Regular68,94034,34826,56422.66%
Sail-Regular32,65619,22014,86422.66%
NewsCycle-Regular193,99284,76865,55622.66%
Syncopate-Bold65,43230,56423,63222.68%
Scada-Regular86,47239,44430,49622.69%
SourceSansPro-Semibold149,35268,24452,75622.70%
PermanentMarker74,63240,48031,29222.70%
Scada-Italic86,51641,06031,74022.70%
DroidKufi-Bold81,60841,19631,84422.70%
DroidSansTamil-Bold36,61219,18414,82822.71%
BubblegumSans-Regular38,81620,80016,07622.71%
Overlock-Bold42,36422,06017,04822.72%
KarlaTamilUpright-Regular144,44065,09650,29622.74%
Unkempt-Regular192,40095,49673,78022.74%
ExpletusSans-Regular57,42827,46421,21622.75%
DroidSansTamil-Regular36,48419,34814,94422.76%
ArchivoBlack-Regular129,84849,75638,42822.77%
Telex-Regular68,80427,29221,07622.78%
CarroisGothicSC-Regular40,30821,90016,91222.78%
DancingScript-Regular116,58059,33645,80422.81%
Kenia-Regular65,15629,15622,50422.82%
LemonOne-Regular31,43617,88013,80022.82%
SourceSansPro-Black148,17666,15251,05622.82%
SourceSansPro-Bold148,61667,85652,36422.83%
Devonshire-Regular67,23630,72423,70822.84%
CrimsonText-SemiboldItalic75,58840,14830,96822.87%
Simonetta-Italic122,35663,29648,80422.90%
Share-Regular91,94044,18034,06422.90%
Skranji-Regular207,92497,69675,31222.91%
Numans-Regular39,36819,37214,93222.92%
Julee-Regular30,87617,70413,64422.93%
Merriweather-Regular46,77623,40418,03622.94%
Hanumanb121,94842,89633,05622.94%
Monoton-Regular51,60026,76420,62422.94%
Raleway-Heavy129,52055,91643,06422.98%
Raleway-Thin123,94052,13640,15222.99%
CrimsonText-Semibold77,63639,41230,35222.99%
Share-Bold91,04844,14033,98823.00%
MedievalSharp148,71274,20857,13223.01%
Playball-Regular42,80822,20817,09623.02%
Lohit-Tamil66,18027,71221,33223.02%
Overlock-Italic44,16022,64817,43223.03%
KarlaTamilUpright-Bold143,22464,30049,48823.04%
SansitaOne47,42825,01219,24423.06%
Kreon-Regular37,43218,80414,46423.08%
Sofia-Regular29,79617,19213,22423.08%
DiplomataSC-Regular42,44421,64016,64423.09%
Unna-Regular26,42415,74812,11223.09%
Junge-Regular71,40038,78829,82423.11%
DeliusUnicase-Bold36,11215,88412,21223.12%
Merienda-Bold35,02818,02813,86023.12%
Paprika-Regular42,33622,46017,26423.13%
Kreon-Light37,40817,99613,83223.14%
PrincessSofia-Regular272,628130,404100,19223.17%
Neucha141,83265,05249,94023.23%
BigshotOne45,18819,95615,32023.23%
Diplomata-Regular43,32022,40817,19623.26%
ButterflyKids-Regular202,82498,17275,32423.27%
Kameron-Bold64,78837,71228,93223.28%
Clara-Regular168,25678,58060,28423.28%
Aldrich-Regular57,02026,35220,21223.30%
MavenPro-Regular99,25232,80825,15223.34%
Codystar-Regular106,50055,94842,89223.34%
Chango-Regular40,72820,96816,07223.35%
ExpletusSans-Italic39,44419,90015,25223.36%
ScheherazadeRegOT261,792116,40889,20423.37%
Bevan90,65248,48837,12823.43%
Salsa-Regular56,68024,86019,03223.44%
CrimsonText-Italic99,87255,54442,50423.48%
Margarine-Regular148,82083,32463,76023.48%
MavenPro-Medium100,06432,78825,08823.48%
CrimsonText-BoldItalic75,76439,25230,03223.49%
FreckleFace-Regular121,08867,01251,26023.51%
OleoScript-Bold34,62419,53214,94023.51%
Domine-Regular137,88053,22840,71223.51%
Esteban-Regular46,50423,63218,06823.54%
Merienda-Regular41,07221,48816,42823.55%
AlmendraSC-Regular36,05217,26413,19623.56%
PortLligatSlab-Regular38,16019,24014,70423.58%
MavenPro-Bold99,54432,96025,16823.64%
RacingSansOne-Regular145,79657,72844,06823.66%
JosefinSlab-LightItalic160,14471,60454,66023.66%
Domine-Bold146,20056,43643,08023.67%
DroidSansEthiopic-Regular228,48890,21268,85623.67%
Thabit124,07657,08043,54823.71%
NotoSerif-Italic325,656190,908145,64423.71%
MavenPro-Black99,11632,84025,04823.73%
Lemon-Regular34,64818,22013,89223.75%
Inder-Regular34,13220,45615,58823.80%
OleoScript-Regular34,98018,87214,36423.89%
Fenix-Regular45,14421,67216,49223.90%
HappyMonkey-Regular76,34439,38429,96423.92%
Lekton-Italic34,21217,07212,98823.92%
Abel-Regular36,40016,29612,39223.96%
Basic-Regular32,98819,86415,09624.00%
Lustria-Regular37,39618,49614,04824.05%
Overlock-Regular49,64425,60019,44024.06%
LondrinaSketch-Regular172,44083,84863,67224.06%
Inika-Bold38,72421,22016,11224.07%
ExpletusSans-Bold62,98429,11222,09624.10%
Rufina-Bold40,05619,14414,52824.11%
PollerOne31,58816,50012,52024.12%
FrederickatheGreat-Regular486,216278,840211,55624.13%
CinzelDecorative-Bold62,44028,41621,55224.16%
Macondo-Regular48,76822,14416,79224.17%
Cantarell-Bold49,27227,19220,61224.20%
Lusitana-Regular30,18416,85612,77624.21%
Righteous-Regular43,10422,94017,38424.22%
Asul-Bold33,54818,68814,16024.23%
LibreBaskerville-Bold161,10461,27646,40824.26%
DeliusSwashCaps-Regular63,05230,70823,24424.31%
Gorditas-Bold109,80058,80444,50424.32%
ExpletusSans-SemiBold67,94832,42024,52424.36%
Economica-Regular26,75215,49211,71224.40%
Asul-Regular33,51618,60414,06424.40%
NoticiaText-BoldItalic86,04445,60834,47624.41%
LibreBaskerville-Regular160,36460,24845,53624.42%
ElsieSwashCaps-Black39,41221,17215,99624.45%
Montaga-Regular33,95617,97213,57624.46%
ExpletusSans-SemiBoldItalic49,08823,32417,61624.47%
DroidSansEthiopic-Bold223,10486,60465,40824.47%
Rufina-Regular40,04019,21614,49624.56%
JustMeAgainDownHere72,06036,17227,28024.58%
Gorditas-Regular110,33661,12446,09224.59%
ExpletusSans-Medium69,07632,45224,46024.63%
Voltaire-Regular28,82414,98411,28824.67%
FugazOne-Regular27,86816,87612,71224.67%
Lusitana-Bold29,28416,38412,33624.71%
Wallpoet-Regular39,90419,80014,90824.71%
Thabit-Bold120,16057,68843,42424.73%
CinzelDecorative-Regular60,54026,69620,09224.74%
Chivo-Black55,40026,29619,78024.78%
Average-Regular37,83619,17214,42024.79%
Elsie-Black42,42422,50816,92824.79%
Mate-Regular28,20815,61611,74424.80%
TerminalDosis-Light109,50051,79638,94424.81%
Karla-BoldItalic18,67212,0169,02824.87%
Arapey-Italic29,55616,66012,51624.87%
NotoSansUI-Regular309,164177,516133,33624.89%
Ewert-Regular70,75220,08415,08424.90%
Quicksand-Bold23,40413,52810,16024.90%
Rambla-Italic37,13618,47613,87624.90%
Rambla-BoldItalic37,36418,79614,11624.90%
Cantarell-BoldOblique52,20030,43622,85224.92%
Cinzel-Bold57,73627,24820,44824.96%
Neuton-Regular56,67629,30821,98824.98%
NotoSans-Regular309,148177,508133,17224.98%
NotoSans-Bold313,860178,576133,96024.98%
Raleway-Light132,20059,58844,69624.99%
NotoSans-BoldItalic292,752173,720130,29625.00%
NotoSansUI-Bold313,876178,584133,91225.01%
Cinzel-Black58,61626,57619,92825.02%
GenBasBI246,888103,43277,55225.02%
Gafata-Regular37,43217,55613,16025.04%
LilitaOne-Regular28,09215,50811,62025.07%
Rosario-BoldItalic33,02819,97214,96425.08%
ExpletusSans-BoldItalic49,42822,48416,84425.08%
NotoSansUI-BoldItalic292,768173,736130,11625.11%
Rosario-Bold31,86419,63614,70425.12%
Raleway-Regular130,12859,97644,90825.12%
AtomicAge-Regular31,04818,18013,61225.13%
PatuaOne-Regular35,60819,69214,74025.15%
Quattrocento-Bold164,94859,44844,48825.16%
Belgrano-Regular29,07217,56413,14025.19%
MateSC-Regular29,84815,78811,80425.23%
Almendra-Italic35,32417,39613,00425.25%
Arapey-Regular26,75615,04411,24425.26%
RammettoOne-Regular30,42019,18014,33225.28%
GenBkBasBI245,912102,29276,43625.28%
Bitter-Bold25,89215,69611,72825.28%
Rationale-Regular57,15627,68420,68425.29%
ArchivoNarrow-BoldItalic130,26854,36840,61225.30%
StalinOne-Regular49,91223,25217,36425.32%
Muli-Italic51,18029,96822,37225.35%
Flamenco-Regular36,70019,04814,21625.37%
Felipa-Regular39,99621,69616,19225.37%
Cantarell-Oblique50,06827,79620,74425.37%
Economica-Bold27,19615,91611,87625.38%
Almendra-Bold36,72817,65613,17225.40%
CinzelDecorative-Black62,82427,13220,24025.40%
FrancoisOne113,11254,01640,28825.41%
Chivo-Italic30,85617,84413,30425.44%
MaidenOrange60,73232,65224,34425.44%
Raleway-ExtraLight122,40057,20842,64025.46%
Cinzel-Regular56,21225,42818,95225.47%
CantoraOne-Regular163,11663,48447,31225.47%
ExpletusSans-MediumItalic74,07232,59624,28425.50%
Roboto-Italic167,90878,11658,19225.51%
Almendra-BoldItalic35,49217,82813,28025.51%
NotoSansUI-Italic281,632167,032124,41225.52%
PortLligatSans-Regular34,38818,41213,71225.53%
Inika-Regular39,68821,20015,78825.53%
LateefRegOT246,224107,66880,17625.53%
Neuton-Italic74,19234,86825,96425.54%
RobotoCondensed-Italic163,90076,01656,59625.55%
Flamenco-Light34,73619,08014,20425.56%
Muli-Regular56,25231,86823,71625.58%
StalinistOne-Regular49,96023,26417,31225.58%
MontserratSubrayada-Regular24,33211,7248,72425.59%
Plaster-Regular32,85218,61613,85225.59%
Amaranth-BoldItalic107,53646,70434,73625.63%
NotoSans-Italic281,616167,028124,14425.67%
CabinSketch-Regular194,436103,19276,69225.68%
ArchivoNarrow-Bold126,70450,49237,52425.68%
RobotoCondensed-BoldItalic164,84076,79257,06825.68%
AlmendraDisplay-Regular39,33216,54812,29625.69%
RobotoCondensed-LightItalic164,43275,69656,23625.71%
JimNightshade-Regular153,68082,77261,48825.71%
NoticiaText-Italic87,39245,90434,09625.72%
KiteOne-Regular37,60819,77614,68825.73%
CrimsonText-Bold93,84844,40432,97225.75%
ArchivoNarrow-Italic126,50453,02039,36825.75%
Raleway-Medium129,30859,79244,38425.77%
Thabit-Oblique135,54861,21645,43625.78%
Mate-Italic27,70016,28012,07625.82%
Codystar-Light101,53651,54838,22025.86%
Roboto-Light159,64073,75654,68025.86%
Roboto-MediumItalic165,28077,10857,16425.87%
ElsieSwashCaps-Regular38,04418,64013,81625.88%
GildaDisplay-Regular36,80419,33214,32425.91%
Delius-Regular77,48037,08827,47625.92%
Flavors-Regular186,64095,19270,51225.93%
Raleway-SemiBold130,88060,38844,72425.94%
Yellowtail-Regular62,42032,50424,07225.94%
Roboto-Medium153,78072,91253,98425.96%
RobotoCondensed-Bold161,41673,74054,58825.97%
Share-BoldItalic75,83636,31226,87625.99%
Glegoo-Regular28,14415,50011,46826.01%
Economica-Italic27,69216,44812,16826.02%
RobotoCondensed-Regular159,86872,19653,40426.03%
Economica-BoldItalic27,02416,61212,28426.05%
MontserratSubrayada-Bold24,36411,6848,63626.09%
Redressed79,22042,61231,49226.10%
Rambla-Bold34,68817,38812,84826.11%
Rambla-Regular34,33217,06012,60426.12%
Italiana-Regular31,82815,09211,14426.16%
Comfortaa-Bold105,22053,54439,52026.19%
BubblerOne-Regular30,99215,08011,12826.21%
RobotoCondensed-Light160,80072,26053,30826.23%
Asap-BoldItalic32,22016,75212,35626.24%
Roboto-LightItalic162,92075,73655,85226.25%
Roboto-BlackItalic167,25278,46057,86026.26%
Chivo-BlackItalic32,32418,67613,77226.26%
TextMeOne-Regular37,34817,55612,94426.27%
Thabit-BoldOblique130,39261,35645,23226.28%
Rosario-Regular33,90819,37214,28026.29%
Rosario-Italic33,56418,77613,84026.29%
Balthazar-Regular28,20815,96411,76426.31%
Share-Italic76,60836,33626,76826.33%
Elsie-Regular41,04419,91214,66826.34%
Offside-Regular30,83615,59611,48826.34%
Raleway-ExtraBold125,13659,15643,55226.38%
Petrona-Regular80,75629,68421,85226.38%
Asap-Bold30,35215,71611,56826.39%
RuslanDisplay57,28019,99214,70826.43%
Roboto-Bold152,65271,49252,58426.45%
Comfortaa-Light127,53265,27648,00826.45%
Roboto-BoldItalic161,75276,85256,51626.46%
SpecialElite166,22490,74466,73226.46%
Karla-Bold17,86810,8647,98826.47%
Raleway-Bold128,24859,78843,96026.47%
Roboto-Black162,16075,77655,70426.49%
Roboto-Regular166,66876,60856,30826.50%
TenorSans-Regular131,89651,28037,66426.55%
EricaOne-Regular26,24414,97210,99226.58%
Convergence-Regular30,21616,39612,03626.59%
Cantarell-Regular47,49624,77618,18426.61%
ContrailOne-Regular31,17616,54812,14426.61%
Orbitron-Black37,58417,60012,91226.64%
Boogaloo-Regular33,92818,68013,70426.64%
Asap-Italic32,03216,94412,42826.65%
SignikaNegative-Regular53,79627,79220,37226.70%
Dosis-ExtraBold137,20065,58848,07626.70%
PatrickHandSC-Regular152,60866,83248,97626.72%
Asap-Regular30,74015,98811,71226.75%
Karla-Italic18,54811,1488,15626.84%
Dosis-Bold136,41265,64048,02026.84%
SignikaNegative-Bold53,63627,80020,33626.85%
Belleza-Regular27,81616,20411,84826.88%
Quicksand-Light21,00012,6009,21226.89%
MedulaOne-Regular33,68416,43212,01226.90%
Quicksand-Regular23,82013,72810,03226.92%
Allan-Regular56,46034,24425,01226.96%
Gabriela-Regular36,85618,47213,49226.96%
Orbitron-Regular39,48417,52012,79626.96%
Muli-LightItalic50,68829,83621,78826.97%
ArchivoNarrow-Regular145,69256,13240,98826.98%
Rye-Regular183,24466,38448,46426.99%
SignikaNegative-Semibold53,40027,71620,22827.02%
Orbitron-Bold38,57617,46812,74027.07%
FontdinerSwanky45,52425,50818,59227.11%
GermaniaOne-Regular33,23616,19611,79627.17%
AdventPro-Bold56,44827,42019,96827.18%
FasterOne-Regular45,30420,66415,04827.18%
Ruda-Bold24,84015,13211,01627.20%
Dosis-Medium136,44464,76047,14027.21%
Dosis-SemiBold135,52064,67247,06827.22%
Karla-Regular16,81610,3447,52827.22%
Dosis-Regular136,94064,88847,22027.23%
KottaOne-Regular36,62417,32812,60827.24%
Ruda-Regular24,94415,02810,93227.26%
Cambo-Regular29,09615,48011,26027.26%
Trochut-Regular25,30012,9529,41627.30%
Sintony-Bold26,01614,71610,69627.32%
Trochut-Italic27,90414,54810,57227.33%
GenBasB268,600107,02077,71227.39%
Trochut-Bold25,41212,9969,43627.39%
Sintony-Regular25,70814,96410,85627.45%
ChauPhilomeneOne-Italic44,27222,21616,11627.46%
Imprima-Regular24,91214,29610,36827.48%
ChangaOne-Regular22,71613,7569,97627.48%
Limelight-Regular132,29252,55238,10427.49%
AbrilFatface-Regular67,34829,24421,20427.49%
Dosis-Light136,37664,31246,62827.50%
SignikaNegative-Light55,02827,19619,71227.52%
Ruda-Black24,74814,96410,84427.53%
Megrim57,85626,97219,54427.54%
CrimsonText-Roman189,59695,29669,04427.55%
TitanOne-Regular55,70825,53618,48827.60%
Audiowide-Regular70,90032,37223,43227.62%
Fresca-Regular32,63218,79613,60427.62%
AdventPro-SemiBold51,20026,66819,30027.63%
WendyOne-Regular22,76812,9129,34027.66%
DidactGothic246,23691,59666,24027.68%
JuliusSansOne-Regular33,54416,76812,12427.70%
Neuton-Bold50,07225,27618,26827.73%
GenBkBasR269,736105,96076,57227.73%
Kameron-Regular76,68440,49229,26027.74%
AnticDidone-Regular39,68818,91613,66827.74%
GenBkBasI262,668109,14078,82427.78%
GenBasR266,416101,95673,60427.81%
Dosis-ExtraLight135,14062,86445,38027.81%
ChauPhilomeneOne-Regular40,05220,64414,89227.86%
Underdog-Regular101,48050,74436,60027.87%
Dorsa-Regular20,84011,1448,03627.89%
RussoOne-Regular39,31219,43214,01227.89%
Neuton-ExtraBold50,31624,51617,67227.92%
Strait-Regular33,08016,63211,98827.92%
Cardo-Bold348,284191,560138,06827.92%
Acme-Regular23,45613,5369,75627.93%
Ultra53,20827,34019,70427.93%
Unlock-Regular27,08014,94810,77227.94%
ProstoOne-Regular96,86847,36834,12827.95%
DaysOne-Regular65,58030,36021,85628.01%
WireOne140,66856,67240,78828.03%
AnticSlab-Regular36,97218,16413,07228.03%
Muli-Light60,65633,87224,37628.03%
AdventPro-Thin46,80023,54016,94028.04%
Padauk-Bold440,036134,04896,46428.04%
PatrickHand-Regular214,77288,16863,40828.08%
Antic-Regular39,31620,55214,78028.08%
Exo-ExtraBoldItalic104,54051,04836,69628.11%
Exo-BoldItalic105,13252,39237,65628.13%
GenBkBasB268,692106,42876,49228.13%
Orbitron-Medium39,81617,23212,38428.13%
MarckScript-Regular83,66038,65627,76428.18%
Aclonica68,78436,82026,44428.18%
ChangaOne-Italic26,72415,20810,92028.20%
Oranienbaum-Regular141,22060,62043,52428.20%
AdventPro-Medium51,42426,46018,99228.22%
Galdeano-Regular24,86814,62010,49228.24%
Gudea-Bold22,55614,60810,48028.26%
ShareTech-Regular29,53615,19210,89628.28%
Cardo-Italic262,808152,456109,34428.28%
DuruSans-Regular88,08840,02428,70428.28%
MeieScript-Regular128,42860,01643,04028.29%
Magra-Bold44,50024,38417,48428.30%
KeaniaOne-Regular38,80817,88812,82028.33%
Exo-SemiBoldItalic106,55252,61237,69228.36%
Bitter-Italic39,40420,26814,51228.40%
BreeSerif-Regular46,65622,64816,21628.40%
CreteRound-Regular59,29224,71617,69628.40%
Crushed57,84427,22019,48428.42%
Exo-MediumItalic106,74453,13638,00028.49%
Ranchers-Regular167,42067,78448,46028.51%
Exo-Medium98,12847,63634,04828.52%
GenBasI260,176106,16075,85228.55%
Cuprum-Regular100,60843,24030,87628.59%
Capriola-Regular106,63247,92834,22028.60%
Ruluko-Regular27,42815,21610,86428.60%
Exo-Bold96,26447,02033,56828.61%
Montserrat-Bold29,56017,34812,38428.61%
Cuprum-Bold100,17243,02430,70028.64%
Exo-ExtraBold95,72445,50032,45228.68%
MontserratAlternates-Bold28,64016,98812,11628.68%
NovaRound93,21241,24029,40428.70%
GlassAntiqua-Regular63,01226,65618,97628.81%
Ledger-Regular62,32028,64020,38828.81%
NanumGothicCoding-Bold2,246,2401,017,108723,92428.83%
Sanchez-Regular72,55226,85619,11228.84%
Viga-Regular28,42416,19211,52028.85%
Armata-Regular90,59640,78029,01228.86%
Exo-Light98,11247,14833,53628.87%
Homenaje-Regular22,19212,6008,96028.89%
Neuton-ExtraLight49,54025,17617,90028.90%
Exo-SemiBold96,73646,52033,07228.91%
Montserrat-Regular29,01617,28412,28428.93%
Exo-ExtraLightItalic106,92452,28837,15628.94%
Enriqueta-Bold45,24020,71614,72028.94%
LibreBaskerville-Italic175,48074,29652,75628.99%
NixieOne-Regular52,58024,48417,37629.03%
Exo-LightItalic107,03252,48037,20829.10%
MontserratAlternates-Regular27,05616,18811,47629.11%
Judson-Bold195,50486,62461,40429.11%
Alike-Regular107,93251,67636,62029.14%
NanumGothic-Bold2,300,3881,027,812728,14429.16%
Comfortaa-Regular98,40846,62433,02829.16%
Syncopate-Regular175,18067,15647,56029.18%
CherrySwash-Regular30,59614,91210,56029.18%
ModernAntiqua-Regular70,10426,77618,95629.21%
CroissantOne-Regular54,74422,88416,20029.21%
AdventPro-Regular47,30822,84816,16829.24%
AdventPro-ExtraLight46,84023,59216,68829.26%
NewRocker-Regular173,22464,64045,70829.29%
CantataOne-Regular96,82843,20830,54029.32%
AdventPro-Light46,78823,35616,50029.35%
TulpenOne-Regular35,24418,86013,32029.37%
Neuton-Light49,79225,03217,66829.42%
Snippet39,28418,81213,27629.43%
HammersmithOne-Regular103,42845,12031,84029.43%
NovaMono302,376148,164104,54829.44%
Judson-Regular220,84499,76470,38029.45%
PassionOne-Black24,31613,9049,80829.46%
PassionOne-Regular25,10414,46410,20029.48%
BlackOpsOne-Regular76,11633,31623,47629.54%
Cuprum-BoldItalic96,18841,97229,56429.56%
Gudea-Italic27,00416,46411,59629.57%
Amiri-Slanted620,344247,192174,06829.58%
Lobster140,85658,60841,26829.59%
PassionOne-Bold24,77614,25210,03229.61%
TitilliumWeb-Black49,35625,18017,72029.63%
Amiri-Bold602,408230,640162,30829.63%
NovaSlim93,95639,90028,07629.63%
NovaSquare87,96836,24425,50029.64%
Signika-Regular141,13276,18853,60029.65%
Amiri-BoldSlanted606,808242,164170,34829.66%
JockeyOne-Regular48,60422,40015,75229.68%
Amiri-Regular608,216235,676165,70429.69%
TitilliumWeb-Bold59,90430,50021,44029.70%
MetalMania-Regular254,568122,72886,24029.73%
NovaFlat93,84439,72427,90829.75%
IstokWeb-BoldItalic238,06894,00466,04029.75%
IstokWeb-Italic238,02893,98066,00829.76%
Judson-Italic212,00897,01268,11229.79%
Sanchez-Italic75,21229,17220,47629.81%
CherrySwash-Bold30,02814,78810,37629.84%
NanumGothicCoding-Regular2,315,924997,296699,12029.90%
Lekton-Bold113,68448,97234,32829.90%
NovaCut94,48840,27228,22429.92%
Gudea-Regular22,93214,60410,23229.94%
Andika-R1,469,776520,648364,40830.01%
ShareTechMono-Regular23,97612,9289,04830.01%
LuckiestGuy73,36839,31227,49630.06%
LobsterTwo-Bold241,10488,01661,55230.07%
Cuprum-Italic96,40042,23629,53630.07%
TitilliumWeb-SemiBold63,04432,19222,49630.12%
Lekton-Regular114,32048,47233,86830.13%
Metamorphous-Regular135,74054,39238,00030.14%
Lato-BlackItalic111,61648,94434,15230.22%
CreteRound-Italic67,26027,98419,50430.30%
NanumGothic-Regular2,369,6961,007,520702,18030.31%
EmblemaOne-Regular61,83228,72420,00430.36%
Almendra-Regular68,74028,83220,07630.37%
GFSDidot-Regular191,14479,08455,05630.38%
NovaOval96,65641,69229,01630.40%
Graduate-Regular22,71611,3527,90030.41%
Signika-Bold161,11677,05253,58430.46%
Signika-Light186,03687,69660,96830.48%
TitilliumWeb-BoldItalic69,78835,49624,67630.48%
LobsterTwo-BoldItalic235,63285,24859,26030.49%
Magra-Regular45,53623,17616,10830.50%
TitilliumWeb-ExtraLight63,12431,76422,07230.51%
TitilliumWeb-Regular63,75232,61222,66030.52%
TitilliumWeb-Light64,03232,80822,79630.52%
AlegreyaSC-BoldItalic73,09632,60822,65230.53%
Exo-ExtraLight93,44043,02829,87230.58%
AlegreyaSC-Italic73,72032,11622,29630.58%
Allura-Regular88,08441,01228,46830.59%
SonsieOne-Regular75,99235,06824,33230.61%
Italianno-Regular137,36460,09241,68830.63%
Enriqueta-Regular53,47222,64815,70830.64%
AlegreyaSC-Bold72,46032,20822,33230.66%
IstokWeb-Bold251,37297,28467,44830.67%
Koulen246,02858,44040,51630.67%
SupermercadoOne-Regular143,18051,42835,60830.76%
JotiOne-Regular45,58421,70415,02430.78%
Exo-Black91,49241,27228,56830.78%
Varela-Regular188,20879,40054,90830.85%
NovaScript117,32048,11233,26830.85%
Exo-BlackItalic101,12445,74831,62030.88%
Exo-Regular93,84842,74429,52430.93%
Signika-Semibold166,24478,52854,22830.94%
Exo-ThinItalic104,44047,63632,89230.95%
Exo-Thin93,09642,07229,04830.96%
Buenard-Regular60,18823,98816,55231.00%
Courgette-Regular122,07255,12038,02031.02%
Exo-Italic104,17647,36432,66831.03%
AlegreyaSC-BlackItalic72,30431,56421,76031.06%
AlegreyaSC-Black71,13630,53221,03631.10%
TitilliumWeb-LightItalic71,71636,91625,43231.11%
TitilliumWeb-Italic72,40837,22425,64431.11%
AverageSans-Regular44,00020,68814,24831.13%
TitilliumWeb-SemiBoldItalic71,80837,16025,59231.13%
Amarante-Regular148,11655,40438,15631.13%
SquadaOne-Regular19,0729,5446,57231.14%
Buenard-Bold58,99224,06816,56831.16%
Fasthand-Regular124,82843,47629,91631.19%
EBGaramond-Regular231,900118,87281,79231.19%
Artifika-Regular131,78867,08846,15231.21%
Bayon248,20855,91638,46031.22%
TitilliumWeb-ExtraLightItalic67,78434,77223,90831.24%
PressStart2P-Regular69,74815,14810,40431.32%
PoiretOne-Regular47,70422,87215,68031.44%
Lora-Italic153,04076,13652,17631.47%
Quantico-BoldItalic20,65612,2488,38831.52%
Voces-Regular67,69634,98823,94831.55%
Lato-BoldItalic120,31251,36835,14831.58%
Khmer343,06474,10850,64031.67%
Quantico-Regular20,92811,6807,97631.71%
Philosopher-Italic240,984104,93271,63231.73%
Poly-Regular76,79633,63222,93231.81%
AveriaSerifLibre-Light109,97262,14442,36431.83%
AlegreyaSC-Regular73,38431,23621,29231.84%
LobsterTwo-Italic249,89686,73259,11631.84%
LobsterTwo-Regular254,33289,55660,94831.94%
HeadlandOne-Regular149,69259,09640,20831.96%
Battambang-Regular357,86877,59652,78031.98%
GreatVibes-Regular106,00449,96833,98431.99%
UnicaOne-Regular39,91217,08811,61632.02%
NanumGothic-ExtraBold2,355,2161,018,840692,55232.03%
Philosopher-Bold211,38091,99262,52832.03%
Quantico-Italic22,13212,5688,53632.08%
Quantico-Bold20,89611,7287,96432.09%
Smokum-Regular63,94833,90023,02032.09%
Sarina-Regular96,10443,13229,28432.11%
PirataOne-Regular56,31220,29213,76832.15%
Philosopher-BoldItalic220,08096,91665,71232.20%
Cardo-Regular400,328223,688151,63232.21%
Lora-Regular167,39683,38856,44432.31%
Bokor349,24066,30044,87232.32%
Poly-Italic74,22432,16021,76032.34%
Lato-Italic118,35251,05634,54032.35%
Battambang-Bold346,21275,23250,82032.45%
Dangrek269,62060,16440,58832.54%
Philosopher-Regular257,540108,94873,44832.58%
AveriaSerifLibre-Regular109,98861,77241,61632.63%
Lora-BoldItalic173,08086,97258,55232.68%
ReenieBeanie147,87263,18042,49632.74%
Allan-Bold115,32859,58840,03632.81%
Vidaloka-Regular135,70464,52043,29232.90%
Preahvihear253,96853,56035,93232.91%
Miltonian-Regular124,08470,55247,27632.99%
Play-Regular171,08065,36843,76433.05%
AveriaSansLibre-Light107,75260,41240,43233.07%
VT323-Regular86,57618,78812,56033.15%
AveriaSerifLibre-Bold113,95663,49642,40833.21%
Play-Bold170,22064,19242,87233.21%
Padauk-Regular468,944141,67694,57233.25%
AveriaLibre-Light108,19260,86840,62833.25%
Angkor266,09653,46835,67633.28%
Lato-Black114,58848,53632,38433.28%
AveriaLibre-Regular108,46860,87640,59633.31%
Lato-Regular120,19650,06833,38033.33%
Wellfleet-Regular82,01634,53623,02433.33%
AveriaGruesaLibre-Regular111,54462,30441,53233.34%
AveriaLibre-Bold112,22862,75641,83233.34%
AveriaSansLibre-Regular108,36060,56440,35233.37%
AveriaSansLibre-Bold113,01663,01641,96433.41%
Suwannaphum336,76865,54443,56033.54%
Siemreap285,32061,23640,67633.58%
Content-Bold306,29263,41642,08833.63%
JosefinSansStd-Light45,55621,49214,24833.71%
Content-Regular313,09263,85642,31233.74%
Moulpali308,66864,68842,85233.76%
Chenla293,58861,79240,92033.78%
OdorMeanChey310,82463,10041,75633.83%
Adamina-Regular117,34055,42836,66833.85%
Moul386,96874,92049,46033.98%
Hanalei-Regular184,17688,90058,52434.17%
Lora-Bold162,54479,29652,02434.39%
CabinCondensed-Regular153,12875,86049,73234.44%
AveriaSansLibre-LightItalic134,20071,60846,85634.57%
AveriaSerifLibre-Italic130,95670,37246,03234.59%
AveriaSerifLibre-LightItalic135,97672,48847,38834.63%
Aubrey-Regular112,41653,48434,91234.72%
AveriaLibre-Italic128,84869,10045,09234.74%
AveriaSansLibre-Italic128,89669,31645,11634.91%
Lato-Bold121,78850,44432,82834.92%
PetitFormalScript-Regular175,06869,84845,43634.95%
Taprom331,87667,04443,61234.95%
JustAnotherHand192,54492,33660,02035.00%
PT_Serif-Caption-Web-Regular399,840202,848131,78835.03%
Andada-Regular108,60033,14421,50435.12%
Tharlon-Regular353,228137,63289,10435.26%
AveriaLibre-LightItalic133,54471,04445,99235.26%
Freehand462,01280,23251,91235.30%
PT_Serif-Caption-Web-Italic406,612199,844129,22835.34%
Cabin-Regular188,32083,50853,95235.39%
IstokWeb-Regular348,776140,64490,81235.43%
Cabin-Italic190,74485,82455,39235.46%
PT_Sans-Web-Regular442,960227,748146,77235.56%
Volkhov-BoldItalic102,72849,59231,94835.58%
Cabin-SemiBold173,02076,52849,28435.60%
PT_Serif-Web-Italic375,356188,004121,06435.61%
Lato-Hairline115,31648,28831,09235.61%
Alice-Regular150,51269,36844,58435.73%
Cabin-BoldItalic176,99280,12851,48835.74%
Vibur-Regular173,60090,62858,21235.77%
CabinCondensed-Bold166,91273,82047,35635.85%
CabinCondensed-Medium167,00473,84847,36035.87%
Volkhov-Regular112,27653,05634,00835.90%
Cabin-SemiBoldItalic181,88082,11652,62435.92%
Marvel-Bold36,96820,34813,04035.92%
PT_Sans-Caption-Web-Regular387,192194,872124,78435.97%
KellySlab-Regular77,80437,17623,80435.97%
Cabin-MediumItalic183,84483,40053,33236.05%
OpenSans-CondBold265,244121,09677,29236.17%
CabinCondensed-SemiBold168,73274,82047,74836.18%
Cabin-Medium176,07678,23249,90036.22%
PT_Sans-Narrow-Web-Bold487,720251,432160,14436.31%
Cabin-Bold172,57675,78448,26436.31%
Volkhov-Bold112,22052,64833,52436.32%
PT_Serif-Web-Regular359,048178,496113,49636.42%
AveriaSerifLibre-BoldItalic138,20873,76046,82436.52%
MiltonianTattoo-Regular189,46097,76461,91636.67%
AveriaSansLibre-BoldItalic135,85272,61645,90436.79%
Marvel-Regular38,22020,54012,98436.79%
AlikeAngular-Regular123,28057,58436,38036.82%
PT_Sans-Web-Italic436,452222,468140,44436.87%
Mako-Regular87,78047,06429,64837.00%
AveriaLibre-BoldItalic135,66472,49245,65237.02%
Lato-Light122,52452,65233,09637.14%
PT_Sans-Narrow-Web-Regular396,212195,740122,57237.38%
Forum-Regular303,316129,70481,21237.39%
Lato-HairlineItalic91,46040,18025,09237.55%
PT_Sans-Web-Bold470,240241,916150,60437.75%
PT_Serif-Web-Bold339,996164,232102,13237.81%
Marvel-BoldItalic40,08022,16813,78037.84%
PT_Sans-Web-BoldItalic375,204186,188115,66837.88%
Metrophobic68,92437,86423,44438.08%
Volkhov-Italic102,36047,62429,43238.20%
PT_Serif-Web-BoldItalic337,580163,144100,74438.25%
Trocchi-Regular143,86463,47639,17238.29%
Metal409,66075,29646,42838.34%
Marvel-Italic40,66821,95213,52038.41%
Shanti-Regular91,35249,00830,03638.71%
Lato-LightItalic91,60041,30425,30838.73%
JosefinSlab-Thin200,01268,22041,61239.00%
NanumMyeongjo-Bold4,144,2161,531,052931,63239.15%
Roboto-ThinItalic197,892103,47262,92039.19%
Roboto-Thin195,576100,52861,05639.26%
Federo-Regular145,05666,80840,56439.28%
Caudex-Bold471,512193,860117,34039.47%
LoveYaLikeASister271,904135,42881,86439.55%
JosefinSlab-ThinItalic197,40466,41640,10839.61%
Geostar-Regular41,28820,86812,59239.66%
Caudex-Regular466,152186,684112,20839.89%
PT_Sans-Caption-Web-Bold398,780197,368118,57639.92%
RalewayDots-Regular465,136115,80869,43640.04%
OpenSans-Semibold222,160115,14868,49240.52%
OpenSans-ExtraBold223,428115,16468,48440.53%
OpenSans-Light223,280114,63268,02440.66%
OpenSans-Regular218,196112,70466,84840.69%
OpenSans-CondLight222,036113,28467,15640.72%
GeostarFill-Regular38,82419,72811,68840.75%
Caudex-BoldItalic555,112223,200132,17640.78%
NanumMyeongjo-ExtraBold4,739,7161,900,7241,125,47640.79%
OpenSans-Bold225,468115,59268,36840.85%
Caudex-Italic559,384215,784126,46441.39%
OpenSans-SemiboldItalic213,652111,08465,06441.43%
Buda-Light105,98853,26831,13241.56%
OpenSans-CondLightItalic211,640108,90463,40841.78%
OpenSans-Italic213,640110,37264,25241.79%
OpenSans-LightItalic213,976110,36064,20041.83%
NanumMyeongjo-Regular3,800,0081,335,268776,66041.83%
OpenSans-ExtraBoldItalic214,224110,74864,22842.01%
OpenSans-BoldItalic214,120110,26063,84042.10%
GFSNeohellenicItalic369,052117,00064,84444.58%
GFSNeohellenicBold344,708108,22459,83244.71%
GFSNeohellenic460,072151,29281,58446.08%
GFSNeohellenicBoldItalic362,076113,98861,30846.22%
NanumPenScript-Regular3,789,6761,537,980813,71247.09%
Questrial-Regular64,54832,24016,84047.77%
VarelaRound-Regular84,02839,97220,55648.57%
Jura-DemiBold326,140149,79676,76848.75%
Jura-Regular338,932153,74877,38849.67%
Jura-Medium345,820155,80478,34049.72%
NanumBrushScript-Regular3,745,3761,510,664744,36850.73%
PaytoneOne193,47290,31641,64453.89%
Jura-Light266,728116,19651,91255.32%

Compression results, Adobe CFF Fonts corpus, with Brotli [February 2015]

Average compression improvement with WOFF 2.0
 15.48%
Median 13.51%
Standard deviation 7.29%
Minimum 5.32%
Maximum 57.96%

Results for 5,256 Adobe fonts using CFF (Type 1) outlines. Font names are omitted, only the original file sizes are given. Thanks to Bram Stein for these results.

Original (bytes)WOFF 1.0 (gzip)WOFF 2.0 (Brotli)% Improvement WOFF2 vs WOFF(gzip)
351,256147,10061,84457.96%
380,668158,50867,35257.51%
348,256146,71262,41257.46%
384,368160,83668,67657.30%
357,088149,93664,04057.29%
354,896149,55264,02057.19%
382,400160,72068,98057.08%
368,908153,51265,91657.06%
317,948132,98457,22856.97%
349,324146,73663,18056.94%
350,080146,35663,07256.91%
337,656141,17261,04056.76%
330,080139,40060,27656.76%
357,768149,99664,91256.72%
366,816152,39665,97256.71%
343,012145,75263,11656.70%
349,444145,41263,09656.61%
372,556155,48467,53256.57%
360,272150,89665,94056.30%
334,624139,60861,12456.22%
318,368132,78058,30856.09%
358,924150,54466,14856.06%
1,217,996510,716224,76455.99%
279,364118,09255,74052.80%
250,636111,42053,22452.23%
250,636111,42053,22452.23%
260,132112,84854,95251.30%
187,31689,51245,78448.85%
126,61663,17232,48048.58%
129,16064,37233,48447.98%
955,992265,784138,44847.91%
128,17264,72834,04847.40%
143,74171,94438,10847.03%
144,78972,97238,86446.74%
144,37772,82038,80446.71%
73,55635,36018,87246.63%
144,94972,46038,67646.62%
164,36586,18446,69245.82%
135,55664,40834,93245.76%
98,88851,23227,89245.56%
134,24865,46035,80045.31%
164,15387,53647,95645.22%
1,516,049739,244405,72045.12%
101,41253,11629,19245.04%
90,39243,57224,34844.12%
168,61791,50851,23644.01%
222,61797,97255,15243.71%
170,94991,32051,43643.67%
77,40038,78021,90443.52%
938,508211,968120,25643.27%
734,988297,620169,14043.17%
122,26860,80434,64043.03%
99,82451,46029,46842.74%
81,49240,31623,10842.68%
78,64839,88022,86442.67%
216,12195,58455,17642.27%
90,70947,16827,26442.20%
116,68857,11633,01642.19%
646,100204,188118,27242.08%
115,66057,26433,41241.65%
112,99256,90833,30041.48%
200,97692,26053,99241.48%
80,75240,75223,88841.38%
252,092115,79268,00441.27%
356,796160,32494,36041.14%
77,53639,31223,21240.95%
72,34036,08421,31240.94%
117,18053,02831,32440.93%
253,276116,50068,88440.87%
260,772120,11271,30840.63%
150,38455,42032,90440.63%
346,340150,79289,88840.39%
122,00850,65630,20440.37%
122,20850,63230,20040.35%
233,600106,52063,53640.35%
157,06868,63240,99240.27%
123,83655,64833,30040.16%
644,208220,276132,28039.95%
148,08467,14040,37639.86%
154,15268,52041,21639.85%
137,17651,30430,86439.84%
257,236119,14871,75239.78%
98,70465,40839,44839.69%
155,84469,68042,03239.68%
154,06468,41241,43239.44%
164,71273,31644,51639.28%
105,24452,92032,13639.27%
152,97267,00841,06038.72%
74,10037,47222,97238.70%
158,59671,67244,02438.58%
466,060200,668123,31238.55%
94,06047,84829,41638.52%
421,208155,82896,43638.11%
362,988166,956104,00037.71%
93,03247,84029,99637.30%
580,652365,356229,51637.18%
96,23648,82030,79636.92%
80,57644,86028,38436.73%
230,750105,48467,04836.44%
151,74465,76441,90036.29%
94,30446,59629,69236.28%
99,54039,37625,10036.26%
707,308251,268160,43636.15%
151,89266,02842,22436.05%
145,00076,32448,84436.00%
150,88065,72042,14435.87%
151,51666,07642,40035.83%
150,50865,78842,22835.81%
270,788118,78876,25635.80%
97,03641,18826,52435.60%
671,712345,324222,40435.60%
150,47664,02441,32435.46%
90,58442,32427,34035.40%
233,90089,64857,92435.39%
89,87238,67625,02435.30%
90,19242,68827,62435.29%
675,400346,104224,01635.27%
667,000229,736148,93635.17%
136,83666,77243,30435.15%
236,67292,71260,14035.13%
99,74052,14433,84835.09%
77,10430,89220,10434.92%
99,32052,44434,16034.86%
61,85632,04820,92034.72%
68,20030,49619,91234.71%
146,54078,07251,02434.64%
114,48059,66439,01234.61%
100,64853,23234,80834.61%
296,668132,94087,02434.54%
146,04077,21650,61634.45%
678,532240,004157,58034.34%
113,73659,04438,76834.34%
100,45653,15234,92434.29%
85,56444,93629,58034.17%
147,09385,72456,54434.04%
44,90524,40416,12833.91%
102,00440,44826,74033.89%
86,39645,82430,31633.84%
175,23668,00845,01233.81%
192,51282,51654,63633.79%
88,40441,68427,60433.78%
86,74446,30830,67633.76%
88,19247,18831,26433.75%
537,748352,552233,59233.74%
132,98055,44836,74033.74%
69,70431,54820,91633.70%
101,23352,62834,92033.65%
143,04872,13247,88033.62%
192,07281,95254,54433.44%
84,81641,06427,33233.44%
116,17661,06440,68033.38%
87,03246,46430,95633.38%
173,12467,33244,86833.36%
86,95646,44030,95633.34%
96,40038,81625,94033.17%
60,42433,72822,55233.14%
81,47242,26828,28033.09%
87,96842,09628,16833.09%
87,65646,83631,36033.04%
134,17268,11245,68832.92%
85,38045,72430,78832.67%
103,58442,25628,47632.61%
135,20468,16845,98032.55%
60,26433,63222,68832.54%
110,08157,86439,04432.52%
111,26555,74437,62432.51%
135,11668,07245,95632.49%
77,77240,70427,52832.37%
134,78068,26846,20032.33%
163,47677,11652,19232.32%
163,47677,11652,19232.32%
63,53636,27624,58432.23%
63,32831,20021,15232.21%
164,77287,88859,59632.19%
63,36436,11624,49232.19%
200,41680,49254,64032.12%
200,26880,45654,65232.07%
61,01234,26423,27632.07%
64,43632,26021,91632.06%
98,53240,71627,72031.92%
201,51681,10455,28431.84%
233,752111,69676,14831.83%
64,09636,65625,00431.79%
59,45230,59620,87231.78%
79,46842,42028,94431.77%
95,98049,52433,81631.72%
201,31281,06055,36031.70%
50,46427,58418,84031.70%
137,25270,07647,87631.68%
137,63670,52448,19231.67%
77,95641,50028,37231.63%
78,88442,05628,75631.62%
107,62442,78429,25631.62%
188,76888,22060,50031.42%
73,11634,62023,78031.31%
79,70042,79229,41231.27%
142,33274,00450,86831.26%
72,76437,46425,76431.23%
102,54841,68028,66831.22%
79,56842,79629,44431.20%
80,17638,72426,64431.20%
142,78473,56850,64831.15%
203,62494,50065,07231.14%
80,29243,11229,71231.08%
69,90433,96823,41231.08%
48,13226,54418,29631.07%
191,43289,42861,64831.06%
142,68873,38450,60031.05%
77,35236,75225,34831.03%
79,02442,63629,40831.03%
202,75694,64465,28431.02%
67,20038,13626,31231.00%
138,16870,70448,79230.99%
86,39241,10028,36430.99%
177,03292,70864,04430.92%
200,75693,16464,36030.92%
109,70444,78430,94030.91%
78,31642,28429,21630.91%
142,46874,36851,39630.89%
138,46871,26049,25230.88%
69,28034,20823,64430.88%
93,93646,53632,17230.87%
78,61642,79229,58830.86%
142,93274,61251,59630.85%
60,90036,20025,05630.78%
156,78473,85651,13630.76%
78,65242,71629,57630.76%
134,22862,01242,94030.76%
99,95643,44030,08030.76%
189,36888,69661,42430.75%
64,42038,45626,63230.75%
60,91636,15625,04030.74%
93,92846,52832,24030.71%
73,79636,76425,48430.68%
76,96440,90828,36030.67%
76,92841,14828,52830.67%
78,41642,41229,41230.65%
206,78899,97669,34430.64%
79,08042,85229,72430.64%
107,56443,69630,31630.62%
64,52438,53226,74430.59%
89,16448,78833,92030.47%
79,04442,85629,80830.45%
79,30842,94429,87630.43%
83,90040,93228,48030.42%
78,59642,69629,70830.42%
143,55675,34052,42830.41%
206,504100,07269,68030.37%
77,83641,65629,01230.35%
49,02427,44019,11230.35%
61,65636,78825,62430.35%
78,34842,28429,46430.32%
187,317101,51270,73630.32%
76,88041,22828,73230.31%
77,28041,26428,76430.29%
77,92042,02029,29230.29%
79,12442,87229,88830.29%
78,67242,62829,72030.28%
104,97243,62030,41230.28%
207,112100,75270,27230.25%
104,31246,98432,77230.25%
65,19239,17227,32430.25%
77,12841,18028,73230.23%
77,63241,52828,98030.22%
78,59642,84829,90430.21%
98,67643,81630,59230.18%
101,96042,02429,34430.17%
106,42448,71634,02030.17%
52,50028,69620,04030.16%
78,53242,64029,78430.15%
77,15241,32828,88030.12%
102,64042,72429,86030.11%
115,47652,69236,83230.10%
78,45638,46026,89630.07%
76,49641,18028,80030.06%
143,60075,50052,80830.06%
75,65638,07626,66429.97%
113,86451,62036,16029.95%
66,72038,35226,88029.91%
78,51237,67226,41229.89%
75,38840,44028,36029.87%
133,03265,55245,97229.87%
210,100116,53681,74429.86%
103,35660,66442,55629.85%
75,50440,77228,60429.84%
76,39240,50028,42029.83%
204,82586,68860,86029.79%
79,04842,86830,10029.78%
125,82456,39239,60429.77%
78,56037,70426,48029.77%
80,53643,30430,45629.67%
149,97275,29652,96429.66%
95,27655,64839,14429.66%
94,85644,12831,05629.62%
78,58842,82430,14029.62%
97,28037,86026,64829.61%
144,61275,85653,40429.60%
78,01642,36029,82429.59%
110,26046,09232,46029.58%
75,60040,83228,77629.53%
139,21263,35244,65229.52%
79,45643,40430,60429.49%
229,417105,31274,32029.43%
74,54437,48826,48029.36%
137,23263,70445,01629.34%
150,55268,66848,55229.29%
104,73244,70831,62029.27%
134,16062,74044,40029.23%
80,86440,06428,35629.22%
149,56068,37648,41629.19%
232,91396,61668,44429.16%
70,59637,63226,66029.16%
78,93243,19630,60829.14%
79,07640,21228,50829.11%
104,69644,25631,37629.10%
114,61358,27641,32829.08%
144,14867,28447,73229.06%
296,312128,78091,40429.02%
90,12845,25232,12429.01%
136,41262,04844,04829.01%
143,65269,74049,51629.00%
186,50890,96464,59228.99%
82,28040,29228,61228.99%
46,42826,40418,75628.97%
80,54839,90828,35628.95%
66,48830,14021,42028.93%
301,256136,79697,29628.88%
120,74852,73637,52028.85%
73,08438,18427,17228.84%
82,20040,24828,66428.78%
226,95494,94467,62028.78%
533,368247,060176,10428.72%
73,63640,23228,68028.71%
46,41626,55618,93228.71%
173,92173,45252,37628.69%
115,57761,19243,64428.68%
80,09644,11231,46828.66%
186,05290,57264,62828.64%
79,44040,39228,83628.61%
140,26465,23646,57628.60%
325,480145,376103,80828.59%
73,27239,74828,38828.58%
142,10467,81248,44428.56%
246,020130,01292,89228.55%
71,38438,64027,61228.54%
121,30053,21238,02828.53%
159,39269,88049,96028.51%
294,276135,51696,99228.43%
71,56838,91227,85228.42%
119,89652,16037,34028.41%
134,53663,97245,80028.41%
134,53663,97245,80028.41%
297,060141,236101,18828.36%
70,90438,13627,32428.35%
115,16559,58842,73628.28%
100,11647,70834,22028.27%
71,54038,85627,87228.27%
54,81233,45624,00428.25%
314,812163,952117,63628.25%
52,21629,35621,06428.25%
46,24426,85219,27628.21%
153,62077,96855,99228.19%
153,62077,96855,99228.19%
153,62077,96855,99228.19%
73,05239,64028,46828.18%
72,91239,75628,55628.17%
97,88446,94433,73628.14%
119,13651,84037,25628.13%
116,50961,52044,23228.10%
336,532150,756108,42028.08%
188,04891,61265,89628.07%
144,80070,17250,48428.06%
91,67638,56827,74828.05%
82,18045,81632,96828.04%
146,98472,72452,35228.01%
146,98472,72452,35228.01%
81,89643,83631,56827.99%
76,44040,30029,02427.98%
83,97742,77630,83627.91%
98,59244,52032,15227.78%
225,921128,31692,69227.76%
246,836138,476100,15627.67%
147,42471,14451,46827.66%
285,172122,98888,98827.64%
145,82471,90052,02427.64%
83,75246,52433,67227.62%
45,75617,48412,65627.61%
83,09646,25633,49627.59%
311,092136,94499,23227.54%
83,90441,67630,20427.53%
110,76838,27627,75227.50%
120,58464,59646,87627.43%
147,54072,99252,97227.43%
43,46024,82818,02427.40%
136,44063,63246,20427.39%
49,96830,14421,88827.39%
45,36026,51619,26027.36%
94,58440,59229,48827.36%
56,40033,02824,00427.32%
85,45742,78031,09627.31%
90,99640,18429,21627.29%
45,16026,52819,28827.29%
147,73273,84453,69627.28%
45,98817,21612,52027.28%
84,06846,34833,70827.27%
45,37626,54419,32427.20%
45,34826,72019,46827.14%
90,38840,84029,76427.12%
88,07648,15635,10827.10%
45,09626,56019,36827.08%
141,38069,52050,70427.07%
141,38069,52050,70427.07%
152,98878,12056,99627.04%
326,748146,956107,22027.04%
48,19618,38013,41227.03%
149,02069,49650,71627.02%
47,08027,51220,08027.01%
67,09236,51626,65227.01%
474,816278,440203,26827.00%
45,02026,47619,34026.95%
115,42159,51243,47626.95%
45,34826,76819,55626.94%
46,13627,54420,12426.94%
67,22436,57626,73226.91%
138,31664,46847,12426.90%
240,044136,30899,64026.90%
63,82042,39231,00426.86%
46,95218,11213,24826.86%
45,54826,89219,67226.85%
154,34877,88856,99226.83%
74,05236,94027,06026.75%
45,96528,07220,56426.75%
321,552144,024105,50826.74%
112,62051,99238,09226.73%
57,02833,57624,60026.73%
47,78528,56420,92826.73%
66,21635,01225,66026.71%
142,08068,36850,11626.70%
74,10438,50428,22826.69%
55,84831,93623,41626.68%
175,028122,86090,12426.64%
149,02074,82054,89226.63%
149,02074,82054,89226.63%
149,08875,16055,14426.63%
149,08875,16055,14426.63%
69,16037,76827,71226.63%
68,76434,76425,50826.63%
69,27237,90027,81226.62%
68,36037,16827,27626.61%
69,55635,10825,77226.59%
208,996150,172110,29226.56%
46,24128,09220,63626.54%
65,60434,55625,40026.50%
222,37688,62865,15626.48%
329,180153,088112,54826.48%
68,31237,19227,35626.45%
193,90480,85659,49626.42%
67,25235,98026,48426.39%
122,26461,37245,18026.38%
94,38042,88431,59626.32%
47,87728,70421,15226.31%
45,93328,14820,74426.30%
120,08563,62446,89626.29%
54,63231,54023,24826.29%
45,28026,43619,49626.25%
68,83237,61627,74426.24%
67,41236,18426,68826.24%
79,65237,87227,93626.24%
51,34918,90813,94826.23%
79,23634,15225,20026.21%
127,63667,54449,84026.21%
81,83641,48430,62426.18%
45,20426,58419,62826.17%
118,55363,00446,54026.13%
80,12443,33632,01226.13%
132,12868,74850,84026.05%
68,60037,39227,66426.02%
118,63761,48045,48826.01%
105,38445,35633,56026.01%
86,57639,76829,43625.98%
75,38035,44426,23625.98%
45,34026,79219,83625.96%
60,81732,65224,17625.96%
79,50043,85632,47625.95%
331,260157,680116,77625.94%
84,24050,10437,10825.94%
42,72925,66819,01225.93%
66,71242,18031,25225.91%
225,297127,56894,54425.89%
67,10035,69226,45625.88%
119,09260,25644,69225.83%
114,40873,80854,74825.82%
47,76818,38813,64025.82%
77,98444,08032,70025.82%
107,35250,97637,82425.80%
142,17279,90059,29225.79%
68,02036,82027,32825.78%
325,684156,628116,29225.75%
74,42032,43624,09225.72%
46,18427,62420,52025.72%
64,47635,78026,58025.71%
48,41218,32813,61625.71%
47,50529,37621,85625.60%
64,94034,81225,91225.57%
121,20461,67645,92425.54%
245,112105,78078,80825.50%
75,18140,36030,07625.48%
125,62063,84047,60025.44%
47,53218,34413,68425.40%
499,380155,652116,13625.39%
53,67720,21615,08425.39%
124,99263,62847,48025.38%
42,30425,45619,00025.36%
105,53649,03236,60025.35%
229,184134,104100,11625.34%
73,78046,59234,78825.33%
97,96532,59224,34025.32%
149,56478,21658,42025.31%
90,66856,74042,38025.31%
50,24033,85625,29625.28%
52,45320,16415,06825.27%
227,232133,49699,77625.26%
122,66463,22447,27625.22%
53,00119,79214,80825.18%
224,528131,58098,49625.14%
55,87230,48822,82425.14%
72,00837,41228,00825.14%
58,23720,56415,40025.11%
231,324134,644100,88425.07%
120,45661,07645,77625.05%
58,15320,47215,34425.05%
68,92537,21227,89625.03%
93,01246,60034,94425.01%
95,89644,20033,15225.00%
124,50864,00048,02424.96%
343,433167,748125,97224.90%
101,75254,86041,20024.90%
43,45226,52819,92424.89%
58,23321,14015,88024.88%
123,53263,64447,81224.88%
76,22836,20027,19624.87%
76,01237,12427,90824.82%
294,616131,23698,68024.81%
121,54862,89247,29624.80%
224,104130,82898,39624.79%
53,31628,77221,64024.79%
109,41651,62438,84424.76%
58,54520,97215,78424.74%
63,51635,50426,72424.73%
111,94850,11637,73224.71%
115,22455,28041,62824.70%
52,67720,12415,15624.69%
59,20521,73216,36824.68%
78,72038,15628,74824.66%
53,17720,16815,19624.65%
88,56045,10034,00424.60%
119,88060,10845,32424.60%
75,83741,72431,47224.57%
60,65227,54420,78024.56%
87,31239,83630,05624.55%
119,81256,20442,40824.55%
101,96847,94436,18824.52%
203,21788,21266,58824.51%
101,78448,89236,90824.51%
50,70024,88818,79224.49%
69,83337,61228,40024.49%
62,46833,71225,45624.49%
215,620104,73279,09624.48%
321,981203,564153,76824.46%
68,18935,74027,01224.42%
55,55627,04020,44424.39%
56,27230,41223,00424.36%
191,400107,75281,52824.34%
102,61249,56037,50024.33%
41,34825,50819,30424.32%
111,92859,80045,26824.30%
85,94838,98429,51224.30%
251,268145,088109,90824.25%
40,38424,58818,62824.24%
50,65230,12822,82824.23%
61,78033,15225,12424.22%
98,75253,18840,31224.21%
206,305127,25696,47224.19%
101,15254,76841,52024.19%
76,52141,87231,75224.17%
76,50436,74427,86424.17%
66,84038,25629,01624.15%
115,95656,87243,14824.13%
280,264143,752109,07224.12%
54,96029,88422,67624.12%
77,72838,43229,16424.12%
101,43254,72841,53624.10%
118,24060,12045,65224.07%
93,11244,53633,82024.06%
63,12034,43226,15224.05%
62,57234,19225,97224.04%
63,08434,41626,14824.02%
80,16943,12032,76424.02%
65,16834,40426,14824.00%
53,91626,82820,39623.97%
95,70445,70434,75623.95%
96,98850,07638,08823.94%
103,99647,70036,28423.93%
104,67249,15637,39223.93%
37,16523,28417,71223.93%
37,16523,28417,71223.93%
89,85242,29232,17223.93%
51,30022,60417,19623.92%
58,86921,34016,24023.90%
507,000297,836226,66423.90%
82,48043,93633,45223.86%
195,44078,87660,05623.86%
62,11233,90025,81623.85%
99,84848,59237,01623.82%
93,36443,63233,24023.82%
37,93723,80018,13223.82%
37,93723,80018,13223.82%
94,70846,08835,11623.81%
62,64034,26026,11223.78%
121,50058,40444,53223.75%
100,52048,68437,12423.74%
117,02555,20042,10023.73%
56,28030,44823,22823.71%
62,67233,94425,89623.71%
202,573128,28497,87623.70%
62,33633,96025,91223.70%
140,57663,79648,72423.63%
187,34891,09269,58023.62%
99,86449,01637,44423.61%
56,25627,72421,18423.59%
90,42444,53234,02823.59%
57,80432,54424,86823.59%
97,01251,37639,26823.57%
57,88431,50424,08023.57%
86,28130,10823,02423.53%
120,08856,93643,55623.50%
42,06427,15620,78023.48%
41,84125,64019,62023.48%
41,97626,20020,05223.47%
189,48488,32067,62023.44%
59,39629,75222,79223.39%
41,48125,34419,41623.39%
97,55648,40037,08423.38%
205,864105,32080,73223.35%
42,16025,40019,48423.29%
70,90840,90831,38023.29%
39,35725,76819,76823.28%
183,06886,16466,11223.27%
38,82124,31218,66023.25%
206,340103,04479,10023.24%
104,32841,17231,60823.23%
39,63223,99218,42023.22%
39,46023,96018,40423.19%
167,20478,60060,42023.13%
96,53646,28435,58023.13%
87,78842,79232,90423.11%
120,10856,43643,40023.10%
57,42832,59625,07223.08%
50,12421,65216,65623.07%
41,24425,78819,85223.02%
225,288121,61293,65222.99%
50,89626,66020,54022.96%
82,57237,78829,11622.95%
72,11239,35630,33622.92%
81,53636,61628,22822.91%
170,25684,40065,07222.90%
47,02530,42823,46822.87%
66,63638,74429,88822.86%
253,684115,38889,01622.86%
51,61627,77621,42822.85%
229,496118,44891,38822.85%
40,81225,05619,33222.84%
10,174,0846,889,5325,316,40022.83%
51,90427,03220,86022.83%
98,19252,92840,86022.80%
49,37231,32424,18822.78%
81,88544,84034,62822.77%
203,29278,35660,51622.77%
221,724116,38089,89222.76%
64,07236,22827,98422.76%
105,25259,75646,17222.73%
81,32944,81234,62822.73%
245,864112,15286,66822.72%
63,43231,85624,62022.71%
415,684250,940193,94422.71%
46,16829,32822,66822.71%
390,580244,152188,77622.68%
53,94837,98829,37222.68%
402,360253,064195,68422.67%
100,64846,57236,02022.66%
49,54829,77223,02822.65%
181,36882,80464,05222.65%
83,36038,84030,04822.64%
277,944142,292110,08822.63%
175,48081,98863,44422.62%
277,300142,172110,01622.62%
420,800262,348203,01222.62%
53,17228,03621,70022.60%
65,96438,34429,68022.60%
58,05629,21222,61222.59%
241,924109,88085,06422.58%
162,85679,05661,20422.58%
49,49225,70419,90022.58%
40,34424,87619,26022.58%
46,65628,38021,97622.57%
43,18827,97621,66822.55%
57,99233,16825,70022.52%
220,668115,93689,83622.51%
46,66428,73622,26822.51%
73,94835,88827,82022.48%
402,376252,004195,39222.46%
89,95246,49636,05222.46%
418,188260,604202,10022.45%
296,076157,784122,36422.45%
55,83230,12023,36022.44%
38,04423,54418,26022.44%
97,95264,30849,88022.44%
40,48825,06819,44422.43%
454,108288,320223,64422.43%
57,48832,75225,40822.42%
118,63749,39638,32822.41%
38,17623,55618,28022.40%
40,38825,01219,41222.39%
70,56838,24829,68822.38%
224,344121,78494,53222.38%
180,78888,50868,72022.36%
158,67271,34055,39222.35%
176,24888,70868,88422.35%
58,39229,90423,22822.32%
44,36829,11622,61622.32%
58,78830,66023,81622.32%
155,14071,41255,47222.32%
57,12432,52025,26422.31%
382,172240,052186,52022.30%
57,98430,27223,52422.29%
455,956291,484226,56822.27%
57,46830,24823,51222.27%
62,87234,17226,56822.25%
62,87234,17226,56822.25%
57,72432,82425,52022.25%
420,872273,828212,91222.25%
38,72924,43219,00422.22%
70,49327,33221,26022.22%
158,87271,33255,48822.21%
177,56884,70865,90022.20%
170,82485,00866,14022.20%
370,384226,524176,24822.19%
294,876157,548122,58422.19%
175,06485,07666,19622.19%
56,80832,39225,20422.19%
192,16495,46474,28422.19%
46,10929,33622,82822.18%
401,540253,612197,37222.18%
102,88847,26036,78022.18%
100,33254,40442,34422.17%
173,52884,64865,88422.17%
200,56889,78469,88422.16%
680,096310,624241,78422.16%
39,63624,73219,25222.16%
181,19688,45268,85622.15%
36,60122,03217,15222.15%
198,22889,84469,95622.14%
44,44425,17219,60022.14%
200,06096,48075,12422.14%
57,00032,57625,36822.13%
212,77679,09261,59222.13%
188,30090,17270,23622.11%
157,28870,00054,52422.11%
62,03231,76424,75222.08%
55,19228,79222,44022.06%
57,26430,15623,50422.06%
102,65246,80836,48422.06%
415,756262,488204,60022.05%
44,55727,75221,63222.05%
365,396216,516168,77222.05%
45,48822,69617,69222.05%
174,18087,12467,91622.05%
38,51324,21218,87622.04%
379,300238,948186,29222.04%
80,14529,86423,28422.03%
68,92440,17631,32422.03%
57,66432,80825,58022.03%
187,65690,45670,53222.03%
155,78870,88055,28822.00%
202,39697,15675,78821.99%
377,768233,428182,09221.99%
60,30928,61222,32021.99%
435,524276,228215,49221.99%
511,092335,844262,00021.99%
151,27266,59651,95621.98%
438,932287,452224,26821.98%
155,35271,33655,66421.97%
83,68839,09630,50821.97%
371,048231,472180,63621.96%
176,67687,44068,24421.95%
155,70471,31655,66421.95%
46,24529,92023,35621.94%
104,02846,64436,41221.94%
77,34042,24432,98021.93%
46,76830,52823,83621.92%
58,02433,30426,00821.91%
70,96442,27233,01221.91%
171,00885,17266,51621.90%
57,99630,51623,83221.90%
56,86432,54825,42021.90%
150,06066,63252,04821.89%
375,736231,224180,63621.88%
205,29676,64459,87621.88%
184,88489,02469,54821.88%
185,50092,85272,54021.88%
184,08491,27671,31221.87%
57,21232,79225,62021.87%
438,892281,328219,82421.86%
171,14082,54064,49621.86%
446,896282,296220,58821.86%
260,716117,56891,89621.84%
427,052274,832214,88021.81%
179,26484,34465,94821.81%
517,072343,308268,43221.81%
153,74066,48451,98421.81%
49,04429,89623,37621.81%
439,012285,336223,11221.81%
158,76071,02455,53621.81%
221,220130,180101,81621.79%
57,45232,98825,80421.78%
40,68425,21619,72821.76%
91,84439,55230,94421.76%
157,24069,92854,71221.76%
117,38560,56847,40021.74%
154,10866,64852,16021.74%
218,62480,16062,73621.74%
125,19658,68045,93221.72%
184,14491,17671,37221.72%
191,03293,08872,88021.71%
187,29691,57271,70421.70%
56,14836,58028,64421.69%
397,692253,388198,42021.69%
435,084286,268224,20821.68%
201,70897,56876,42821.67%
504,292335,204262,58021.67%
507,908335,996263,23221.66%
182,08088,98069,72021.65%
158,50870,87655,54021.64%
192,33689,99270,53221.62%
152,99270,24455,05621.62%
140,20562,46048,95621.62%
424,676275,004215,54821.62%
196,06495,77675,07221.62%
38,34923,96818,79221.60%
204,65678,98061,94021.58%
48,25229,20022,90421.56%
514,064341,924268,28821.54%
152,67269,97654,90821.53%
57,76031,22424,50421.52%
89,21248,31237,91621.52%
178,45292,43672,56021.50%
235,328134,600105,66021.50%
201,85697,54876,58021.50%
39,00024,62819,33621.49%
179,79289,12469,99221.47%
157,13269,55254,62821.46%
157,33269,80054,83621.44%
594,484195,604153,67221.44%
61,30824,55219,29221.42%
57,40032,79225,77221.41%
186,08491,33271,79221.39%
599,900193,940152,45621.39%
81,74130,76824,19221.37%
195,78490,90871,49221.36%
202,19697,27676,50421.35%
328,83694,19274,08421.35%
189,00893,59673,61621.35%
199,30497,35276,60421.31%
218,45686,71668,24821.30%
106,60449,64039,07621.28%
78,55729,90023,54421.26%
220,22887,08868,57621.26%
207,29299,94478,70421.25%
84,89239,51231,12021.24%
124,29458,58446,14821.23%
215,72885,52467,37621.22%
204,70497,09676,50021.21%
143,54064,07250,48421.21%
110,53649,60839,09221.20%
157,24869,08854,44421.20%
110,65247,68037,57621.19%
152,90469,23654,57221.18%
99,32441,59232,78421.18%
152,41269,92855,12421.17%
62,70433,25626,21621.17%
84,38039,58031,20421.16%
203,128100,93679,60021.14%
574,700186,272146,91221.13%
200,78874,70058,91621.13%
145,17662,94049,65621.11%
335,268189,700149,70821.08%
203,104102,89681,20421.08%
97,09639,73631,36821.06%
338,928187,628148,14821.04%
74,54129,52023,31221.03%
42,40022,92018,10021.03%
50,27631,32824,74421.02%
319,928181,560143,41621.01%
217,02485,95667,91220.99%
62,35629,12423,01220.99%
81,22131,14824,61220.98%
116,54450,86840,19620.98%
98,60038,61230,51620.97%
519,868164,528130,04020.96%
71,72532,90026,00420.96%
80,24131,03624,53620.94%
139,48063,74050,40020.93%
173,17681,38464,35220.93%
44,88528,99622,92820.93%
98,48838,48430,43620.91%
90,42137,70429,82020.91%
132,71663,36450,15620.84%
440,016295,324233,80020.83%
199,71298,77678,21220.82%
124,60048,84438,68420.80%
106,03271,06856,30020.78%
152,77669,74455,27220.75%
80,58531,50824,97220.74%
97,68838,00830,12420.74%
201,86878,85662,50420.74%
203,21678,36062,11620.73%
201,18478,09261,91220.72%
226,80494,75675,14820.69%
75,68438,21630,31620.67%
72,03729,20023,16420.67%
39,43224,97619,81620.66%
318,824181,856144,30020.65%
116,05654,25643,05620.64%
603,456197,228156,52020.64%
29,62014,34811,38820.63%
286,308169,768134,76020.62%
183,70468,86454,67220.61%
208,37677,53661,56020.60%
176,32081,03264,34420.59%
81,16038,46430,54420.59%
61,02432,65625,94020.57%
50,58832,60425,90420.55%
48,04529,61223,52820.55%
51,40432,57225,88020.55%
97,54437,65229,92020.54%
126,05651,00840,54020.52%
142,69273,89258,72820.52%
108,20445,96436,53620.51%
107,99245,73636,35620.51%
144,79275,96460,39220.50%
50,96132,37225,74020.49%
73,96129,83623,72420.49%
191,16887,66869,73220.46%
50,15732,14425,56820.46%
57,38429,31223,31620.46%
97,76438,20030,40020.42%
73,22529,70423,64420.40%
64,09234,58827,53220.40%
79,96531,00824,68420.39%
105,46032,32425,73220.39%
65,30833,01626,28420.39%
100,36051,88041,31620.36%
108,32845,80036,48020.35%
259,336137,128109,22420.35%
341,388194,588155,05620.32%
52,06832,60825,98420.31%
97,94438,23230,47220.30%
166,42486,97269,32020.30%
146,52848,79238,89620.28%
105,20444,29635,31220.28%
49,53332,03625,54020.28%
69,09241,48833,08020.27%
112,64435,47628,29220.25%
549,564298,336238,02420.22%
52,63632,99226,32420.21%
89,82050,20040,05620.21%
105,04044,56035,56020.20%
335,544193,440154,44020.16%
183,65285,09267,94020.16%
105,18844,57635,59220.15%
51,56836,46029,12420.12%
108,31245,97636,74020.09%
197,68483,46866,71620.07%
72,40529,51223,59620.05%
72,40529,51223,59620.05%
104,93244,26035,40020.02%
159,94872,42057,92820.01%
72,11329,38023,52019.95%
57,64829,52823,64019.94%
102,07247,92838,37219.94%
46,96429,19623,37619.93%
302,90078,94863,21219.93%
103,62446,12036,92819.93%
163,17271,36457,15219.91%
635,080156,340125,28819.86%
109,81748,66038,99619.86%
345,548194,152155,61619.85%
101,09251,74841,48019.84%
146,24077,39262,04819.83%
81,29331,58825,32819.82%
297,616202,940162,73619.81%
72,36929,59623,73619.80%
329,892189,612152,11619.78%
49,27230,82824,73619.76%
92,95253,04842,56819.76%
107,25246,44037,26819.75%
50,67231,80825,53219.73%
107,83243,62435,02019.72%
105,24442,54834,17619.68%
108,51243,76835,15619.68%
140,47666,34453,30419.66%
104,99242,35634,04419.62%
323,552187,636150,82819.62%
102,44446,78837,62419.59%
122,37269,49255,88419.58%
341,768198,324159,49219.58%
331,444190,624153,33619.56%
57,69631,24025,13219.55%
45,23222,14817,82019.54%
107,24842,29234,04019.51%
130,41675,33260,63619.51%
112,02044,07235,47619.50%
330,904190,232153,13219.50%
55,32827,48422,12419.50%
107,09640,43632,56419.47%
106,78049,04039,50019.45%
196,132125,480101,08019.45%
326,488187,676151,24419.41%
338,156198,232159,78819.39%
123,98473,78859,49619.37%
105,61248,17638,84819.36%
344,424232,500187,48819.36%
335,280195,896157,98419.35%
31,17616,39213,22019.35%
128,30076,09661,38419.33%
50,14431,25625,21619.32%
121,99662,37650,32819.32%
112,55643,26034,90819.31%
57,92031,63225,52819.30%
1,543,6491,008,224813,85619.28%
112,10844,53235,95219.27%
108,20441,52833,52819.26%
37,44020,51616,56419.26%
105,56947,53638,38419.25%
151,03280,80465,25219.25%
209,960134,468108,58819.25%
264,756136,484110,21619.25%
107,23642,56834,38419.23%
39,65724,16019,51619.22%
131,24062,43650,44819.20%
212,600105,95685,61219.20%
320,264187,488151,49219.20%
108,60441,79633,79219.15%
101,32442,50434,37619.12%
55,85229,92024,20019.12%
149,07678,62463,60419.10%
121,65670,33256,91219.08%
146,25678,28463,34819.08%
107,70042,54434,42819.08%
30,73216,34013,22419.07%
43,97626,62021,54419.07%
113,50043,08834,87619.06%
338,736196,544159,09219.06%
109,80053,74043,50819.04%
152,64082,48066,77619.04%
101,44842,35634,31618.98%
107,50440,10832,50018.97%
722,580190,360154,25618.97%
732,736201,596163,42018.94%
338,752196,024158,91218.93%
211,272103,03683,53618.93%
340,332196,812159,61618.90%
39,24824,61219,96818.87%
44,12426,76021,71218.86%
107,86043,18035,03618.86%
112,23242,13234,18818.86%
706,440185,012150,15218.84%
734,928211,400171,56818.84%
209,876104,97285,19618.84%
226,072113,40492,04018.84%
76,01642,40434,42818.81%
340,416198,428161,14018.79%
53,40028,78023,37218.79%
101,43242,53634,54418.79%
107,04042,64834,63618.79%
120,17260,88849,45218.78%
79,64053,16043,17618.78%
209,476105,59685,78018.77%
336,840193,460157,16418.76%
33,22821,45217,42818.76%
97,38440,71633,08018.75%
15,589,54411,420,9369,279,08018.75%
90,53652,36842,54818.75%
97,27640,42832,85218.74%
206,500105,19685,49218.73%
43,07220,72016,84018.73%
120,99261,79650,23218.71%
121,06861,05649,63618.70%
81,24443,02834,98018.70%
113,30045,75237,19618.70%
119,74860,54449,22418.70%
112,92445,55237,04018.69%
215,036105,21685,58018.66%
113,93244,32436,05618.65%
267,136165,932134,98818.65%
207,804104,69285,17618.64%
719,632196,272159,70018.63%
103,81654,51244,35618.63%
101,11242,27634,40018.63%
733,348210,908171,64818.61%
97,53240,74433,16818.59%
121,73662,27250,69618.59%
215,848104,32484,93618.58%
97,74853,53243,59218.57%
723,148206,952168,53618.56%
113,32446,24837,66418.56%
342,764198,988162,08818.54%
214,73315,77212,84818.54%
97,54840,46832,96818.53%
63,11335,12428,61618.53%
118,75660,17249,02418.53%
88,48851,99242,36018.53%
300,392157,864128,62018.52%
101,63240,70033,16818.51%
299,408157,704128,52018.51%
129,53261,61250,21618.50%
150,16478,56464,04018.49%
94,82850,34041,04018.47%
717,604203,212165,68018.47%
181,088111,39290,82018.47%
246,896122,25699,68418.46%
90,07652,14042,51618.46%
101,78056,12445,77218.44%
714,428203,988166,39618.43%
215,936106,29686,71618.42%
80,80454,12844,16018.42%
114,48448,59239,64418.41%
88,85652,63642,94418.41%
100,95240,62033,14418.40%
37,16824,54420,02818.40%
108,18458,05647,38018.39%
82,71248,01639,18818.39%
121,69661,54450,23218.38%
331,816190,636155,60018.38%
128,74475,91261,96418.37%
127,62066,55254,33218.36%
165,16880,50865,72818.36%
97,58839,12831,94818.35%
244,924141,000115,12818.35%
119,68060,22449,18018.34%
326,220187,464153,09218.34%
270,716153,568125,42018.33%
213,648103,14484,24018.33%
172,53298,72480,63618.32%
294,776154,556126,24018.32%
121,11662,10450,73618.30%
84,40044,18436,10018.30%
182,576108,63688,77618.28%
75,81252,58042,96818.28%
276,188146,184119,48018.27%
74,47251,74842,30018.26%
279,148147,676120,71618.26%
180,904111,37291,04018.26%
300,592158,312129,41218.26%
270,336151,188123,61218.24%
68,58444,52036,40018.24%
294,808154,620126,42418.24%
95,35649,23240,26018.22%
53,20032,12026,26818.22%
42,24023,37619,12018.21%
299,576158,000129,23618.21%
67,97644,03636,02018.20%
117,46057,56447,08818.20%
202,144104,18085,22418.20%
271,464150,584123,21218.18%
185,848110,97290,80418.17%
196,984121,89299,74018.17%
100,17644,00036,00418.17%
301,516159,216130,28418.17%
102,20055,52845,44018.17%
76,96834,77628,46018.16%
90,91644,31636,26818.16%
126,34064,87653,10418.15%
276,424146,332119,78418.14%
41,55628,55623,37618.14%
113,10847,37638,78418.14%
213,236105,64886,48818.14%
121,28091,58874,98018.13%
77,38429,16423,87618.13%
51,82834,28428,06818.13%
114,14447,90039,21618.13%
276,280146,664120,08418.12%
97,15654,64044,74018.12%
272,784144,084117,98818.11%
133,29247,52838,92018.11%
300,484158,952130,18018.10%
273,340143,580117,59618.10%
246,272140,212114,84418.09%
295,464154,276126,36818.09%
189,724117,42096,18018.09%
90,83240,58033,24018.09%
294,432154,380126,46418.08%
245,596140,648115,21618.08%
114,01248,34039,60018.08%
116,37649,40440,47218.08%
32,35320,26816,60418.08%
158,82896,33678,93218.07%
222,52874,30460,88418.06%
97,33639,01231,96818.06%
127,00475,12861,56418.05%
181,040111,60891,46418.05%
47,65729,14823,88818.05%
56,57632,85226,92418.04%
273,052143,468117,58018.04%
277,916147,208120,65618.04%
80,39243,66835,79618.03%
277,476146,872120,41618.01%
70,86823,78419,50018.01%
103,56856,24446,11618.01%
139,79274,80061,33618.00%
294,256155,256127,31218.00%
113,51250,36041,29618.00%
272,572143,612117,76818.00%
128,73268,36056,06017.99%
85,99650,35641,29617.99%
65,62051,83642,51217.99%
74,74834,52828,32017.98%
266,204149,336122,50417.97%
102,66055,72845,72417.95%
183,484110,97291,05617.95%
102,53256,41246,28817.95%
114,60456,52046,38017.94%
95,84853,76444,12017.94%
272,328143,344117,63217.94%
192,89293,41676,66417.93%
222,07276,98063,17617.93%
183,680113,45693,11617.93%
283,136151,964124,72817.92%
124,00872,41659,44817.91%
125,25664,44852,90817.91%
132,96457,33647,07217.90%
284,516152,488125,19617.90%
94,30540,13232,95217.89%
54,15631,40425,78817.88%
163,87698,88881,20817.88%
94,18053,38043,84017.87%
67,94831,43225,81617.87%
71,76840,84033,54417.86%
138,49355,20045,34417.86%
231,724134,484110,47217.85%
70,98541,94834,46017.85%
221,51277,08463,32417.85%
55,11632,18826,44417.85%
168,65682,50867,79217.84%
53,41631,69226,04017.83%
242,524134,104110,19217.83%
55,63232,64426,82417.83%
247,632143,388117,82817.83%
283,712152,332125,18017.82%
181,708112,38892,35617.82%
293,700155,320127,65617.81%
221,11677,26863,50817.81%
40,18823,14819,02817.80%
113,81647,84039,32817.79%
270,552152,608125,45617.79%
115,72448,90440,20417.79%
245,312142,100116,84817.77%
58,08031,20425,66017.77%
108,64056,13646,16417.76%
102,60857,83247,56017.76%
269,136153,088125,90017.76%
57,12833,27227,36417.76%
115,87648,91640,23217.75%
171,78894,69277,88417.75%
119,93259,40848,86417.75%
124,65659,10048,61217.75%
128,05666,20454,45617.75%
113,46848,12839,59217.74%
272,280143,908118,40417.72%
83,01637,87631,16417.72%
191,66095,10078,24817.72%
132,36846,27638,07617.72%
244,796141,956116,80417.72%
283,792152,232125,26817.71%
194,91295,45278,55217.71%
99,31654,43644,80417.69%
89,56044,58436,69617.69%
113,57647,98439,49617.69%
59,55736,41229,97217.69%
212,628103,44885,15217.69%
170,09683,93669,09617.68%
196,09693,46476,94817.67%
247,040141,836116,77617.67%
98,32452,30043,06017.67%
295,116155,256127,82817.67%
43,59628,68423,62017.65%
124,55664,23252,89617.65%
60,02834,04828,04017.65%
102,90056,76446,74817.64%
114,16848,38439,84817.64%
181,096111,26091,63617.64%
64,47337,50030,88817.63%
115,06048,34839,82417.63%
112,50847,38039,03217.62%
97,54543,80436,08817.61%
68,86541,78434,42417.61%
112,51646,40038,22817.61%
5,879,3044,787,3363,944,23617.61%
113,19647,87239,44417.61%
92,12456,94446,92017.60%
190,008116,24495,78817.60%
32,22020,91617,23617.59%
125,86060,26849,66817.59%
135,14466,44454,76417.58%
179,792110,44091,02817.58%
220,588111,22091,67217.58%
48,64116,94813,97217.56%
54,32832,26426,60017.56%
263,860142,024117,09217.55%
68,85741,05633,85217.55%
88,75646,76038,55617.54%
262,292141,940117,04017.54%
44,15626,91222,19217.54%
80,46453,78844,35617.54%
80,61232,60026,88817.52%
87,57250,34441,52417.52%
135,54446,99238,76017.52%
80,85254,50844,96017.52%
70,45246,68038,50417.51%
154,541101,07683,38017.51%
262,012141,256116,52817.51%
154,53694,26077,76017.50%
78,04829,75224,54417.50%
35,25223,20419,14417.50%
98,00854,86045,26417.49%
221,67276,75263,32817.49%
134,13266,10454,54417.49%
283,760152,604125,92417.48%
70,64942,30434,90817.48%
189,488111,30091,84417.48%
108,94846,82438,64017.48%
221,212127,888105,54017.47%
47,26832,99227,22817.47%
112,48046,73238,56817.47%
233,608134,368110,90417.46%
262,580141,428116,73217.46%
340,344235,292194,23217.45%
261,332140,904116,32017.45%
166,50880,10066,12817.44%
199,35295,29678,68017.44%
37,44124,64420,34817.43%
109,02846,40038,31217.43%
102,58858,07247,95617.42%
138,31667,72855,94017.40%
168,90882,45668,10817.40%
207,880102,30084,50017.40%
4,103,5043,077,0922,541,79617.40%
31,61220,03216,54817.39%
72,60842,53235,13617.39%
123,87259,26448,96017.39%
127,93269,39657,34017.37%
99,52943,70036,11217.36%
109,26445,94037,96417.36%
113,58847,80839,51217.35%
88,89649,05640,54417.35%
143,06853,56044,26817.35%
97,62143,10435,62817.34%
114,96848,46440,06817.32%
207,34099,66882,40417.32%
98,44544,48436,78017.32%
284,056153,316126,76417.32%
72,74429,96424,77617.31%
89,60443,04435,59217.31%
95,55244,94437,16817.30%
114,74847,31639,13617.29%
262,824141,960117,44817.27%
102,20456,69646,90817.26%
113,62847,92839,65617.26%
97,21264,12453,06817.24%
84,90446,62838,59217.23%
109,90444,61236,92417.23%
82,70447,37639,21217.23%
90,86849,19240,71617.23%
108,56446,06438,12817.23%
100,79345,46437,63617.22%
184,444110,53691,50417.22%
108,49645,86837,97217.21%
153,30888,67273,41617.20%
63,25630,92425,60417.20%
166,94480,38066,55217.20%
173,420105,02086,96417.19%
121,19657,68447,76817.19%
37,87324,90420,62417.19%
86,94450,28041,64017.18%
84,35643,39235,93617.18%
192,368136,896113,37617.18%
190,796131,324108,77617.17%
87,25243,05635,66417.17%
72,76829,99224,84417.16%
223,784126,852105,08817.16%
68,44941,25634,18017.15%
146,33289,59674,23617.14%
93,99661,44050,91217.14%
192,988137,432113,88817.13%
55,57632,85227,22417.13%
82,56844,43636,82417.13%
98,16452,54043,54017.13%
92,74453,30044,17217.13%
74,56834,12428,28417.11%
71,12447,12439,06017.11%
99,56144,74437,09217.10%
216,032126,372104,77217.09%
92,56459,84449,61617.09%
60,49636,21230,02817.08%
34,52521,48017,81217.08%
230,692163,668135,72817.07%
194,004119,19698,85617.06%
119,29656,04846,48817.06%
150,09699,58482,60017.05%
31,56417,29614,34817.04%
37,49324,93220,68417.04%
92,97260,93250,55217.04%
95,68463,40852,60817.03%
94,36453,66444,52417.03%
128,98862,70052,02417.03%
138,83756,05246,50817.03%
35,09722,10418,34417.01%
95,54863,26052,50017.01%
50,63629,09224,14417.01%
514,108239,856199,06817.01%
5,043,3884,098,7683,401,92417.00%
95,61663,10852,38017.00%
66,28035,38029,37216.98%
91,28852,32843,44416.98%
93,62443,06835,76016.97%
104,78851,16842,48816.96%
506,132235,592195,62816.96%
99,72857,14047,44816.96%
115,02847,89639,77216.96%
99,39256,56846,97616.96%
109,68846,82438,88816.95%
123,58859,83649,69616.95%
91,86455,57246,15616.94%
100,86457,39247,67216.94%
96,30863,50452,75616.92%
100,63267,26855,88816.92%
78,08832,75627,21616.91%
166,39292,91677,20416.91%
191,276134,472111,73616.91%
62,33637,14430,86416.91%
94,78462,50851,94016.91%
6,492,7325,390,7604,479,51616.90%
108,60045,89638,15216.87%
91,34849,46041,11616.87%
43,75623,55219,58016.86%
52,62830,08025,00816.86%
83,15247,38039,39216.86%
62,97237,36831,06816.86%
108,43246,15238,37216.86%
192,908135,860112,96016.86%
93,62850,72042,17216.85%
38,36021,63617,99216.84%
94,62862,26051,78016.83%
37,18124,36020,26016.83%
60,42035,67629,67216.83%
194,760137,932114,72416.83%
95,34442,60835,44016.82%
212,348123,144102,43616.82%
137,78156,16446,72016.82%
77,33632,09626,70016.81%
91,65259,12849,19216.80%
119,88857,72848,02816.80%
54,13631,80826,46416.80%
192,932135,272112,55616.79%
89,59658,12448,36416.79%
97,96065,06854,14816.78%
126,61663,47252,82016.78%
61,36029,97624,94816.77%
351,296174,640145,34816.77%
68,82942,78435,60816.77%
188,868137,396114,35216.77%
83,20041,57634,60416.77%
56,65631,36826,10816.77%
77,60432,86027,35216.76%
245,700155,240129,22016.76%
101,33667,29256,01616.76%
176,716120,972100,70816.75%
103,27258,58448,77216.75%
194,068136,500113,65616.74%
123,26465,39654,45216.73%
99,23256,56447,10016.73%
110,20149,05640,85616.72%
99,22466,78055,62016.71%
108,54443,00035,81616.71%
72,22031,86826,54816.69%
61,99230,50425,41216.69%
189,892130,680108,87216.69%
186,100125,624104,66016.69%
95,16062,38051,97216.68%
69,93742,39635,32416.68%
202,916151,008125,82016.68%
100,31266,78855,65216.67%
104,30451,06042,54816.67%
80,96841,52034,60016.67%
162,756112,34893,62816.66%
85,55645,53237,94816.66%
81,35658,98449,16016.66%
124,10462,97252,48416.66%
60,57233,00027,50416.65%
30,55319,81616,51616.65%
101,02467,61256,35616.65%
191,500136,408113,70416.64%
94,77262,37251,99216.64%
124,09263,14852,64016.64%
86,84047,97240,00016.62%
175,544103,99686,71616.62%
63,69638,11631,78416.61%
88,73263,89653,28416.61%
245,644156,400130,43216.60%
98,66865,65654,75616.60%
84,45648,62440,55616.59%
191,868135,940113,38816.59%
87,84848,10840,12816.59%
77,20434,06428,41616.58%
197,94896,48880,49616.57%
167,716110,00091,77216.57%
43,54526,66822,25216.56%
32,37220,77617,33616.56%
27,84119,91216,61616.55%
170,660111,46893,03216.54%
233,296156,884130,94816.53%
303,188196,536164,04816.53%
96,38463,30052,84416.52%
91,96460,72050,69216.52%
44,34031,20826,05616.51%
90,76859,38849,59616.49%
64,20538,55232,19616.49%
97,23244,62437,26816.48%
6,512,8485,440,6964,543,85616.48%
65,97341,18034,39616.47%
145,50877,71264,91216.47%
92,96061,58051,44416.46%
86,92855,99246,78016.45%
99,62066,53655,59216.45%
122,14451,41242,95616.45%
185,07688,75674,16016.45%
78,13235,08429,31616.44%
99,28466,58855,64416.44%
108,40043,34836,22816.43%
166,944108,73290,88416.41%
195,064139,568116,66416.41%
78,00832,22426,93616.41%
80,72834,99229,25616.39%
66,48941,70834,87216.39%
116,37255,13646,10016.39%
100,58467,10456,10816.39%
178,764120,256100,55216.39%
189,47293,69678,34416.38%
98,06466,01255,19616.38%
97,88865,37254,66416.38%
62,83631,03225,95216.37%
87,70451,05242,69616.37%
92,60860,59250,67616.37%
31,70821,88418,30416.36%
104,74044,89637,55216.36%
34,34122,30418,65616.36%
88,52856,84447,54816.35%
92,67261,01251,04016.34%
32,70423,10419,32816.34%
32,70423,10419,32816.34%
96,74448,49240,56816.34%
7,704,3526,434,2765,383,18016.34%
32,34020,50017,15216.33%
75,71633,48428,01616.33%
153,54898,40882,34416.32%
69,56439,12432,74016.32%
101,10857,49648,11616.31%
137,52455,15246,15616.31%
125,23665,96855,20816.31%
120,77261,34051,34016.30%
195,732138,996116,34016.30%
83,06839,44833,02016.29%
84,53245,34437,95616.29%
97,89648,18840,34016.29%
77,17249,17641,16816.28%
100,31656,25247,09216.28%
164,372113,74495,22816.28%
100,25266,86455,98816.27%
178,264109,56491,74416.26%
109,79668,88857,68816.26%
184,212117,55698,45216.25%
126,05286,35672,33216.24%
91,92444,46037,24416.23%
94,36062,52452,38016.22%
110,98044,55237,32416.22%
170,592107,86890,38016.21%
72,92429,38424,62416.20%
100,18466,99256,14016.20%
128,48864,75254,26416.20%
97,89648,19240,39216.19%
96,20856,15647,07216.18%
183,36492,41677,47616.17%
95,20855,58846,60416.16%
172,932107,96490,52016.16%
69,30442,99236,04816.15%
128,36887,62873,49216.13%
69,60830,08025,22816.13%
60,25233,43228,04016.13%
6,627,1125,563,0964,665,94416.13%
97,83248,24840,46816.13%
77,32834,60029,02416.12%
157,648101,19684,88816.12%
188,428118,59299,48416.11%
105,74043,82836,76816.11%
115,38054,20845,47616.11%
106,46548,00440,27216.11%
31,50822,00818,46416.10%
43,77630,88025,91216.09%
177,916121,944102,32816.09%
68,86831,43226,37616.09%
136,08053,47244,87216.08%
169,692111,34893,44016.08%
133,22470,26458,96816.08%
129,04073,72461,87216.08%
78,54833,45228,07616.07%
165,44565,24454,76016.07%
157,06485,06871,40816.06%
97,88064,74054,34816.05%
3,847,6323,128,9922,626,86416.05%
70,51230,98426,01216.05%
94,12462,40452,39616.04%
141,79659,55650,00816.03%
90,46546,51639,06016.03%
141,39658,64049,24416.02%
86,67662,91652,83616.02%
192,296136,836114,91616.02%
98,11265,87655,32416.02%
202,544150,560126,44416.02%
191,940135,144113,51216.01%
182,524116,60897,94416.01%
150,71295,79280,46016.01%
125,05263,76053,55616.00%
131,74868,45657,50416.00%
63,88029,21224,54015.99%
162,17359,28449,80415.99%
115,59667,57256,76815.99%
75,56032,32427,15615.99%
109,38054,58045,85615.98%
175,496121,232101,86015.98%
94,38854,96846,18815.97%
165,849114,70896,39215.97%
178,072106,24489,28815.96%
129,12883,78070,41215.96%
134,92879,60466,90415.95%
130,28883,08069,83215.95%
79,67234,04028,61215.95%
73,58835,12829,52815.94%
114,66854,27645,62415.94%
107,70457,04047,94815.94%
107,70457,04047,94815.94%
6,615,8005,528,5844,647,46815.94%
89,78445,34838,12415.93%
88,00852,40844,06015.93%
167,64487,38873,47615.92%
193,152139,040116,90815.92%
33,28820,51217,24815.91%
64,43226,39222,19615.90%
101,17251,74043,51615.89%
156,00079,72067,05615.89%
134,33269,80458,71615.88%
174,924111,84094,07615.88%
247,456182,008153,11615.87%
31,62819,93216,76815.87%
25,67618,30415,40015.87%
35,98923,52819,79615.86%
134,79680,16467,45615.85%
78,95641,00434,50415.85%
108,41351,27243,14815.84%
24,77317,47614,70815.84%
92,13254,03645,48015.83%
30,28017,76014,94815.83%
167,99687,06473,28415.83%
33,42021,91618,44815.82%
366,840250,312210,70415.82%
91,31253,95245,41615.82%
108,36947,14439,68815.82%
112,88470,61659,44815.82%
171,540111,53693,90015.81%
205,892151,504127,55615.81%
178,31287,95674,06015.80%
175,120109,58092,26815.80%
157,34096,19681,00015.80%
110,14844,09637,13215.79%
104,63658,29649,09215.79%
35,06122,55618,99615.78%
110,26868,08057,34015.78%
189,412117,14898,66815.77%
175,532111,69694,08015.77%
67,44829,55624,89615.77%
275,468162,252136,68015.76%
68,00028,13223,70015.75%
135,06470,06059,02415.75%
73,37245,38838,24015.75%
166,308104,94088,41615.75%
75,52433,90028,56415.74%
76,76034,51229,08015.74%
168,476108,06891,07215.73%
131,56081,35668,56415.72%
158,87282,48469,51615.72%
97,83648,38040,77615.72%
167,964104,55688,13215.71%
25,65218,28415,41215.71%
43,07727,12822,86815.70%
176,148108,49691,46415.70%
116,86873,15661,67215.70%
199,020127,636107,60015.70%
125,49255,99647,20815.69%
45,88830,80025,96815.69%
186,000117,46499,04015.68%
147,01770,66459,58415.68%
182,376115,30097,22815.67%
66,35626,03621,95615.67%
133,94494,01279,29615.65%
172,564106,55689,88415.65%
172,564106,55689,88415.65%
171,284103,70487,48815.64%
171,284103,70487,48815.64%
97,95255,58846,90015.63%
163,11687,09673,48415.63%
171,888107,66890,84415.63%
75,35647,76840,30815.62%
73,65246,82839,51615.61%
65,73226,36422,24815.61%
96,64849,29241,60015.60%
97,83653,49645,14815.60%
130,83682,57669,69215.60%
84,30850,74842,83215.60%
159,22897,08081,94015.60%
159,22897,08081,94015.60%
122,70055,56046,89615.59%
45,07731,16026,30415.58%
117,61657,35648,42015.58%
128,56862,13652,45615.58%
75,26046,81239,52015.58%
71,31233,56428,33615.58%
137,46497,83682,60015.57%
6,751,8485,697,5004,810,32415.57%
220,420112,94895,36415.57%
169,208101,18485,43215.57%
111,42060,56451,13615.57%
111,42060,56451,13615.57%
163,484104,80088,49615.56%
89,02546,55239,31215.55%
115,92072,12460,90815.55%
96,84054,91246,37615.54%
124,23257,40048,48015.54%
98,63249,32841,66415.54%
207,052154,176130,22415.54%
117,67668,63657,97615.53%
2,887,5682,165,9201,829,60015.53%
162,272102,76086,80415.53%
138,32865,59255,40815.53%
43,20127,05622,85615.52%
125,24479,64067,28015.52%
151,84079,18066,89615.51%
160,07760,10850,78415.51%
5,264,1764,389,4963,708,80815.51%
158,69698,12082,91215.50%
129,61274,37662,85615.49%
111,18470,29659,41215.48%
194,856108,86892,01215.48%
65,50428,34423,95615.48%
82,04850,33642,54415.48%
112,56868,11657,57215.48%
189,164134,460113,65215.48%
170,064102,86486,94815.47%
170,064102,86486,94815.47%
179,556113,04895,56015.47%
27,62519,99216,90015.47%
27,62519,99216,90015.47%
170,52093,96479,43215.47%
4,242,8043,511,0322,968,40815.45%
165,968100,88885,29615.45%
92,09650,90043,03615.45%
178,908113,74096,16815.45%
179,076109,92492,94415.45%
97,68055,44446,88015.45%
166,260107,48090,88015.44%
188,228136,132115,10815.44%
203,520149,576126,48015.44%
165,172103,76887,74815.44%
188,140117,62099,46415.44%
86,29651,82443,82815.43%
109,38865,70455,56815.43%
167,08083,52870,64415.42%
65,87226,99622,83215.42%
179,560114,67296,98815.42%
113,45671,10060,13615.42%
131,04878,46866,36815.42%
109,56859,24850,11615.41%
109,56859,24850,11615.41%
169,209112,38895,06815.41%
90,84534,21628,94415.41%
112,68469,14458,50415.39%
98,24447,10439,85615.39%
32,27321,24417,97615.38%
201,752148,788125,90015.38%
172,440109,47692,64015.38%
57,93223,64420,00815.38%
74,28047,16039,90815.38%
167,020107,33690,83215.38%
5,427,8564,535,0363,838,30015.36%
117,93267,69657,29615.36%
98,60852,89644,77215.36%
190,480124,124105,06815.35%
92,98052,90044,78015.35%
103,51345,08438,16815.34%
97,42055,60047,07215.34%
78,70033,46028,32815.34%
73,80843,48036,81215.34%
168,364108,38891,76815.33%
168,868106,78090,40815.33%
171,684107,45690,98415.33%
98,88454,38446,04815.33%
197,120108,57291,94415.32%
162,23288,64875,07215.31%
1,411,8651,087,480920,94015.31%
108,50858,23249,31615.31%
108,50858,23249,31615.31%
109,34459,47650,37615.30%
109,34459,47650,37615.30%
109,34459,47650,37615.30%
59,30426,75622,66415.29%
58,85636,72431,10815.29%
134,72074,87263,42815.28%
79,30830,07225,47615.28%
111,88460,04450,86815.28%
111,88460,04450,86815.28%
130,72068,40057,94815.28%
91,00053,20445,07615.28%
160,44497,95682,99215.28%
116,74868,14857,74015.27%
72,86445,26438,35215.27%
203,496150,292127,34415.27%
126,38458,23649,34415.27%
272,748161,236136,62015.27%
131,52865,92855,86415.27%
75,36434,24829,02015.27%
104,41746,48839,39215.26%
73,31245,33638,41615.26%
141,67276,39264,73615.26%
151,32485,03272,06015.26%
98,24447,10839,92415.25%
158,74092,92878,76015.25%
154,38081,18468,81215.24%
61,33627,72023,49615.24%
156,52884,02871,22815.23%
92,27736,44830,89615.23%
101,50456,75248,10815.23%
158,14096,86482,11215.23%
115,92467,16856,94015.23%
58,46436,68031,09615.22%
85,40445,67638,72815.21%
71,03643,71237,06415.21%
66,48029,46824,98815.20%
130,21667,35657,11615.20%
170,404105,78889,70815.20%
170,404105,78889,70815.20%
4,249,2563,536,5162,999,04815.20%
158,97758,94849,99215.19%
63,69628,06823,80415.19%
154,136100,69285,39615.19%
161,03698,18883,28015.18%
174,480111,52894,59615.18%
201,968150,064127,28815.18%
3,249,4162,633,6042,234,09215.17%
75,12446,34439,31615.16%
188,744132,508112,41615.16%
203,540152,620129,48015.16%
165,560103,26887,61215.16%
4,217,8403,227,9842,738,69215.16%
150,66496,75282,08815.16%
159,47295,32880,88415.15%
75,11234,33629,13615.14%
161,14487,12473,93215.14%
153,03696,79682,14015.14%
109,58055,84847,39215.14%
72,36442,38435,96815.14%
68,28840,14034,06415.14%
92,78452,54444,59215.13%
122,00454,32046,10015.13%
36,01723,36819,83215.13%
168,696104,95689,07615.13%
74,61246,98039,87215.13%
127,76051,06043,33615.13%
110,71260,24451,13215.13%
110,71260,24451,13215.13%
176,372113,97696,74015.12%
92,93655,18046,83615.12%
204,504151,048128,21215.12%
158,43683,53270,90415.12%
165,220101,39686,07215.11%
165,220101,39686,07215.11%
202,380149,916127,26415.11%
66,16829,02824,64815.09%
68,14040,30434,22415.09%
92,80850,46842,86015.07%
101,83656,63248,09615.07%
113,57261,69652,40015.07%
113,57261,69652,40015.07%
74,73233,50428,45615.07%
41,52525,83221,94015.07%
93,14455,19646,88015.07%
90,59334,05228,92415.06%
171,916106,22090,23215.05%
92,13736,03630,61215.05%
94,80852,64844,72415.05%
99,08055,29646,97615.05%
118,56070,50859,90015.05%
115,64869,64459,17215.04%
30,48019,82416,84415.03%
160,44889,87676,36815.03%
114,88466,55256,55215.03%
58,28429,04024,68015.01%
82,27641,16434,98415.01%
119,78062,86053,42415.01%
135,34094,78880,56415.01%
88,30852,75244,83615.01%
119,06474,22463,08815.00%
174,872122,724104,31215.00%
98,96438,42432,66015.00%
70,12031,47226,75215.00%
121,57666,02456,12414.99%
101,37258,26449,52814.99%
103,15273,76862,70814.99%
102,44458,67249,87614.99%
114,11266,81656,80014.99%
67,78430,18025,65614.99%
41,92426,40022,44414.98%
33,16019,88816,90814.98%
27,05216,95214,41214.98%
138,94488,26075,03614.98%
126,16866,21256,29214.98%
137,51297,62082,99614.98%
78,94848,72041,42414.98%
133,35674,70463,52014.97%
75,68446,70439,71214.97%
24,26917,29214,70414.97%
153,63280,04868,06814.97%
63,90426,17222,25614.96%
487,096234,036199,02014.96%
185,392116,62099,17214.96%
159,556103,71688,20014.96%
101,92048,07640,88414.96%
91,94854,38846,25214.96%
296,780211,384179,76814.96%
116,78068,77658,49214.95%
75,46846,60039,63214.95%
89,54053,63645,61614.95%
153,92079,05267,23214.95%
132,57293,42879,46014.95%
163,844105,95690,12014.95%
183,576116,88099,41214.95%
117,74470,32059,81214.94%
105,11663,12053,68814.94%
73,47645,30438,53614.94%
131,70865,05255,34014.93%
99,83256,25247,85614.93%
93,90436,74431,26014.92%
144,68496,02481,69614.92%
78,48049,20041,86014.92%
487,820238,584202,99214.92%
56,37630,75626,16814.92%
160,83686,07273,23614.91%
93,23655,84447,51614.91%
122,18061,14452,02814.91%
86,98047,90040,76014.91%
45,72530,86026,26014.91%
162,12088,35275,18414.90%
82,56047,80040,67614.90%
134,90874,94863,78014.90%
83,86450,66843,12014.90%
122,00054,45246,34414.89%
72,80044,19237,61214.89%
157,444101,15286,09214.89%
92,96052,20844,43614.89%
141,68889,26875,98014.89%
167,268101,59686,47614.88%
74,41245,78438,97214.88%
148,11297,95283,38014.88%
28,71220,22017,21214.88%
125,23264,04854,52014.88%
67,63640,01234,06014.88%
4,313,6163,606,1483,069,74814.87%
173,89298,45683,81214.87%
199,048148,132126,10014.87%
94,72857,18448,68014.87%
125,35664,39654,82014.87%
146,54196,65282,28014.87%
179,892112,60895,86414.87%
66,12828,89224,59614.87%
107,49265,34855,63214.87%
235,344139,288118,58814.86%
98,67638,82433,05614.86%
98,88039,25633,42414.86%
104,70861,47252,34014.86%
187,164136,016115,81614.85%
37,92823,60420,10014.84%
169,216108,06892,02814.84%
147,96097,24082,81214.84%
199,540148,584126,54014.84%
42,40126,69222,73214.84%
38,28423,94420,39214.83%
82,68034,00828,96414.83%
100,73260,50451,53214.83%
93,51651,82044,13614.83%
103,04040,41234,42414.82%
5,434,7244,582,0203,903,17214.82%
30,87619,74416,82014.81%
123,05655,86847,59614.81%
33,96824,26420,67214.80%
108,03258,28849,66014.80%
75,04846,21639,37614.80%
168,69296,61282,31614.80%
98,69256,07247,78014.79%
103,98862,48853,24814.79%
108,24858,64849,97614.79%
108,24858,64849,97614.79%
93,79637,22431,72014.79%
73,83731,82027,11614.78%
92,28056,04447,76014.78%
72,35644,49237,91614.78%
108,66866,38856,57614.78%
68,97240,86834,82814.78%
93,58037,27231,76414.78%
164,63759,47250,68814.77%
27,66420,04817,08814.76%
133,52075,45264,31214.76%
115,70866,22056,44414.76%
49,71634,36029,28814.76%
149,07695,32481,25614.76%
98,83638,38032,71614.76%
146,99282,72870,52014.76%
36,93222,85219,48014.76%
41,21226,32822,44414.75%
71,41241,70435,55214.75%
123,15262,56053,33214.75%
101,06839,10433,33614.75%
66,92428,82824,57614.75%
81,17641,60435,46814.75%
156,89696,01281,85214.75%
135,48075,53664,39614.75%
121,93654,89646,80014.75%
79,15249,14841,90014.75%
33,01623,22019,79614.75%
91,52055,48447,30414.74%
30,84019,78016,86414.74%
146,70082,19270,07614.74%
98,95256,79648,42414.74%
125,33265,75656,06414.74%
123,15262,56053,34014.74%
167,53297,36483,02014.73%
70,70829,57225,21614.73%
4,265,1443,555,2123,031,56414.73%
152,15697,15282,84414.73%
100,27656,95648,56814.73%
74,39233,25628,36014.72%
58,31637,46831,95214.72%
96,98852,25644,56414.72%
162,144100,44085,65614.72%
46,46931,64026,98414.72%
153,39697,72083,34014.72%
98,21658,28049,70414.72%
72,48839,64433,81214.71%
144,43694,22880,36814.71%
111,44147,44040,46414.70%
159,940100,27685,53214.70%
96,75238,33232,69614.70%
70,37627,99623,88014.70%
130,84491,54478,08814.70%
165,580107,18491,43214.70%
70,80429,66825,30814.70%
65,70448,73241,57214.69%
159,82898,60884,12014.69%
117,04468,68058,59214.69%
117,44869,74859,50414.69%
85,60447,56040,57614.68%
43,70127,64823,58814.68%
98,52440,37234,44414.68%
45,25230,78426,26414.68%
75,18846,19239,41214.68%
4,385,8043,686,0283,145,12414.67%
159,296103,29688,14014.67%
97,72838,85233,15214.67%
68,34040,24434,34014.67%
93,25636,23630,92014.67%
124,37648,86841,70014.67%
68,66827,43623,41214.67%
93,42853,34845,52414.67%
74,48053,93246,02414.66%
147,96092,65279,06814.66%
157,432102,20887,22814.66%
122,28461,14052,18014.65%
25,87719,35216,51614.65%
25,87719,35216,51614.65%
156,304101,16486,34014.65%
108,32863,39254,10414.65%
80,04837,79232,25614.65%
147,38892,54478,98814.65%
94,00853,82445,94014.65%
10,0657,1566,10814.65%
112,30467,00457,19214.64%
45,16025,47221,74414.64%
106,92460,57651,71614.63%
128,78066,48856,76414.63%
89,38446,17239,42014.62%
70,82439,52833,74814.62%
78,65649,02841,86014.62%
32,02420,00017,07614.62%
156,108106,05290,55214.62%
158,45692,81279,24814.61%
111,22860,82051,93214.61%
111,22860,82051,93214.61%
103,12462,16453,08014.61%
31,12822,58419,28414.61%
67,48839,36833,61614.61%
236,048139,080118,76014.61%
159,536101,22086,43214.61%
89,24053,72845,88014.61%
98,48440,15634,29214.60%
145,73281,96069,99214.60%
78,80045,26838,66014.60%
161,06097,56483,32814.59%
78,95249,12841,96014.59%
117,38457,14448,80814.59%
27,35619,68816,81614.59%
77,98840,83234,87614.59%
144,24493,39279,77214.58%
106,08856,01247,84414.58%
186,184137,156117,16014.58%
158,70954,46846,52814.58%
167,700109,59293,62014.57%
72,70034,88429,80014.57%
51,02834,56829,53214.57%
119,04860,61251,78414.56%
69,68443,86037,47214.56%
123,74065,39655,87214.56%
115,78867,85257,97214.56%
115,78867,85257,97214.56%
82,50841,71635,64414.56%
30,04419,48416,64814.56%
145,18480,08068,42414.56%
96,67253,26445,51214.55%
98,04857,14448,82814.55%
74,83639,72033,94014.55%
157,95756,05247,89614.55%
97,85656,00847,86014.55%
78,63249,48442,28814.54%
117,44068,77658,77614.54%
98,14855,05247,04814.54%
151,76483,70471,54014.53%
64,90431,60827,01614.53%
74,30033,42828,57214.53%
103,06057,93249,52014.52%
205,992152,120130,03214.52%
92,85240,58434,69214.52%
158,508101,17286,48414.52%
92,82056,51248,30814.52%
137,61675,42864,48014.51%
94,46037,43232,00014.51%
152,55699,95285,45214.51%
50,22833,39228,54814.51%
98,87638,16432,62814.51%
5,787,2764,822,5244,123,02414.50%
93,00053,02445,33614.50%
156,74155,59247,53214.50%
36,48022,32019,08414.50%
35,41323,21219,84814.49%
95,60055,27647,26814.49%
104,24850,39243,09214.49%
53,24035,20830,10814.49%
96,11259,40050,79614.48%
66,41228,83224,65614.48%
69,86842,95236,73214.48%
48,04032,15227,49614.48%
122,92077,45666,24414.48%
91,56052,50844,90814.47%
4,534,8803,558,2403,043,43214.47%
120,99252,81245,17214.47%
97,18051,86444,36414.46%
88,15651,79644,30814.46%
90,64448,88041,81614.45%
159,87698,50884,27214.45%
16,796,76414,502,85212,407,87214.45%
95,61237,75632,30414.44%
45,31330,80426,35614.44%
154,892100,40885,91614.43%
78,32048,44841,45614.43%
124,09663,81254,60414.43%
48,72833,32028,51614.42%
33,70026,10822,34414.42%
78,96449,30042,19614.41%
68,81238,20032,69614.41%
104,24040,59234,74414.41%
102,37249,04041,98014.40%
91,86451,13243,77214.39%
150,86496,26482,40814.39%
121,63264,64455,34014.39%
87,22060,80452,06014.38%
158,172103,18888,35214.38%
80,90441,04035,14014.38%
159,068104,08089,12014.37%
102,97260,47651,78414.37%
89,79251,43244,04014.37%
169,636108,72893,10814.37%
200,036148,388127,07214.37%
90,80054,02446,26414.36%
91,03652,02044,54814.36%
66,02838,28832,79214.35%
117,39670,92860,74814.35%
69,39237,12431,79614.35%
67,75232,16827,55214.35%
162,052119,996102,78014.35%
132,05273,22462,72014.35%
8,297,4527,083,7446,067,59614.34%
95,63657,38849,15614.34%
67,62833,18428,42414.34%
86,49651,98044,52414.34%
70,51629,64425,39214.34%
54,08437,04031,72814.34%
36,17222,34419,14014.34%
73,43639,84034,12814.34%
118,29666,46856,94014.33%
59,83235,21630,16814.33%
5,484,5444,660,8603,992,77214.33%
152,804104,17289,24414.33%
119,14863,20454,14814.33%
95,35648,94441,93214.33%
70,58440,29234,52014.33%
84,10045,18438,71214.32%
97,53639,29633,66814.32%
151,06499,40085,16414.32%
29,84417,51215,00414.32%
5,616,1684,769,6524,086,65214.32%
118,50862,37653,44414.32%
102,66440,45634,66414.32%
146,07297,06883,17214.32%
143,37280,24868,76014.32%
98,97240,18034,42814.32%
177,848120,628103,36414.31%
119,16074,38463,74014.31%
78,69648,88441,89214.30%
75,82049,72842,61614.30%
413,520279,648239,65614.30%
153,428100,47686,10814.30%
99,44838,18832,72814.30%
82,26041,98035,98014.29%
98,85644,97638,54814.29%
65,29637,08831,78814.29%
79,16440,05634,33214.29%
2,968,8482,511,0282,152,26414.29%
90,22844,18437,87214.29%
62,95224,66821,14414.29%
145,73281,96070,25614.28%
79,86447,04440,32814.28%
159,27686,70474,32814.27%
95,27654,25646,51214.27%
120,61661,09652,37614.27%
69,68839,24033,64014.27%
148,42077,60066,52814.27%
162,864100,17285,88014.27%
25,71319,15616,42414.26%
45,25330,74426,36014.26%
118,79266,69257,18414.26%
145,18480,08068,66414.26%
88,46850,39643,21214.26%
63,70826,19622,46414.25%
134,56874,07263,52014.25%
148,07298,09284,12814.24%
78,88449,26042,24814.23%
77,78045,55639,07214.23%
158,68899,36885,23214.23%
33,62522,07618,93614.22%
93,70055,48847,59614.22%
97,74438,98433,44014.22%
195,928145,308124,64414.22%
96,60432,29227,70014.22%
4,186,4563,473,1242,979,54014.21%
99,74454,66446,89614.21%
138,64094,01680,66014.21%
89,34449,27642,27614.21%
74,70845,70839,21614.20%
108,39664,84055,63214.20%
157,872101,28886,90414.20%
67,92032,50827,89214.20%
99,37651,93244,56014.20%
85,61249,13242,16014.19%
69,71234,51229,61614.19%
31,20920,50417,59614.18%
90,60846,23239,67614.18%
156,888102,15687,67214.18%
93,19653,86446,22814.18%
107,11663,81254,76814.17%
112,30947,67640,92014.17%
105,28858,78850,46014.17%
117,69265,06455,84814.16%
159,83698,36884,43614.16%
97,13651,43244,14814.16%
96,71238,64033,16814.16%
109,85345,53239,08414.16%
35,28523,28419,98814.16%
81,80838,91633,40814.15%
156,95697,74083,90814.15%
122,52083,75271,90014.15%
95,19656,10448,16814.15%
4,565,7683,626,9403,113,98414.14%
158,116102,64088,12414.14%
115,60055,92048,01214.14%
87,32849,89642,84014.14%
86,14446,00039,49614.14%
110,13259,47651,06814.14%
153,36499,84085,72814.13%
96,81650,52043,38014.13%
81,95641,12835,31614.13%
97,55656,24448,29614.13%
70,53639,80434,18014.13%
66,62443,69237,52014.13%
8,344,0847,205,8246,188,00814.12%
61,35637,99232,62814.12%
72,93232,13227,59614.12%
90,02449,50442,51614.12%
77,91647,61640,89614.11%
97,86451,89644,57214.11%
83,53247,50840,80414.11%
126,42882,22070,62014.11%
105,98165,44056,20814.11%
93,61658,24850,03214.11%
63,54042,00036,07614.10%
72,90440,21634,54414.10%
73,79251,44844,19214.10%
98,99241,64435,77214.10%
95,64865,03655,86814.10%
152,89699,88885,80814.10%
146,26566,22456,89214.09%
145,06483,35271,60814.09%
155,488102,52888,08814.08%
88,74052,50045,10814.08%
93,19257,72849,60014.08%
104,96453,98446,38414.08%
83,02043,13637,06414.08%
103,54447,20840,56414.07%
36,42822,57219,39614.07%
67,73638,69233,24814.07%
55,17237,18831,95614.07%
164,660101,04086,82814.07%
102,96858,27650,08014.06%
5,629,6244,768,3764,097,78414.06%
125,55682,17270,61614.06%
66,25628,40024,40814.06%
68,66429,26025,14814.05%
47,80132,82828,21614.05%
76,22846,46839,94014.05%
97,66051,34444,13214.05%
79,02848,81241,95614.05%
68,67228,93624,87214.04%
70,67639,16433,66414.04%
141,44878,66067,61614.04%
104,56858,03649,88814.04%
48,07629,30025,18814.03%
118,56852,16044,84014.03%
123,30867,93258,40014.03%
8,364,8407,249,8246,232,66014.03%
92,40447,58440,90814.03%
113,32154,60046,94014.03%
102,71649,30442,38814.03%
138,28894,25681,03614.03%
63,25225,58822,00014.02%
72,54042,19636,28014.02%
58,80027,19223,38014.02%
4,579,2963,654,6043,142,33214.02%
137,80090,10877,48014.01%
72,66035,46830,50014.01%
87,03649,60842,66014.01%
120,37252,21244,90014.00%
28,74020,51217,64014.00%
112,19661,11252,55614.00%
100,28857,69249,61614.00%
92,19254,58446,94414.00%
25,52816,95214,58013.99%
46,76932,19227,68813.99%
149,98495,51682,15613.99%
65,68037,36832,14413.98%
80,72340,08834,48413.98%
91,77251,91244,65613.98%
90,53652,66445,30413.98%
117,54049,98042,99613.97%
55,03637,36832,14813.97%
71,20440,44834,80013.96%
92,08844,69238,45213.96%
81,47740,06034,46813.96%
53,88836,74031,61213.96%
99,42054,60046,98013.96%
69,83234,39629,59613.96%
62,99233,08028,46413.95%
62,99233,08028,46413.95%
135,65692,62079,69613.95%
63,96838,87233,44813.95%
68,52840,74435,06013.95%
97,69252,53245,20413.95%
98,93652,56445,23213.95%
93,83652,60845,27213.94%
108,84051,75244,53613.94%
70,40034,80029,94813.94%
154,008100,50086,49213.94%
82,28842,38836,48013.94%
81,66141,04035,32013.94%
93,25650,57643,52813.94%
153,98173,16462,97213.93%
64,60837,58832,35213.93%
98,66452,00444,76013.93%
146,20896,48883,04813.93%
40,28025,93622,32413.93%
149,92098,08084,42413.92%
86,47655,33247,62813.92%
66,80438,32832,99213.92%
61,68037,64832,40813.92%
93,82847,94041,26813.92%
94,24449,09242,26013.92%
68,65638,75233,36013.91%
41,63329,36025,27613.91%
58,69626,68822,97613.91%
21,48011,82010,17613.91%
82,76041,40435,64813.90%
78,17247,91241,25213.90%
25,41714,48012,46813.90%
69,42041,60435,82413.89%
95,15649,61242,72013.89%
80,89741,00835,31213.89%
117,05248,58841,84013.89%
103,80448,27241,56813.89%
78,06447,98441,32013.89%
82,95041,53635,76813.89%
103,26047,18840,63613.88%
82,42842,41236,52413.88%
141,06493,57280,58413.88%
142,98494,28481,20013.88%
154,288100,51686,56813.88%
3,453,9762,870,8482,472,55613.87%
3,453,9762,870,8482,472,55613.87%
50,22420,93218,02813.87%
90,14845,18038,91213.87%
63,97234,08029,35213.87%
63,97234,08029,35213.87%
112,47748,70041,94413.87%
93,05655,77248,03613.87%
147,72878,18467,34013.87%
51,31229,13225,09213.87%
94,68058,74050,59613.86%
141,21693,43280,48013.86%
157,064101,39687,34013.86%
78,16847,78041,16013.86%
93,90452,09644,88013.85%
103,12059,31651,10013.85%
73,50831,94027,51613.85%
39,58019,03216,39613.85%
106,42849,94043,02413.85%
106,07664,94055,94813.85%
112,02867,13657,84013.85%
88,30048,80042,04413.84%
88,30048,80042,04413.84%
34,48826,29622,65613.84%
81,63040,14034,58413.84%
78,85248,82042,06413.84%
136,19292,04079,30413.84%
154,924101,92887,82413.84%
105,26051,52444,39613.83%
97,53251,00043,94813.83%
79,91628,47624,54013.82%
165,776106,93292,15213.82%
81,75251,74844,60013.81%
103,64860,36052,02413.81%
119,47253,21645,86813.81%
95,18058,13250,10813.80%
42,86027,21223,45613.80%
107,32965,26856,26013.80%
80,99250,38843,43613.80%
5,645,6044,846,4284,177,83213.80%
66,60030,64826,42013.80%
82,42042,19236,37213.79%
71,56431,92827,52413.79%
40,66128,68424,72813.79%
192,736149,208128,64013.78%
68,73629,22425,19613.78%
81,75247,22040,71213.78%
79,44429,02825,02813.78%
24,81318,90016,29613.78%
117,83650,26443,34013.78%
67,67632,75628,24413.77%
43,72027,47223,68813.77%
95,40037,96032,73213.77%
95,20056,33248,57613.77%
84,82854,31646,84013.76%
117,28052,57645,34013.76%
40,98528,28024,38813.76%
69,67639,59634,14813.76%
137,08095,44882,31613.76%
40,52928,49224,57213.76%
84,74053,56046,19213.76%
82,80439,72034,25613.76%
40,02425,44421,94413.76%
51,26421,75218,76013.76%
89,76849,23642,46413.75%
117,21652,30045,10813.75%
69,58038,63633,32413.75%
102,57659,76451,54813.75%
30,72822,32419,25613.74%
125,75681,94070,68013.74%
21,14113,88811,98013.74%
53,87629,52425,46813.74%
101,92858,29650,28813.74%
81,35140,86435,25213.73%
40,81225,84022,29213.73%
88,19249,70442,88013.73%
50,57221,53218,57613.73%
97,40059,12451,00813.73%
116,55673,78063,65613.72%
102,53262,16453,63613.72%
72,14042,20036,41213.72%
92,98853,06845,79213.71%
4,836,1723,789,5243,270,00413.71%
34,31322,49619,41213.71%
50,21620,95618,08413.70%
70,60031,17626,90413.70%
73,09235,26430,43213.70%
103,61240,29234,77213.70%
81,47641,98836,23613.70%
29,43621,49218,54813.70%
120,71267,34458,12013.70%
81,76842,38436,58013.69%
119,58450,27243,38813.69%
163,820101,43287,55213.68%
5,663,4404,878,6404,211,29613.68%
106,08056,26848,57213.68%
97,60459,54851,40413.68%
55,45334,49629,78013.67%
29,40821,07218,19213.67%
91,22046,71240,32813.67%
98,56853,46046,15613.66%
61,35237,73632,58413.65%
145,99366,16057,12813.65%
246,737158,244136,64813.65%
107,47265,21656,31613.65%
25,34818,17615,69613.64%
51,09629,96425,87613.64%
133,80871,96062,14413.64%
41,92026,30422,71613.64%
82,58052,23645,11613.63%
117,70465,79656,82813.63%
96,97650,80043,87613.63%
51,49622,54019,46813.63%
8,390,1487,337,8366,337,86013.63%
83,49641,21235,59613.63%
144,10967,46058,26813.63%
103,38461,09652,77213.62%
4,591,3123,695,5963,192,13213.62%
73,62045,54439,34013.62%
69,12040,08434,62413.62%
141,78492,29679,72413.62%
98,37653,93246,58813.62%
59,90434,35629,68013.61%
85,69654,82047,36013.61%
98,78439,39234,03213.61%
96,97666,02857,04413.61%
83,64457,86049,98813.61%
46,26532,13627,76413.60%
86,20452,04444,96413.60%
98,88469,98460,46413.60%
130,30872,81662,91213.60%
70,62440,03234,58813.60%
84,14457,75249,90013.60%
87,55247,57641,10813.60%
57,02031,36827,10413.59%
86,91241,81636,13213.59%
99,37651,62444,60813.59%
141,71364,93656,11213.59%
101,26459,50451,42013.59%
124,88881,62470,53613.58%
93,81648,91242,26813.58%
92,42049,47642,75613.58%
108,90452,48845,36013.58%
58,44426,66023,04013.58%
36,80422,68819,60813.58%
98,16053,65646,37213.58%
65,84838,10432,93213.57%
101,19658,35650,43613.57%
50,86421,40018,49613.57%
186,58891,85279,38813.57%
30,78419,54416,89213.57%
63,63233,75629,17613.57%
63,63233,75629,17613.57%
124,78881,70470,62013.57%
73,50042,79236,98813.56%
68,22039,84434,44013.56%
153,80173,18063,25613.56%
91,25245,69639,50013.56%
97,46051,36844,40413.56%
26,7178,9407,72813.56%
64,33235,32030,53213.56%
63,90841,75636,09613.55%
81,13540,99235,43613.55%
98,74054,36847,00013.55%
922,333710,028613,80813.55%
110,29265,21256,37613.55%
124,15281,01670,04013.55%
80,02044,12038,14413.54%
80,02044,12038,14413.54%
38,90024,62021,28813.53%
138,40091,06478,74013.53%
51,73622,08019,09213.53%
37,62023,36020,20013.53%
27,30018,51216,00813.53%
107,17264,26055,56813.53%
96,84059,29251,27213.53%
100,16059,53251,48813.51%
92,88448,22441,70813.51%
82,96445,41639,28013.51%
103,64861,23252,96013.51%
14,9407,1366,17213.51%
154,06095,25682,38813.51%
99,53258,57250,66013.51%
76,84043,29637,44813.51%
72,00032,01627,69213.51%
137,24078,11267,56413.50%
100,35257,88850,07213.50%
82,24442,19236,49613.50%
116,84850,76843,91613.50%
114,94155,40847,93213.49%
3,457,6242,899,8802,508,64413.49%
3,457,6242,899,8802,508,64413.49%
81,32851,00444,12413.49%
93,79649,08042,46013.49%
97,14155,55648,06413.49%
93,34451,17244,27213.48%
18,38812,40010,72813.48%
45,12131,38827,15613.48%
103,09640,68835,20813.47%
165,160105,14890,98813.47%
8,785,5647,534,9086,520,95213.46%
125,92559,43651,44013.45%
51,11221,52818,63213.45%
42,64827,48023,78413.45%
72,72035,27630,53213.45%
34,44922,63619,59213.45%
81,50842,06436,40813.45%
51,00822,08419,11613.44%
122,80483,16871,99213.44%
106,93662,97254,51213.43%
50,29632,81228,40413.43%
66,22438,63233,44413.43%
82,32850,49643,71613.43%
165,02899,72086,33213.43%
48,51229,94825,92813.42%
49,80021,16418,32413.42%
136,60091,69679,39613.41%
109,27265,46456,68413.41%
55,88035,47230,71613.41%
81,98441,80036,19613.41%
79,88440,48835,06013.41%
84,82847,18440,86013.40%
116,32855,65248,19613.40%
106,04860,58052,46813.39%
87,92847,68041,29613.39%
93,86849,26442,66813.39%
78,49640,27634,88413.39%
80,35241,30035,77213.38%
62,13339,90034,56013.38%
68,41239,17233,93213.38%
79,88840,59235,16413.37%
51,26822,28819,30813.37%
62,54836,62831,73213.37%
106,29655,25647,87213.36%
88,47248,05241,63213.36%
136,96888,06876,30413.36%
136,74490,77678,65213.36%
95,23650,19643,49213.36%
91,83655,56048,14013.35%
95,44458,43650,63213.35%
62,66436,72431,82013.35%
95,89250,02443,34413.35%
135,17289,34477,41613.35%
83,84052,85645,80013.35%
41,48025,92022,46013.35%
82,10844,08438,20013.35%
98,18857,69249,99213.35%
141,88883,66472,50013.34%
134,72091,01278,86813.34%
77,67347,63641,28013.34%
125,38480,88870,09613.34%
97,04457,20449,57213.34%
75,26848,10041,68413.34%
50,16820,66817,91213.33%
139,32895,13282,44813.33%
95,46449,92843,27213.33%
96,46452,06445,12413.33%
55,81634,36429,78413.33%
64,51627,67623,98813.33%
123,46480,66469,91613.32%
89,28047,07240,80013.32%
4,437,8483,741,3123,242,84013.32%
4,731,8003,785,1203,280,86013.32%
77,11643,56837,76413.32%
67,24439,97634,65213.32%
95,53754,06446,86413.32%
98,30851,24444,42013.32%
95,79249,95643,30413.32%
95,24063,80855,31213.31%
28,55220,70417,94813.31%
64,32027,97624,25213.31%
62,31632,90828,52813.31%
62,31632,90828,52813.31%
62,24438,50033,37613.31%
95,77250,76444,00813.31%
102,07661,80853,58413.31%
67,94829,25225,36013.31%
29,72021,49618,63613.30%
80,80841,76836,21213.30%
101,17257,26449,64813.30%
75,79242,07636,48013.30%
39,68025,38422,00813.30%
131,46486,68075,15213.30%
92,46447,85641,49213.30%
137,70091,69679,50413.30%
82,01242,46036,81613.29%
121,78467,93258,90413.29%
50,60421,79218,89613.29%
87,03249,74043,13213.29%
33,45616,95214,70013.28%
98,75667,75658,75613.28%
3,658,3763,034,8002,631,72813.28%
61,42437,77232,75613.28%
67,08030,30426,28013.28%
105,97261,45253,29213.28%
138,58090,71278,66813.28%
96,58853,00045,96413.28%
32,48423,92420,74813.28%
80,89241,76836,22413.27%
140,07293,06480,71213.27%
39,41224,87221,57213.27%
63,56140,28034,93613.27%
90,83646,28840,14813.26%
93,86849,39242,84413.26%
81,50842,06436,48813.26%
82,66842,97237,27613.26%
55,39634,28429,74013.25%
125,56481,25670,48813.25%
101,26869,20460,03613.25%
102,43671,16861,74013.25%
50,84821,41218,57613.24%
99,24859,11251,28413.24%
115,95356,03248,61213.24%
24,98517,30815,01613.24%
27,53216,16414,02413.24%
101,02543,90038,08813.24%
61,39640,92435,50813.23%
5,680,0484,937,4204,284,08413.23%
55,96033,52429,08813.23%
83,80845,62039,58413.23%
85,98444,74838,82813.23%
91,94850,32843,67213.23%
144,05368,02459,02813.22%
30,84822,62819,63613.22%
62,85237,27632,34813.22%
3,487,9042,949,6442,559,79213.22%
132,47685,70474,38013.21%
78,49640,50835,15613.21%
85,92450,56443,88413.21%
133,14487,11675,60813.21%
25,01616,84414,62013.20%
48,42033,50829,08413.20%
94,15649,32842,81613.20%
124,69680,62869,98413.20%
31,62023,18020,12013.20%
60,43337,89232,89213.20%
9,5125,9725,18413.19%
80,17641,35635,90013.19%
71,72045,27239,30013.19%
72,72430,23226,24413.19%
80,32441,21235,77613.19%
67,61243,76037,98813.19%
67,97239,27234,09213.19%
135,93689,74077,90413.19%
78,93656,21648,80413.18%
48,82433,34428,94813.18%
57,53738,68433,58413.18%
82,01642,48836,88813.18%
154,00896,61683,88413.18%
46,82027,59223,95613.18%
89,84046,18840,10413.17%
91,91647,98441,66413.17%
92,20048,26041,90413.17%
87,86427,60823,97213.17%
79,85641,12435,70813.17%
113,00886,38075,00413.17%
25,27217,62415,30413.16%
123,90880,33269,76013.16%
75,60843,69637,94813.15%
75,60843,69637,94813.15%
99,68055,65248,33213.15%
42,18420,16417,51213.15%
74,41238,75233,65613.15%
74,41238,75233,65613.15%
70,20028,38824,65613.15%
5,963,5965,093,6084,424,28013.14%
102,46864,32055,87213.13%
81,19642,02836,50813.13%
46,10028,17224,47213.13%
90,97249,79643,25613.13%
116,86557,44449,90013.13%
84,16052,85645,91613.13%
84,26053,17646,19613.13%
77,45242,32836,77213.13%
69,96834,58830,04813.13%
83,35645,44839,48413.12%
61,96436,61231,80813.12%
49,14030,27226,30013.12%
123,90080,15269,64013.12%
98,72061,52453,45613.11%
80,91839,86834,64013.11%
91,94847,28441,08413.11%
103,04071,78862,37613.11%
138,92892,93680,75213.11%
128,89762,46854,28013.11%
109,90053,78446,73613.10%
141,25363,83255,46813.10%
89,04047,74841,49213.10%
69,68434,42029,91213.10%
23,61718,32815,92813.09%
23,61718,32815,92813.09%
64,00436,53631,75213.09%
3,576,7843,012,6162,618,17213.09%
3,576,7843,012,6162,618,17213.09%
78,56840,30435,02813.09%
62,86438,35233,33213.09%
87,79644,58038,74813.08%
94,50046,84440,71613.08%
31,36420,02817,40813.08%
137,60091,43679,47613.08%
59,97638,53233,49213.08%
97,03650,52443,91613.08%
93,04451,04444,36813.08%
104,20458,05650,46413.08%
91,64446,80040,68013.08%
153,07692,92480,77613.07%
75,96048,22841,92413.07%
87,15643,09237,46013.07%
95,73664,82456,35213.07%
25,57617,91215,57213.06%
93,30149,84843,33613.06%
125,34069,38460,32013.06%
88,28845,87639,88413.06%
76,61347,15240,99613.06%
172,628105,12091,39613.06%
93,41647,03240,89213.05%
78,02444,25238,47613.05%
78,02444,25238,47613.05%
63,77233,90429,48013.05%
63,77233,90429,48013.05%
133,26487,86076,39613.05%
27,00817,76015,44413.04%
87,95648,31242,01213.04%
70,50042,39636,86813.04%
19,54014,20412,35213.04%
75,21244,33638,55613.04%
37,04023,01220,01213.04%
98,45655,10847,92413.04%
42,20826,64423,17213.03%
38,23218,57216,15213.03%
49,37620,14017,51613.03%
43,21626,92823,42013.03%
107,84452,35245,53213.03%
134,05288,17276,68813.02%
44,58132,18827,99613.02%
93,48448,40842,10413.02%
68,00045,22039,33213.02%
98,50058,31250,72013.02%
64,10437,66832,76413.02%
67,38039,99234,78813.01%
121,40467,90459,06813.01%
37,72024,44021,26013.01%
39,13618,08015,72813.01%
81,02041,64036,22413.01%
107,29260,69652,80813.00%
86,80550,54043,97213.00%
54,62032,49228,27212.99%
61,90036,98032,18012.98%
1,322,3491,063,256925,25612.98%
62,90438,03633,10012.98%
78,85640,56435,30012.98%
106,38455,36048,17612.98%
31,71220,37617,73212.98%
80,47241,43236,05612.98%
80,93641,43636,06012.97%
87,10846,95640,86412.97%
32,22825,00821,76412.97%
148,93690,41278,68412.97%
86,63642,16436,69612.97%
71,46427,87224,26012.96%
73,52046,60840,56812.96%
87,94452,50845,70412.96%
8,608,1847,527,6406,552,34412.96%
4,539,1803,883,4603,380,46812.95%
57,90937,34032,50412.95%
91,52049,78843,34012.95%
81,86042,37636,88812.95%
55,80534,50430,03612.95%
150,82684,82473,84012.95%
55,67633,90029,51212.94%
64,51239,55634,43612.94%
50,10829,42025,61212.94%
88,62047,67241,50412.94%
72,17638,61633,62012.94%
63,84940,22835,02412.94%
101,17246,88840,82412.93%
153,420109,42895,27612.93%
100,34056,36049,07212.93%
100,34056,36049,07212.93%
76,01631,90027,77612.93%
17,02412,03610,48012.93%
60,77339,89234,73612.92%
61,54833,02828,76012.92%
61,54833,02828,76012.92%
62,06037,92433,02412.92%
36,45623,47220,44012.92%
83,75238,80833,79612.91%
37,64923,44820,42012.91%
101,89256,65649,34012.91%
101,89256,65649,34012.91%
81,29645,22839,38812.91%
106,15673,88064,34412.91%
30,88419,68017,14012.91%
77,94440,42435,20812.90%
88,95647,80841,64012.90%
81,67242,26036,80812.90%
131,25287,40876,13212.90%
41,27225,73622,41612.90%
23,59217,05614,85612.90%
25,38417,77215,48012.90%
56,18034,40029,96412.90%
95,27249,88443,45212.89%
87,30855,96848,75212.89%
90,46048,22442,00812.89%
86,39655,24448,12412.89%
81,66845,25639,42412.89%
4,463,4643,807,3843,316,98012.88%
93,64854,30447,31212.88%
24,96417,83615,54012.87%
149,352113,02098,47612.87%
53,92032,73228,52012.87%
108,75263,63655,44812.87%
72,31237,91233,03612.86%
68,94827,43223,90412.86%
49,37229,11225,36812.86%
78,80040,59235,37212.86%
156,88891,51679,74812.86%
130,13285,74474,72012.86%
68,46032,82428,60412.86%
77,83341,82436,44812.85%
30,58019,66817,14012.85%
78,86047,47241,37212.85%
133,10485,09674,16812.84%
75,30044,35638,66012.84%
62,63636,96032,21612.84%
66,94038,80033,82012.84%
124,81668,60459,80012.83%
56,54034,66430,21612.83%
96,82854,50047,50812.83%
108,23675,61265,91212.83%
77,44444,37638,68412.83%
56,14834,37629,96812.82%
68,10027,70824,15612.82%
68,41227,08823,61612.82%
71,97640,48035,29212.82%
37,95224,84821,66412.81%
137,87288,97277,57212.81%
55,86834,38029,97612.81%
25,78519,89617,34812.81%
106,81274,83265,25212.80%
84,58447,87241,74412.80%
149,448111,05696,84012.80%
85,90454,82047,80412.80%
39,40419,12816,68012.80%
107,35267,89259,20412.80%
79,42844,18838,53612.79%
97,55250,09643,69212.78%
78,51240,38035,22012.78%
92,14462,32454,36012.78%
103,07659,85652,20812.78%
55,68834,31229,92812.78%
83,87659,75252,12012.77%
97,06054,55647,58812.77%
97,06054,55647,58812.77%
28,12420,71618,07212.76%
150,83288,29677,02812.76%
32,32423,72820,70012.76%
36,79623,95220,89612.76%
53,24030,47626,58812.76%
77,59242,54837,12012.76%
87,96044,82839,11212.75%
92,16046,83640,86412.75%
139,35689,53678,12012.75%
107,38050,95644,46012.75%
106,56466,95258,42012.74%
99,18854,87247,88012.74%
79,96441,38036,10812.74%
135,20088,70477,40412.74%
15,81211,1169,70012.74%
124,37682,65272,12412.74%
84,86459,92052,28812.74%
107,87675,56065,93612.74%
23,26917,74415,48412.74%
77,20045,94840,09612.74%
76,45644,33238,68812.73%
96,80849,22042,95612.73%
62,31641,52036,23612.73%
81,46442,82837,38012.72%
91,42462,02854,14012.72%
90,01647,59241,54012.72%
95,32865,53657,20412.71%
123,42899,96087,25212.71%
72,56838,61633,70812.71%
67,87639,62834,59212.71%
34,66821,94019,15212.71%
99,13653,89247,04412.71%
92,32050,11643,74812.71%
71,54840,46435,32412.70%
71,56037,60032,82412.70%
31,06819,05216,63212.70%
26,07615,74813,74812.70%
64,10827,94824,40012.70%
86,19247,76841,70412.69%
126,62082,11671,69212.69%
78,05642,95637,50412.69%
27,95620,61217,99612.69%
68,66440,66035,50012.69%
138,13689,26477,93612.69%
88,81649,40043,13212.69%
56,90034,78430,37212.68%
76,21242,05236,72012.68%
66,37227,80824,28412.67%
62,36033,61629,35612.67%
62,36033,61629,35612.67%
69,44029,70425,94012.67%
69,58828,25224,67212.67%
56,44834,51230,14012.67%
132,57688,08076,92812.66%
89,60846,89240,95612.66%
63,86825,18822,00012.66%
91,58852,97246,26812.66%
137,15291,39279,82812.65%
136,26887,92076,79612.65%
12,264,14810,978,2729,589,41612.65%
56,33634,38430,03612.65%
39,22424,36421,28412.64%
104,33672,42863,27212.64%
27,00419,84017,33212.64%
76,89642,12836,80412.64%
81,36041,88036,58812.64%
56,24034,25629,92812.63%
128,49283,03272,54412.63%
84,02444,58838,95612.63%
36,24022,58019,72812.63%
82,66849,80043,51212.63%
66,20027,69224,19612.62%
57,58824,78021,65212.62%
94,64048,84042,67612.62%
57,26125,51622,29612.62%
5,833,6565,069,5964,429,88012.62%
31,36018,13215,84412.62%
92,84849,74443,46812.62%
153,45274,96065,50412.61%
29,02417,06814,91612.61%
52,55228,26824,70412.61%
69,27242,54037,18012.60%
63,56829,24425,56012.60%
137,41691,70880,15612.60%
71,96429,21625,53612.60%
42,11619,08816,68412.59%
130,78086,39675,51612.59%
134,56487,74076,69212.59%
80,65243,84038,32012.59%
60,48437,30832,61212.59%
89,89645,98840,20012.59%
96,16464,67256,53612.58%
90,59246,29640,47212.58%
95,69649,13642,95612.58%
91,20853,84847,07612.58%
112,28471,28062,31612.58%
90,45649,46843,24812.57%
18,10812,63211,04412.57%
83,36056,26049,18812.57%
69,17240,36835,29612.56%
55,22834,19229,89612.56%
55,12833,68429,45212.56%
85,56849,54843,32412.56%
65,63226,82023,45212.56%
83,00847,79641,79612.55%
71,36429,54025,83212.55%
98,50467,15658,72812.55%
68,87627,54024,08412.55%
105,80873,60864,37612.54%
83,94850,04043,76412.54%
80,34044,65239,05212.54%
26,09216,14014,11612.54%
50,72429,85626,11212.54%
83,78058,76051,39212.54%
35,86823,41620,48012.54%
80,63642,08836,81212.54%
78,20440,05235,03212.53%
97,94054,27247,47212.53%
97,94054,27247,47212.53%
35,06022,54019,71612.53%
134,87690,04878,76812.53%
81,24853,81247,07212.53%
104,55652,88846,26412.52%
88,04051,90445,40412.52%
73,36037,50832,81212.52%
66,48841,82836,59212.52%
78,33742,40437,09612.52%
31,52823,04420,16012.52%
93,52865,85657,61612.51%
97,26444,09238,57612.51%
77,93240,39235,34012.51%
82,40442,70437,36412.50%
81,36041,87636,64012.50%
67,84426,94023,57212.50%
110,56058,30851,02012.50%
83,68045,01239,38812.49%
54,09630,86427,00812.49%
45,98027,86424,38412.49%
71,73242,40837,11212.49%
129,94886,70475,88012.48%
91,00446,50440,70012.48%
135,82886,63675,82412.48%
80,41653,33646,68012.48%
87,42057,39650,23612.47%
84,81226,84823,50012.47%
83,10441,29236,14412.47%
128,77672,38863,36412.47%
123,01279,75269,81212.46%
75,93241,98036,74812.46%
69,60041,88436,66412.46%
48,12027,06023,68812.46%
63,81225,94022,70812.46%
64,79225,87622,65212.46%
4,802,6684,053,6563,548,62412.46%
70,30028,64425,07612.46%
105,57655,33248,44012.46%
48,77226,72023,39212.46%
90,39253,00446,40412.45%
150,369103,96091,01612.45%
92,90951,08844,72812.45%
62,59633,42429,26412.45%
62,59633,42429,26412.45%
91,64846,41240,63612.45%
133,86487,84876,91612.44%
131,35688,01677,06412.44%
63,76042,66837,36012.44%
68,95241,48036,32012.44%
109,55661,35653,72412.44%
107,78055,95648,99612.44%
72,77636,95232,35612.44%
72,77636,95232,35612.44%
99,16467,09658,75212.44%
30,86022,32419,54812.44%
54,87633,39629,24412.43%
56,85634,65230,34412.43%
67,73640,80435,73212.43%
52,99634,20829,95612.43%
132,56489,03677,97212.43%
76,36043,49638,09212.42%
67,30426,75623,43212.42%
38,12822,60419,79612.42%
17,51212,26810,74412.42%
55,37634,13629,89612.42%
13,2489,4688,29212.42%
45,83219,29216,89612.42%
55,09336,62432,07612.42%
69,06028,61625,06412.41%
41,67228,90825,32012.41%
29,69219,11216,74012.41%
94,90844,39238,88412.41%
67,92828,59625,04812.41%
74,54849,55243,40412.41%
74,54849,55243,40412.41%
131,17687,11276,30412.41%
96,06047,43641,55212.40%
80,85242,47637,20812.40%
70,74829,96426,24812.40%
71,68429,67625,99612.40%
135,18886,35275,64412.40%
107,28455,06448,23612.40%
68,72828,81225,24012.40%
93,95256,06449,11612.39%
81,49644,74439,20012.39%
62,81634,06429,84412.39%
62,81634,06429,84412.39%
4,491,6563,876,0203,395,89212.39%
54,45233,58429,42412.39%
49,94829,93626,22812.39%
47,82421,12018,50412.39%
124,05681,70871,58812.39%
139,93285,13674,59212.38%
106,37269,48860,88412.38%
67,64026,94823,61212.38%
115,70463,62855,75212.38%
29,72019,13216,76412.38%
206,900140,100122,76012.38%
85,10860,79253,27212.37%
88,34452,84046,30412.37%
87,55242,62837,35612.37%
66,11226,78423,47212.37%
36,83624,23221,23612.36%
24,03217,21215,08412.36%
18,15613,59211,91212.36%
97,28066,60858,37612.36%
133,86888,43277,50412.36%
70,04828,36024,85612.36%
86,09261,01253,47612.35%
82,34844,98439,42812.35%
45,79622,90020,07212.35%
77,66839,72834,82412.34%
104,64045,76040,11212.34%
78,67240,64435,62812.34%
31,32821,62018,95212.34%
149,76887,89677,05212.34%
134,00887,47676,68412.34%
137,31291,76880,44812.34%
68,03640,01635,08012.34%
69,10435,20030,86012.33%
80,78444,68439,17612.33%
61,48437,64833,00812.32%
82,17645,57239,95612.32%
64,06825,44822,31212.32%
56,19634,44030,19612.32%
13,6889,8728,65612.32%
53,29632,04028,09612.31%
89,62059,16051,88012.31%
96,24064,63256,68012.30%
64,19625,43222,30412.30%
68,22029,33625,72812.30%
132,30486,90476,21612.30%
52,07233,63629,50012.30%
29,95619,42417,03612.29%
64,48441,42436,33212.29%
55,11634,54030,29612.29%
87,66448,38042,43612.29%
67,52428,22824,76012.29%
103,72472,01263,16812.28%
48,36027,52424,14412.28%
54,98033,52429,40812.28%
87,42050,08443,93612.28%
70,83629,92026,24812.27%
67,70041,02035,98812.27%
66,97627,84824,43212.27%
69,34828,50425,00812.26%
68,96428,24424,78012.26%
56,72434,82430,55612.26%
89,52553,42846,88412.25%
32,07618,72016,42812.24%
49,13628,03224,60012.24%
87,49652,44046,02012.24%
23,59315,00013,16412.24%
135,05286,37675,80412.24%
108,00458,66451,48412.24%
67,94028,64025,13612.23%
67,49228,48024,99612.23%
77,58439,92835,04412.23%
74,10848,66842,71612.23%
35,53223,38820,52812.23%
75,83638,10833,44812.23%
136,80887,80477,06812.23%
54,74433,20829,14812.23%
93,34466,04857,97612.22%
60,42438,70033,97212.22%
68,49228,91225,38012.22%
66,15227,08023,77212.22%
65,72027,19623,87612.21%
31,53220,28417,80812.21%
80,10040,34035,41612.21%
65,78027,03623,73612.21%
55,12034,08829,92812.20%
5,500,3564,757,4044,176,96412.20%
54,72833,32029,25612.20%
85,57655,98849,16012.20%
27,60417,15615,06412.19%
33,70021,81619,15612.19%
68,65228,41224,94812.19%
77,88045,15639,65212.19%
83,42856,05249,22012.19%
35,96026,78023,51612.19%
33,01622,87620,08812.19%
19,54013,09611,50012.19%
157,82082,48472,43212.19%
27,14816,84014,78812.19%
145,77686,50075,96412.18%
67,08027,94824,54412.18%
93,58848,05242,20012.18%
63,55233,86429,74012.18%
63,55233,86429,74012.18%
41,12819,15216,82012.18%
18,5128,3127,30012.18%
67,67641,79236,70412.17%
55,21234,07629,92812.17%
41,11619,06016,74012.17%
55,49633,58829,50012.17%
73,21236,35231,92812.17%
68,55228,07624,66012.17%
78,50852,02045,69212.16%
69,38041,46836,42412.16%
65,72427,13623,83612.16%
72,70123,58420,71612.16%
42,82028,75225,25612.16%
55,31234,22030,06012.16%
71,99229,85226,22412.15%
107,95247,42841,66412.15%
83,16855,98849,18412.15%
47,81229,62426,02412.15%
65,82827,09223,80012.15%
76,31641,08436,09212.15%
34,70821,79619,15212.13%
83,82459,39252,18812.13%
91,38064,66056,82012.12%
84,80459,85252,59612.12%
91,04848,66842,76812.12%
90,48861,22053,80012.12%
78,66849,08443,13612.12%
60,98439,58434,78812.12%
34,51222,88020,10812.12%
129,096101,30889,03612.11%
162,688100,17688,04412.11%
92,95265,62857,68012.11%
41,63619,38817,04012.11%
31,01619,02816,72412.11%
130,83284,28874,08412.11%
67,78829,17625,64412.11%
89,67648,41242,55212.10%
56,30434,46830,29612.10%
70,48429,28025,73612.10%
30,04819,36817,02412.10%
67,81628,89225,39612.10%
155,84880,50070,76412.09%
97,20465,15657,27612.09%
62,57736,48832,07612.09%
65,30027,26423,96812.09%
59,68438,23633,61612.08%
73,88039,33634,58412.08%
85,71261,16453,77612.08%
91,54464,96457,12012.07%
30,58819,66017,28812.07%
82,73250,07644,03612.06%
67,13240,34035,47612.06%
84,04443,45638,22012.05%
50,79333,86829,78812.05%
31,46023,21220,41612.05%
71,67230,06426,44412.04%
92,18464,62056,84412.03%
111,57259,73652,54812.03%
42,56429,39225,85612.03%
134,55682,42472,51212.03%
77,64839,61634,85212.03%
56,73231,03627,30412.02%
145,96873,86064,98012.02%
92,78865,68457,78812.02%
33,02423,50020,67612.02%
72,13237,98833,42412.01%
36,35222,40819,71612.01%
42,95229,66826,10412.01%
66,47627,84024,49612.01%
77,25243,23238,04012.01%
52,92934,54430,39612.01%
83,86438,77634,12012.01%
67,00840,12435,30812.00%
92,25664,26856,55612.00%
54,56833,27229,28012.00%
87,96456,77649,96412.00%
103,73244,34439,02412.00%
42,06028,85225,39211.99%
31,44016,61614,62411.99%
75,77238,22833,64811.98%
68,87227,48024,18811.98%
57,35735,94431,64011.97%
92,75665,87657,98811.97%
72,46043,40438,20811.97%
4,626,8963,981,1563,504,59211.97%
66,70921,35618,80011.97%
24,15216,88014,86011.97%
60,55337,94033,40011.97%
35,11622,36419,68811.97%
33,41623,90421,04411.96%
106,38870,91662,43211.96%
49,97331,86428,05211.96%
30,95620,00017,60811.96%
19,43612,94411,39611.96%
115,70071,72863,15211.96%
49,42830,78427,10411.95%
20,18813,98812,31611.95%
55,59234,10830,03211.95%
55,71234,31230,21211.95%
95,80457,08050,26011.95%
134,78889,29278,62411.95%
87,92458,93251,89211.95%
25,56517,78415,66011.94%
27,50016,85214,84011.94%
109,29648,92443,08411.94%
55,70034,39230,28811.93%
70,36836,74432,36011.93%
88,14858,94851,91611.93%
78,28053,61247,22011.92%
65,28841,84036,85211.92%
116,15267,50859,46011.92%
46,30019,63217,29211.92%
104,59653,94447,51611.92%
30,26019,41217,10011.91%
77,90454,34447,87211.91%
112,51670,20861,84811.91%
21,14815,01613,22811.91%
89,60447,17241,55611.91%
88,70446,98441,39211.90%
86,30059,02852,00411.90%
54,23633,11629,17611.90%
91,16864,48456,81211.90%
64,49226,63223,46411.90%
55,29634,00829,96411.89%
65,94027,92024,60011.89%
66,41228,20024,84811.89%
38,04417,80415,68811.88%
142,75272,33263,73611.88%
87,87249,52043,63611.88%
47,87627,00023,79211.88%
36,99326,50423,35611.88%
130,43286,69276,39611.88%
35,78823,64420,83611.88%
119,15263,87256,28811.87%
67,83628,50025,11611.87%
62,09635,79231,54411.87%
74,26449,88043,96011.87%
74,26449,88043,96011.87%
44,88428,14424,80411.87%
75,68849,41643,55211.87%
89,33260,45253,28011.86%
37,72417,57215,48811.86%
26,20817,64015,54811.86%
16,951,79214,544,39612,820,33211.85%
51,82430,71227,07211.85%
47,40420,58818,14811.85%
86,76458,39251,47211.85%
84,40860,86853,65611.85%
92,43265,19257,46811.85%
91,53661,61654,31611.85%
18,12812,49611,01611.84%
41,54418,41216,23211.84%
46,77626,08823,00011.84%
86,91258,39651,48411.84%
76,87238,32833,79211.83%
130,00881,00871,42411.83%
44,11728,90825,48811.83%
24,76516,23214,31211.83%
42,96829,08825,64811.83%
55,46034,33630,27611.82%
52,76429,26825,80811.82%
27,85617,53215,46011.82%
47,67626,37623,26011.81%
43,86419,30017,02011.81%
64,53226,27623,17211.81%
126,09279,88870,45211.81%
55,28830,93227,28011.81%
47,30029,30825,84811.81%
47,30029,30825,84811.81%
90,45253,94447,57611.80%
68,20428,36825,02011.80%
94,99647,66042,03611.80%
70,67233,83229,84011.80%
73,29249,74843,88011.80%
67,62029,10025,66811.79%
60,00035,64831,44411.79%
90,83255,29648,77611.79%
110,25649,46043,63211.78%
38,54416,94014,94411.78%
34,91214,64012,91611.78%
33,97223,82821,02411.77%
30,89219,85217,51611.77%
51,79734,30830,27211.76%
28,58819,62417,31611.76%
49,10430,52426,93611.75%
49,18827,64424,39611.75%
102,01668,06860,07211.75%
96,79665,48857,79611.75%
19,65214,71212,98411.75%
69,53228,81225,42811.75%
25,02418,08815,96411.74%
79,13254,16847,81211.73%
68,05628,19224,88411.73%
55,19637,30432,92811.73%
34,93622,71220,04811.73%
76,73250,78444,82811.73%
32,50022,78820,11611.73%
113,32154,58448,18411.73%
37,93226,86023,71211.72%
69,58028,90825,52011.72%
88,60459,42452,46011.72%
83,11243,76038,63211.72%
83,11243,76038,63211.72%
92,69665,51257,83611.72%
67,38038,24433,76411.71%
45,28428,20024,90011.70%
19,56013,88012,25611.70%
104,46069,16061,07211.69%
17,37713,40811,84011.69%
36,30024,04821,23611.69%
67,65628,84025,46811.69%
595,589451,628398,82811.69%
141,83271,86463,46411.69%
27,08416,84014,87211.69%
49,49631,76428,05211.69%
70,61629,44026,00011.68%
83,94841,90837,01211.68%
51,28830,78427,18811.68%
44,28529,28025,86011.68%
51,11733,32429,43211.68%
79,03643,67238,57211.68%
63,30819,56017,27611.68%
109,96068,73260,70811.67%
106,64070,72462,46811.67%
34,66422,68420,03611.67%
71,49636,98432,66811.67%
14,24810,1488,96411.67%
44,42030,75627,16811.67%
50,24031,21627,57611.66%
38,75617,01615,03211.66%
117,73265,32057,70411.66%
70,79629,16425,76411.66%
125,02478,92869,73211.65%
57,99335,43231,30411.65%
64,79625,99622,96811.65%
53,54430,15226,64011.65%
53,54430,15226,64011.65%
32,59222,77220,12011.65%
53,87734,38830,38411.64%
49,00421,03218,58411.64%
74,40845,95640,60811.64%
94,59251,35645,38011.64%
49,73333,72429,80011.64%
68,42429,37225,95611.63%
50,75222,56419,94011.63%
63,71625,73222,74011.63%
78,22053,28847,09211.63%
24,43217,16815,17211.63%
67,58428,04424,78411.62%
36,55624,36421,53211.62%
42,40819,06816,85211.62%
22,74812,80811,32011.62%
80,85241,28436,48811.62%
65,93627,37624,19611.62%
96,13265,36857,77611.61%
102,60069,19661,16011.61%
78,46849,32843,60011.61%
35,80920,77218,36011.61%
68,50439,65635,05211.61%
29,71620,70818,30411.61%
51,97232,57228,79211.61%
94,48856,37649,83611.60%
66,84027,44824,26411.60%
40,08826,04423,02411.60%
96,54065,48457,89211.59%
94,76850,93645,03211.59%
79,94054,82048,46811.59%
48,14423,03620,36811.58%
71,77250,29644,47211.58%
117,08869,33261,30411.58%
28,40118,55616,40811.58%
17,55612,44011,00011.58%
117,70465,14457,60411.57%
96,66866,77259,04411.57%
106,62047,42041,93211.57%
34,10823,98821,21211.57%
63,06841,17236,40811.57%
44,78827,69224,48811.57%
48,00132,05628,34811.57%
48,93228,70425,38411.57%
48,81622,65620,03611.56%
49,36032,27228,54011.56%
48,26823,10820,43611.56%
43,81314,77213,06411.56%
38,44816,95214,99211.56%
71,93637,20032,90011.56%
85,41650,74444,88011.56%
56,20034,37630,40411.55%
92,80855,49649,08411.55%
29,89620,64418,26011.55%
37,96417,90815,84011.55%
35,99725,64422,68411.54%
94,26863,91256,53611.54%
69,94428,66825,36011.54%
61,66435,85231,71611.54%
46,73228,72025,40811.53%
67,58028,76825,45211.53%
69,81228,66825,36411.53%
86,24853,80047,60011.52%
68,71231,48427,85611.52%
52,82832,76028,98811.51%
69,23628,84025,52011.51%
44,40831,03227,46011.51%
66,73227,42424,26811.51%
67,47228,36425,10011.51%
86,73253,16447,04811.50%
52,44134,62030,64011.50%
75,14851,68845,74811.49%
38,54417,02415,06811.49%
52,78030,32426,84011.49%
96,23266,05658,46811.49%
31,09220,02817,72811.48%
66,08427,90024,69611.48%
33,41620,98418,57611.48%
102,79280,00870,82811.47%
82,33648,81243,21211.47%
71,48830,26826,79611.47%
59,15634,80830,81611.47%
76,93252,28846,29611.46%
47,14429,21625,86811.46%
47,14429,21625,86811.46%
89,14046,63641,29211.46%
60,91235,40831,35211.46%
31,70825,81222,85611.45%
35,45223,08820,44411.45%
153,28079,06470,01211.45%
31,35620,16017,85211.45%
53,48431,13627,57211.45%
36,18023,86821,13611.45%
127,22071,47663,29611.44%
39,70928,50425,24411.44%
34,45624,30821,52811.44%
88,64044,14439,09611.44%
33,32920,50418,16011.43%
82,41642,64037,76811.43%
43,86830,71627,20811.42%
48,65620,98018,58411.42%
46,70429,10825,78411.42%
86,27658,67251,97211.42%
36,91222,84420,23611.42%
43,59729,12025,79611.41%
67,84828,84425,55211.41%
51,58030,67627,17611.41%
79,09653,96447,80811.41%
46,94022,24019,70411.40%
81,78051,32845,47611.40%
30,12821,33218,90011.40%
44,74421,30418,87611.40%
120,55667,14459,49211.40%
161,44092,84082,26011.40%
112,44070,17662,18011.39%
96,99259,87653,05611.39%
90,24054,50448,29611.39%
33,49223,28420,63211.39%
23,65617,00015,06411.39%
35,90023,88821,16811.39%
49,33627,79224,62811.38%
66,54428,39225,16011.38%
71,12036,58832,42411.38%
62,46440,77636,13611.38%
18,5408,0167,10411.38%
45,69628,17624,97211.37%
33,12020,48018,15211.37%
109,05649,13243,54811.37%
72,00050,91645,13211.36%
83,70844,24039,21611.36%
83,70844,24039,21611.36%
30,41621,24018,82811.36%
46,96023,26420,62411.35%
139,78070,89662,85611.34%
65,84836,26032,14811.34%
71,91237,32033,09211.33%
46,70427,15624,08011.33%
37,72426,98423,92811.33%
74,58141,08036,42811.32%
394,904282,732250,71611.32%
79,34847,93642,50811.32%
53,67631,16427,63611.32%
111,01268,72860,95211.31%
47,56821,89219,41611.31%
52,70830,50027,05211.30%
80,46441,40436,72411.30%
126,12471,12063,08411.30%
54,69332,96029,23611.30%
78,26449,08043,53611.30%
115,46468,21660,51611.29%
32,82022,93620,34811.28%
32,58424,35621,60811.28%
76,86444,25639,26411.28%
45,69231,46027,91211.28%
48,94432,31628,67211.28%
48,09222,38419,86011.28%
106,44447,00441,70411.28%
109,83668,06860,39611.27%
76,00046,89241,60811.27%
14,528,94012,209,06410,833,55211.27%
93,96062,87655,80011.25%
95,77258,10851,57211.25%
33,32423,22820,61611.25%
80,62854,92448,74811.24%
22,35215,51213,76811.24%
51,42931,70028,13611.24%
66,74827,71624,60011.24%
43,84824,01621,31611.24%
34,77223,02020,43211.24%
68,07628,92825,67611.24%
48,62827,86424,73211.24%
84,76855,84449,56811.24%
113,62462,59255,56011.23%
39,55218,23216,18411.23%
36,12926,21223,26811.23%
130,30473,37265,13211.23%
30,22424,29621,56811.23%
90,30844,73239,71211.22%
66,71627,56824,47611.22%
50,77233,79230,00411.21%
68,67228,09624,94811.20%
106,71247,69642,35211.20%
44,17730,25226,86411.20%
78,52427,93224,80411.20%
38,18826,90023,88811.20%
48,91227,33624,27611.19%
64,16047,13641,86011.19%
139,62070,47662,58811.19%
37,68026,34423,39611.19%
82,67651,05245,34011.19%
31,55222,16819,68811.19%
49,04027,42424,35611.19%
38,50818,09216,06811.19%
30,10420,46818,18011.18%
30,10420,46818,18011.18%
36,05222,61620,08811.18%
94,11663,41656,32811.18%
68,87247,75242,41611.17%
32,71223,34020,73211.17%
36,12824,56021,81611.17%
139,80470,26862,42411.16%
78,08044,54839,57611.16%
52,24035,26831,33211.16%
22,02815,85614,08811.15%
81,41642,14837,45211.14%
22,46817,34415,41211.14%
28,92019,93217,71211.14%
26,06418,35216,30811.14%
17,69212,28810,92011.13%
66,08027,52424,46011.13%
38,31227,63224,55611.13%
44,68827,92024,81211.13%
33,20823,44020,83211.13%
48,29627,28824,25211.13%
20,38515,46413,74411.12%
81,46429,17625,93211.12%
67,16845,34040,30011.12%
118,90060,50053,77611.11%
37,75617,45615,51611.11%
51,27234,75630,89611.11%
93,93263,65656,58811.10%
66,91228,13625,01211.10%
42,45626,22823,31611.10%
67,92029,43626,16811.10%
31,83622,27219,80011.10%
94,56464,44057,28811.10%
64,62845,37640,34011.10%
40,00024,98022,20811.10%
46,70028,84025,64011.10%
47,14420,12017,88811.09%
110,52869,03661,38011.09%
43,14427,19624,18411.08%
105,95245,87640,79611.07%
27,11619,61617,44411.07%
66,94028,51225,35611.07%
51,40821,54419,16011.07%
51,86022,42019,94011.06%
49,85629,08425,86811.06%
80,22054,70848,66011.06%
89,01646,49641,35611.05%
43,08827,17624,17211.05%
85,44439,48435,12011.05%
34,53221,71619,31611.05%
21,89216,29214,49211.05%
31,88820,52818,26011.05%
78,83253,29647,41211.04%
33,58421,12418,79211.04%
86,76047,15241,94811.04%
34,60121,06018,73611.04%
92,26061,99255,15211.03%
83,70443,00038,25611.03%
66,69636,88432,81611.03%
66,01640,59636,12011.03%
33,60022,75620,24811.02%
64,49247,58442,34011.02%
29,37620,14817,92811.02%
35,80425,60022,78011.02%
79,13640,85636,35611.01%
75,82541,63237,04811.01%
63,54028,16425,06411.01%
75,48051,65245,96811.00%
80,20854,94048,89611.00%
53,56828,15625,06011.00%
51,50934,67230,86010.99%
31,71622,93220,41210.99%
55,28435,44031,54810.98%
94,33263,48056,51210.98%
63,81247,16841,99210.97%
38,69223,99221,36010.97%
81,76441,87637,28410.97%
97,48464,70457,61210.96%
51,09629,64826,40010.96%
32,34822,82420,32410.95%
31,58822,57620,10410.95%
74,64827,45224,44810.94%
43,14429,10025,91610.94%
45,15225,19222,43610.94%
51,14429,56826,33610.93%
45,66431,91228,42410.93%
43,41729,75626,50410.93%
39,88428,51625,40010.93%
53,07631,45228,01610.92%
47,86027,06424,10810.92%
33,24423,84421,24010.92%
28,87619,89617,72410.92%
75,16429,02825,86010.91%
75,14828,99225,82810.91%
44,09626,11223,26410.91%
51,47627,39624,40810.91%
52,52027,76424,73610.91%
38,28818,04816,08010.90%
46,08421,79619,42010.90%
38,14424,66021,97210.90%
139,52869,54461,96410.90%
64,98043,87239,09210.90%
52,84833,96030,26010.90%
79,72454,46448,53210.89%
29,18020,01617,83610.89%
34,54823,65621,08010.89%
41,77628,61625,50010.89%
48,48828,22025,14810.89%
96,54859,50453,02810.88%
73,65228,56025,45210.88%
111,30069,62062,04410.88%
88,08454,30448,39610.88%
30,10015,60013,90410.87%
33,94023,61621,05210.86%
32,62423,37620,84010.85%
32,31723,71221,14010.85%
67,19232,43228,91610.84%
184,904144,784129,09210.84%
39,04018,60416,58810.84%
45,04431,67228,24010.84%
110,87269,25661,75210.84%
59,34837,88033,77610.83%
70,39641,64837,13610.83%
184,212144,668129,00010.83%
93,49662,81256,01210.83%
89,76448,18442,96810.83%
7,0334,3243,85610.82%
90,32432,67229,13610.82%
21,22016,59614,80010.82%
52,45235,27231,45610.82%
34,86521,56019,22810.82%
80,35249,00443,70410.82%
39,58428,26425,20810.81%
39,63619,09217,02810.81%
37,34824,60821,94810.81%
103,19232,01628,55610.81%
27,32819,95617,80010.80%
29,82821,47619,15610.80%
31,36421,81619,46010.80%
51,96027,48424,51610.80%
53,50030,15626,90010.80%
49,71222,49220,06410.79%
36,36824,12821,52410.79%
34,91221,86819,50810.79%
51,73228,58025,49610.79%
74,96444,45239,65610.79%
44,29628,22425,18010.79%
110,31258,76052,42410.78%
48,29222,11219,72810.78%
110,29667,80460,49610.78%
49,90829,14026,00010.78%
31,68120,34818,15610.77%
43,78827,22024,28810.77%
56,40028,48425,41610.77%
33,36923,40420,88410.77%
106,14456,51250,42810.77%
38,29218,09616,14810.76%
31,76822,27219,87610.76%
102,02470,16462,61610.76%
184,444144,148128,64410.76%
16,89612,09210,79210.75%
111,47677,74069,38410.75%
53,73629,54826,37210.75%
24,99610,0128,93610.75%
47,48821,74019,40410.75%
55,22038,38434,26010.74%
38,20017,79615,88410.74%
30,74421,66819,34010.74%
68,30042,24037,70410.74%
92,80062,99256,22810.74%
47,56827,23224,30810.74%
24,54818,22816,27210.73%
51,96028,70825,62810.73%
32,03222,22419,84010.73%
184,412145,100129,53610.73%
107,49258,99652,67610.71%
34,82921,92019,57210.71%
58,99640,41636,08810.71%
51,79629,13626,01610.71%
34,02423,98421,41610.71%
52,09235,49231,69210.71%
29,82019,72817,61610.71%
34,56823,65221,12010.71%
49,37222,16819,79610.70%
47,98931,66828,28010.70%
80,20430,66027,38010.70%
184,588144,304128,86810.70%
40,19227,63624,68010.70%
72,63226,19623,39610.69%
43,91626,28423,47610.68%
11,6127,9407,09210.68%
32,20022,55620,14810.68%
38,29229,90026,70810.68%
183,608143,868128,51210.67%
81,96831,63228,25610.67%
80,39642,45237,92410.67%
22,78517,48015,61610.66%
32,81221,23218,96810.66%
32,86023,11220,64810.66%
79,54027,42824,50410.66%
27,45621,08818,84010.66%
41,79631,10827,79210.66%
54,19225,94423,18010.65%
73,48449,53244,26010.64%
111,81269,71662,29610.64%
54,94837,47633,48810.64%
27,46419,64417,55610.63%
184,488144,456129,10410.63%
95,05668,95661,62810.63%
57,18034,07230,45210.62%
34,34424,92422,27610.62%
61,01344,73639,98410.62%
36,66816,87215,08010.62%
36,96423,61621,10810.62%
22,19216,91215,11610.62%
184,180144,152128,84410.62%
20,60015,06813,46810.62%
118,22870,11262,66810.62%
50,13222,72020,30810.62%
37,59226,46023,65210.61%
47,04826,50023,68810.61%
54,93637,70033,70010.61%
32,41621,18818,94010.61%
71,02430,91627,63610.61%
46,32021,26819,01210.61%
61,58845,18040,38810.61%
22,76818,14016,21610.61%
42,23629,84826,68410.60%
185,224145,104129,72410.60%
40,87720,94818,72810.60%
32,99622,20419,85210.59%
46,13224,66022,04810.59%
50,49333,72430,15210.59%
39,12427,91224,95610.59%
48,00828,86825,81210.59%
185,484145,932130,48410.59%
39,64022,97620,54410.58%
74,93228,91225,85210.58%
55,81228,23225,24410.58%
71,25236,13232,30810.58%
36,77624,67222,06410.57%
36,35623,76821,25610.57%
85,48857,80851,70010.57%
37,40824,60822,00810.57%
36,49226,69623,87610.56%
30,00419,61617,54410.56%
52,92435,97632,17610.56%
33,28422,76020,35610.56%
186,212145,072129,75610.56%
31,56824,10021,55610.56%
57,10035,92832,13610.55%
85,29235,11631,41210.55%
74,85246,26841,38810.55%
37,96827,80024,86810.55%
35,30423,71621,21610.54%
47,26032,29228,88810.54%
38,23228,19625,22410.54%
25,72419,39217,34810.54%
36,06026,87224,04010.54%
62,48040,43236,17210.54%
153,59262,22455,66810.54%
183,116142,364127,37610.53%
39,64428,31225,33210.53%
63,27640,14435,92010.52%
27,83212,81211,46410.52%
29,20020,72018,54010.52%
185,056145,108129,84410.52%
39,36024,46421,89210.51%
56,74038,85634,77210.51%
13,84410,5089,40410.51%
32,19220,82818,64010.51%
59,05236,49232,66010.50%
14,14010,9009,75610.50%
47,83219,82017,74010.49%
28,13620,31618,18410.49%
86,04044,98040,26010.49%
84,12061,37654,93610.49%
28,91222,34019,99610.49%
79,39229,08826,03610.49%
37,38025,35222,69210.49%
104,50455,55249,72410.49%
37,04425,70423,00810.49%
185,776144,816129,62810.49%
39,20828,91225,88010.49%
182,968142,548127,60010.49%
47,52826,93224,10810.49%
184,960144,252129,12810.48%
184,260144,596129,43610.48%
34,41321,60019,33610.48%
36,08424,92422,31210.48%
72,86827,14424,30010.48%
35,41223,33220,88810.47%
55,08827,84824,93210.47%
49,88023,72421,24010.47%
172,78480,80072,34010.47%
31,31222,80820,42010.47%
185,808145,304130,09210.47%
39,52823,04820,63610.47%
57,44438,95234,87610.46%
29,92819,65217,59610.46%
37,58027,61224,72410.46%
84,42840,54036,30010.46%
56,83237,30033,40010.46%
55,86437,57633,64810.45%
39,58819,09617,10010.45%
34,46824,60822,03610.45%
78,14441,68037,32410.45%
514,617401,928359,93610.45%
28,89620,68018,52010.44%
80,18431,00027,76410.44%
34,90422,68820,32010.44%
55,91237,44433,53610.44%
45,70030,66427,46410.44%
184,836144,080129,05210.43%
102,32462,38055,87610.43%
59,20427,60024,72410.42%
109,31261,21254,83610.42%
19,86013,64012,22010.41%
37,01625,60022,93610.41%
59,65637,21233,34010.41%
185,588145,156130,05610.40%
81,85231,41628,14810.40%
30,07215,43213,82810.39%
37,05625,01622,41610.39%
33,59224,09621,59210.39%
31,92120,82818,66410.39%
20,04416,28814,59610.39%
47,33330,96027,74410.39%
37,02024,76422,19210.39%
46,15229,77626,68410.38%
39,77227,69624,82010.38%
53,13230,74027,54810.38%
53,13230,74027,54810.38%
43,46029,06026,04410.38%
36,21223,70421,24410.38%
106,83257,03651,12010.37%
73,60431,93228,62010.37%
33,16824,99222,40010.37%
34,05625,03622,44010.37%
47,34819,52417,50010.37%
10,7687,8727,05610.37%
32,84421,34419,13210.36%
34,46823,66021,20810.36%
74,68833,28429,83610.36%
184,452143,840128,94010.36%
37,06024,76022,19610.36%
183,264143,584128,71610.35%
51,43634,30430,75210.35%
74,28032,95229,54010.35%
93,56062,58856,10810.35%
46,02427,12424,31610.35%
184,376144,476129,52410.35%
15,13611,67610,46810.35%
38,56428,38025,44410.35%
183,956143,500128,66010.34%
89,87260,34054,10010.34%
184,156144,864129,88410.34%
71,53635,44431,78010.34%
33,34423,60421,16410.34%
34,12023,18020,78410.34%
69,26433,09229,67210.33%
895,525730,204654,75210.33%
32,20423,00020,62410.33%
29,96819,52417,50810.33%
34,64423,94421,47210.32%
39,64028,05625,16010.32%
70,08856,45250,62810.32%
70,08856,45250,62810.32%
183,580143,020128,26810.31%
35,70824,98022,40410.31%
183,788143,488128,69210.31%
182,912143,456128,66410.31%
184,792143,780128,95610.31%
38,68828,01625,12810.31%
30,75720,14818,07210.30%
184,492144,580129,68410.30%
39,28827,14024,34410.30%
36,16825,82023,16010.30%
31,10823,45221,03610.30%
36,80024,26821,76810.30%
104,90458,90852,84010.30%
28,01620,54418,42810.30%
54,54923,88821,42810.30%
42,84026,33623,62410.30%
31,79223,38420,97610.30%
34,94425,48422,86010.30%
29,70023,27220,87610.30%
15,21210,9969,86410.29%
75,84440,30036,15210.29%
11,3248,4407,57210.28%
183,364142,940128,24010.28%
11,0649,0288,10010.28%
39,25218,84016,90410.28%
74,24833,33229,90810.27%
46,75632,47629,14010.27%
185,144145,384130,46010.27%
35,34422,91620,56410.26%
30,76420,50018,39610.26%
30,93220,50018,39610.26%
125,49696,16886,30010.26%
185,420144,868130,00410.26%
184,108143,632128,89610.26%
29,94419,49617,49610.26%
78,30435,09631,49610.26%
184,040143,632128,90010.26%
46,58832,87629,50410.26%
82,08849,96044,83610.26%
182,144142,264127,68010.25%
24,39617,40415,62010.25%
40,14828,10025,22010.25%
56,54438,49234,54810.25%
42,08425,81223,16810.24%
66,68833,82830,36410.24%
183,088142,588127,99210.24%
26,69219,66417,65210.23%
44,56031,28028,08010.23%
33,69225,14422,57210.23%
42,76430,38427,27610.23%
30,12021,04418,89210.23%
29,16420,88818,75210.23%
45,44432,47229,15210.22%
41,76027,43224,62810.22%
105,24059,65253,55610.22%
44,30831,16827,98410.22%
31,85620,91218,77610.21%
69,59234,43630,92410.20%
27,04523,07620,72410.19%
41,01225,08422,52810.19%
33,61224,38021,89610.19%
48,74826,89624,15610.19%
183,752143,040128,46810.19%
183,160142,280127,78810.19%
40,40828,12025,25610.18%
43,93623,06420,71610.18%
35,93623,77221,35210.18%
36,11623,82021,39610.18%
20,29216,43214,76010.18%
28,57622,09619,84810.17%
32,48421,35219,18010.17%
70,90434,85631,31210.17%
61,39244,81240,25610.17%
45,46432,73629,40810.17%
46,02418,57216,68410.17%
62,46046,24041,54010.16%
36,26823,79221,37610.15%
47,44819,30417,34410.15%
36,53624,51222,02410.15%
47,17232,55229,24810.15%
41,64830,04026,99210.15%
104,72455,74450,08810.15%
58,38836,38832,69610.15%
28,34820,59618,50810.14%
55,92035,74832,12410.14%
55,92035,74832,12410.14%
29,12021,07218,93610.14%
39,14828,82025,90010.13%
191,492138,648124,60410.13%
37,58027,40824,63210.13%
56,99238,63634,72410.13%
32,58821,37619,21210.12%
35,10424,61622,12410.12%
33,70024,78422,27610.12%
105,34059,05653,08010.12%
28,55220,47618,40410.12%
24,70017,59615,81610.12%
81,21238,04434,19610.11%
71,51235,43631,85210.11%
103,39271,98064,70010.11%
78,31240,80036,67610.11%
28,79221,14019,00410.10%
36,37627,04024,30810.10%
38,47628,42825,55610.10%
25,25220,03618,01210.10%
48,01632,90829,58410.10%
185,280145,664130,95210.10%
44,81228,95626,03210.10%
30,81620,87618,76810.10%
185,012145,148130,49210.10%
36,59224,61622,13210.09%
30,88420,10418,07610.09%
479,449333,656300,00010.09%
34,93626,84824,14010.09%
37,32424,71622,22410.08%
184,856143,696129,20810.08%
183,648142,944128,53210.08%
181,564140,272126,13610.08%
25,86821,12418,99610.07%
45,94933,39630,03210.07%
35,10425,49622,92810.07%
183,612142,584128,22410.07%
35,91223,79221,39610.07%
31,28821,60819,43210.07%
38,33618,31216,46810.07%
52,78424,35621,90410.07%
180,932140,456126,31610.07%
47,93219,47217,51210.07%
34,20424,04421,62410.06%
30,48421,46419,30410.06%
38,26426,63223,95210.06%
73,45635,10831,57610.06%
29,66823,26020,92010.06%
105,31259,53253,54410.06%
29,18820,60018,52810.06%
105,62059,50053,51610.06%
25,11618,75216,86810.05%
46,04032,48829,22410.05%
42,35230,94427,83610.04%
29,96819,87617,88010.04%
28,76821,79219,60410.04%
75,86840,02036,00410.03%
54,09637,03233,31610.03%
14,99211,72010,54410.03%
46,68822,44820,19610.03%
47,39219,58017,61610.03%
21,43217,02815,32010.03%
183,344142,528128,23210.03%
26,85620,86018,76810.03%
47,64429,12026,20010.03%
36,67627,00824,30010.03%
38,94427,76824,98410.03%
44,10429,74826,76810.02%
73,75225,88023,28810.02%
124,63685,27276,73210.02%
36,28426,60423,94010.01%
81,67631,40028,25610.01%
42,14028,64825,78010.01%
30,90021,38019,24010.01%
42,01226,82024,13610.01%
53,82834,29630,86410.01%
35,46023,22420,90010.01%
33,19223,90821,51610.01%
33,20025,18822,66810.00%
37,41627,86825,08010.00%
41,57626,92424,23210.00%
32,67622,92420,63210.00%
78,09635,65232,08810.00%
33,15222,28820,06010.00%
23,64018,53216,6809.99%
58,03222,11219,9049.99%
23,05217,71615,9489.98%
28,08020,76418,6929.98%
30,51220,96818,8769.98%
64,14831,79628,6249.98%
910,965704,724634,4289.97%
71,08053,58048,2369.97%
30,40421,70819,5449.97%
30,48020,62818,5729.97%
37,42427,10824,4089.96%
28,77622,85220,5769.96%
78,47640,83236,7689.95%
46,76426,32423,7049.95%
33,00823,63621,2849.95%
29,9569,2128,2969.94%
29,05221,20819,1009.94%
38,87629,26426,3569.94%
28,94422,35220,1329.93%
45,20428,44025,6169.93%
43,68024,25221,8449.93%
39,66826,67224,0249.93%
56,61238,19634,4049.93%
49,65629,94426,9729.93%
49,65629,94426,9729.93%
45,33630,30827,3009.92%
32,69620,92418,8489.92%
33,58825,76423,2089.92%
33,88824,48822,0609.92%
20,29215,65614,1049.91%
47,92019,38017,4609.91%
46,74025,72023,1729.91%
64,96442,09237,9249.90%
36,68424,65222,2129.90%
18,88813,90412,5289.90%
27,86020,66018,6169.89%
73,84038,93635,0849.89%
35,12023,33221,0249.89%
56,98835,41231,9129.88%
38,39628,01225,2449.88%
80,05634,77631,3409.88%
46,67618,78816,9329.88%
29,58821,30419,2009.88%
33,10423,49221,1729.88%
35,13625,44822,9369.87%
32,28423,46421,1489.87%
39,26022,90420,6449.87%
14,19610,8249,7569.87%
31,76823,59621,2689.87%
45,58432,76429,5329.86%
47,77619,42417,5089.86%
383,781277,060249,7489.86%
58,18439,32835,4529.86%
103,06053,60048,3209.85%
38,71628,10425,3369.85%
36,31227,30024,6129.85%
28,58020,64018,6089.84%
19,68415,40013,8849.84%
19,10014,79213,3369.84%
45,69232,34829,1649.84%
33,09223,85621,5089.84%
31,82422,52020,3049.84%
42,06530,65627,6409.84%
103,61657,04851,4369.84%
29,77623,58821,2689.84%
32,44423,38821,0889.83%
39,39218,99617,1289.83%
28,80822,86420,6169.83%
37,28825,87623,3329.83%
39,20418,71616,8769.83%
36,40826,65624,0369.83%
28,85621,10019,0289.82%
35,42023,26020,9769.82%
46,00031,20828,1449.82%
28,16020,54418,5289.81%
30,98421,24019,1569.81%
28,36820,27218,2849.81%
31,25221,41619,3169.81%
40,46027,08824,4329.81%
34,04424,31621,9329.80%
44,80830,84827,8249.80%
71,68433,86830,5489.80%
41,92031,05628,0129.80%
164,472132,560119,5689.80%
57,32439,71635,8249.80%
63,83243,84839,5529.80%
34,24826,54823,9489.79%
29,74423,57621,2689.79%
14,70411,36010,2489.79%
39,71229,06826,2249.78%
39,71229,06826,2249.78%
29,66821,22019,1449.78%
14,10010,9609,8889.78%
44,82817,42415,7209.78%
20,43215,38413,8809.78%
56,26825,87623,3489.77%
40,94424,64822,2409.77%
30,42420,23218,2569.77%
33,50521,38819,3009.76%
47,69218,44016,6409.76%
64,43238,81235,0249.76%
7,3005,4924,9569.76%
29,22821,12019,0609.75%
38,48428,83226,0209.75%
36,92826,78424,1729.75%
33,63224,45222,0689.75%
28,73221,54819,4489.75%
32,94024,43622,0569.74%
30,64820,98818,9449.74%
427,945295,928267,1089.74%
34,13221,73219,6169.74%
34,93226,91224,2929.74%
34,74023,26020,9969.73%
77,69234,97631,5729.73%
21,04815,21213,7329.73%
57,09240,08836,1889.73%
39,45629,07226,2449.73%
26,15219,08017,2249.73%
46,77219,00417,1569.72%
37,10424,23221,8769.72%
41,19230,74027,7529.72%
34,86823,00420,7689.72%
31,89224,57222,1849.72%
28,34822,39220,2169.72%
102,31271,34064,4089.72%
44,79618,12016,3609.71%
17,98512,93211,6769.71%
46,52832,45629,3049.71%
163,188131,848119,0449.71%
27,23619,89617,9649.71%
40,43629,21626,3809.71%
35,70426,33223,7769.71%
15,87212,36411,1649.71%
30,76820,73218,7209.70%
47,40432,76829,5889.70%
29,10821,39219,3169.70%
34,56822,79620,5849.70%
80,48437,43233,8009.70%
44,52817,81216,0849.70%
44,80417,98416,2409.70%
103,60854,87249,5529.70%
60,18837,83634,1689.69%
34,02822,24020,0849.69%
45,96832,55629,4009.69%
36,84824,68022,2889.69%
27,59219,15217,2969.69%
46,85218,28816,5169.69%
30,13623,74421,4449.69%
47,77619,74017,8289.69%
40,14429,90827,0129.68%
41,74530,24027,3129.68%
28,25220,90818,8849.68%
321,785264,532238,9249.68%
33,66824,75622,3609.68%
34,72022,94020,7209.68%
28,58422,42020,2529.67%
28,06822,13619,9969.67%
47,72832,13229,0289.66%
25,14016,77615,1569.66%
28,89622,57620,3969.66%
38,18427,92025,2249.66%
45,85618,90817,0849.65%
27,49621,39619,3329.65%
38,73627,41224,7689.65%
35,69226,68424,1129.64%
26,78419,80017,8929.64%
65,40843,84839,6249.63%
28,10022,15220,0209.62%
34,03624,81222,4249.62%
41,47631,84828,7849.62%
34,58425,70423,2329.62%
34,91623,01620,8049.61%
28,66820,77218,7769.61%
28,91620,57618,6009.60%
40,64029,24826,4409.60%
28,31622,37620,2289.60%
32,19224,38422,0449.60%
68,12433,31630,1209.59%
27,93220,56018,5889.59%
30,10423,73221,4569.59%
163,972132,612119,8969.59%
13,53610,3929,3969.58%
31,95224,12421,8129.58%
39,12030,05227,1729.58%
37,37228,05225,3649.58%
45,77218,75616,9609.58%
29,37221,02419,0129.57%
72,28436,66433,1569.57%
164,184132,316119,6649.56%
35,55626,18823,6849.56%
29,40820,71218,7329.56%
164,548132,988120,2769.56%
35,24026,03623,5489.56%
7,9525,9045,3409.55%
33,16424,32822,0049.55%
32,60025,09622,7009.55%
164,196132,604119,9529.54%
28,78021,67619,6089.54%
33,69624,78022,4169.54%
28,61622,43220,2929.54%
33,40425,11622,7209.54%
46,59619,08417,2649.54%
162,972131,604119,0569.53%
40,17224,42022,0929.53%
180,028139,024125,7729.53%
45,43218,50816,7449.53%
39,19227,33624,7329.53%
16,65612,30411,1329.53%
39,98427,93625,2769.52%
28,58420,80018,8209.52%
40,00030,81227,8809.52%
31,83621,02819,0289.51%
164,316132,624120,0129.51%
45,03632,14429,0889.51%
41,06031,78028,7609.50%
41,54431,86828,8409.50%
16,73211,36810,2889.50%
154,120111,704101,0969.50%
152,592107,67297,4489.50%
29,20020,98018,9889.49%
26,54018,58016,8169.49%
45,79618,96017,1609.49%
20,08015,38013,9209.49%
33,76024,62022,2849.49%
32,32421,71619,6569.49%
44,70418,14816,4289.48%
164,556133,276120,6529.47%
41,64432,06029,0249.47%
36,68426,79624,2609.46%
37,78027,99225,3449.46%
29,30821,60819,5649.46%
28,29220,72418,7649.46%
40,68429,40026,6209.46%
34,94424,66422,3329.46%
70,92833,90030,6969.45%
77,49654,62049,4609.45%
34,43225,32022,9289.45%
318,105232,708210,7289.45%
34,61226,00423,5489.44%
40,75630,36827,5009.44%
36,11626,81624,2849.44%
28,62420,50418,5689.44%
163,488132,136119,6649.44%
34,02425,18422,8089.43%
163,452132,392119,9049.43%
54,05239,14435,4529.43%
44,74432,06429,0409.43%
38,43228,71626,0089.43%
40,54426,85224,3209.43%
154,856110,908100,4529.43%
28,32421,04819,0649.43%
163,680132,100119,6529.42%
38,44829,29226,5329.42%
28,31220,34018,4249.42%
50,91234,87231,5889.42%
47,41232,90029,8049.41%
24,78419,13217,3329.41%
35,63626,36423,8849.41%
27,37619,81617,9529.41%
39,38428,87626,1609.41%
74,93640,92037,0729.40%
28,43221,48419,4649.40%
83,22461,63255,8409.40%
24,98016,60015,0409.40%
163,988132,268119,8409.40%
17,17212,78411,5849.39%
27,49220,28418,3809.39%
32,20424,29222,0129.39%
54,54145,31241,0609.38%
163,240131,980119,5969.38%
17,39614,11212,7889.38%
28,59223,23621,0569.38%
39,52830,18827,3569.38%
26,98419,87618,0129.38%
39,25628,84426,1409.37%
89,74447,31642,8849.37%
165,676133,980121,4369.36%
34,66826,20023,7489.36%
23,05617,74016,0809.36%
163,520131,900119,5609.36%
163,900132,400120,0169.35%
28,96821,04419,0769.35%
46,98018,65216,9089.35%
32,70424,22021,9569.35%
47,26426,14823,7049.35%
163,572131,920119,5929.35%
165,392134,084121,5609.34%
31,04025,31222,9489.34%
46,06418,94017,1729.33%
35,30423,44021,2529.33%
27,46421,38419,3889.33%
81,58063,20057,3049.33%
29,34421,31219,3249.33%
40,44826,99224,4769.32%
42,34130,82027,9489.32%
35,87228,77226,0929.31%
31,64823,36821,1929.31%
17,33714,52013,1689.31%
40,83630,64827,7969.31%
38,10828,41625,7729.30%
41,32431,77628,8209.30%
27,84418,75217,0089.30%
37,65227,82825,2409.30%
23,87617,46415,8409.30%
163,376131,884119,6209.30%
21,72817,17215,5769.29%
13,90410,9329,9169.29%
34,06026,21623,7809.29%
40,14431,16828,2729.29%
40,54426,74424,2609.29%
29,03221,84419,8169.28%
29,06021,84819,8209.28%
164,896133,472121,0849.28%
29,86021,59219,5889.28%
164,096132,896120,5649.28%
45,60029,96427,1849.28%
85,33662,08456,3249.28%
56,46145,34441,1409.27%
28,71620,89618,9609.26%
74,78040,25236,5249.26%
29,54421,59619,5969.26%
89,85263,24457,3889.26%
45,38431,97229,0129.26%
162,548130,396118,3249.26%
49,32933,61630,5049.26%
46,06018,71216,9809.26%
40,53230,12827,3409.25%
24,61619,28417,5009.25%
35,41623,10020,9649.25%
37,39227,52424,9809.24%
163,944132,524120,2769.24%
36,64427,48424,9449.24%
42,41631,86028,9169.24%
43,38029,00426,3249.24%
163,252132,008119,8129.24%
46,14418,05616,3889.24%
35,53626,54424,0929.24%
46,56418,66416,9409.24%
74,00059,56054,0609.23%
162,680130,760118,6889.23%
164,108132,680120,4329.23%
23,37216,72815,1849.23%
34,18425,13622,8169.23%
32,97624,75222,4689.23%
53,96037,72834,2489.22%
162,848130,748118,6929.22%
38,02028,84826,1889.22%
29,42021,60419,6129.22%
49,30427,60425,0609.22%
28,00420,71618,8089.21%
71,92834,74831,5489.21%
162,872130,572118,5489.21%
33,96425,45623,1129.21%
163,224131,240119,1569.21%
61,35245,89641,6729.20%
163,060131,796119,6729.20%
41,04431,31228,4329.20%
40,94031,27628,4009.20%
30,42022,53620,4649.19%
34,59625,41223,0769.19%
33,70024,68822,4209.19%
13,98010,6689,6889.19%
46,88818,76817,0449.19%
41,68432,09629,1489.18%
28,54820,99219,0649.18%
163,548131,948119,8409.18%
32,65624,28022,0529.18%
32,55223,54021,3809.18%
35,24826,77224,3169.17%
41,32031,44428,5609.17%
34,60425,43223,1009.17%
38,64029,22826,5489.17%
37,52428,42825,8249.16%
165,080134,324122,0209.16%
40,03230,40427,6209.16%
48,35234,60031,4329.16%
60,77640,80437,0689.16%
37,10026,34823,9369.15%
35,44026,53624,1089.15%
34,87622,95220,8529.15%
27,09220,20018,3529.15%
40,42430,92028,0929.15%
162,948131,164119,1689.15%
29,18021,47619,5129.15%
163,440131,376119,3649.14%
17,12813,91612,6449.14%
28,29222,80020,7169.14%
35,32425,91223,5449.14%
162,564129,776117,9209.14%
43,61632,48829,5209.14%
40,62430,08027,3329.14%
39,70026,55224,1289.13%
46,44019,14817,4009.13%
164,564132,988120,8529.13%
30,47620,38418,5249.12%
30,26822,18420,1609.12%
36,03724,50822,2729.12%
33,86424,59622,3529.12%
33,86424,59622,3529.12%
30,12022,50420,4529.12%
38,79629,39626,7169.12%
104,09672,71666,0929.11%
47,07618,26816,6049.11%
163,180131,760119,7609.11%
116,55656,88451,7049.11%
27,79620,78818,8969.10%
35,55626,64824,2249.10%
163,420131,396119,4449.10%
31,38023,44821,3169.09%
16,58011,57610,5249.09%
40,74031,21628,3809.09%
13,43210,4369,4889.08%
34,66425,14422,8609.08%
23,82417,61616,0169.08%
28,33622,16820,1569.08%
20,41215,20813,8289.07%
44,23629,41226,7449.07%
44,00832,02429,1209.07%
163,724132,424120,4169.07%
27,82823,20421,1009.07%
164,008132,980120,9249.07%
16,06812,04810,9569.06%
29,84819,64017,8609.06%
33,37224,40822,1969.06%
41,07231,44028,5929.06%
33,12424,16421,9769.05%
43,96829,46826,8009.05%
36,21227,17624,7169.05%
37,45228,15225,6049.05%
28,82520,42818,5809.05%
45,89737,60834,2089.04%
36,01626,68024,2689.04%
56,44034,34031,2369.04%
40,80831,43628,5969.03%
24,00419,17217,4409.03%
162,836132,040120,1129.03%
163,892132,576120,6049.03%
43,92830,13227,4129.03%
50,54841,08037,3729.03%
38,11228,72026,1289.03%
38,29629,26426,6249.02%
44,16030,28827,5569.02%
39,58429,89227,1969.02%
43,27222,35620,3409.02%
35,11227,59225,1049.02%
58,27634,46831,3609.02%
35,48826,53624,1449.01%
43,42832,09229,2009.01%
41,78028,06425,5369.01%
35,51226,46824,0849.01%
33,88822,04820,0649.00%
39,88430,22827,5089.00%
29,74824,45222,2529.00%
35,96026,72824,3248.99%
33,76425,22422,9568.99%
34,08425,72823,4168.99%
163,776132,528120,6208.99%
32,18824,26822,0888.98%
95,29668,85262,6728.98%
77,34061,20855,7168.97%
162,584130,312118,6208.97%
46,25618,68017,0048.97%
36,09227,33624,8848.97%
162,888131,424119,6448.96%
36,65627,85225,3568.96%
38,49228,96826,3728.96%
38,02428,43625,8888.96%
35,66027,01224,5928.96%
52,47229,20426,5888.96%
33,25224,42822,2408.96%
20,26415,51214,1248.95%
26,22820,21218,4048.95%
33,21223,95221,8128.93%
58,07346,65642,4888.93%
14,24410,9729,9928.93%
26,46922,16820,1888.93%
38,92827,81225,3288.93%
37,88828,80826,2368.93%
40,38029,66427,0168.93%
33,44024,56022,3688.93%
34,38425,90823,5968.92%
45,10032,68029,7648.92%
39,25228,15625,6448.92%
36,70824,17222,0168.92%
30,60820,31618,5048.92%
29,74021,76019,8208.92%
40,82431,07628,3088.91%
44,56832,02029,1688.91%
36,55627,62025,1608.91%
34,03625,08822,8568.90%
34,51225,72023,4328.90%
33,46024,91622,7008.89%
33,19624,78422,5808.89%
38,23628,65626,1088.89%
38,96029,20826,6128.89%
28,35223,40421,3248.89%
41,43231,34028,5568.88%
40,82431,11628,3528.88%
33,23224,64022,4528.88%
38,96830,18827,5088.88%
26,16820,28018,4808.88%
31,32019,20017,4968.88%
40,67631,82028,9968.87%
44,66830,43227,7328.87%
33,46825,24823,0088.87%
40,97631,69628,8848.87%
43,03631,83229,0088.87%
38,51229,08826,5088.87%
98,65251,50446,9368.87%
43,32829,18426,5968.87%
52,79229,41626,8088.87%
26,37220,98419,1248.86%
19,74014,98413,6568.86%
38,52029,47226,8608.86%
51,49236,17232,9688.86%
158,272126,460115,2608.86%
40,29629,91627,2688.85%
35,68825,67623,4048.85%
21,75216,32814,8848.84%
45,78830,40427,7168.84%
37,99629,00426,4408.84%
65,97231,27628,5128.84%
32,42124,58022,4088.84%
41,31629,83627,2008.83%
34,73225,79223,5168.82%
159,188128,060116,7608.82%
37,57628,12025,6408.82%
36,89227,67225,2328.82%
35,60826,54824,2088.81%
34,69626,41224,0848.81%
47,10031,50828,7328.81%
42,82032,52829,6648.80%
36,78027,44025,0248.80%
37,28823,17221,1328.80%
37,64027,71625,2768.80%
43,14429,32026,7408.80%
38,84829,55626,9568.80%
16,20113,05211,9048.80%
33,11223,52021,4528.79%
36,64427,99225,5328.79%
54,71237,61234,3088.78%
15,78011,84410,8048.78%
49,85228,01625,5568.78%
37,41230,45627,7848.77%
34,36025,58423,3408.77%
30,18022,07620,1408.77%
37,14428,24425,7688.77%
315,941243,580222,2288.77%
34,00021,95220,0288.76%
31,38122,13620,1968.76%
42,79630,12827,4888.76%
36,46828,07625,6168.76%
40,11630,81628,1168.76%
40,87231,69628,9208.76%
36,96427,86825,4288.76%
36,86428,14425,6808.75%
37,82028,33625,8568.75%
28,97621,85619,9448.75%
36,25627,20824,8288.75%
39,73630,68828,0048.75%
48,54533,20430,3008.75%
23,56815,60014,2368.74%
40,60031,29228,5568.74%
41,39630,52027,8528.74%
35,20026,73224,3968.74%
30,10420,15218,3928.73%
36,59227,53225,1288.73%
13,10410,7689,8288.73%
359,913290,684265,3128.73%
36,84827,82025,3928.73%
36,70427,92025,4848.72%
37,48428,25225,7888.72%
28,18020,78018,9688.72%
29,70419,40817,7168.72%
36,28827,12024,7568.72%
37,62428,77226,2648.72%
46,95233,82030,8728.72%
35,58426,76424,4328.71%
30,38020,31618,5488.70%
41,59232,45229,6288.70%
35,40026,29624,0088.70%
41,60431,49228,7528.70%
36,20827,03624,6848.70%
41,20032,28429,4768.70%
37,78828,79626,2928.70%
43,28032,25229,4488.69%
39,88430,59627,9368.69%
37,14027,77225,3608.69%
40,05630,18027,5608.68%
34,83323,96021,8808.68%
36,64827,46425,0808.68%
54,85231,49628,7648.67%
40,24026,66824,3568.67%
37,27227,23224,8728.67%
28,30422,15620,2368.67%
39,65626,04423,7888.66%
35,97626,89224,5648.66%
67,39242,25638,6008.65%
34,76826,40024,1168.65%
38,05629,08826,5728.65%
38,25628,64026,1648.65%
40,55625,29223,1088.64%
46,48431,16028,4728.63%
43,61632,55629,7488.63%
36,30027,13624,7968.62%
40,24831,26828,5728.62%
41,21627,46825,1008.62%
32,98126,91224,5928.62%
21,34017,12415,6488.62%
14,36811,18410,2208.62%
53,23636,45233,3128.61%
25,83220,35618,6048.61%
34,38025,74823,5328.61%
38,75230,09227,5048.60%
85,02971,72065,5528.60%
40,36831,11628,4408.60%
40,56431,58828,8728.60%
32,84423,79221,7488.59%
39,35630,37227,7648.59%
16,40513,23212,0968.59%
39,49329,91627,3488.58%
39,49229,91627,3488.58%
35,85627,91625,5208.58%
40,68832,32029,5488.58%
30,06625,09222,9408.58%
43,72429,62827,0888.57%
36,47228,74826,2848.57%
22,76018,62417,0288.57%
48,53233,76430,8728.57%
36,00427,08824,7688.56%
39,94830,40827,8048.56%
39,08430,06027,4888.56%
15,94912,76411,6728.56%
30,42820,67618,9088.55%
41,26432,46829,6928.55%
54,31345,48841,6008.55%
30,76420,78419,0088.55%
322,861249,540228,2208.54%
38,08829,16826,6768.54%
322,613247,176226,1088.52%
38,33629,26026,7688.52%
34,08025,93223,7248.51%
35,62027,06024,7568.51%
35,59226,82824,5448.51%
51,03228,95226,4888.51%
65,42440,47237,0288.51%
41,39231,82429,1168.51%
16,75713,49612,3488.51%
44,27234,51631,5808.51%
41,60431,75629,0568.50%
36,24029,78427,2528.50%
30,44022,12020,2408.50%
37,63628,99626,5328.50%
41,03227,45225,1208.49%
24,40819,31617,6768.49%
36,53627,61625,2728.49%
46,06834,02831,1408.49%
35,52027,00824,7168.49%
43,19631,96029,2488.49%
15,46812,59611,5288.48%
36,81228,02425,6488.48%
39,63230,90428,2848.48%
37,78028,70426,2728.47%
17,40414,11612,9208.47%
37,06028,28025,8848.47%
637,917521,704477,5408.47%
22,26418,19616,6568.46%
41,23231,48828,8248.46%
35,12826,66824,4128.46%
50,01233,77230,9168.46%
30,10021,67219,8408.45%
40,54830,99628,3768.45%
22,32017,56016,0768.45%
37,65628,92026,4768.45%
39,40830,48827,9128.45%
49,93628,21625,8328.45%
39,48830,88428,2768.44%
55,05631,36028,7128.44%
40,36831,13628,5088.44%
38,91230,05227,5168.44%
24,77218,96417,3648.44%
19,93215,78814,4568.44%
44,72034,96432,0168.43%
51,57635,15632,1928.43%
38,90429,18826,7288.43%
52,23638,85235,5808.42%
39,65731,92029,2328.42%
37,29228,51226,1128.42%
33,88825,82423,6528.41%
30,10022,12020,2608.41%
20,82816,88815,4688.41%
12,36010,3249,4568.41%
45,81234,68431,7688.41%
39,35230,34027,7928.40%
35,31619,67618,0248.40%
36,67228,39626,0128.40%
48,22031,64028,9848.39%
40,44426,69224,4528.39%
37,47229,14026,6968.39%
40,07631,19228,5768.39%
37,11228,63226,2328.38%
39,05226,91624,6608.38%
40,79631,21228,5968.38%
35,18826,26024,0608.38%
37,36028,64826,2488.38%
43,52833,56830,7568.38%
39,56430,96428,3728.37%
41,37227,73225,4128.37%
37,64028,79226,3848.36%
45,34432,06029,3808.36%
36,60426,94024,6888.36%
37,16829,04826,6208.36%
36,54427,44025,1488.35%
50,82436,01633,0088.35%
39,05230,18827,6688.35%
38,84428,34025,9768.34%
27,34422,49620,6208.34%
39,26029,98827,4888.34%
42,67629,60827,1408.34%
39,19629,81627,3328.33%
38,24030,02827,5288.33%
33,58824,79622,7328.32%
32,58024,56422,5208.32%
37,06030,14427,6368.32%
33,88522,60820,7288.32%
39,70030,28827,7728.31%
40,72431,41228,8048.30%
51,06834,93632,0368.30%
42,27628,19225,8528.30%
51,36435,42432,4848.30%
43,55233,59630,8088.30%
49,18935,77232,8048.30%
38,58430,38027,8608.29%
38,36829,58827,1368.29%
40,56430,85228,2968.28%
53,36039,74436,4528.28%
35,86427,16424,9168.28%
48,09233,30430,5488.28%
37,04828,32825,9848.27%
31,75225,24423,1568.27%
38,07629,31226,8888.27%
37,17227,96025,6488.27%
24,72419,06417,4888.27%
50,18039,05235,8248.27%
48,72427,10024,8608.27%
36,81629,99227,5168.26%
28,88420,88819,1648.25%
36,74827,83225,5368.25%
36,52028,41626,0728.25%
17,59614,60413,4008.24%
17,59614,60413,4008.24%
51,04835,03232,1448.24%
40,22431,70429,0928.24%
35,90827,82425,5328.24%
51,40835,74432,8008.24%
43,82034,24431,4248.24%
36,44029,93227,4688.23%
40,30431,35628,7768.23%
35,09626,60824,4208.22%
50,96828,76026,3968.22%
51,72835,38032,4728.22%
44,48834,85231,9888.22%
40,60027,36025,1128.22%
29,66824,97622,9248.22%
49,67236,08033,1168.22%
20,97616,81215,4328.21%
43,15229,29626,8928.21%
35,76827,50825,2528.20%
47,18434,64831,8088.20%
37,27628,38826,0648.19%
24,72419,22017,6488.18%
32,51219,50017,9088.16%
50,48833,57230,8328.16%
25,67620,24818,5968.16%
33,20824,80822,7848.16%
34,93625,40423,3328.16%
41,07231,34428,7888.15%
43,33233,26430,5528.15%
44,17634,26431,4728.15%
50,04827,98825,7088.15%
22,80817,68416,2448.14%
42,32022,99621,1248.14%
37,75229,33626,9488.14%
37,14423,54421,6288.14%
25,00419,14017,5848.13%
21,19313,35612,2728.12%
30,34420,25618,6128.12%
45,55234,18031,4088.11%
50,13230,87228,3728.10%
21,87217,78816,3488.10%
45,70035,24032,3888.09%
355,697282,720259,8408.09%
29,37224,52022,5368.09%
42,28032,04029,4488.09%
40,73620,68419,0128.08%
40,38831,72429,1608.08%
21,73217,82016,3808.08%
45,40833,87631,1408.08%
52,92839,08835,9368.06%
43,79234,41631,6488.04%
43,20534,40031,6368.03%
37,77230,72428,2568.03%
25,43220,36818,7328.03%
36,76428,34026,0648.03%
33,07225,30823,2768.03%
39,82831,19228,6888.03%
32,14019,74018,1568.02%
43,22430,72028,2568.02%
50,90834,54431,7768.01%
28,66424,21222,2728.01%
67,21232,37229,7808.01%
51,84042,05238,6888.00%
104,33787,07280,1127.99%
50,11233,78431,0847.99%
17,31614,06812,9447.99%
40,26432,42029,8327.98%
32,51219,14417,6167.98%
35,74426,80824,6727.97%
56,45746,64842,9327.97%
38,07230,58428,1487.96%
45,88036,51633,6127.95%
25,65620,57218,9367.95%
43,81634,44431,7087.94%
48,98827,49625,3127.94%
41,25631,64029,1287.94%
38,75231,15628,6847.93%
42,72530,25227,8527.93%
44,76834,22431,5127.92%
42,91232,98830,3767.92%
28,72024,00822,1087.91%
37,54029,36427,0447.90%
29,69225,07223,0927.90%
50,72034,16431,4687.89%
38,56029,60427,2727.88%
45,16434,10031,4167.87%
50,54031,27228,8127.87%
27,78823,96822,0847.86%
41,23633,80431,1487.86%
25,79220,47618,8687.85%
51,66841,89638,6127.84%
49,10436,20833,3727.83%
15,61612,97611,9607.83%
36,57628,30826,0927.83%
51,78035,42032,6487.83%
48,00036,68833,8207.82%
42,75630,14427,7887.82%
44,74034,35231,6687.81%
44,32834,47631,7847.81%
37,64823,80421,9487.80%
50,31233,86431,2247.80%
26,76822,96421,1767.79%
54,11238,78835,7687.79%
42,26831,65229,1927.77%
182,397148,192136,6927.76%
26,23322,39620,6607.75%
52,84839,38036,3287.75%
51,08028,86826,6327.75%
52,63230,84028,4527.74%
25,74021,50819,8447.74%
16,50514,43213,3167.73%
47,40425,66023,6767.73%
24,60020,20018,6407.72%
40,19627,45625,3367.72%
31,10826,13224,1167.71%
51,15235,30032,5807.71%
39,66831,02428,6367.70%
44,08833,89231,2847.70%
47,12036,44033,6367.69%
51,30835,02032,3287.69%
52,40438,56035,5967.69%
25,58421,20419,5767.68%
31,03226,22424,2127.67%
38,74030,04027,7367.67%
46,09625,71623,7447.67%
54,76146,38842,8367.66%
25,47621,84020,1687.66%
40,88831,93229,4887.65%
30,94422,19220,4967.64%
24,51220,10018,5647.64%
44,40834,48031,8567.61%
49,65640,42837,3567.60%
48,55234,29631,6927.59%
51,22835,01232,3567.59%
30,30425,74423,7927.58%
43,94834,24831,6527.58%
46,07236,03233,3047.57%
40,69231,34428,9767.55%
53,02831,10828,7607.55%
13,90011,66010,7807.55%
17,86013,46412,4487.55%
30,97221,74820,1087.54%
25,74922,18820,5167.54%
43,49634,08831,5207.53%
43,98833,81631,2727.52%
43,83635,70433,0207.52%
37,92829,14426,9567.51%
45,28139,46036,5007.50%
43,81235,67633,0047.49%
49,87227,93225,8407.49%
48,69227,26025,2207.48%
42,92833,34830,8567.47%
46,14434,42031,8567.45%
38,35231,14428,8287.44%
31,07219,42017,9767.44%
24,12818,45217,0807.44%
25,77221,90820,2807.43%
30,00025,79623,8807.43%
32,25618,37217,0087.42%
70,90842,83639,6647.40%
26,39323,08421,3767.40%
17,72115,46414,3207.40%
55,34840,71237,7087.38%
38,21231,99229,6327.38%
28,04823,97622,2087.37%
27,12023,01621,3207.37%
50,52041,76038,6847.37%
49,99742,54039,4087.36%
25,56120,52019,0127.35%
53,19237,35634,6127.35%
21,02418,19216,8567.34%
35,05225,31223,4567.33%
16,56514,21613,1767.32%
50,03635,06432,5007.31%
66,22440,69637,7287.29%
38,44831,98429,6527.29%
51,80037,27234,5567.29%
50,45236,86434,1807.28%
29,02125,33223,4887.28%
51,81637,01634,3247.27%
46,31340,11637,2007.27%
49,99635,61233,0247.27%
25,84422,09220,4887.26%
49,65240,35237,4247.26%
27,83623,98822,2487.25%
46,40436,91234,2367.25%
26,69622,83221,1807.24%
12,32010,2929,5487.23%
15,48513,34012,3767.23%
17,26914,90013,8247.22%
31,13619,43618,0367.20%
50,87641,12438,1647.20%
37,76824,49622,7407.17%
16,02913,88812,9087.06%
34,65218,77617,4527.05%
67,89251,20447,6047.03%
26,36022,72421,1327.01%
67,42049,55646,0926.99%
47,83633,96831,5966.98%
50,48035,88833,3846.98%
21,68017,72816,4966.95%
25,07219,00417,6846.95%
26,80822,89621,3086.94%
50,56437,22034,6406.93%
31,38925,93224,1366.93%
65,04848,83645,4566.92%
28,21224,13622,4686.91%
28,71325,41623,6646.89%
42,28033,02030,7486.88%
51,36042,36039,4526.86%
58,93248,56045,2406.84%
188,381155,936145,3286.80%
28,42024,57222,9166.74%
26,28822,69621,1846.66%
37,08827,39625,5846.61%
28,07623,99622,4126.60%
25,34422,14020,6846.58%
29,39625,67623,9886.57%
29,87225,98824,2806.57%
35,94828,17226,3246.56%
26,84422,96021,4566.55%
30,54826,38024,6686.49%
54,24945,16442,2446.47%
21,82417,98016,8206.45%
47,62034,47632,2846.36%
30,10026,08024,4606.21%
90,71662,79259,0206.01%
45,42032,50830,5645.98%
27,96025,06023,5685.95%
66,78453,62450,4645.89%
75,20562,05658,6565.48%
61,84853,15250,3245.32%

Compression results, Adobe TTF Fonts corpus, with Brotli [February 2015]

Average compression improvement with WOFF 2.0
 27.50%
Median 26.79%
Standard deviation 5.95%
Minimum 6.61%
Maximum 70.82%

Results for 13,983 Adobe fonts using TTF (TrueType) outlines. Font names are omitted, only the original file sizes are given. Thanks to Bram Stein for these results.

Original (bytes)WOFF 1.0 (gzip)WOFF 2.0 (Brotli)% Improvement WOFF2 vs WOFF(gzip)
12,8007,3882,15670.82%
103,79344,68814,32067.96%
103,74945,03214,57267.64%
103,68944,98814,56867.62%
103,76545,04014,63267.51%
103,75345,01614,65667.44%
103,78145,10414,76467.27%
1,352,95253,56418,59665.28%
561,104238,44092,63261.15%
561,624239,55293,75260.86%
550,312230,25290,80860.56%
552,464234,14492,41660.53%
549,704230,40491,66060.22%
551,184232,17293,12059.89%
308,600134,68457,13657.58%
308,600134,68457,13657.58%
194,536106,16845,04057.58%
1,161,236488,696208,11257.41%
1,268,196285,436122,32057.15%
1,076,428450,504193,42457.06%
99,73743,66018,85656.81%
292,592128,04455,43656.71%
292,592128,04455,43656.71%
266,744116,20050,86456.23%
1,271,680485,740212,85256.18%
101,79344,16019,36456.15%
272,428119,04452,54055.87%
272,428119,04452,54055.87%
1,399,124144,94463,98455.86%
190,20089,65239,71655.70%
102,74545,14420,06055.56%
102,12544,98820,00455.53%
102,64544,92019,99655.49%
1,013,852423,804188,88055.43%
102,75745,14820,15255.36%
273,384118,75253,22855.18%
273,384118,75253,22855.18%
1,000,912422,308189,55655.11%
193,47290,31640,96454.64%
295,896125,33657,26054.31%
295,896125,33657,26054.31%
1,044,052441,356203,23253.95%
830,884351,876162,83253.72%
357,544155,14072,04853.56%
303,680129,99260,39253.54%
303,680129,99260,39253.54%
876,736363,400168,98053.50%
164,30883,48839,12453.14%
282,360130,12461,72852.56%
283,680131,41662,45652.47%
867,380358,300171,04052.26%
286,524132,58063,72451.94%
1,647,608345,728166,77651.76%
336,520105,46050,93251.70%
260,100119,18458,09251.26%
1,669,816369,596180,28851.22%
1,642,280377,060186,00050.67%
1,656,972380,364187,69250.65%
1,639,024375,468186,01650.46%
272,600125,96862,44450.43%
338,940153,75276,31650.36%
43,62413,4526,70850.13%
84,02839,97619,95250.09%
1,553,212376,272188,30449.96%
1,664,324426,400214,09249.79%
44,21213,5686,82049.73%
326,140149,80075,40849.66%
244,892111,73256,43249.49%
44,23213,6446,89649.46%
1,551,284393,816199,35249.38%
1,532,444383,512195,16849.11%
141,95781,98041,78049.04%
1,526,880397,440204,00048.67%
1,534,652399,676205,30048.63%
1,537,488400,760206,00848.60%
56,44415,5848,04448.38%
306,040132,85268,68448.30%
64,55232,24416,68048.27%
56,37614,6407,58448.20%
197,00486,78045,00448.14%
197,00486,78045,00448.14%
46,02415,2327,92048.00%
211,08085,37244,41247.98%
235,268106,38455,46047.87%
48,67215,0567,86847.74%
41,67215,9608,35247.67%
49,25615,2007,97247.55%
45,50815,1087,92447.55%
45,49215,1007,92447.52%
45,48814,3007,50847.50%
217,10989,58847,05647.48%
42,20415,1327,95247.45%
216,58987,52046,00847.43%
156,62175,82039,86847.42%
217,26190,19647,43247.41%
323,35719,07610,03247.41%
211,54896,69250,88447.38%
211,54896,69250,88447.38%
216,50589,72047,31247.27%
217,29290,09247,53647.24%
47,27215,3208,08847.21%
716,424335,320177,18847.16%
47,21615,2928,08847.11%
49,57615,3648,12847.10%
67,72416,7528,86847.06%
268,265105,50455,86847.05%
1,003,628429,192227,42847.01%
305,248120,16463,67647.01%
47,22414,4927,69246.92%
17,3209,6525,12446.91%
287,177112,75659,88446.89%
47,82815,5928,30446.74%
704,056291,800155,63246.66%
49,31217,0009,10046.47%
61,20017,1649,19246.45%
308,180138,97274,43646.44%
224,52471,15238,11246.44%
67,70416,0128,58046.42%
362,080113,96061,08446.40%
72,48818,1409,72446.39%
44,71215,5488,34046.36%
210,804108,71658,34846.33%
364,893151,76081,48046.31%
46,20416,6568,95246.25%
213,420110,56059,48446.20%
213,128110,18459,35246.13%
971,876261,712141,08846.09%
113,51353,22828,70046.08%
460,072151,24081,63246.02%
462,260145,53678,59246.00%
967,728266,280143,86445.97%
921,276335,284181,17245.96%
49,51616,3368,83645.91%
213,292110,03259,53645.89%
54,54416,2928,81645.89%
212,896110,15259,62445.87%
58,01616,7049,04445.86%
973,428274,220148,57245.82%
60,82017,7489,63245.73%
263,397108,18858,80845.64%
362,692156,42885,10445.60%
967,900267,540145,72845.53%
49,98816,7169,10845.51%
51,09616,3528,92045.45%
51,77616,7609,14845.42%
361,865156,61285,52445.39%
58,33618,60010,16445.35%
51,76816,9569,26845.34%
61,97617,7409,70445.30%
45,22817,2569,44445.27%
47,04817,6569,66445.27%
271,489113,20462,01645.22%
50,14415,8088,67245.14%
51,74416,8689,25645.13%
212,820110,84460,82845.12%
61,90816,7929,21645.12%
49,86816,4569,03245.11%
217,360112,52061,79245.08%
53,96017,8649,82445.01%
224,592115,38863,52044.95%
57,46017,7929,80444.90%
148,37649,00427,00844.89%
221,108113,05662,32444.87%
196,72179,40443,78444.86%
128,62158,01632,00044.84%
51,83217,3929,59644.83%
680,980300,084165,65244.80%
973,512279,808154,46844.80%
46,61616,6489,19244.79%
344,708108,19659,74444.78%
47,24416,5369,13244.78%
970,316281,928155,79644.74%
972,632280,092154,78444.74%
369,060116,98864,65244.74%
52,38016,1128,91244.69%
293,80893,16451,54044.68%
222,412114,39663,31244.66%
131,17759,79233,10044.64%
52,81617,5809,73644.62%
133,58560,76833,66444.60%
155,15771,20039,46844.57%
222,584114,94063,72044.56%
221,328114,90863,72844.54%
73,44018,92010,49644.52%
54,77619,87611,03244.50%
972,316283,568157,45644.47%
185,89262,23634,59644.41%
234,93679,12444,01244.38%
52,13217,7889,89644.37%
124,37358,98432,82444.35%
971,700273,576152,25644.35%
128,12959,71633,24844.32%
51,39217,7529,88444.32%
972,912274,676152,93644.32%
122,75758,56032,61644.30%
133,27361,68434,38044.26%
48,36817,8289,94044.25%
50,60817,93210,00044.23%
119,85757,76032,21244.23%
237,34879,08044,12044.21%
73,42018,17210,14044.20%
250,80877,15243,05644.19%
60,99220,50811,44844.18%
66,74819,30410,77644.18%
244,58876,13242,51244.16%
78,22020,30411,34444.13%
387,128182,432101,93244.13%
119,61356,68431,67244.13%
49,96817,90810,00844.11%
124,59759,85233,45244.11%
144,76968,50438,32444.06%
234,93679,10844,26844.04%
53,82419,18410,73644.04%
970,064276,180154,57644.03%
128,06957,73232,31644.02%
194,92888,76849,72043.99%
53,64817,7049,92043.97%
973,140277,504155,50843.96%
120,71757,67232,32043.96%
53,17217,5809,85643.94%
55,46818,35610,31243.82%
51,92016,6249,34843.77%
41,93217,5449,86843.75%
147,09368,01238,27243.73%
121,12558,03232,66043.72%
398,901153,64086,52443.68%
294,849118,52466,75643.68%
75,08819,63611,07643.59%
75,02422,45212,66843.58%
609,796243,716137,53243.57%
301,409121,96868,85243.55%
53,22816,8009,48443.55%
42,57217,4089,84043.47%
121,40957,18432,37243.39%
53,08018,51210,48043.39%
120,55357,08032,33243.36%
120,55357,08032,33243.36%
155,91252,46429,72843.34%
293,34495,34854,02843.34%
65,02819,24810,90843.33%
126,34959,84033,93643.29%
497,336216,508122,82043.27%
21,21211,0006,24443.24%
61,77618,85210,70443.22%
60,38420,91211,87643.21%
123,67758,72833,35643.20%
283,737113,66864,59643.17%
155,97252,60429,90043.16%
121,89758,64833,34443.15%
231,62989,62050,97643.12%
119,95358,26433,14443.11%
69,59220,44411,64443.04%
67,71621,68412,35243.04%
520,200222,184126,58443.03%
56,52818,96410,80843.01%
338,856151,58486,43642.98%
121,30557,35632,71642.96%
939,560264,492151,07642.88%
237,64479,29245,29642.87%
381,157145,41683,09242.86%
57,65220,08011,47642.85%
935,432264,384151,14842.83%
398,780197,368112,85242.82%
159,24163,58836,36442.81%
301,085121,57669,54042.80%
490,928218,020124,71642.80%
65,96420,53611,74842.79%
58,88019,86411,36442.79%
933,772264,680151,53642.75%
44,57618,40010,53642.74%
58,61219,04810,90842.73%
57,34018,44810,56842.71%
59,04819,52811,19242.69%
55,52419,07210,93242.68%
152,12850,31228,85242.65%
58,12019,37211,11242.64%
152,29650,88829,22842.56%
58,07220,19211,60442.53%
62,38022,09212,69642.53%
222,54185,90449,40842.48%
569,796229,888132,29242.45%
56,36820,33611,71242.41%
108,07753,57230,86042.40%
105,98853,26830,68842.39%
59,85619,98011,51242.38%
60,23619,99211,52842.34%
121,85359,20034,14042.33%
56,20419,89611,48042.30%
575,840229,812132,99242.13%
59,34421,62012,51242.13%
105,65749,26828,51642.12%
249,86881,01646,89642.12%
501,144220,168127,53242.08%
245,23281,12046,99242.07%
57,18819,96811,56842.07%
465,204206,624119,70442.07%
108,58954,34431,48842.06%
268,71693,06453,92442.06%
53,76819,94811,56442.03%
540,356216,640125,76041.95%
169,03656,89233,02841.95%
59,86418,90410,97641.94%
559,440215,792125,38441.90%
246,25681,02047,08441.89%
48,04419,88011,56041.85%
60,94421,76812,66041.84%
47,46419,27611,22041.79%
118,20156,64832,98441.77%
207,30870,29640,99641.68%
249,78880,66447,07241.64%
198,51268,83640,17641.64%
322,74116,5969,69241.60%
283,248103,74860,65241.54%
279,56099,36858,09641.53%
83,92822,42813,11641.52%
38,82419,72811,54441.48%
337,580163,14495,50041.46%
120,28956,92033,32041.46%
144,34454,48831,94841.37%
339,996164,23296,32841.35%
555,156223,176130,92441.34%
374,508161,77294,90841.33%
48,30819,71211,57241.29%
715,884309,592181,76041.29%
99,02038,02422,32441.29%
250,06082,47248,42041.29%
129,85759,60434,99641.29%
529,080232,300136,42041.27%
132,62960,59235,62441.21%
375,204186,188109,47641.20%
375,204186,188109,47641.20%
209,40876,72845,12041.19%
322,73316,3769,63241.18%
154,72854,36431,97641.18%
103,99351,15630,12441.11%
302,204124,52473,36441.08%
429,024160,44894,53641.08%
498,792224,304132,25641.04%
117,72555,56832,77641.02%
119,02558,10834,27641.01%
61,04421,23212,54440.92%
65,09622,77613,47240.85%
276,612127,63675,54840.81%
381,652161,52895,63640.79%
139,29652,51631,10040.78%
285,83287,16451,62840.77%
120,09759,40035,18440.77%
151,54171,71642,50040.74%
651,500218,144129,28440.73%
155,14972,60443,05240.70%
89,26038,24022,68040.69%
202,53779,10846,93240.67%
202,53679,10846,93240.67%
396,212195,740116,20040.64%
241,956109,58865,07640.62%
539,800172,236102,28440.61%
157,62058,02434,47240.59%
649,004214,576127,50040.58%
652,820216,280128,51640.58%
105,04952,09230,96440.56%
51,29620,92812,44040.56%
466,324186,692110,98840.55%
222,32476,94445,76440.52%
281,932131,99678,53640.50%
657,876221,660131,91640.49%
538,316233,588139,05240.47%
153,15372,83643,36040.47%
647,464216,724129,02440.47%
470,240241,916144,04440.46%
470,240241,916144,04440.46%
655,360217,896129,94840.36%
662,920221,012131,81240.36%
41,28820,86812,44840.35%
113,81755,77633,27240.35%
108,00953,84832,12840.34%
647,444214,296127,86040.33%
308,632143,05285,38840.31%
112,99356,82833,93240.29%
656,060218,784130,64040.29%
658,308220,548131,73640.27%
101,22149,34829,48040.26%
651,688219,608131,19640.26%
247,58484,76450,64840.25%
655,624219,068130,90840.24%
73,18933,74420,16840.23%
92,92539,56423,65640.21%
471,708193,908115,94440.21%
554,132185,400110,86440.20%
92,35339,34823,54040.17%
660,752220,796132,09240.17%
651,188219,052131,10440.15%
654,124220,592132,09640.12%
128,53241,43624,82440.09%
647,736219,168131,31640.08%
138,47252,66431,55640.08%
108,66153,49632,06440.06%
214,44476,09645,62440.04%
206,40485,61251,33640.04%
372,652107,58064,51640.03%
633,904218,016130,75640.02%
649,332217,432130,44040.01%
317,948143,10885,86040.00%
198,89377,27246,36839.99%
198,89277,27246,36839.99%
651,896219,416131,66839.99%
649,652219,004131,43239.99%
651,236219,672131,84839.98%
655,116219,772131,94039.97%
647,148217,516130,58839.96%
648,872218,512131,23639.94%
651,516220,136132,21239.94%
646,648218,568131,27239.94%
644,996218,600131,32039.93%
110,77355,45233,31239.93%
648,424218,044130,99239.92%
218,83281,58049,01239.92%
110,98554,89232,98039.92%
645,864217,616130,78439.90%
197,40466,41639,92439.89%
638,636217,124130,54039.88%
200,01268,22041,02439.87%
71,79333,05219,88039.85%
229,332102,80061,84839.84%
401,204120,30872,38839.83%
235,196104,74463,02439.83%
217,60095,61257,54439.82%
599,872250,632150,84439.81%
228,57687,24852,51239.81%
54,47621,94413,20839.81%
315,936140,13284,35239.81%
180,88469,68841,95639.79%
436,452222,468133,94039.79%
436,452222,468133,94039.79%
180,78869,57241,90439.77%
149,74057,23234,48039.75%
122,78156,84834,25639.74%
274,65683,99250,62439.73%
636,732218,052131,43639.72%
172,00882,24049,60839.68%
206,59670,95242,80039.68%
245,70081,08848,92039.67%
109,77355,03233,20439.66%
547,556181,188109,32439.66%
245,30078,37247,28839.66%
555,836184,388111,27239.65%
125,01245,77227,62439.65%
659,296274,056165,45239.63%
127,50448,22829,12039.62%
221,32897,44858,84839.61%
110,44954,55232,94839.60%
557,980184,984111,73639.60%
545,460182,144110,04439.58%
359,048178,496107,88039.56%
271,924135,42881,85239.56%
180,76069,69642,12439.56%
388,784171,620103,73239.56%
346,588141,84485,77639.53%
674,292281,024169,96039.52%
148,70851,74031,29639.51%
226,44881,38049,26039.47%
136,05253,34432,30839.43%
559,332187,120113,33639.43%
485,428115,50069,96039.43%
259,124116,34070,48039.42%
320,092145,44888,13239.41%
113,62555,06433,36839.40%
234,468106,55664,57639.40%
559,736187,100113,39239.39%
549,852183,804111,39639.39%
549,420182,344110,51639.39%
324,376171,792104,12439.39%
523,400222,496134,88839.38%
545,700184,836112,08839.36%
200,77269,43242,10839.35%
236,66082,59250,10039.34%
208,26479,27248,08839.34%
195,14180,13648,61639.33%
195,14080,13648,61639.33%
552,484185,860112,76439.33%
199,87382,92850,32839.31%
199,87282,92850,32839.31%
550,032185,012112,28839.31%
595,300251,552152,67639.31%
568,384241,964146,86839.30%
537,480178,664108,48039.28%
409,444176,656107,26839.28%
125,39247,48028,83239.28%
548,432184,404111,98039.27%
205,94889,47654,33639.27%
145,05666,80840,57239.27%
544,900182,876111,06039.27%
487,720251,432152,72039.26%
547,888184,964112,36039.25%
108,43752,58031,94439.25%
219,39296,73658,77239.24%
213,75294,05657,14439.24%
422,856181,840110,48439.24%
545,192184,296111,98839.23%
540,528185,396112,67639.22%
445,040193,524117,63239.22%
551,076185,728112,93239.19%
387,192194,872118,50439.19%
555,088185,300112,70039.18%
541,472181,756110,56839.17%
556,828186,240113,30439.16%
549,292184,104112,02039.15%
554,420186,560113,52439.15%
158,51760,72036,95239.14%
587,492250,004152,14839.14%
551,352185,436112,85639.14%
546,596186,408113,46839.13%
548,044185,240112,77239.12%
544,780185,180112,80039.09%
165,41663,00038,38039.08%
96,40033,51620,42039.07%
96,40033,51620,42039.07%
542,680181,868110,81239.07%
281,956115,01670,08839.06%
106,57352,10831,75639.06%
109,44953,18832,41639.05%
133,75250,66030,88039.04%
148,73658,36435,58439.03%
117,15645,30827,62439.03%
143,88063,49238,71639.02%
266,60878,57247,91239.02%
274,040111,60468,05639.02%
195,55779,72848,63239.00%
217,65687,94053,65238.99%
118,66560,19636,74038.97%
556,644186,428113,82838.94%
218,36872,84844,48438.94%
544,804184,996113,02438.90%
405,228168,724103,10438.89%
172,98863,18438,62038.88%
50,63621,75213,29638.87%
264,70878,12047,75638.87%
128,10049,88030,49638.86%
212,76480,31249,10838.85%
222,768100,91261,71638.84%
175,24881,93250,11238.84%
213,07294,76457,96438.83%
164,94473,96845,24838.83%
327,112150,51292,10038.81%
68,92837,86423,17238.80%
172,72483,46051,08838.79%
166,01757,90035,44438.78%
166,01757,90035,44438.78%
127,94846,36428,38438.78%
1,220,328367,664225,10438.77%
145,84054,50433,37638.76%
145,84054,50433,37638.76%
423,324117,31671,86038.75%
40,66821,94413,44438.73%
601,724252,376154,63238.73%
442,960227,748139,59238.71%
442,960227,748139,59238.71%
219,35675,41246,24038.68%
212,86586,76853,21238.67%
302,432137,47284,32438.66%
201,72182,38850,54838.65%
78,06041,74425,61238.65%
276,688114,71670,38438.65%
375,356188,004115,36438.64%
206,91680,60449,46438.63%
1,231,296371,564228,02038.63%
216,25291,48456,15238.62%
216,25291,48456,15238.62%
546,676184,404113,25238.58%
102,36047,62429,25238.58%
270,804110,96468,16438.57%
97,98433,92820,84438.56%
97,98433,92820,84438.56%
131,00450,17230,82838.56%
272,048111,96468,80038.55%
144,12452,92832,52838.54%
144,12452,92832,52838.54%
127,54046,78028,75238.54%
211,46078,59648,31638.53%
316,296144,78489,02038.52%
280,676115,40470,95638.52%
302,488140,46086,41638.48%
65,92827,18816,72838.47%
216,95298,34460,51238.47%
187,92874,42445,79638.47%
314,232143,07288,04038.46%
274,200112,48869,24038.45%
314,316143,22088,16438.44%
205,79773,09645,00838.43%
334,660152,60493,97638.42%
311,456145,47689,58838.42%
52,06022,26413,71238.41%
123,61362,08438,25238.39%
358,980140,94486,85238.38%
127,66962,42838,47238.37%
277,408114,50470,57638.36%
53,17222,59613,92838.36%
117,44445,44028,01238.35%
122,09762,17638,33638.34%
282,292114,00870,32038.32%
350,916191,788118,30838.31%
251,82089,54455,25238.30%
179,84868,20442,10438.27%
149,77263,04038,92038.26%
209,11272,16044,57238.23%
167,61763,64839,32438.22%
220,29288,58454,73638.21%
313,980144,59289,36038.20%
271,420109,53667,72838.17%
203,54891,78456,75638.16%
149,59263,95639,55238.16%
206,80079,08448,93238.13%
89,72434,14821,13238.12%
89,72434,14821,13238.12%
406,612199,844123,67638.11%
282,328114,56470,90038.11%
164,84162,62838,77238.09%
268,692109,87668,02838.09%
267,660109,80467,98838.08%
190,68866,87641,42038.06%
120,76447,04829,14038.06%
279,612113,25270,16438.05%
54,10422,69214,06438.02%
279,032150,52493,31638.01%
252,228101,96863,22438.00%
147,11245,33228,11237.99%
212,02873,64445,67637.98%
1,223,492382,400237,20437.97%
87,78447,06429,20437.95%
159,49662,10838,54437.94%
159,49662,10838,54437.94%
149,11770,96044,04837.93%
132,52452,00832,28437.92%
54,65622,88814,20837.92%
210,96474,60846,32837.90%
279,524114,79671,28837.90%
60,37223,20014,41237.88%
216,56480,67250,11637.88%
88,70833,55220,85237.85%
88,70833,55220,85237.85%
399,840202,848126,06837.85%
566,020184,836114,87637.85%
149,31645,59628,34037.85%
112,88044,16427,45637.83%
40,08022,15213,77637.81%
157,90464,78040,28837.81%
125,70163,08839,24037.80%
195,81674,93246,62437.78%
271,724111,13269,15237.77%
157,96064,89640,38837.77%
123,00047,83629,77237.76%
102,87249,61230,88037.76%
102,87249,61230,88037.76%
122,70961,28438,14837.75%
127,34849,04830,53637.74%
569,720184,940115,14037.74%
143,16044,23227,54437.73%
230,408104,46865,05637.73%
137,74053,87633,55637.72%
124,73249,34030,73237.71%
139,96458,70036,56437.71%
157,96064,90040,42837.71%
303,316129,70480,80037.70%
38,22020,54012,80037.68%
174,92470,59243,99237.68%
180,38063,90839,83237.67%
293,940119,31274,36437.67%
59,05623,78414,82437.67%
143,56060,58437,76437.67%
220,80491,28056,92437.64%
393,680118,93274,19237.62%
98,62836,01622,46837.62%
131,05246,18828,81637.61%
567,348184,620115,19637.60%
212,14177,60848,44437.58%
248,31664,21640,08837.57%
132,54846,30428,90837.57%
444,764200,584125,22837.57%
365,136201,488125,80837.56%
226,384118,11673,76837.55%
65,95627,70017,30037.55%
271,664146,40891,46837.53%
41,76021,08813,17637.52%
458,504105,97266,22037.51%
123,28057,58435,98437.51%
134,14447,58829,74437.50%
124,30551,43232,14837.49%
180,42084,75653,00837.46%
61,74425,94416,22837.45%
135,85272,43245,31637.44%
454,396183,536114,83237.43%
193,18867,89242,48837.42%
61,95225,82816,16437.42%
264,372120,85675,65237.40%
82,38135,88822,47637.37%
113,96843,08426,98437.37%
288,42899,10462,09237.35%
116,13245,16028,29637.34%
42,22821,39213,40437.34%
236,42481,42051,02037.34%
132,13645,56428,55637.33%
473,724208,532130,71237.32%
138,82966,32441,58437.30%
61,94826,20416,43237.29%
293,228158,06099,14837.27%
43,32421,67613,60037.26%
134,41648,28030,29637.25%
126,44248,92030,70437.24%
101,74438,32024,06037.21%
59,89625,40015,94837.21%
83,29236,86023,14437.21%
173,60490,63656,91237.21%
137,87252,99233,27637.21%
137,87252,99233,27637.21%
124,72444,43627,90437.20%
132,15247,89630,08437.19%
57,65624,76415,56037.17%
393,776157,32098,86037.16%
106,17241,72426,22037.16%
349,124115,45272,58037.13%
44,26819,70412,38837.13%
44,26819,70412,38837.13%
129,41645,72028,74837.12%
118,44046,67629,35637.11%
378,996171,588107,92437.10%
112,22052,64833,11637.10%
203,37671,07644,71237.09%
389,704169,124106,42037.08%
255,828100,10062,99237.07%
72,56933,08420,82037.07%
195,08469,44443,70837.06%
124,24953,05633,39637.06%
99,32440,64425,58437.05%
62,31226,02816,38437.05%
89,85228,12817,70837.04%
135,66472,28445,51237.04%
531,332222,160139,88437.03%
92,93235,20422,17237.02%
602,232311,332196,08837.02%
95,16836,11222,74837.01%
424,596182,540115,00837.00%
105,80051,61632,52436.99%
105,80051,61632,52436.99%
70,97332,24820,32036.99%
70,97332,24820,32036.99%
44,28819,92012,55236.99%
171,48059,86037,72036.99%
61,94826,18416,50036.98%
189,46097,76461,62436.97%
309,720168,868106,44436.97%
251,49295,22060,02436.96%
240,86486,18854,33636.96%
133,68964,96040,96036.95%
215,420112,55270,97236.94%
137,71659,16837,31236.94%
135,01250,28031,71236.93%
135,01250,28031,71236.93%
133,56052,84433,33236.92%
620,084321,356202,70436.92%
223,924101,82464,24836.90%
63,34827,63217,43636.90%
116,32045,40828,67236.86%
162,02858,80437,13636.85%
62,90826,41616,68436.84%
347,356171,260108,18436.83%
286,124102,78864,94836.81%
114,95646,62829,46436.81%
132,08252,74033,32836.81%
125,31648,70030,77636.80%
77,81637,19223,50836.79%
138,20873,58046,52436.77%
170,02072,53245,86836.76%
247,27678,92049,91236.76%
125,28843,85227,73636.75%
132,52446,66829,52036.74%
64,94827,84817,61636.74%
64,46027,96017,69236.72%
134,88854,83234,69636.72%
106,16841,78426,44436.71%
253,544134,80085,31236.71%
145,34452,86033,45636.71%
550,556202,712128,30036.71%
152,86457,20836,20836.71%
137,73252,17233,02436.70%
137,73252,17233,02436.70%
42,72421,52813,62836.70%
41,16021,09213,35236.70%
167,57261,39238,86436.70%
135,05654,17234,30036.68%
147,01254,91234,77236.68%
169,32060,92438,58036.68%
140,46849,70431,48036.67%
153,71260,98838,62836.66%
153,71260,98838,62836.66%
123,51247,40830,02836.66%
181,33673,82846,77236.65%
126,45249,14031,13236.65%
220,41696,71661,27636.64%
220,41696,71661,27636.64%
125,55648,62430,80836.64%
120,48152,16433,05236.64%
63,72827,67617,53636.64%
132,99651,89232,88036.64%
167,00473,84846,80036.63%
295,792122,90077,92036.60%
225,58497,58461,88436.58%
225,58497,58461,88436.58%
167,84469,50844,08036.58%
43,69621,88813,88436.57%
170,76472,96846,29236.56%
102,72849,59231,46436.55%
127,31648,42430,72436.55%
172,57675,78448,08436.55%
313,972138,99688,19236.55%
100,65231,46419,96436.55%
233,00879,64850,54036.55%
560,260279,136177,13236.54%
176,07678,23249,64836.54%
135,03652,02433,01636.54%
153,45663,42840,25636.53%
168,73274,82047,49636.52%
63,30027,44417,42436.51%
183,84483,40052,95236.51%
164,11258,07236,87236.51%
135,40449,04431,14036.51%
44,91223,26414,77236.50%
173,82048,79630,99636.48%
100,75639,92825,36436.48%
106,59641,93626,64036.47%
106,59641,93626,64036.47%
216,48495,79660,85636.47%
216,48495,79660,85636.47%
101,83639,04424,80436.47%
164,12458,58437,22436.46%
185,20865,64441,71236.46%
126,69452,30033,24036.44%
153,76060,28038,31236.44%
153,76060,28038,31236.44%
63,85227,86417,71236.43%
63,39227,61217,55236.43%
138,75453,96434,30836.42%
133,55849,86831,70436.42%
131,52050,34432,00836.42%
127,58849,15631,25636.41%
166,91273,82046,94036.41%
108,46832,19220,47236.41%
63,21227,42417,44036.41%
36,96820,35212,94436.40%
161,09657,76836,74436.39%
230,21685,56054,42836.39%
112,27653,05633,75236.38%
165,14461,74439,28036.38%
233,38589,70857,07236.38%
63,96027,24417,33636.37%
64,44028,31218,01636.37%
100,91239,20424,94836.36%
132,97646,91629,85636.36%
226,60473,06846,50036.36%
287,68899,66863,43236.36%
293,748122,49677,96436.35%
630,012329,484209,73236.35%
134,24849,43231,46836.34%
134,24849,43231,46836.34%
222,60486,37254,98436.34%
64,66827,42017,45636.34%
52,09624,38415,52436.34%
330,432146,04092,99236.32%
161,17259,96438,18436.32%
223,636113,79672,48036.31%
64,35628,30818,03236.30%
134,59248,64030,98836.29%
213,57294,17660,00036.29%
213,57294,17660,00036.29%
214,40886,62855,19236.29%
171,70080,30451,16836.28%
102,25241,18826,25636.25%
99,81638,99624,86036.25%
132,34656,04435,73236.24%
361,732155,13298,90836.24%
160,64154,27634,60836.24%
160,64154,27634,60836.24%
61,55626,03216,60036.23%
219,008114,97273,32036.23%
45,50424,46815,60436.23%
64,24828,15617,95636.23%
198,32087,74455,96036.22%
173,02076,52848,81236.22%
159,55258,40837,25636.21%
213,90581,53252,01636.20%
180,55666,23642,26036.20%
632,632324,040206,76036.19%
100,73639,24425,04436.18%
181,88082,11652,40436.18%
85,67636,61623,36836.18%
208,42886,12054,96436.18%
46,58024,43615,59636.18%
144,53656,44036,02436.17%
155,04460,44438,58036.17%
179,08066,31642,32836.17%
634,188335,336214,04036.17%
256,849107,85668,85236.16%
101,40039,13224,98436.15%
122,93648,50430,96836.15%
176,22463,56440,58836.15%
76,61632,94421,03636.15%
228,74083,07253,05236.14%
127,69244,42028,36836.14%
272,513105,44467,34036.14%
199,160116,43674,37236.13%
398,764124,02879,22836.12%
158,33659,22837,83636.12%
301,328125,32480,06836.11%
105,11239,75625,40036.11%
250,665109,43269,93636.09%
96,04040,46425,86036.09%
254,477107,39668,64036.09%
45,28423,30014,89236.09%
45,69624,58815,71636.08%
300,412125,66080,32436.08%
134,03652,46433,53636.08%
170,82565,32041,76036.07%
293,980123,16878,74436.07%
117,72449,55231,68036.07%
60,37628,56418,26436.06%
645,008327,408209,36036.06%
188,32083,50853,40036.05%
44,92823,45615,00036.05%
294,032122,70478,47236.05%
149,12456,32836,02436.05%
354,084129,52482,84836.04%
145,34854,68434,98036.03%
612,812317,532203,12836.03%
55,57227,14817,36836.02%
159,51259,51238,07636.02%
376,452101,96065,24036.01%
186,22478,96050,52436.01%
72,68031,34820,06036.01%
120,68048,41230,98436.00%
150,51269,36844,39636.00%
507,716230,548147,56036.00%
169,60060,85238,94836.00%
118,70842,20827,01635.99%
176,99280,12851,28835.99%
105,85240,62026,00035.99%
111,42444,08028,22035.98%
120,11753,10033,99635.98%
187,47666,29642,44835.97%
633,240323,252206,98435.97%
98,55239,72425,43635.97%
115,84045,32029,02035.97%
46,46024,73215,84035.95%
55,82825,72816,48035.95%
252,253106,57268,27235.94%
50,52425,70016,46435.94%
61,17227,11617,37235.93%
115,19644,63628,60035.93%
141,19653,78434,46435.92%
134,67247,38030,36435.91%
96,32435,92023,02035.91%
209,24086,28055,29635.91%
137,64449,72431,86835.91%
112,41653,48434,28435.90%
172,91260,47238,76435.90%
134,90042,51227,25235.90%
178,09277,00849,36835.89%
70,33626,68817,11235.88%
131,90045,83229,39635.86%
296,048109,22470,06035.86%
45,46023,26414,92435.85%
237,73395,56861,30835.85%
386,176169,440108,70035.85%
585,688297,960191,16035.84%
129,53251,94433,32835.84%
451,668185,080118,75235.84%
181,22865,82842,24035.83%
192,65674,27247,66435.83%
237,00079,46450,99635.83%
115,07350,25632,25235.82%
105,29241,06826,35635.82%
232,10478,87250,62435.81%
64,46025,92416,64035.81%
300,360125,52480,57235.81%
128,06845,53229,23635.79%
97,12836,53623,46035.79%
92,06038,57624,77235.78%
67,93325,40016,31235.78%
60,70428,70018,43235.78%
178,12062,43240,09635.78%
251,917107,31668,92435.77%
112,43242,88027,54035.77%
115,57752,07233,44435.77%
590,648307,136197,28035.77%
337,736148,89295,64035.77%
184,22492,95259,70835.76%
110,61348,08430,88835.76%
101,39240,03225,71635.76%
123,49249,49231,79635.76%
230,24073,41247,17235.74%
116,86951,13232,85635.74%
218,01281,90052,62835.74%
45,29623,44815,06835.74%
122,29643,54827,98835.73%
55,86425,86416,62435.73%
51,59224,33215,64035.72%
419,036173,936111,80435.72%
419,036173,936111,80435.72%
101,77243,00027,64035.72%
132,30853,74434,54835.72%
129,07052,56033,78835.72%
58,96427,50417,68435.70%
179,59666,58442,81235.70%
115,46844,84428,83635.70%
66,24428,21618,14435.70%
101,62039,96425,70035.69%
301,992125,72080,84835.69%
179,64065,90842,38835.69%
116,21642,31627,21635.68%
62,72427,74417,84435.68%
201,77376,33249,09635.68%
201,77376,33249,09635.68%
46,13624,58015,81235.67%
171,08059,18038,07235.67%
135,52655,88835,95635.66%
109,90843,52028,00035.66%
274,02092,89259,76835.66%
324,352144,63693,07235.65%
101,04843,30027,86435.65%
641,656324,972209,12835.65%
99,66440,15225,84035.64%
112,65643,41227,94035.64%
228,08083,78453,92435.64%
59,17227,71217,83635.64%
133,54470,86045,60835.64%
190,74485,82455,24435.63%
71,21230,28019,49235.63%
179,20866,07642,54035.62%
103,34440,06025,79235.62%
108,62033,14421,34035.61%
120,40040,56426,12435.60%
101,20040,01625,77235.60%
100,16039,43625,40035.59%
183,40858,73637,84435.57%
343,956133,68086,13235.57%
273,08099,30464,01235.54%
75,48432,34820,85235.54%
45,61623,67615,26435.53%
699,800352,632227,36035.52%
138,46954,36035,05235.52%
138,46854,36035,05235.52%
185,35263,60841,01635.52%
150,85649,23231,74835.51%
116,22442,54427,43635.51%
116,22442,54427,43635.51%
117,29240,46826,10035.50%
175,18063,03240,65635.50%
116,51642,44027,38035.49%
116,51642,44027,38035.49%
109,96150,12032,33635.48%
177,20865,96042,55635.48%
115,76041,79226,96435.48%
115,76041,79226,96435.48%
110,38041,54426,80435.48%
190,64865,16442,04435.48%
112,35242,84427,64435.48%
185,54870,17645,28035.48%
95,51638,03224,54035.48%
226,57277,58450,06835.47%
49,00025,09616,19635.46%
101,57240,24825,97635.46%
134,20071,38046,07235.46%
204,50080,69652,10035.44%
200,49279,99251,64835.43%
75,38029,29618,91635.43%
128,89669,10444,62835.42%
52,20824,74415,98035.42%
62,70428,04418,11235.42%
138,62043,36428,00835.41%
55,79627,33617,65635.41%
206,56880,29651,86435.41%
121,74846,78030,21635.41%
99,36439,52025,52835.40%
180,15665,78842,49635.40%
217,20469,80045,08835.40%
115,60045,77229,57235.39%
207,18487,13256,29635.39%
112,98949,45231,95235.39%
131,59364,58041,72835.39%
299,668128,06482,74835.39%
132,30447,96430,99635.38%
46,62024,86416,06835.38%
218,47674,72848,29235.38%
46,82824,87616,07635.38%
140,51656,96836,81635.37%
100,54439,94025,81235.37%
146,52157,92837,44035.37%
146,52057,92837,44035.37%
111,74443,47628,10035.37%
673,940346,164223,74835.36%
116,91242,13627,23635.36%
116,91242,13627,23635.36%
110,77748,83631,57235.35%
173,00862,57640,45635.35%
104,48430,44019,68035.35%
105,41242,17627,26835.35%
485,748221,048142,92035.34%
147,15356,67236,64435.34%
147,15256,67236,64435.34%
105,17642,13227,24435.34%
100,66440,82826,40435.33%
318,028132,73285,84435.33%
174,06463,25640,91235.32%
49,23625,82016,70035.32%
128,84868,90844,57235.32%
649,016332,400215,01635.31%
110,21241,57226,89235.31%
69,10429,53619,10835.31%
104,31642,32027,38035.30%
121,94445,58829,49635.30%
103,46842,30427,37235.30%
95,25237,01223,94835.30%
57,36026,42817,10035.30%
241,548128,00882,82835.29%
57,41228,46018,41635.29%
111,14150,52832,69635.29%
100,63640,76026,38435.27%
106,65642,48427,50035.27%
115,45244,08428,53635.27%
324,780100,04464,76035.27%
117,98842,98827,82835.27%
117,98842,98827,82835.27%
113,75751,09633,08035.26%
173,04862,46840,44835.25%
45,86423,80815,41635.25%
170,75662,65240,57235.24%
69,67629,68419,22435.24%
179,18461,64039,92035.24%
102,18041,09626,61635.23%
113,94843,80028,37235.22%
45,86824,06415,58835.22%
101,15241,04026,59235.20%
143,57355,88836,21635.20%
121,90046,95630,42835.20%
222,12077,47250,20435.20%
109,17241,38826,82435.19%
95,31638,79625,14835.18%
104,36442,14427,32035.17%
105,15642,28427,41235.17%
56,16027,36417,74035.17%
51,82425,34016,42835.17%
178,46078,66851,00435.17%
100,03238,14024,72835.17%
60,98829,69219,25235.16%
223,12881,44052,81235.15%
121,35246,58830,21235.15%
56,17627,14417,60435.15%
104,42042,89627,82035.15%
173,06464,72441,98035.14%
675,284346,076224,46835.14%
159,74469,22444,90035.14%
116,70045,08029,24035.14%
104,58843,38428,14035.14%
102,20441,39626,85235.13%
258,596140,39291,06835.13%
104,60442,96027,86835.13%
108,81349,15631,88835.13%
246,91283,65654,27235.12%
100,32839,92825,90435.12%
94,34036,09223,41635.12%
101,19241,61227,00035.11%
209,47690,51658,73235.11%
209,47690,51658,73235.11%
67,00029,39219,07235.11%
122,06046,47230,15635.11%
328,488156,024101,25635.10%
100,77241,56426,97635.10%
102,45240,36826,20035.10%
153,12875,84049,22435.09%
106,30842,34427,48435.09%
177,20078,21650,76835.09%
84,20035,96423,34435.09%
112,04442,90827,85235.09%
119,15244,71229,02435.09%
119,15244,71229,02435.09%
107,10145,06829,25635.08%
102,19641,74027,09635.08%
57,28428,72418,64835.08%
127,54163,37641,14835.07%
46,63624,94416,19635.07%
57,71227,80818,05635.07%
101,90041,14826,72035.06%
50,84024,30415,78435.06%
46,40024,13615,67635.05%
199,64877,26050,18035.05%
104,85242,75227,76835.05%
128,65656,57636,75235.04%
53,24824,99216,23635.04%
100,76840,50826,31635.04%
101,80441,03626,66035.03%
173,51663,73641,40835.03%
115,64843,72428,40835.03%
86,82038,04024,71635.03%
135,97672,27246,96035.02%
102,63642,26427,46435.02%
56,45228,62818,60435.01%
178,53278,78451,20035.01%
105,93643,15628,04835.01%
96,25638,56425,06435.01%
55,97627,12817,63235.00%
172,20062,49240,62035.00%
138,83644,04828,63634.99%
52,11625,23216,40434.99%
111,86549,16431,96434.98%
119,32845,56829,62834.98%
102,76442,17627,42434.98%
58,39627,60817,95234.98%
222,48483,96854,60434.97%
101,88441,38826,91634.97%
53,23626,70017,36434.97%
46,14023,90015,54434.96%
94,26836,76023,90834.96%
119,65645,40829,53634.95%
119,65645,40829,53634.95%
120,59245,76829,77234.95%
120,59245,76829,77234.95%
101,33641,27226,84834.95%
106,43243,06828,02034.94%
126,96040,94026,64034.93%
105,82443,39228,23634.93%
90,50439,41225,64834.92%
115,97647,36430,82434.92%
47,43225,40816,53634.92%
102,55641,59627,07234.92%
181,66062,70440,81634.91%
101,36441,30426,89234.89%
89,22033,87622,05634.89%
49,59225,88816,85634.89%
198,69678,79251,30434.89%
99,74040,89226,62834.88%
51,87627,21617,72434.88%
56,92028,59618,62434.87%
52,04425,94816,90034.87%
65,63629,49219,21234.86%
65,63629,49219,21234.86%
95,11236,08423,50834.85%
60,58828,22418,38834.85%
101,58441,46027,01234.85%
98,34839,83225,95234.85%
109,66045,23229,47234.84%
241,684100,03665,18434.84%
166,87657,68837,59234.84%
94,90437,99624,76034.84%
101,56841,76427,21634.83%
124,96847,30430,82834.83%
56,82027,64818,02034.82%
128,68041,41626,99634.82%
157,52884,18854,87634.82%
95,02037,96024,74434.82%
107,56842,78827,89234.81%
96,93241,53627,07634.81%
153,10064,35641,95234.81%
66,68027,96818,23234.81%
102,27641,62827,14034.80%
104,67643,38828,28834.80%
157,58058,91238,41234.80%
74,23233,46421,82034.80%
46,40023,55615,36034.79%
68,92032,34021,08834.79%
130,95670,16845,76034.79%
77,54834,28422,36034.78%
101,27641,22826,89234.77%
56,57228,66818,70434.76%
182,42464,52842,10434.75%
226,67286,92856,72034.75%
97,72040,17626,21634.75%
152,74062,57240,83234.74%
167,23258,87638,42434.74%
99,03240,12026,18434.74%
57,26828,13618,36434.73%
119,48445,13629,46034.73%
119,48445,13629,46034.73%
53,76425,29616,51234.72%
255,069107,05669,88434.72%
120,06045,09229,43634.72%
120,06045,09229,43634.72%
93,59236,08023,55634.71%
105,81642,13227,50834.71%
69,78430,18419,70834.71%
105,38842,22427,57234.70%
107,89642,72027,89634.70%
101,89641,68427,22034.70%
159,80867,33643,97234.70%
94,28438,56425,18434.70%
111,98445,03229,40834.70%
104,17642,50827,76034.69%
97,62440,18026,24034.69%
79,59233,26821,72834.69%
98,72439,40425,74034.68%
79,51237,05224,20434.68%
100,15640,15626,23234.67%
200,64085,90056,11634.67%
103,28442,42027,71234.67%
65,16428,89218,87634.67%
65,16428,89218,87634.67%
275,87294,95262,03634.67%
104,49243,02828,11234.67%
95,59638,39625,08834.66%
53,92428,78418,80834.66%
176,15659,93639,16434.66%
156,22157,04037,27234.66%
101,52841,92027,39634.65%
98,50040,16826,25234.64%
94,37236,33623,74834.64%
98,28839,71225,95634.64%
109,18843,46828,41234.64%
221,38876,33649,89634.64%
94,54438,08024,89234.63%
94,20036,61623,93634.63%
56,72027,72818,12834.62%
106,72844,59629,15634.62%
148,37259,91639,17234.62%
59,64029,97219,59634.62%
220,60485,67656,01634.62%
151,17663,48041,50434.62%
107,34442,99628,11234.62%
120,06049,04432,06834.61%
52,59627,35617,88834.61%
458,420205,388134,30434.61%
104,69745,98830,07234.61%
346,608106,63669,73234.61%
57,34827,26817,83234.60%
107,42445,03629,45234.60%
107,60045,15629,53234.60%
98,46439,93626,12034.60%
112,79645,74429,92034.59%
243,73279,80452,20034.59%
183,41670,80046,31234.59%
48,72024,31215,90434.58%
96,28838,76025,35634.58%
172,72464,89642,45634.58%
62,59231,43220,56434.58%
143,28059,39238,86034.57%
109,81644,46829,09634.57%
215,48481,89653,58834.57%
159,46867,16843,95234.56%
178,32462,97641,21234.56%
97,03238,97225,50434.56%
46,98825,46016,66434.55%
72,70432,76821,44834.55%
97,86840,38826,43634.54%
95,68438,65225,30034.54%
119,47643,21628,28834.54%
104,83641,66827,27634.54%
102,93642,04027,52034.54%
101,58442,15627,59634.54%
105,58545,13629,54834.54%
435,244175,888115,14434.54%
165,73258,60838,36834.53%
176,13661,00839,94034.53%
224,34471,43646,76834.53%
435,788195,196127,80834.52%
88,82038,72425,35634.52%
97,43239,84826,09234.52%
108,46843,38428,40834.52%
143,21259,36438,87234.52%
51,81625,71616,84034.52%
162,58760,66039,72434.51%
95,00838,87225,45634.51%
54,46828,15218,43634.51%
101,70440,63626,61234.51%
103,75632,38821,21234.51%
102,52042,01227,51634.50%
83,84433,63222,02834.50%
330,940110,88072,62434.50%
50,07226,14417,12434.50%
211,25680,04852,43234.50%
244,88495,89262,81634.49%
56,98027,76818,19234.49%
102,82042,12827,60034.49%
162,58660,66039,74834.47%
143,30859,41238,93234.47%
102,32440,75626,70834.47%
80,34035,64023,36034.46%
113,30446,06030,19234.45%
56,60827,82018,23634.45%
509,548221,732145,34834.45%
158,58959,84039,23234.44%
65,14828,12018,43634.44%
84,14032,70821,44434.44%
81,82434,06022,33234.43%
98,92840,16426,33634.43%
102,17346,35630,40034.42%
108,86844,00828,86434.41%
102,94042,54427,90434.41%
98,55640,22026,38034.41%
96,46439,45625,88034.41%
82,20835,02822,97634.41%
95,72038,98425,57234.40%
69,24430,29219,87234.40%
63,74031,86420,90434.40%
52,49224,77216,25234.39%
384,224144,94495,09634.39%
172,00089,59658,78434.39%
189,91677,84851,08034.38%
171,08465,37642,90034.38%
460,736205,568134,89634.38%
122,20848,65231,92834.37%
57,72829,08419,08834.37%
68,84030,29619,88434.37%
351,376136,23289,41634.36%
65,12431,06420,39234.35%
62,68828,28418,56834.35%
62,68828,28418,56834.35%
65,72432,61621,41234.35%
70,96032,31621,21634.35%
222,92076,00449,90034.35%
107,47643,60428,62834.35%
71,77630,85220,25634.34%
57,17628,09218,44434.34%
80,85238,26025,12034.34%
433,348174,928114,87634.33%
55,52826,96417,70834.33%
68,35230,20419,83634.33%
71,75232,75621,51234.33%
206,61691,75660,26034.33%
206,61691,75660,26034.33%
206,61691,75660,26034.33%
107,04844,77229,40434.33%
140,31654,24835,62834.32%
102,79242,43227,86834.32%
72,60832,25221,18434.32%
238,56896,54863,41634.32%
57,69229,21219,18834.31%
103,23242,70028,05234.30%
132,74151,50433,83634.30%
113,12046,02430,23634.30%
112,53245,69230,02034.30%
84,01236,11223,72834.29%
102,63642,58827,98434.29%
57,86829,17619,17234.29%
43,81120,98813,79234.29%
383,920144,49294,96034.28%
101,44041,62427,35634.28%
65,95628,92819,01234.28%
91,06037,18024,43634.28%
87,44438,66425,41234.27%
104,51241,60427,34834.27%
68,08428,22818,55634.26%
104,09643,26828,44434.26%
69,43630,92820,33234.26%
59,28429,10819,13634.26%
114,19246,04030,26834.26%
387,564148,93297,91634.25%
116,34041,54427,31634.25%
433,568175,720115,54034.25%
210,93684,74855,72434.25%
102,70041,28427,14834.24%
84,41636,82424,21634.24%
129,23241,22027,10834.24%
233,432102,13667,17634.23%
85,29637,52424,68034.23%
81,56836,52024,02034.23%
101,48042,49227,94834.23%
102,24041,14027,06034.22%
95,52838,54825,35634.22%
52,03225,37616,69234.22%
94,66038,62025,40434.22%
68,50830,46420,04034.22%
104,44441,64027,39234.22%
51,46027,84818,32034.21%
58,38429,53619,43234.21%
69,49231,89220,98434.20%
64,46029,34819,31234.20%
64,46029,34819,31234.20%
48,14424,98416,44434.18%
102,25243,25228,47234.17%
103,16842,86828,22034.17%
115,75247,83231,48834.17%
158,20470,08846,14034.17%
65,26428,27218,61234.17%
193,13772,57247,77634.17%
433,980175,760115,70834.17%
63,90828,36818,67634.17%
182,01268,84445,32434.16%
370,956148,01297,46034.15%
69,16830,93220,36834.15%
326,136154,628101,82034.15%
62,11229,38419,35234.14%
87,59641,41627,28034.13%
95,70436,57624,09234.13%
241,72590,27659,46434.13%
55,01626,95617,75634.13%
77,58434,72822,87634.13%
96,78040,10426,42434.11%
187,04486,46456,97234.11%
96,84440,04426,38834.10%
65,63228,82018,99234.10%
78,38435,18023,18434.10%
62,55629,26819,28834.10%
279,332148,27297,74034.08%
125,01751,67234,06434.08%
125,01651,67234,06434.08%
64,88828,28018,64434.07%
95,62038,55625,42034.07%
106,75243,12428,43234.07%
175,18874,12048,86834.07%
175,18874,12048,86834.07%
152,62065,11642,93234.07%
186,55693,06061,36034.06%
103,79243,33628,57634.06%
65,57628,22418,61234.06%
158,95254,32435,82434.05%
369,744147,61297,34834.05%
65,92829,88819,71234.05%
164,72057,22837,74834.04%
97,78840,09626,44834.04%
99,43240,89626,97634.04%
96,92839,87626,30434.04%
108,48843,59628,76034.03%
80,92827,76418,31634.03%
66,54830,14419,88834.02%
62,31628,99619,13234.02%
94,03640,61626,80034.02%
106,09644,30029,23234.01%
86,91237,49224,74034.01%
70,10032,06021,15634.01%
156,93253,98835,62834.01%
98,08040,85226,96034.01%
106,74443,68828,83234.00%
200,06573,19248,30434.00%
200,06573,19248,30434.00%
68,42831,06820,50434.00%
104,52442,45628,02034.00%
139,48951,04833,69234.00%
139,48951,04833,69234.00%
85,95637,52024,76434.00%
71,82431,40420,72834.00%
106,33643,19628,51233.99%
69,89230,94820,42833.99%
108,53643,78828,90433.99%
65,74830,02819,82433.98%
92,25236,14023,86033.98%
107,32043,59228,78033.98%
52,05225,62816,92433.96%
54,96826,68817,62433.96%
62,34029,14019,24433.96%
106,53643,06828,44433.96%
66,01229,80419,68433.96%
98,16841,08027,13233.95%
68,92431,02020,48833.95%
92,45636,72424,25633.95%
102,64841,15627,18433.95%
69,19231,54420,83633.95%
96,56439,89226,35233.94%
106,15243,54428,76833.93%
50,49227,57218,21633.93%
69,16829,40019,42433.93%
103,78441,58027,47233.93%
77,84834,33222,68433.93%
70,13631,86821,05633.93%
64,74829,26419,33633.93%
86,81237,69624,90833.92%
158,53667,72444,75233.92%
195,67687,75257,98833.92%
195,67687,75257,98833.92%
115,42047,18431,18033.92%
99,95640,36826,67633.92%
55,52826,91217,78433.92%
66,31630,35620,06033.92%
69,10031,07620,53633.92%
84,34835,87623,70833.92%
52,94428,21218,64433.91%
55,25227,22417,99233.91%
96,74039,45626,07633.91%
55,66027,26418,02033.91%
57,22428,00818,51233.90%
150,80571,92047,53633.90%
172,75274,54049,27633.89%
172,75274,54049,27633.89%
148,71654,43235,98433.89%
53,70026,86417,76033.89%
81,96839,10425,85233.89%
98,24944,16829,20033.89%
106,33244,29229,28433.88%
112,22862,54441,35233.88%
144,76454,81236,24033.88%
103,80043,22028,57633.88%
70,45632,05621,19633.88%
101,78441,12827,19633.87%
158,74473,23648,42833.87%
70,89231,27220,68033.87%
84,37635,78423,66433.87%
109,61646,72030,89633.87%
66,99229,56419,55233.87%
410,108154,936102,46833.86%
63,52830,28020,02833.86%
156,81668,09245,04033.85%
65,33628,68818,97633.85%
165,67266,50043,98833.85%
84,68036,22023,96033.85%
73,83633,90822,43233.84%
410,108154,936102,50033.84%
69,10031,70020,97233.84%
76,14432,75221,66833.84%
144,52854,91636,33233.84%
69,94031,91621,11633.84%
113,01662,84041,57633.84%
115,74848,15231,86033.83%
62,63629,09619,25233.83%
69,48031,79221,03633.83%
54,81627,04017,89233.83%
64,48028,98019,17633.83%
48,27624,54816,24433.83%
53,52026,99617,86433.83%
99,61241,15227,23233.83%
60,88430,30020,05233.82%
70,23631,33220,73633.82%
57,83229,68819,64833.82%
69,74832,17621,29633.81%
69,58431,98821,17233.81%
205,908107,63671,24433.81%
55,84429,69619,65633.81%
151,37263,23641,86033.80%
208,88481,56853,99633.80%
69,28432,15221,28433.80%
90,35236,17623,94833.80%
74,94033,78822,36833.80%
69,46831,07220,57233.79%
369,408148,23698,14433.79%
85,03229,14819,30033.79%
68,58029,17219,31633.79%
187,44484,90056,21633.79%
187,44484,90056,21633.79%
60,67230,10819,93633.79%
110,33244,88429,72033.78%
73,08833,53222,20433.78%
98,30040,79227,01233.78%
224,537101,24467,04433.78%
106,26844,24029,29633.78%
47,82024,38016,14833.77%
68,80431,22820,68433.76%
152,29262,30441,27633.75%
267,300120,81280,04433.74%
71,09633,01221,87633.73%
144,37260,56440,13633.73%
61,12429,54419,58033.73%
72,48430,90820,48433.73%
109,32844,82429,70833.72%
109,60044,49229,48833.72%
82,01634,40022,80033.72%
75,72434,22422,68433.72%
266,09653,46835,44033.72%
61,07230,60820,28833.72%
80,14436,60424,26433.71%
106,09747,98431,80833.71%
181,48875,37649,96833.71%
69,96031,31620,76033.71%
286,192152,144100,86033.71%
163,82070,94047,02833.71%
68,00030,45220,18833.71%
86,72039,85226,42033.70%
156,95676,06850,43233.70%
55,85227,60818,30433.70%
60,52430,30420,09233.70%
84,09631,08820,61233.70%
59,40829,02419,24433.70%
189,31277,25251,22833.69%
118,44045,12429,92433.68%
75,31632,42021,50033.68%
55,41627,50818,24433.68%
132,07643,13228,60833.67%
62,29629,82819,78433.67%
125,82448,54032,19633.67%
125,82448,54032,19633.67%
71,93230,64020,32433.67%
74,66433,44822,18833.66%
132,07243,08828,58433.66%
195,10889,66059,48033.66%
61,58832,86021,80033.66%
103,92442,36828,10833.66%
67,12831,94821,19633.65%
322,21696,96464,33233.65%
147,30859,63239,56433.65%
92,97237,20824,68833.65%
148,81260,18839,93633.65%
182,76473,53648,79633.64%
112,09646,37230,77233.64%
62,37229,40819,51633.64%
84,26836,05623,92833.64%
61,18429,73219,73233.63%
211,75681,36053,99633.63%
193,06883,60855,48833.63%
158,64066,93644,42433.63%
55,18027,01217,92833.63%
67,17230,71220,38433.63%
56,52827,10817,99233.63%
55,81227,12418,00433.62%
70,87631,51620,92033.62%
276,908120,97280,30033.62%
201,99684,08055,81233.62%
203,76090,90060,34033.62%
94,40942,95628,51633.62%
103,03745,84830,43633.62%
69,14031,67621,02833.62%
101,75242,72028,36033.61%
120,42040,30026,75633.61%
67,11229,68419,70833.61%
54,97227,28418,11633.60%
107,46444,16429,32433.60%
369,780148,48898,60033.60%
68,62832,88421,83633.60%
72,61633,34022,14033.59%
420,232170,880113,48433.59%
54,22427,48818,25633.59%
170,23264,20442,64433.58%
84,02036,29624,10833.58%
62,42830,02019,94033.58%
172,06876,38850,74033.58%
64,35631,12020,67233.57%
95,80544,19229,35633.57%
62,68828,16018,70833.57%
364,468166,864110,85633.57%
71,00431,98821,25233.56%
113,16045,42030,17633.56%
62,11632,30021,46033.56%
69,64031,95621,23233.56%
221,96096,70864,25633.56%
54,85627,42018,22033.55%
101,59242,80028,44033.55%
70,94431,92821,21633.55%
59,88427,90018,54033.55%
354,04877,30451,37233.55%
65,57230,33620,16033.54%
79,87636,02823,94433.54%
70,16832,27221,44833.54%
150,68463,64042,29633.54%
146,60459,13239,30033.54%
66,44430,40420,20833.54%
66,98830,54820,30433.53%
119,20043,37628,83233.53%
143,94057,76038,39633.52%
70,17232,13221,36033.52%
22,14412,5768,36033.52%
63,52830,15220,04433.52%
109,44045,04029,94433.52%
204,30880,16453,29633.52%
82,38036,16424,04433.51%
61,62429,91219,88833.51%
69,81232,16821,38833.51%
131,18454,68036,35633.51%
91,73641,70027,72833.51%
53,53226,63617,71233.50%
93,04837,81225,14433.50%
423,036170,392113,30833.50%
71,19632,56021,65233.50%
66,18830,54420,31233.50%
104,23641,09627,33233.49%
63,31229,78819,81233.49%
70,61632,02421,30033.49%
85,96037,30424,81233.49%
78,09235,44823,58033.48%
155,13666,41644,18033.48%
61,75230,66020,39633.48%
64,16829,29619,49233.47%
100,10445,00429,94433.46%
66,97630,94820,59233.46%
66,16430,08820,02033.46%
97,11238,81625,82833.46%
86,31637,98025,27233.46%
73,49230,76020,46833.46%
76,71633,12022,04033.45%
235,69790,56460,26833.45%
295,165129,79686,38033.45%
386,993193,768128,95633.45%
68,20832,31621,50833.44%
60,11230,06820,01233.44%
60,44030,07220,01633.44%
65,64827,62018,38433.44%
135,49354,59636,34033.44%
71,44433,02821,98433.44%
69,72031,96421,27633.44%
58,93628,38818,89633.44%
113,95663,29642,13233.44%
66,64830,34420,20033.43%
69,72031,94021,26433.43%
70,67232,12021,38433.42%
66,92430,96420,61633.42%
79,57637,20024,76833.42%
79,48834,90423,24033.42%
66,24430,14420,07233.41%
72,85231,20020,77633.41%
53,27628,24418,80833.41%
135,70464,52442,96833.41%
54,24827,03618,00433.41%
49,48425,61217,05633.41%
420,420170,136113,30433.40%
72,96933,65222,41233.40%
65,46829,75219,81633.40%
67,44029,94419,94433.40%
63,98432,76021,82033.39%
55,06827,91218,59233.39%
78,14036,91224,58833.39%
70,73632,64821,74833.39%
58,14828,13218,74033.39%
81,43635,15623,42033.38%
69,88832,50821,65633.38%
66,35230,59220,38033.38%
56,32427,81218,52833.38%
108,36060,37640,22433.38%
109,02045,62430,39633.38%
67,84832,61221,72833.37%
55,78427,56018,36433.37%
164,15660,37240,22833.37%
100,79242,42028,26833.36%
320,568144,15696,06433.36%
70,14032,11221,40033.36%
62,67233,04022,02033.35%
67,14429,97619,98033.35%
148,16055,68437,12033.34%
61,79228,50819,00433.34%
64,86429,82819,88433.34%
83,84037,02824,68433.34%
278,372150,588100,39233.33%
53,92428,54819,03233.33%
75,18435,48423,65633.33%
71,92434,49222,99633.33%
67,41231,29220,86433.32%
69,36030,46420,31233.32%
149,34061,66041,11633.32%
419,500170,612113,76833.32%
70,95632,81221,88033.32%
138,94157,18438,13233.32%
452,568208,596139,10033.32%
61,14832,08421,39633.31%
71,37632,02421,35633.31%
78,16436,62424,42433.31%
179,41677,16451,46033.31%
70,43231,06820,72033.31%
60,99630,82820,56033.31%
59,30428,50019,00833.31%
65,96030,48820,33633.30%
79,72837,60025,08033.30%
67,56029,54019,70433.30%
60,89629,40819,61633.30%
77,18032,91621,95633.30%
70,55632,67621,79633.30%
91,48837,35224,91633.29%
66,74429,63219,76833.29%
71,63633,12422,10033.28%
109,77645,83230,58033.28%
69,21629,40419,62033.27%
166,60869,86846,62033.27%
67,38031,43620,97633.27%
67,30030,94420,64833.27%
231,56496,38064,31633.27%
60,93629,56819,73233.27%
61,56830,52020,36833.26%
60,56030,08820,08033.26%
143,15260,80040,58033.26%
20,89611,7287,82833.25%
49,58425,86417,26433.25%
157,64067,80045,25633.25%
71,04832,76021,86833.25%
68,89231,58421,08433.24%
146,04060,34440,28433.24%
67,31234,27222,88033.24%
77,42435,12823,45233.24%
153,88068,80045,93233.24%
359,876143,59695,86833.24%
70,00832,40421,63633.23%
192,32983,86455,99633.23%
154,56066,54444,43233.23%
360,956144,18496,28033.22%
108,46860,68440,52433.22%
62,59230,79220,56433.22%
61,14830,50420,37233.22%
85,74437,86425,28833.21%
67,89231,70821,18033.20%
147,17661,80441,28433.20%
72,12032,79621,90833.20%
61,34029,68819,83233.20%
127,12048,07632,11633.20%
63,57630,06420,08433.20%
658,924312,220208,57633.20%
166,32465,06043,46433.19%
351,376139,50093,20033.19%
134,94854,08036,13233.19%
303,604123,34882,41233.19%
107,75260,22440,24033.18%
109,70841,50827,73633.18%
73,64031,02020,72833.18%
93,40437,99225,38833.18%
93,40437,99225,38833.18%
71,01632,66421,82833.17%
61,70029,18019,50033.17%
60,74830,80820,58833.17%
70,80432,37621,63633.17%
60,72029,46019,68833.17%
62,15629,56019,75633.17%
20,94011,6887,81233.16%
72,61233,01622,06833.16%
85,90840,14826,83633.16%
136,44054,50836,43633.15%
60,99229,52419,73633.15%
155,34466,06044,16033.15%
70,76032,56021,76833.14%
72,27232,11621,47233.14%
145,73658,81639,32433.14%
92,52436,86424,64833.14%
165,79269,42046,41633.14%
56,38827,94818,68833.13%
55,50027,95618,69633.12%
104,21243,06028,80033.12%
63,00430,00820,07233.11%
86,48839,37226,33633.11%
137,18054,81236,66433.11%
131,24355,88837,38833.10%
71,11634,51223,08833.10%
193,94076,25651,01633.10%
77,98833,06822,12433.10%
61,94829,09219,46433.10%
118,44439,10026,16033.09%
189,84091,63661,31233.09%
68,44031,43221,03233.09%
60,47629,99620,07233.08%
65,22033,55222,45233.08%
51,51628,20018,87233.08%
64,92431,79221,27633.08%
67,04831,23620,90433.08%
74,91230,92420,69633.07%
174,75268,64045,94033.07%
81,34035,91224,03633.07%
74,62433,59622,48833.06%
111,54462,08841,56033.06%
75,40431,84421,31633.06%
95,55236,59224,49633.06%
71,06832,78421,94833.05%
76,68032,25221,59233.05%
71,06032,37621,67633.05%
67,25631,34820,98833.05%
147,86860,93640,80033.04%
126,85252,92435,43633.04%
190,56876,82451,44033.04%
67,35231,46421,06833.04%
358,528143,98096,40833.04%
69,50027,58018,46833.04%
98,91238,40025,71633.03%
355,148142,54095,46033.03%
79,23233,08822,16033.03%
93,50040,76027,30033.02%
98,22040,19226,92033.02%
67,56828,61219,16433.02%
69,34033,70022,57233.02%
350,084139,86093,68033.02%
55,31630,26420,27233.02%
70,74032,66421,88033.01%
138,79269,76846,73633.01%
132,10857,47238,50433.00%
61,25631,01620,78033.00%
684,640319,788214,25233.00%
134,66453,86436,08833.00%
159,38861,15240,97233.00%
71,83232,98422,10033.00%
424,724154,288103,38432.99%
358,136143,64896,25632.99%
82,83236,68824,58432.99%
62,34429,97220,08432.99%
58,66028,26418,94032.99%
53,72427,04418,12432.98%
233,204113,12475,81632.98%
70,83232,64021,87632.98%
60,27629,18419,56032.98%
274,104144,51696,86032.98%
137,91255,14836,96432.97%
64,51231,42021,06032.97%
200,60877,86052,18832.97%
186,41268,20845,72432.96%
103,83639,85226,71632.96%
152,57664,88843,50032.96%
61,96030,37620,36432.96%
162,46474,52049,96032.96%
162,46474,52049,96032.96%
124,09270,55247,30032.96%
142,20459,76440,06832.96%
63,49232,93222,08032.95%
135,16054,14436,30432.95%
79,19238,10825,55232.95%
60,84429,50419,78432.94%
93,03637,00824,81632.94%
56,67627,74418,60432.94%
76,95632,88022,04832.94%
136,52844,14829,60432.94%
226,249100,60067,46032.94%
226,249100,60067,46032.94%
74,33633,24822,29632.94%
65,42031,63621,21632.94%
358,056142,52495,58432.93%
63,39231,10820,86432.93%
63,92831,22020,94032.93%
257,540108,94873,07632.93%
154,05264,72843,41632.93%
153,61666,32044,48432.93%
147,88461,59641,31632.92%
73,79233,21622,28032.92%
78,11636,77624,66832.92%
63,79229,92420,07232.92%
98,48444,74830,01632.92%
77,10833,38822,39632.92%
66,80831,10420,86432.92%
62,30429,40419,72432.92%
206,97391,56861,42432.92%
101,50041,21627,64832.92%
64,29237,59225,22032.91%
64,65637,52025,17232.91%
185,86876,29651,18832.91%
131,22355,89237,50032.91%
66,91631,01220,80832.90%
101,29646,75631,37232.90%
201,72479,18853,13632.90%
53,89627,43218,40832.90%
79,55636,83224,71632.90%
69,92832,21221,61632.89%
126,10852,52035,24432.89%
144,82058,16839,03632.89%
76,36833,95622,78832.89%
62,38831,27220,98832.89%
98,01243,27229,04432.88%
81,08436,61224,57632.87%
71,14033,02822,17232.87%
63,49630,87620,72832.87%
69,94032,43621,77632.86%
71,07232,99622,15232.86%
321,51294,04063,13632.86%
71,18433,03622,18032.86%
142,46859,84440,18032.86%
142,46859,84440,18032.86%
131,30755,88837,52432.86%
70,66027,72018,61232.86%
117,60454,59236,65632.85%
117,60454,59236,65632.85%
67,42431,60821,22432.85%
71,69233,54422,52432.85%
153,22865,98844,31232.85%
280,772125,69684,40832.85%
65,50832,55221,86032.85%
69,75631,70021,28832.85%
79,90434,11222,90832.84%
88,51240,04426,89232.84%
354,280142,44495,66032.84%
176,16869,96846,98832.84%
183,54883,80456,28032.84%
183,54883,80456,28032.84%
69,01233,17622,28032.84%
70,79233,16422,27232.84%
61,46430,09620,21232.84%
63,61631,36421,06432.84%
75,42034,46023,14432.84%
64,40830,12420,23232.84%
74,70432,23221,64832.84%
202,14879,34853,29632.83%
141,94862,16041,75232.83%
62,84431,28821,01632.83%
72,48432,99622,16432.83%
69,40032,37621,74832.83%
71,21232,86422,07632.83%
277,996114,03276,60032.83%
69,78831,42821,11232.82%
58,35628,52819,16432.82%
65,60832,77222,01632.82%
62,40830,83620,71632.82%
68,14032,26421,67632.82%
102,64044,34429,79232.82%
152,18065,30043,87232.81%
248,321101,12467,94432.81%
89,21641,58827,94432.81%
68,44431,65221,26832.81%
69,48432,60421,90832.81%
64,00830,00820,16432.80%
60,36029,98420,14832.80%
71,10433,14422,27232.80%
54,74430,10820,23232.80%
233,87292,92862,44832.80%
136,53644,18429,69232.80%
244,25296,32464,73232.80%
74,37231,71221,31232.80%
61,54831,34821,06832.79%
149,61263,38042,59632.79%
64,64031,26421,01232.79%
68,45631,69221,30032.79%
176,74464,82443,56832.79%
57,43627,93618,77632.79%
103,01641,28427,74832.79%
64,02830,45220,46832.79%
73,32032,05221,54432.78%
146,18061,82441,55632.78%
199,76476,59251,48432.78%
71,64833,03222,20432.78%
67,14431,25221,00832.78%
66,17231,87621,42832.78%
280,156149,776100,68432.78%
75,91235,67623,98432.77%
276,044123,21282,83632.77%
60,20030,02820,18832.77%
350,316139,94494,09232.76%
167,10061,64041,44432.76%
61,37230,40020,44032.76%
75,90031,78021,36832.76%
59,50829,69619,96832.76%
69,06431,24821,01232.76%
57,49229,13619,59232.76%
689,952323,452217,50432.76%
687,980322,684216,98832.76%
65,24032,52021,86832.76%
91,33642,80028,78432.75%
92,01238,67626,01232.74%
90,82439,77626,75232.74%
125,04440,12026,98432.74%
151,08064,14443,14432.74%
65,07633,14022,29232.73%
57,60829,31619,72032.73%
112,23639,94826,87232.73%
62,48430,62420,60032.73%
62,78430,13620,27232.73%
62,12031,59221,25232.73%
63,83231,56821,23632.73%
230,088113,60076,42032.73%
67,74431,38821,11632.73%
79,52438,99226,23232.72%
67,58031,38021,11232.72%
70,33231,95621,50032.72%
51,92428,46019,14832.72%
133,06059,25639,86832.72%
67,98031,87221,44432.72%
60,25630,13620,27632.72%
64,43232,78022,05632.72%
128,95250,78434,17232.71%
400,468223,676150,51232.71%
65,79632,26021,70832.71%
68,07231,98021,52032.71%
61,80429,13219,60432.71%
72,86835,86424,13632.70%
83,51639,40026,51632.70%
157,75662,62042,14432.70%
84,91640,71227,40032.70%
70,59231,82421,42032.69%
89,28439,05626,28832.69%
74,76034,07222,93632.68%
60,89629,74420,02432.68%
68,21632,56021,92032.68%
109,09645,22030,44432.68%
74,23632,16021,65232.67%
62,21631,46421,18432.67%
66,07632,06421,58832.67%
74,26834,66023,33632.67%
68,38832,20021,68032.67%
69,12032,16421,65632.67%
137,34454,91636,97632.67%
134,17657,01238,38832.67%
68,09631,58021,26432.67%
72,41233,49222,55232.66%
61,81230,67220,65632.66%
162,46074,51650,18432.65%
118,30458,52039,41232.65%
118,30458,52039,41232.65%
70,73633,01622,23632.65%
70,73232,92022,17232.65%
82,65234,46423,21232.65%
71,05233,35622,46832.64%
204,64488,49259,60832.64%
65,44432,47621,87632.64%
102,48040,72427,43232.64%
67,31231,08020,93632.64%
128,51261,76041,60432.64%
128,51261,76041,60432.64%
103,42841,66028,06432.64%
70,76033,03222,25232.64%
121,13655,86837,63632.63%
121,13655,86837,63632.63%
70,92433,14422,32832.63%
53,72027,21218,33232.63%
71,61633,48022,55632.63%
78,08434,96423,55632.63%
67,98432,09621,62432.63%
112,25247,11631,74432.63%
73,40033,48422,56032.62%
132,00057,94039,04032.62%
129,73251,14834,46432.62%
52,93227,39618,46032.62%
109,06040,24827,12032.62%
211,38091,99261,98832.62%
80,55634,39223,17632.61%
60,80830,65220,65632.61%
60,17228,76419,38432.61%
70,72032,96022,21232.61%
125,87651,87634,96032.61%
63,08430,68020,67632.61%
103,31643,96029,62832.60%
123,35240,70027,43232.60%
68,21632,08821,62832.60%
220,08096,91665,32432.60%
254,33289,55660,36432.60%
62,96830,64420,65632.59%
94,13238,19225,74432.59%
146,87660,66440,89232.59%
72,29633,60422,65232.59%
71,83632,83622,13632.59%
64,95231,95621,54432.58%
68,33632,10421,64432.58%
100,54841,19227,77232.58%
355,216142,62496,16032.58%
66,21632,26821,75632.58%
59,72029,87620,14432.57%
54,08829,91620,17232.57%
104,81244,17629,78832.57%
58,56428,66819,33232.57%
70,39632,29221,77632.57%
223,54187,11658,74832.56%
161,92876,34851,48832.56%
161,92876,34851,48832.56%
64,20831,78021,43232.56%
67,01631,44021,20432.56%
108,19260,70840,94432.56%
158,31675,36850,83232.55%
19,0729,5246,42432.55%
75,45633,10822,33232.55%
53,23627,64018,64432.55%
72,19233,19622,39232.55%
166,14476,07251,31632.54%
152,36065,60044,25232.54%
159,42867,85245,77232.54%
81,96035,46423,92432.54%
20,66012,2568,26832.54%
60,12029,36819,81232.54%
73,38433,50022,60032.54%
220,43787,73259,18832.54%
109,74845,66430,80832.53%
67,39232,82822,14832.53%
71,12433,14022,36032.53%
70,72033,46022,57632.53%
63,79231,39621,18432.53%
72,10434,50823,28432.53%
53,83227,89218,82032.53%
59,28029,98420,23232.52%
325,544125,80484,88832.52%
72,62431,11620,99632.52%
58,67229,07619,62032.52%
60,08829,80420,11232.52%
564,780245,016165,35232.51%
67,96031,56021,30032.51%
124,89640,39627,26432.51%
129,35651,31234,63232.51%
71,32033,52022,62432.51%
201,97789,21660,21632.51%
300,64894,41263,72432.50%
72,70433,34022,50432.50%
72,29233,22022,42432.50%
69,34433,03622,30032.50%
99,78438,55226,02432.50%
162,74072,41248,88432.49%
238,96491,16861,54832.49%
76,09235,02823,64832.49%
60,95230,44820,55632.49%
75,68033,09622,34432.49%
259,513101,09268,25232.49%
182,40886,92058,68432.49%
69,37631,21621,07632.48%
71,76033,34822,51632.48%
114,40446,39231,32432.48%
76,77234,78023,48432.48%
68,57232,59222,00832.47%
78,61237,69225,45232.47%
62,23630,54820,62832.47%
66,00432,41221,88832.47%
70,45228,23619,06832.47%
70,30433,11622,36432.47%
93,25237,97225,64432.47%
107,94830,90020,86832.47%
217,76988,34059,66032.47%
60,81230,37220,51232.46%
63,27631,44421,23632.46%
66,20032,45621,92032.46%
63,60831,36021,18032.46%
80,78434,51623,31232.46%
390,244174,184117,64432.46%
58,51629,71620,07232.45%
176,24468,81646,48432.45%
74,47632,18421,74032.45%
190,30074,61250,40032.45%
138,30855,54037,52032.45%
61,60831,34021,17232.44%
123,26840,62427,44432.44%
95,28045,53230,76032.44%
66,56033,15622,40032.44%
60,62430,84020,83632.44%
71,51233,60422,70432.44%
64,69232,40821,89632.44%
62,86431,79221,48032.44%
71,97632,72422,11232.43%
65,59232,42821,91232.43%
167,48061,08441,28032.42%
159,81669,90847,24432.42%
139,65257,46038,83232.42%
140,92858,18839,32432.42%
127,54052,58835,54032.42%
158,81669,69247,10032.42%
70,28432,56422,00832.42%
62,64431,34421,18432.41%
72,11234,23223,13632.41%
53,96427,49618,58432.41%
74,55634,70423,45632.41%
63,59631,07621,00432.41%
166,45270,53247,67232.41%
63,09231,05220,98832.41%
61,28429,28819,79632.41%
112,23639,52426,71632.41%
76,43636,40424,60832.40%
77,07633,65222,74832.40%
75,05233,98822,97632.40%
69,06833,79222,84432.40%
109,98861,56041,61632.40%
70,31633,20022,44432.40%
75,94434,18823,11232.40%
53,86828,05218,96432.40%
103,37240,55227,41632.39%
142,92060,96441,21632.39%
60,38829,48819,93632.39%
72,89632,78822,16832.39%
54,99628,94819,57232.39%
65,94832,03621,66032.39%
53,37227,76418,77232.39%
161,54876,25651,56032.39%
165,46873,46849,67632.38%
53,31227,53218,61632.38%
71,25234,29223,18832.38%
70,61233,40422,58832.38%
53,39227,52418,61232.38%
113,31239,94427,01232.38%
62,74830,04820,32032.37%
102,89642,66428,85232.37%
177,64876,64851,83632.37%
128,82460,51240,92432.37%
128,82460,51240,92432.37%
63,78033,08022,37232.37%
60,66429,42419,90032.37%
53,46427,88018,85632.37%
141,18059,16040,01232.37%
187,89673,57649,76432.36%
89,50437,89625,63232.36%
70,21232,91622,26432.36%
149,92463,50042,95232.36%
58,71229,16419,72832.35%
149,69258,97239,89232.35%
127,67660,04040,61632.35%
127,67660,04040,61632.35%
72,14434,16423,11232.35%
94,19237,45625,34032.35%
420,296155,600105,26832.35%
98,73238,82026,26432.34%
140,29265,46444,29232.34%
65,31632,38421,91232.34%
71,25233,36422,57632.33%
81,54034,48023,33232.33%
256,89278,55253,15632.33%
159,74476,02851,45232.32%
159,74476,02851,45232.32%
152,16063,32442,85632.32%
64,77632,16421,76832.32%
58,51229,08419,68432.32%
99,62040,59627,47632.32%
70,92833,72822,82832.32%
64,40031,78821,51632.31%
129,22455,71637,71232.31%
55,84028,90419,56432.31%
96,48042,53628,79232.31%
60,90429,84820,20432.31%
63,10030,78020,83632.31%
249,89686,73258,71232.31%
159,16472,02448,75632.31%
64,67631,71221,46832.30%
83,03240,06027,12032.30%
78,80834,40823,29632.29%
65,56431,56021,36832.29%
71,31232,52822,02432.29%
61,61630,59620,71632.29%
146,67663,36842,90832.29%
78,34036,94425,01632.29%
177,83265,91244,63232.29%
232,468117,09679,29232.28%
70,54832,02821,68832.28%
75,54437,09625,12032.28%
179,48462,84842,56032.28%
145,30060,18440,75632.28%
61,86031,52421,34832.28%
88,36041,74828,27232.28%
62,55630,25220,48832.28%
54,96025,29617,13232.27%
62,05231,17221,11232.27%
70,90432,17621,79232.27%
73,25230,62820,74432.27%
61,09629,71220,12432.27%
140,40064,40043,62032.27%
72,26833,83222,91632.27%
62,20030,82020,87632.26%
80,24436,89624,99232.26%
60,85629,50819,98832.26%
72,76834,10823,10432.26%
58,58028,75219,47632.26%
72,20833,68822,82032.26%
70,53232,30021,88032.26%
88,76435,96024,36032.26%
77,15233,59222,75632.26%
141,39656,38438,19632.26%
64,30431,61221,41632.25%
73,74035,30823,92032.25%
62,72430,17620,44432.25%
162,48465,79244,57632.25%
69,61632,40021,95232.25%
129,72453,87236,50032.25%
65,94033,34422,59232.25%
65,84031,98021,66832.25%
62,38831,48421,33232.24%
286,940158,880107,65232.24%
80,24034,61223,45232.24%
64,32837,40425,34432.24%
70,68432,56822,06832.24%
187,93273,64849,90432.24%
71,78432,91622,30432.24%
187,78484,49657,25632.24%
95,48838,64026,18432.24%
190,32874,66450,60032.23%
108,68452,56435,62432.23%
106,00449,96033,86032.23%
66,50432,18821,81632.22%
67,69634,99623,72032.22%
69,50833,19622,50032.22%
62,67631,27221,19632.22%
77,78837,58025,47232.22%
102,08442,58428,86432.22%
65,74831,93221,64432.22%
145,74457,73639,13632.22%
90,53637,66025,52832.21%
61,05630,26020,51232.21%
142,91659,20440,13232.21%
191,49674,30050,36832.21%
70,96032,26421,87232.21%
144,40061,17641,47232.21%
86,50440,24027,28032.21%
63,94833,89622,98032.20%
98,38439,82827,00432.20%
61,08030,50020,68032.20%
78,30837,56025,46832.19%
64,94432,40421,97232.19%
65,55631,68421,48432.19%
72,34432,96422,35232.19%
66,41232,33221,92432.19%
109,97261,96842,02032.19%
75,78433,48822,70832.19%
63,75231,16821,13632.19%
66,32432,21221,84432.19%
71,32833,12022,46032.19%
101,78440,96427,78032.18%
62,27230,71220,82832.18%
81,61635,32423,95632.18%
72,00834,10823,13232.18%
84,77639,19226,58032.18%
67,92832,71622,18832.18%
98,29639,28426,64432.18%
196,84080,70854,74032.18%
210,688110,98075,27232.18%
61,82430,23620,50832.17%
205,36075,16850,98432.17%
75,34435,26023,91632.17%
75,78034,40423,33632.17%
77,66437,75225,60832.17%
72,75633,28822,58032.17%
76,76035,54024,10832.17%
191,50074,34050,42832.17%
72,18432,86822,29632.17%
96,10442,94429,13232.16%
61,61630,11220,42832.16%
77,72434,26823,24832.16%
77,52436,82024,98032.16%
66,07634,93623,70432.15%
191,34874,98850,88032.15%
60,66027,80818,86832.15%
65,97632,10421,78432.15%
62,19230,84020,92832.14%
76,80433,91623,01632.14%
204,52480,96454,94432.14%
67,57233,34822,63232.13%
145,16457,04038,71232.13%
60,52429,61620,10032.13%
55,23629,23219,84032.13%
129,35654,89237,25632.13%
161,09268,26446,33232.13%
69,52432,83222,28432.13%
82,08037,36425,36032.13%
68,30432,04821,75232.13%
70,12433,36822,64832.13%
64,18831,70021,51632.13%
221,11786,86058,95632.13%
164,30464,24043,60432.12%
200,50080,60854,71632.12%
62,54830,12420,44832.12%
72,26834,36023,32432.12%
70,16433,91223,02032.12%
114,74039,20826,61632.12%
55,30429,10819,76032.11%
192,55681,00854,99632.11%
219,26893,73663,64032.11%
84,20835,19623,89632.11%
64,10831,69621,52032.10%
107,51245,52830,91232.10%
68,92432,73222,22432.10%
71,72032,29621,92832.10%
66,24432,17221,84432.10%
76,80033,63222,83632.10%
63,31630,92821,00032.10%
69,46032,92422,35632.10%
78,15235,78024,29632.10%
71,15628,40419,28832.09%
73,41633,24022,57232.09%
128,40755,76437,86832.09%
82,05636,94425,08832.09%
61,45231,33621,28032.09%
83,27230,11620,45232.09%
63,05631,82421,61232.09%
164,50063,52443,14032.09%
161,74469,92047,48432.09%
69,98433,99623,08832.09%
70,46834,07223,14032.08%
127,57652,65235,76032.08%
77,19235,69624,24432.08%
62,58031,64421,49232.08%
67,57633,26822,59632.08%
79,68437,03625,15632.08%
111,06847,97232,58832.07%
75,56035,30023,98032.07%
133,36548,64833,04832.07%
133,36548,64833,04832.07%
157,59659,80040,62432.07%
77,77234,79223,63632.06%
55,80828,69219,49232.06%
72,45233,49622,75632.06%
158,24875,38851,21632.06%
158,24875,38851,21632.06%
144,34061,52041,79632.06%
91,72837,90425,75232.06%
85,82439,62826,92432.06%
59,70830,39620,65232.06%
81,41637,49625,47632.06%
126,37258,47239,72832.06%
204,39280,96055,00832.06%
72,71233,96023,07632.05%
80,64834,76023,62032.05%
61,22430,15620,49232.05%
83,04829,84420,28032.05%
61,09230,98021,05232.05%
65,80431,99621,74432.04%
83,94037,39225,41232.04%
72,30835,53224,14832.04%
70,52034,27223,29232.04%
62,02028,40419,30432.04%
73,66833,23622,58832.04%
66,62035,02423,80432.04%
254,620108,28873,60032.03%
142,31259,67640,56032.03%
174,36464,38443,76032.03%
58,18429,92020,33632.03%
74,01636,42824,76032.03%
114,71239,18826,63632.03%
68,11232,38422,01232.03%
166,42473,75650,13632.02%
56,04828,61619,45232.02%
77,10034,51223,46032.02%
82,78835,17623,91232.02%
86,63640,84827,76832.02%
107,60845,92031,21632.02%
65,87633,17222,55232.01%
65,89233,12422,52032.01%
63,60431,78821,61232.01%
65,78832,17621,87632.01%
176,58885,06057,83232.01%
61,32830,52820,75632.01%
142,05259,53240,47632.01%
173,45281,58855,47632.00%
82,24533,40822,71632.00%
66,62832,96022,41232.00%
99,27641,67228,33632.00%
87,50037,76025,67632.00%
200,36480,61254,81632.00%
97,82444,00429,92432.00%
196,68475,63251,43232.00%
191,34474,92850,95631.99%
68,92034,13623,21631.99%
156,84459,58440,52431.99%
72,61633,97623,10831.99%
82,23234,75223,63631.99%
61,36830,16420,51631.99%
70,38432,51622,11631.98%
61,33231,30421,29231.98%
81,60034,45623,43631.98%
74,66434,25623,30031.98%
61,56430,84420,98031.98%
81,36429,42020,01231.98%
64,38032,23621,92831.98%
60,54430,52420,76431.97%
162,58469,74447,44431.97%
93,52040,96827,87231.97%
93,52040,96827,87231.97%
62,54430,80820,96031.97%
74,86036,65224,93631.97%
75,71635,66424,26431.97%
343,352126,26885,91231.96%
56,26028,68819,52031.96%
72,98834,17223,25231.96%
178,36466,33245,13631.95%
77,79237,25625,35231.95%
79,50034,91623,76031.95%
73,38028,93219,68831.95%
93,98035,51224,16831.94%
153,87272,98049,66831.94%
80,56037,06825,22831.94%
131,30852,64835,83231.94%
80,25236,25624,67631.94%
74,87633,96823,12031.94%
47,70822,87215,56831.93%
84,66030,11220,49631.93%
60,00828,84819,63631.93%
71,11632,67222,24031.93%
78,33234,74023,64831.93%
96,57644,51630,30431.93%
224,17292,78463,16431.92%
69,67634,22023,29631.92%
73,80433,70822,94831.92%
132,66052,95636,05231.92%
70,27234,43623,44431.92%
77,30836,21624,65631.92%
71,23233,47222,78831.92%
76,65234,78823,68431.92%
81,15238,64826,31231.92%
155,88467,53645,98031.92%
64,50031,49621,44431.92%
63,48831,37221,36031.91%
86,23640,36027,48031.91%
60,18824,01616,35231.91%
64,74431,61221,52431.91%
64,77631,97621,77231.91%
72,40436,08824,57231.91%
64,39631,65221,55231.91%
126,71251,93635,36431.91%
70,62434,23623,31231.91%
104,58038,11225,95231.91%
165,72458,95640,14831.90%
75,12436,12424,60031.90%
64,64031,44821,41631.90%
73,74833,66822,92831.90%
74,89236,42824,80831.90%
87,24039,91627,18431.90%
105,66046,96431,98431.90%
76,62034,76423,67631.90%
85,88440,04427,27231.89%
217,80490,52461,65231.89%
74,44434,52823,51631.89%
71,97233,65222,92031.89%
196,81675,63651,51631.89%
98,96045,13230,74031.89%
72,17632,10021,86431.89%
55,30829,00419,75631.89%
143,95659,86840,78031.88%
145,40461,89242,16031.88%
81,34435,43224,13631.88%
64,20031,68421,58431.88%
141,67259,96840,85231.88%
113,30037,42025,49231.88%
95,21243,41229,57631.87%
83,76834,56423,54831.87%
76,98435,45624,15631.87%
62,03229,28419,95231.87%
64,32031,43221,41631.87%
75,77636,32824,75231.87%
60,42030,28020,63231.86%
67,11633,72022,97631.86%
63,60831,33621,35231.86%
75,56835,22824,00431.86%
65,30434,66423,62031.86%
58,99224,06816,40031.86%
164,14063,13243,02031.86%
189,21674,57250,81631.86%
145,51254,81237,35231.85%
73,43632,81222,36031.85%
59,29629,08419,82031.85%
60,79630,59220,84831.85%
71,35634,40023,44431.85%
55,66426,03617,74431.85%
65,30432,34422,04431.85%
75,28433,03622,51631.84%
81,98439,00426,58431.84%
90,10436,73225,03631.84%
189,34874,57250,82831.84%
67,86433,29222,69231.84%
122,90448,60033,12831.84%
74,57235,54824,23231.83%
71,93233,75223,00831.83%
415,228162,956111,08431.83%
62,91631,76821,65631.83%
60,54830,86421,04031.83%
60,37631,45621,44431.83%
72,43633,04022,52431.83%
65,48832,58822,21631.83%
62,57230,50420,79631.83%
64,56831,82421,69631.83%
62,14831,51221,48431.82%
131,87261,28041,78031.82%
63,84831,64021,57231.82%
68,02833,18822,62831.82%
90,31242,39228,90431.82%
65,31631,72421,63231.81%
69,74815,12810,31631.81%
65,54431,21221,28431.81%
74,50034,27223,37231.80%
240,984104,93271,56431.80%
64,77231,80421,69231.79%
151,97663,03242,99231.79%
64,43631,93221,78031.79%
71,02033,38022,76831.79%
88,58841,76028,48431.79%
64,55231,97221,80831.79%
64,36432,95622,48031.79%
84,33239,99227,28031.79%
81,39637,56425,62431.79%
64,90431,78821,68431.79%
140,99659,31240,46031.78%
140,99659,31240,46031.78%
74,95634,56023,57631.78%
139,83258,28839,76431.78%
82,22438,20026,06031.78%
73,12434,07223,24431.78%
86,14440,62027,71231.78%
146,10462,62442,72431.78%
185,53687,40059,62831.78%
77,57237,90425,86031.78%
129,04854,26037,02031.77%
74,68436,85225,14431.77%
117,97549,69633,90831.77%
77,82835,25624,05631.77%
162,45675,44851,48031.77%
74,54435,76024,40031.77%
65,01231,90821,77231.77%
61,58830,94021,11231.76%
65,39633,02022,53231.76%
65,80432,05221,87231.76%
104,43738,06025,97231.76%
104,18847,38432,33631.76%
78,05734,04823,23631.76%
71,93634,71623,69231.75%
64,94831,99621,83631.75%
74,65636,82425,13231.75%
60,49230,64020,91231.75%
69,77634,50823,55231.75%
123,20852,04835,52431.75%
62,24829,53620,16031.74%
91,31643,20829,49231.74%
79,63635,99224,56831.74%
74,68434,10423,28031.74%
83,10840,35627,54831.74%
67,31233,89223,13631.74%
143,31260,26041,13631.74%
101,43645,54031,08831.73%
81,36036,44024,87631.73%
205,90081,53255,66031.73%
77,31235,46024,20831.73%
75,22835,44824,20031.73%
78,69635,51624,24831.73%
66,73633,52822,89231.72%
83,31235,72824,39631.72%
85,75643,88829,96831.72%
80,32837,74825,77631.72%
65,24432,46422,16831.72%
66,08432,27622,04031.71%
382,568172,656117,90431.71%
74,47634,12023,30031.71%
93,10042,08028,73631.71%
144,02858,28039,80031.71%
58,34030,52820,84831.71%
74,40034,04823,25231.71%
78,71635,76424,42431.71%
76,70036,91225,20831.71%
69,01633,62022,96031.71%
65,74832,22022,00431.71%
65,69231,80421,72031.71%
60,35629,40820,08431.71%
66,88433,88823,14431.70%
82,60439,02426,65231.70%
81,08837,22025,42031.70%
206,15681,63255,75231.70%
69,82033,44822,84431.70%
134,40062,58442,74431.70%
63,92831,39621,44431.70%
64,83633,82023,10031.70%
69,68033,65622,98831.70%
65,77633,40422,81631.70%
88,26037,11625,35231.70%
67,28033,20422,68031.69%
75,86035,85624,49231.69%
70,51233,96423,20031.69%
62,34030,59620,90031.69%
104,44447,66432,56031.69%
68,41233,39222,81231.68%
204,39281,71255,82431.68%
74,38833,91223,16831.68%
67,88833,38422,80831.68%
79,13635,38024,17231.68%
252,57291,44462,47631.68%
64,36831,46021,49631.67%
68,43234,34023,46431.67%
177,46169,46447,46431.67%
177,46169,46447,46431.67%
75,55234,62023,65631.67%
69,68033,14422,64831.67%
213,66060,18841,12831.67%
165,44480,66455,12031.67%
72,06433,68823,02031.67%
192,59676,88852,54031.67%
66,23233,26022,72831.67%
159,60061,53242,04831.66%
69,37633,62822,98031.66%
101,13245,75631,26831.66%
61,68430,47220,82431.66%
62,58830,70020,98031.66%
74,45634,83623,80831.66%
74,02833,54822,92831.66%
72,94433,38422,81631.66%
67,85632,74022,37631.66%
69,88033,57622,94831.65%
69,67234,17223,35631.65%
83,38837,86425,88031.65%
82,74438,33226,20031.65%
157,19674,20050,71631.65%
63,04431,18021,31231.65%
85,42036,59225,01231.65%
78,92437,58025,68831.64%
75,53236,15224,71231.64%
77,90437,29225,49231.64%
151,25657,06439,00831.64%
69,50033,99623,24031.64%
74,07635,17224,04431.64%
91,50441,29228,22831.64%
67,03233,96023,21631.64%
73,16034,03623,26831.64%
81,08035,52824,28831.64%
132,21651,41235,14831.63%
152,27258,72440,14831.63%
91,04038,79626,52431.63%
112,81252,35235,79231.63%
157,21274,20850,73631.63%
68,83633,89223,17231.63%
75,12835,29624,13231.63%
60,52030,90821,13231.63%
190,67676,79252,50431.63%
73,94834,86823,84031.63%
65,25632,88422,48431.63%
103,52445,25630,94431.62%
151,68465,84845,02431.62%
81,68838,84426,56031.62%
195,57676,03251,98831.62%
65,89234,12823,33631.62%
62,62431,15621,30431.62%
118,52840,15227,45631.62%
67,88033,88023,16831.62%
65,36833,20022,70431.61%
78,91637,36425,55231.61%
171,38067,82046,38031.61%
56,20924,25616,58831.61%
98,49644,82030,65231.61%
65,59631,88821,80831.61%
69,43633,97623,23631.61%
83,07638,82426,55231.61%
159,50864,62844,20031.61%
231,904118,85681,28831.61%
64,79231,82821,76831.61%
119,24857,24039,14831.61%
192,10876,64452,42031.61%
245,48475,42451,58831.60%
71,48433,97223,23631.60%
87,16036,46824,94431.60%
64,69633,36822,82431.60%
160,95665,80045,00831.60%
72,64833,95223,22431.60%
95,65643,75229,92831.60%
74,93235,60024,35231.60%
118,47240,24827,53231.59%
75,91636,54024,99631.59%
69,56033,44422,88031.59%
295,384135,92092,99231.58%
55,13724,19216,55231.58%
62,55231,41221,49231.58%
71,62033,99623,26031.58%
96,76441,74828,56431.58%
241,01283,36057,03631.58%
65,30033,02422,59631.58%
80,74835,59624,35631.58%
80,47238,84026,57631.58%
191,15274,60451,04831.57%
78,22437,37225,57231.57%
58,33229,91220,46831.57%
59,65229,81220,40031.57%
69,18033,43622,88031.57%
98,43246,74031,98431.57%
82,08839,62027,11231.57%
191,03274,61651,06031.57%
215,52487,17659,65631.57%
66,01233,45222,89231.57%
83,03636,87625,23631.57%
204,22081,66455,88831.56%
75,30436,08024,69231.56%
128,75658,75240,20831.56%
76,00836,00824,64431.56%
64,43231,91621,84431.56%
66,97632,98822,58031.55%
102,08440,91228,00431.55%
60,96431,63221,65231.55%
195,42876,00052,02431.55%
144,85662,17242,56031.54%
63,30031,10821,29631.54%
75,71237,88025,93231.54%
82,25638,51626,36831.54%
74,49235,60024,37231.54%
170,63667,76446,39231.54%
67,58833,33222,82031.54%
65,43632,81222,46431.54%
72,58833,60023,00431.54%
75,29236,25224,82031.53%
75,19634,96023,93631.53%
81,28835,82424,52831.53%
63,04031,80421,77631.53%
66,55232,31222,12431.53%
100,34845,74031,32031.53%
69,40434,31223,49631.52%
86,35240,78827,93231.52%
164,90466,68045,66431.52%
67,80833,80023,14831.51%
86,96441,15228,18431.51%
73,84835,37224,22831.51%
227,696113,26477,58431.50%
161,36877,44453,04831.50%
72,32434,04423,32031.50%
93,84842,77629,30431.49%
69,77634,29223,49231.49%
82,04038,77626,56431.49%
74,19633,34022,84031.49%
67,04434,11623,37231.49%
75,04034,96823,95631.49%
167,49261,93642,43231.49%
135,61646,94832,16431.49%
173,46083,02456,88031.49%
64,12432,60822,34031.49%
82,66436,58425,06431.49%
144,85259,56440,80831.49%
174,48876,61252,48831.49%
77,21636,91625,29231.49%
160,14077,49653,09631.49%
74,30035,06424,02431.49%
110,53651,63235,37631.48%
229,840104,91671,88431.48%
73,88435,11624,06031.48%
70,78833,04822,64431.48%
86,85640,95228,06031.48%
278,092114,65678,56431.48%
73,60036,35624,91231.48%
65,12032,32822,15231.48%
76,96836,33224,89631.48%
79,49636,11624,74831.48%
65,18832,05621,96831.47%
59,91229,97220,54031.47%
73,92035,97224,65231.47%
287,09691,76462,88831.47%
78,26436,14024,76831.47%
64,22432,48022,26031.47%
147,62463,54043,54831.46%
149,48464,74844,37631.46%
66,53633,99623,30031.46%
85,81239,82027,29231.46%
74,55233,41622,90431.46%
64,49231,39621,52031.46%
68,95634,42423,59631.45%
97,07645,84831,42831.45%
65,20832,91622,56431.45%
81,08438,34826,28831.45%
75,28036,50425,02431.45%
111,82039,80027,28431.45%
73,12435,13224,08431.45%
80,40036,74825,19231.45%
63,90032,78022,47231.45%
80,49638,91226,67631.45%
69,00033,07622,67631.44%
286,59690,96062,36031.44%
74,97634,68023,77631.44%
59,43230,72421,06431.44%
125,80454,36437,27231.44%
68,56833,40022,90031.44%
74,27234,80023,86031.44%
116,22048,56033,29631.43%
66,05633,39222,89631.43%
73,76034,78023,84831.43%
74,35634,48823,64831.43%
67,14433,75223,14431.43%
117,37648,17233,03231.43%
166,24478,52853,84831.43%
76,00035,89224,61231.43%
60,06030,56020,95631.43%
61,90430,62421,00031.43%
75,19635,28424,19631.43%
71,24834,43223,61231.42%
90,43242,80829,35631.42%
67,18433,78423,16831.42%
65,62832,02821,96431.42%
186,84078,55653,87231.42%
188,24079,40054,45231.42%
70,16432,27622,13631.42%
128,37347,56832,62431.42%
128,37347,56832,62431.42%
68,23628,96819,86831.41%
76,76435,52024,36431.41%
59,72430,48020,90831.40%
75,64435,44824,31631.40%
100,59645,88031,47231.40%
53,48022,66015,54431.40%
135,56146,90032,17231.40%
135,56146,90032,17231.40%
123,02054,69637,52031.40%
66,99233,55223,01631.40%
82,60838,99226,74831.40%
65,62031,72021,76031.40%
72,90033,98823,31631.40%
71,46034,71623,81631.40%
58,99230,29620,78431.40%
170,90071,72849,20831.40%
67,86033,54823,01631.39%
79,78838,06026,11231.39%
113,21645,72031,36831.39%
97,26443,49229,84031.39%
74,80834,89223,94031.39%
70,43235,16024,12431.39%
72,40834,81623,88831.39%
92,92041,53228,49631.39%
92,92041,53228,49631.39%
148,49262,61642,96431.38%
155,11272,53249,76831.38%
155,11272,53249,76831.38%
100,50845,90831,50031.38%
62,70432,90822,58031.38%
83,20438,72026,56831.38%
83,74036,90025,32031.38%
76,04035,27224,20431.38%
65,83233,31222,86031.38%
57,97229,62820,33231.38%
69,13234,66823,79231.37%
56,37229,28820,10031.37%
73,74034,44023,63631.37%
75,56434,23623,49631.37%
65,71633,07622,70031.37%
259,58883,11257,04031.37%
78,80035,98424,69631.37%
191,08876,49652,50031.37%
80,55237,18425,52031.37%
69,36833,90823,27231.37%
75,89235,18824,15231.36%
75,06037,26825,58031.36%
131,78867,08846,04831.36%
82,35638,49626,42431.36%
61,39631,67221,74031.36%
66,33633,15222,75631.36%
25,94014,4409,91231.36%
61,33631,84021,85631.36%
72,78436,66425,16831.36%
60,11630,04420,62431.35%
72,12435,00824,03231.35%
74,86434,98424,01631.35%
77,98438,59626,49631.35%
101,38846,31631,79631.35%
65,66432,23222,12831.35%
65,86432,76822,49631.35%
68,34033,57223,04831.35%
244,04085,49658,69631.35%
244,04085,49658,69631.35%
80,57238,51226,44031.35%
58,23230,46020,91231.35%
76,00835,61624,45231.35%
172,04882,22056,44831.35%
79,69236,20424,85631.34%
85,36440,00827,46831.34%
221,14986,55259,42431.34%
75,92836,29624,92031.34%
249,97678,20453,69631.34%
202,78182,74856,81631.34%
68,31233,35222,90031.34%
68,38434,86023,93631.34%
71,78834,38823,61231.34%
73,14834,36423,59631.34%
81,82438,28426,28831.33%
81,40439,54827,15631.33%
78,20434,77623,88031.33%
147,18057,19639,27631.33%
147,00463,14843,36431.33%
171,28868,05246,73231.33%
76,01636,16024,83231.33%
69,14832,92022,60831.32%
58,65230,49620,94431.32%
67,54033,27222,85231.32%
105,27649,99234,33631.32%
111,70452,47236,04031.32%
79,06837,53225,78031.31%
79,91237,59625,82431.31%
72,54836,65225,17631.31%
283,392123,49684,83231.31%
280,352116,25279,85631.31%
80,14438,50826,45231.31%
67,55232,55622,36431.31%
70,42835,04824,07631.31%
65,58033,72423,16831.30%
178,82885,16458,50831.30%
73,73234,84023,93631.30%
67,06834,21623,50831.30%
56,06029,16820,04031.29%
130,52460,44841,53231.29%
103,34045,44431,22431.29%
158,34064,98044,64831.29%
126,77650,22834,51231.29%
79,21638,08426,16831.29%
80,72838,26426,29231.29%
255,288111,59676,68031.29%
69,20031,80021,85231.28%
83,03639,65227,24831.28%
252,776121,86083,74031.28%
252,776121,86083,74031.28%
72,14834,32423,58831.28%
77,08835,91624,68431.27%
65,38432,68022,46031.27%
73,72434,93224,00831.27%
241,54496,10066,04831.27%
90,27643,24829,72431.27%
66,89633,86023,27231.27%
160,10077,47253,24831.27%
144,48859,64040,99231.27%
62,85231,43221,60431.27%
68,03634,49223,70831.27%
88,13241,32428,40431.27%
261,50494,91265,24031.26%
80,40838,19626,25631.26%
60,14429,60020,34831.26%
24,84815,00010,31231.25%
253,20078,64854,06831.25%
65,29232,35622,24431.25%
59,44830,29620,82831.25%
66,50833,86823,28431.25%
85,18439,50027,15631.25%
107,61649,61234,10831.25%
107,61649,61234,10831.25%
81,64038,49226,46431.25%
85,11635,74024,57231.25%
57,97229,98020,61231.25%
68,84834,08423,43631.24%
75,44436,06024,79631.24%
183,13283,23657,23631.24%
71,46833,69223,16831.24%
238,124123,55684,96431.23%
147,48862,94443,28431.23%
78,48435,88424,67631.23%
147,04469,64447,89231.23%
59,54031,10821,39231.23%
74,94434,13223,47231.23%
101,06845,54431,32031.23%
59,69629,74020,45231.23%
159,84862,13242,72831.23%
126,27241,78028,73231.23%
81,15238,52826,49631.23%
76,12435,28824,26831.23%
81,47236,04424,78831.23%
286,480116,05279,81231.23%
79,80437,88026,05231.22%
84,38838,93226,77631.22%
207,67659,50840,92831.22%
65,13232,38822,27631.22%
126,31241,79228,74431.22%
64,96432,19622,14431.22%
297,52490,84462,48431.22%
146,84859,18440,70831.22%
74,69634,98024,06031.22%
79,96035,59624,48431.22%
68,53233,94423,34831.22%
77,33636,11224,84031.21%
69,29633,97223,36831.21%
76,80433,83223,27231.21%
66,58833,10422,77231.21%
56,36028,64419,70431.21%
75,99636,74425,27631.21%
80,62838,56826,53231.21%
235,63285,24858,64831.20%
85,18435,28424,27631.20%
65,54832,27222,20431.20%
69,36834,18423,52031.20%
247,72076,64052,73231.20%
110,20053,99637,15231.19%
91,77239,45627,14831.19%
85,44840,80428,07631.19%
107,84447,10432,41231.19%
74,37235,26824,26831.19%
77,26436,43625,07231.19%
76,29638,16826,26431.19%
133,82861,96842,64431.18%
84,54842,58829,30831.18%
122,45254,46837,48431.18%
113,87254,20037,30031.18%
73,10436,66425,23231.18%
74,93635,54824,46431.18%
150,46064,76044,56831.18%
112,32452,91236,41631.18%
67,24832,19222,15631.18%
145,48061,65242,43231.17%
246,23274,86051,52431.17%
58,60431,09221,40031.17%
167,10862,66043,12831.17%
246,02858,44040,22431.17%
73,30434,75223,92031.17%
102,93646,68832,13631.17%
62,50030,90421,27231.17%
74,20834,82023,96831.17%
66,54433,41223,00031.16%
69,11234,26023,58431.16%
80,27637,72825,97231.16%
80,30841,09228,28831.16%
245,14896,31266,30431.16%
86,68040,98028,21231.16%
59,58428,27219,46431.15%
60,45630,46820,97631.15%
258,01282,07656,50831.15%
148,10060,86441,90431.15%
105,35650,70834,91231.15%
103,76847,26832,54431.15%
188,61279,68054,86031.15%
63,09231,30821,55631.15%
61,17631,29621,54831.15%
129,31648,02033,06431.15%
112,19246,03231,69631.14%
94,07241,20428,37231.14%
74,86436,37625,04831.14%
70,54831,26421,52831.14%
85,74840,24427,71231.14%
87,86841,20828,37631.14%
86,36840,90028,16431.14%
57,44430,44420,96431.14%
98,58844,84430,88031.14%
105,32037,48425,81231.14%
229,520119,41682,23231.14%
155,28486,57259,61631.14%
68,75632,76022,56031.14%
112,07653,98837,18031.13%
122,36454,33637,42031.13%
74,79636,34425,03231.12%
78,14834,52023,77631.12%
59,05630,88421,27231.12%
75,99234,98424,09631.12%
75,83236,55225,17631.12%
101,34445,54031,36831.12%
70,73634,97624,09231.12%
74,16434,72023,91631.12%
76,17635,09624,17631.11%
82,98830,10820,74031.11%
73,70035,27624,30031.11%
68,95632,92422,68031.11%
68,63633,13222,82431.11%
73,93234,88424,03231.11%
248,72077,61253,46831.11%
60,84430,50021,01231.11%
45,53623,18415,97231.11%
179,38087,23260,10031.10%
124,48848,97633,74431.10%
97,77243,65230,07631.10%
107,08846,63632,13231.10%
77,72036,00024,80431.10%
179,32467,33246,39231.10%
61,08831,98822,04031.10%
161,11677,05253,09231.10%
136,11660,58841,74831.10%
71,13634,81223,98831.09%
75,95236,66825,26831.09%
76,47236,72425,30831.09%
70,34034,15223,53631.08%
97,29638,83626,76431.08%
75,56834,74423,94431.08%
77,94436,39225,08031.08%
67,73633,07222,79231.08%
163,52075,40451,96831.08%
195,37679,78054,98431.08%
79,88037,68425,97231.08%
387,468168,652116,23631.08%
75,84835,53624,49231.08%
101,81245,97631,68831.08%
85,28039,18027,00431.08%
75,11235,21624,27231.08%
73,93236,26024,99231.08%
69,36834,29223,63631.07%
69,13635,00024,12431.07%
225,93686,38059,54031.07%
68,65234,66823,89631.07%
86,03640,60427,98831.07%
240,70871,51649,29631.07%
72,83235,13624,22031.07%
145,68861,85242,63631.07%
66,65633,86423,34431.07%
332,110164,960113,71631.06%
69,18034,20023,57631.06%
67,74434,54823,81631.06%
84,14039,74027,39631.06%
95,54038,00426,20031.06%
95,54038,00426,20031.06%
65,92832,84022,64031.06%
64,24031,54021,74431.06%
106,90045,88831,63631.06%
77,12437,27225,69631.06%
86,79238,08426,25631.06%
80,03638,06026,24031.06%
59,41326,40418,20431.06%
76,82436,51625,17631.05%
57,00430,46421,00431.05%
102,15646,14431,81631.05%
155,80861,50042,40431.05%
83,04438,54426,57631.05%
68,42034,23223,60431.05%
78,53237,60825,93231.05%
87,56841,38828,54031.04%
66,80433,34822,99631.04%
75,23635,33624,36831.04%
74,94034,41223,73231.04%
84,70040,38027,84831.04%
65,30432,71222,56031.03%
111,41245,99231,72031.03%
174,50884,52458,29631.03%
64,48032,33222,30031.03%
80,28438,28826,40831.03%
111,10853,15236,66031.03%
67,08834,06023,49231.03%
86,88440,99628,27631.03%
64,38432,87622,67631.03%
87,50441,92828,92031.02%
67,68433,42023,05231.02%
65,72432,49222,41231.02%
69,40833,25622,94031.02%
59,61629,90420,62831.02%
82,44440,50427,94031.02%
143,18051,28035,37631.01%
117,96045,96831,71231.01%
189,11782,51256,92431.01%
197,60869,84848,18831.01%
81,28039,35627,15231.01%
76,12435,26824,33231.01%
100,86046,82832,30831.01%
69,62834,44423,76431.01%
72,23635,69624,62831.01%
116,78856,36438,88831.01%
81,48036,96425,50431.00%
77,78437,44425,83631.00%
84,50438,81226,78031.00%
76,76835,90024,77231.00%
62,98831,61621,81631.00%
194,50089,87262,01631.00%
290,716116,18880,17630.99%
104,57646,34431,98030.99%
75,65234,31623,68030.99%
74,69234,93624,10830.99%
149,11270,80448,86030.99%
162,15280,13655,30030.99%
102,55645,61231,48030.98%
95,57241,05628,33630.98%
78,99237,59625,94830.98%
161,89279,81655,08830.98%
68,28033,20822,92030.98%
67,20032,50022,43230.98%
146,99263,45243,79630.98%
93,44443,04429,71230.97%
226,196115,12479,46830.97%
58,96830,64821,15630.97%
95,98845,58031,46430.97%
93,08037,31625,76030.97%
65,54832,96422,75630.97%
261,86085,33258,90830.97%
70,34834,55623,85630.96%
105,35648,27633,32830.96%
110,58853,13636,68430.96%
57,97630,74821,22830.96%
76,02835,58024,56430.96%
84,94039,72827,42830.96%
162,02879,50854,89230.96%
82,97640,42827,91230.96%
82,97640,42827,91230.96%
68,59631,94022,05230.96%
94,24841,25628,48430.96%
76,73237,14825,64830.96%
86,42840,89628,23630.96%
82,84841,06428,35230.96%
82,84841,06428,35230.96%
179,12566,67646,03630.96%
179,12566,67646,03630.96%
121,55654,49237,62430.96%
72,15637,28025,74030.95%
275,232110,80476,50830.95%
57,63630,21620,86430.95%
57,05229,53220,39230.95%
114,86845,96031,73630.95%
88,28441,70828,80030.95%
104,88447,84833,04030.95%
75,68835,97224,84030.95%
137,36460,09241,49630.95%
96,20441,82828,88430.95%
101,05246,86032,36030.94%
81,62437,91626,18430.94%
79,64438,47226,56830.94%
69,51634,54423,85630.94%
93,44446,46432,08830.94%
258,44092,51663,89230.94%
78,64437,48025,88430.94%
78,56037,10825,62830.94%
80,12037,70426,04030.94%
241,10488,01660,78830.94%
71,00832,63622,54030.94%
224,76485,72859,20830.94%
76,12434,73223,98830.93%
91,47640,88828,24030.93%
91,47640,88828,24030.93%
130,46860,72841,94830.92%
138,01656,57639,08030.92%
114,32048,46833,48030.92%
270,896111,76077,20030.92%
58,96031,02021,42830.92%
92,69644,33230,62430.92%
165,94869,70848,15630.92%
114,14853,74437,12830.92%
102,45247,27632,66030.92%
76,50435,58024,58030.92%
75,15235,29624,38430.92%
81,91637,88426,17230.92%
167,05661,78842,68830.91%
160,97279,73655,08830.91%
58,45230,61621,15230.91%
84,31239,68827,42030.91%
182,47278,20054,02830.91%
76,33234,50023,83630.91%
79,22837,77626,10030.91%
67,95234,25623,66830.91%
106,92844,02830,42030.91%
76,55235,89224,80030.90%
96,65641,69228,80830.90%
119,32853,36836,87630.90%
95,90841,78428,87230.90%
76,42435,30024,39230.90%
116,56853,33236,85230.90%
106,42851,45635,55630.90%
77,58035,50824,53630.90%
255,17680,08055,33630.90%
142,61260,84042,04430.89%
76,30038,26026,44030.89%
71,38434,92024,13230.89%
72,29235,78824,73230.89%
69,29234,74024,00830.89%
56,88829,79620,59230.89%
76,55635,64024,63230.89%
78,83635,47224,51630.89%
70,97634,15623,60830.88%
80,50037,88826,18830.88%
610,156231,376159,92830.88%
106,53249,06833,91630.88%
219,02088,88861,44030.88%
91,27243,08429,78030.88%
74,54436,71225,37630.88%
67,28033,61623,23630.88%
108,68449,13633,96430.88%
67,26427,95619,32430.88%
99,59644,06030,45630.88%
65,04433,14022,90830.88%
65,24432,59622,53230.87%
68,19233,77623,34830.87%
121,92854,09237,39230.87%
77,51237,86026,17230.87%
75,00035,68424,66830.87%
76,27635,93224,84030.87%
123,89253,86837,24030.87%
81,70438,77226,80430.87%
93,89641,48428,68030.86%
80,46438,44026,57630.86%
90,20443,92430,36830.86%
72,63236,09624,95630.86%
85,39640,19227,78830.86%
88,08440,99628,34430.86%
97,52443,13629,82430.86%
90,30040,52028,01630.86%
90,30040,52028,01630.86%
81,20437,98026,26030.86%
68,44033,50823,16830.86%
74,45235,11624,28030.86%
87,18037,38825,85230.85%
120,38453,95637,30830.85%
82,82037,27225,77230.85%
197,89685,12458,86030.85%
68,38033,73623,32830.85%
85,51241,04028,38030.85%
77,47236,56825,28830.85%
68,22031,24021,60430.85%
199,173122,27284,56430.84%
67,60432,81622,69630.84%
111,00850,66835,04430.84%
95,95641,00428,36030.84%
99,36842,96429,71630.84%
68,30033,35223,06830.83%
109,76444,44430,74030.83%
69,86435,05224,24430.83%
62,23231,31621,66030.83%
63,90431,62821,87630.83%
259,59681,38056,28830.83%
68,74834,87224,12030.83%
150,62068,40047,31230.83%
166,63270,36048,66830.83%
71,09238,18426,41230.83%
80,16838,91226,91630.83%
179,56872,81650,36830.83%
180,78081,33256,26030.83%
79,51235,52824,57630.83%
123,94847,15632,62030.83%
111,25651,50435,62830.82%
71,37235,49224,55230.82%
67,94033,72823,33230.82%
69,00433,92423,46830.82%
207,67693,10464,40830.82%
91,39240,92028,30830.82%
91,39240,92028,30830.82%
159,32479,71655,14830.82%
93,04443,54430,12430.82%
83,12038,62826,72430.82%
83,22838,08426,34830.82%
83,87637,38425,86430.82%
105,45646,43232,12430.81%
74,87237,15225,70430.81%
86,78440,59228,08430.81%
73,23636,19225,04030.81%
102,69643,11229,82830.81%
304,47294,92465,67630.81%
68,88834,10423,59630.81%
69,05234,17223,64430.81%
64,68034,05623,56430.81%
74,94436,42025,20030.81%
66,95634,16423,64030.80%
68,88833,93223,48030.80%
71,68835,46024,54030.80%
64,58831,04421,48430.80%
75,30036,58025,31630.79%
110,62446,63632,27630.79%
86,99641,28428,57230.79%
74,44435,93224,86830.79%
85,96842,05229,10430.79%
78,20437,26025,78830.79%
102,68445,65631,60030.79%
101,95246,33232,06830.79%
149,10061,86042,81630.79%
101,97245,63231,58430.79%
86,45641,95629,04030.78%
78,23636,81225,48030.78%
75,29636,81225,48030.78%
83,37638,89226,92030.78%
141,60857,74039,96830.78%
94,03643,79630,31630.78%
81,95637,68826,08830.78%
69,18035,18024,35230.78%
84,84040,26427,87230.78%
72,64034,83224,11230.78%
84,63641,39628,65630.78%
64,68030,80421,32430.78%
272,140108,70075,24830.77%
63,95633,58823,25230.77%
78,96436,81225,48430.77%
83,94037,74826,13230.77%
83,40838,00826,31230.77%
253,316110,70076,63630.77%
257,008129,12489,39230.77%
90,22442,22429,23230.77%
91,36840,38027,95630.77%
91,36840,38027,95630.77%
68,73234,23223,70030.77%
101,68443,89230,38830.77%
136,23649,84834,51230.77%
190,20891,68863,48030.77%
70,96035,48424,56830.76%
84,32038,59226,72030.76%
146,86458,15240,26430.76%
146,86458,15240,26430.76%
60,25627,88019,30430.76%
73,83236,78825,47230.76%
96,18841,91229,02030.76%
78,31637,97226,29230.76%
75,03636,41225,21230.76%
79,94435,97224,90830.76%
68,14034,62023,97230.76%
196,20477,86453,91630.76%
103,82847,38032,80830.76%
103,54447,40832,82830.75%
121,23250,68835,10030.75%
72,08435,34024,47230.75%
60,90430,56821,16830.75%
67,44034,42023,83630.75%
67,02432,82022,72830.75%
93,74843,60430,19630.75%
100,82044,99631,16030.75%
101,34445,04031,19230.75%
383,552120,46083,42430.75%
84,44837,80826,18430.74%
63,52832,19222,29630.74%
146,43664,02844,34830.74%
247,04476,00852,64830.73%
82,84036,71625,43230.73%
68,12833,89223,47630.73%
73,31333,15222,96430.73%
236,12088,94861,61630.73%
165,60869,43648,10030.73%
74,45236,16425,05230.73%
191,16879,07254,77630.73%
58,00126,49218,35230.73%
76,39635,86824,84830.72%
146,52461,01642,27230.72%
76,48837,36025,88430.72%
63,88432,36022,42030.72%
109,02044,61630,91230.72%
78,36437,83226,21230.71%
107,85249,90834,58030.71%
72,72035,70024,73630.71%
134,54862,62443,39230.71%
66,49233,39623,14030.71%
84,35639,89627,64430.71%
82,00037,64426,08430.71%
78,76037,43625,94030.71%
302,84890,50462,71230.71%
125,17256,54839,18430.71%
142,36459,87241,48830.71%
106,16443,95630,46030.70%
77,12436,36425,20030.70%
74,61236,39225,22030.70%
78,82436,27625,14030.70%
214,51287,14860,39630.70%
100,54837,07225,69230.70%
123,10452,39636,31230.70%
81,38039,28827,22830.70%
22,73211,3767,88430.70%
176,31665,39645,32430.69%
69,38835,03224,28030.69%
231,792101,03270,02430.69%
68,64433,58823,28030.69%
82,92539,72827,53630.69%
74,22036,90025,57630.69%
70,73235,12824,34830.69%
58,10430,02020,80830.69%
78,11636,90425,58030.69%
122,51654,16437,54430.68%
351,252146,252101,37630.68%
351,252146,252101,37630.68%
70,59635,36824,51630.68%
68,94834,86024,16430.68%
70,29234,60023,98430.68%
68,91634,79624,12030.68%
80,87636,79225,50430.68%
92,43640,26027,90830.68%
73,72035,84424,84830.68%
69,78835,08824,32430.68%
91,74837,42425,94430.68%
114,37645,90031,82030.68%
161,29279,79255,31630.67%
67,16027,77619,25630.67%
135,74054,27637,62830.67%
87,94841,38028,68830.67%
84,97241,00428,42830.67%
263,184135,14493,69630.67%
79,62439,83227,61630.67%
66,99634,52423,93630.67%
68,74032,60822,60830.67%
85,72040,00427,73630.67%
63,20127,34018,95630.67%
102,46447,41632,87630.66%
81,29638,01626,36030.66%
69,07731,71621,99230.66%
68,86833,94823,54030.66%
94,84841,71228,92430.66%
69,05234,10823,65230.66%
82,10838,63626,79230.66%
84,68440,37628,00030.65%
69,67232,16822,30830.65%
116,72861,27242,49230.65%
162,78479,72855,29230.65%
107,26844,74031,02830.65%
128,24457,19239,66430.65%
146,55261,50042,65230.65%
77,66838,02026,36830.65%
86,14841,44428,74430.64%
165,26476,14452,81230.64%
71,36833,72023,38830.64%
78,35237,62426,09630.64%
106,44845,13231,30430.64%
205,55671,64849,69630.64%
96,67642,84829,72030.64%
66,04032,72022,69630.64%
75,10837,31625,88430.64%
81,32838,92427,00030.63%
86,76840,92428,38830.63%
61,83228,62419,85630.63%
68,24833,78423,43630.63%
248,56486,10059,72830.63%
103,08847,27632,79630.63%
134,29661,36842,57230.63%
82,18839,45627,37230.63%
92,17239,47227,38430.62%
77,99636,83625,55630.62%
66,95633,88423,50830.62%
75,56435,06024,32430.62%
84,44435,23224,44430.62%
78,04836,85625,57230.62%
76,60035,84024,86830.61%
78,00437,67226,14030.61%
73,28435,63624,72830.61%
102,89647,50432,96430.61%
103,32846,61632,34830.61%
75,03234,81624,16030.61%
68,66433,77223,43630.61%
96,40042,17629,26830.61%
79,80039,96827,73630.60%
104,83648,00833,31630.60%
80,65237,69626,16030.60%
97,62844,54830,91630.60%
110,45650,30034,90830.60%
77,26036,39625,26030.60%
72,28035,53624,66430.59%
94,26041,56428,84830.59%
101,35246,05231,96430.59%
69,72834,62424,03230.59%
121,73261,84842,92830.59%
106,10045,34831,47630.59%
165,24876,26052,93230.59%
161,10171,78849,82830.59%
94,42042,57629,55230.59%
62,04431,62021,94830.59%
95,76042,88029,76430.59%
186,03687,69660,87230.59%
95,71644,25630,72030.59%
67,40833,07622,96030.58%
283,896112,02077,76030.58%
260,437116,86081,12030.58%
129,04456,08838,93630.58%
81,19637,86826,28830.58%
78,85237,90826,31630.58%
72,84034,27223,79230.58%
67,38932,28422,41230.58%
185,34077,33653,68830.58%
76,36436,57625,39230.58%
114,20850,11634,79230.58%
91,65242,46429,48030.58%
77,55636,60425,41230.58%
83,41240,07227,82030.57%
95,10140,50428,12030.57%
1,469,776520,648361,46430.57%
71,99635,50824,65230.57%
70,26834,05623,64430.57%
66,52034,43623,90830.57%
89,46042,04029,18830.57%
80,82438,74426,90030.57%
66,66032,79222,76830.57%
80,83638,47226,71230.57%
101,44444,58430,95630.57%
71,62434,94024,26030.57%
212,02860,43241,96030.57%
69,63633,81623,48030.57%
121,39658,38440,54030.56%
84,69238,10026,45630.56%
57,75630,35221,07630.56%
73,72839,29227,28430.56%
181,28090,55262,88030.56%
88,86042,38429,43230.56%
166,12470,25248,78430.56%
77,34036,92825,64430.56%
102,04047,63633,08030.56%
77,67637,40025,97230.56%
79,44836,91625,63630.56%
79,09238,64426,83630.56%
82,47240,21627,92830.56%
248,408116,64481,00430.55%
258,628133,89292,98430.55%
75,35237,11625,77630.55%
78,14438,25626,56830.55%
197,25295,82466,54830.55%
64,14438,61226,81630.55%
160,15680,28855,76030.55%
88,60841,31228,69230.55%
121,03653,52037,17230.55%
156,80065,51645,50430.55%
82,16840,59628,19630.54%
74,67636,23625,16830.54%
80,19638,45226,70830.54%
78,64438,42826,69230.54%
110,57650,34834,97230.54%
85,37640,92028,42430.54%
101,82846,21232,10030.54%
82,26439,60027,50830.54%
75,45635,92024,95230.53%
102,41647,92033,28830.53%
91,98840,70428,27630.53%
78,52837,06425,74830.53%
82,10439,58027,49630.53%
83,90442,00429,18030.53%
85,87641,41628,77230.53%
85,56841,07628,53630.53%
90,29242,90429,80830.52%
200,42072,69650,50830.52%
105,75247,78833,20430.52%
83,01240,80828,35630.51%
83,01240,80828,35630.51%
80,06040,61228,22030.51%
87,64038,80826,96830.51%
87,33240,58028,20030.51%
138,24458,71640,80430.51%
84,26837,58026,11630.51%
80,97239,08827,16430.51%
79,02439,16827,22030.50%
72,88835,68024,79630.50%
103,55646,94432,62430.50%
80,57637,68826,19230.50%
69,11633,88823,55230.50%
211,120112,27678,03230.50%
67,44833,32823,16430.50%
61,79326,88818,68830.50%
97,91645,39631,55230.50%
112,37251,12835,53630.50%
84,58840,45228,11630.50%
76,75237,84426,30430.49%
142,94063,94044,44430.49%
61,45631,56421,94030.49%
91,34044,08030,64030.49%
107,01249,44834,37230.49%
152,02464,66844,95230.49%
67,04033,78423,48430.49%
101,77646,32832,20430.49%
92,34943,04829,92430.49%
87,00041,77629,04030.49%
156,83279,40855,20030.49%
180,80477,62453,96030.49%
102,41247,84033,25630.48%
78,06438,26426,60030.48%
79,49637,71626,22030.48%
65,83633,24423,11230.48%
54,60825,70017,86830.47%
92,57241,86029,10430.47%
109,50049,75234,59230.47%
79,18839,17227,23630.47%
79,34837,80826,28830.47%
86,03241,40828,79230.47%
68,42434,33223,87230.47%
130,80461,90443,04430.47%
81,16039,16827,23630.46%
101,98447,71633,18030.46%
92,47341,99229,20030.46%
104,08447,77233,22030.46%
74,74835,78424,88430.46%
92,22042,87629,81630.46%
101,10045,09631,36030.46%
71,10434,46023,96430.46%
141,13276,04052,88030.46%
159,94079,73655,45230.46%
263,91695,70866,56030.46%
81,00838,01226,43630.45%
67,97633,39223,22430.45%
96,19644,23230,76430.45%
107,04049,59234,49230.45%
97,84844,86431,20430.45%
84,71241,47628,84830.45%
95,70442,43629,51630.45%
109,78449,90034,70830.44%
72,74435,84424,93230.44%
96,13238,47226,76030.44%
89,45242,86429,81630.44%
71,54036,17625,16430.44%
79,15637,74026,25230.44%
80,62838,75226,95630.44%
80,30438,42426,72830.44%
125,41257,50840,00430.44%
69,31633,93223,60430.44%
68,54434,39223,92430.44%
66,30434,10423,72430.44%
77,53637,18025,86430.44%
113,56447,46033,01630.43%
71,51635,25224,52430.43%
73,87235,51624,70830.43%
84,30441,06428,56830.43%
72,57635,22824,50830.43%
67,90434,44023,96030.43%
81,53238,56826,83230.43%
71,44435,53224,72030.43%
140,85658,60840,77630.43%
39,87620,58814,32430.43%
84,01639,00827,14030.42%
88,99642,79629,77630.42%
120,93654,25237,74830.42%
113,68448,96834,07230.42%
72,39237,09625,81230.42%
73,15235,34824,59630.42%
584,048221,772154,31630.42%
80,43238,24426,61230.42%
75,60435,36424,60830.42%
77,92035,31224,57230.41%
88,80841,49628,87630.41%
109,28849,50834,45230.41%
90,88042,84029,81230.41%
48,60822,37615,57230.41%
155,36461,86843,05630.41%
112,96446,99232,70430.41%
87,96836,24425,22430.41%
69,62833,81223,53230.40%
79,96438,99627,14030.40%
173,77271,28449,61230.40%
97,47245,26031,50030.40%
92,64041,92029,17630.40%
75,11235,46024,68030.40%
105,78943,55230,31230.40%
132,97260,74042,27630.40%
100,14439,29227,34830.40%
69,56034,97624,34430.40%
77,88437,04425,78430.40%
69,59233,88823,58830.39%
131,39662,81643,72430.39%
113,96847,56433,10830.39%
67,72433,54823,35230.39%
84,45239,86827,75230.39%
89,88443,67230,40030.39%
84,35640,26428,02830.39%
81,48839,32027,37230.39%
159,54879,76055,52430.39%
202,60858,39640,65230.39%
69,18034,53224,04030.38%
24,32013,8769,66030.38%
62,83237,77226,29630.38%
103,74048,29233,62030.38%
72,81636,35225,30830.38%
76,98835,57624,76830.38%
106,90145,76831,86430.38%
80,52038,94827,11630.38%
87,86137,38426,02830.38%
114,35252,41236,49230.37%
209,83690,62863,10030.37%
114,02854,25637,77630.37%
114,02854,25637,77630.37%
74,84436,26825,25230.37%
88,60441,37228,80830.37%
79,28038,60826,88430.37%
113,95249,30434,33230.37%
73,01635,13224,46430.37%
73,26835,02824,39230.36%
77,34437,06025,80830.36%
72,44435,66424,83630.36%
81,14439,55227,54430.36%
82,20439,77627,70030.36%
79,36038,73626,97630.36%
268,360112,88878,61630.36%
80,83237,75226,29230.36%
93,95639,90027,78830.36%
79,78037,86026,36830.35%
83,19638,88827,08430.35%
76,89636,88825,69230.35%
76,11633,29223,18830.35%
111,44850,36035,07630.35%
114,54853,48437,25230.35%
74,05636,61625,50430.35%
79,15238,60826,89230.35%
84,42440,77228,40030.34%
77,68038,00426,47230.34%
83,24041,07628,61230.34%
83,24041,07628,61230.34%
75,65237,49626,12030.34%
80,42837,80026,33230.34%
69,05234,86024,28430.34%
96,34044,81631,22030.34%
68,15636,40425,36030.34%
81,22039,74027,68430.34%
87,46440,80828,42830.34%
101,10044,50031,00030.34%
153,77268,48447,70830.34%
80,78438,17226,59230.34%
64,51633,94023,64430.34%
128,41653,23237,08430.34%
184,90077,50853,99630.33%
242,25282,64057,57230.33%
86,09240,27228,05630.33%
68,10833,23223,15230.33%
89,53642,99229,95230.33%
67,31228,55219,89230.33%
68,70834,50024,03630.33%
263,040126,48888,12430.33%
92,75240,43628,17230.33%
125,78857,56840,10830.33%
97,27345,52831,72030.33%
71,10434,44023,99630.33%
108,23644,92831,30430.32%
180,25675,18052,38430.32%
105,00446,60832,47630.32%
83,08040,22428,02830.32%
71,58835,62024,82030.32%
129,08861,99243,19630.32%
108,79646,71632,55230.32%
142,92862,03643,22830.32%
102,33645,30831,57230.32%
105,09247,38033,01630.32%
97,40437,92026,42430.32%
99,33243,70030,45230.32%
84,76440,95628,54030.32%
93,64440,50828,22830.31%
90,90842,62029,70030.31%
72,47634,78424,24030.31%
91,19641,44828,88430.31%
185,55288,31661,54830.31%
77,16038,44426,79230.31%
103,28445,83631,94430.31%
92,38444,46830,99230.30%
140,10868,58447,80030.30%
147,58862,44843,52430.30%
102,31239,34027,42030.30%
70,86435,77624,93630.30%
68,55234,44424,00830.30%
67,82528,95220,18030.30%
118,90457,04839,76430.30%
118,90457,04839,76430.30%
85,58840,26828,06830.30%
93,34842,93629,92830.30%
343,496122,78885,58830.30%
106,84448,76033,98830.30%
81,39639,70427,67630.29%
81,39639,70427,67630.29%
62,96430,52821,28030.29%
86,53241,09228,64430.29%
111,02849,54834,54030.29%
94,37642,56429,67230.29%
77,48436,50425,44830.29%
80,93239,50427,54030.29%
69,72035,94025,05630.28%
81,51639,61227,61630.28%
121,28052,67636,72430.28%
81,32439,06027,23230.28%
109,60048,96834,14030.28%
80,98839,35627,44030.28%
92,26439,32427,42030.27%
86,64841,78429,13630.27%
84,58840,41228,18030.27%
71,56835,00824,41230.27%
79,10038,48426,83630.27%
69,88035,04824,44030.27%
86,38041,04828,62430.27%
79,17237,65226,25630.27%
80,14437,61626,23230.26%
39,87620,58014,35230.26%
75,40437,06825,85230.26%
102,18445,80831,94830.26%
65,33633,48823,35630.26%
81,24837,58826,21630.25%
96,00441,60829,02030.25%
75,75636,68025,58430.25%
77,65236,44425,42030.25%
96,97243,86430,59630.25%
94,48840,26828,08830.25%
80,48037,88826,42830.25%
87,07241,63229,04030.25%
121,60858,60040,87630.25%
132,65256,84439,65230.24%
159,81676,47253,34430.24%
89,89644,22830,85230.24%
71,42433,94023,67630.24%
121,18057,48440,10030.24%
67,31633,20023,16030.24%
81,98039,65627,66430.24%
110,91651,08835,64030.24%
343,496122,78885,66030.24%
90,49639,92427,85230.24%
71,09635,30824,63230.24%
101,82444,62431,13230.23%
210,92488,46861,72030.23%
80,46038,23626,67630.23%
127,12145,75231,92030.23%
127,12145,75231,92030.23%
111,22450,05234,92030.23%
152,55660,24042,02830.23%
81,48439,20427,35230.23%
133,20063,39244,22830.23%
101,40446,80032,65230.23%
22,93214,56810,16430.23%
75,14836,52025,48030.23%
147,12064,29644,86030.23%
80,89638,20426,65630.23%
162,42893,70465,38030.23%
101,89245,34431,64030.22%
91,68840,71228,40830.22%
111,14850,13634,98430.22%
231,008116,80481,50430.22%
79,85638,88827,13630.22%
114,09653,63637,42830.22%
62,20430,26021,11630.22%
67,38033,98023,71230.22%
68,25233,80823,59230.22%
79,13237,96826,49630.21%
109,90049,76434,72830.21%
85,12838,26026,70030.21%
104,64131,58822,04430.21%
153,29278,73254,94430.21%
75,01235,56024,81630.21%
90,50043,67630,48030.21%
90,34041,44028,92030.21%
118,34048,27233,68830.21%
96,60444,97631,38830.21%
189,80583,04457,95630.21%
146,08863,74044,48430.21%
68,42833,68423,50830.21%
71,42434,83624,31230.21%
110,94851,22835,75230.21%
79,20035,70024,91630.21%
125,11252,60036,71230.21%
133,79264,66845,13630.20%
64,05233,25623,21230.20%
123,37252,44836,60830.20%
78,20836,39625,40430.20%
88,37241,44428,92830.20%
282,66090,50463,17230.20%
85,26441,52428,98430.20%
99,93645,16831,52830.20%
93,84439,72427,72830.20%
105,61255,11638,47230.20%
112,35650,57635,30430.20%
70,15634,45624,05230.20%
116,13248,18433,63630.19%
73,93635,13624,52830.19%
156,59679,17655,27230.19%
98,81646,21632,26430.19%
102,80848,56433,90430.19%
157,32467,54447,15630.18%
92,53640,75628,45630.18%
21,28812,3808,64430.18%
92,49644,61631,15230.18%
99,22839,92427,87630.18%
66,82028,59219,96430.18%
79,72435,89625,06430.18%
83,39240,45628,24830.18%
83,39240,45628,24830.18%
126,04857,51640,16030.18%
106,48049,15234,32030.18%
57,11726,08818,21630.17%
72,92836,72025,64030.17%
106,16445,08831,48430.17%
76,76837,65226,29230.17%
74,72437,21625,98830.17%
71,63633,92823,69230.17%
90,12443,08030,08430.17%
73,94836,45225,45630.17%
94,57242,46029,65230.16%
82,29639,91627,87630.16%
81,54840,01227,94430.16%
82,69638,60826,96430.16%
94,26841,10428,70830.16%
67,62833,04023,07630.16%
92,93641,17228,75630.16%
71,16435,84025,03230.16%
100,58037,89626,46830.16%
82,74038,94427,20030.16%
101,55647,20832,97230.16%
81,06436,48425,48430.15%
71,28034,68024,22430.15%
73,48436,43225,44830.15%
94,12038,35626,79230.15%
96,24044,96831,41230.15%
81,24840,44428,25230.15%
80,77639,87627,85630.14%
126,99257,44840,13230.14%
89,02039,34827,48830.14%
74,14036,58825,56030.14%
89,75642,89229,96430.14%
70,56531,93222,30830.14%
199,81297,25667,94430.14%
78,61235,26424,63630.14%
73,96436,46025,47230.14%
67,84034,15223,86030.14%
92,94843,40430,32430.14%
93,10442,64829,79630.14%
78,97236,02825,17230.13%
79,70438,31226,76830.13%
120,71252,29236,53630.13%
70,36434,67624,22830.13%
98,40846,54832,52430.13%
73,92036,60425,58030.12%
86,66136,31225,37630.12%
114,78849,07634,29630.12%
124,24455,04038,46430.12%
91,77640,50028,30430.11%
74,50035,77225,00030.11%
81,84038,55226,94430.11%
85,77235,65624,92030.11%
95,55244,53231,12430.11%
68,58833,85223,66030.11%
66,26033,92023,70830.11%
72,52036,46025,48430.10%
211,58472,96050,99630.10%
110,90050,12035,03230.10%
180,83274,10451,79630.10%
122,76061,85643,23630.10%
148,25660,03641,96430.10%
148,25660,03641,96430.10%
78,66037,11625,94430.10%
133,27261,08042,69630.10%
82,90840,52428,32830.10%
82,90840,52428,32830.10%
76,72038,54426,94430.10%
35,24418,86013,18430.10%
90,94042,56029,75230.09%
110,67650,12435,04030.09%
85,68042,49629,70830.09%
81,68039,52027,62830.09%
102,66046,83232,74030.09%
184,97279,49655,57630.09%
72,43635,65624,92830.09%
116,44049,19234,39230.09%
71,72035,43224,77230.09%
171,55675,20452,58030.08%
208,37684,31658,95230.08%
208,37684,31658,95230.08%
208,37684,31658,95230.08%
67,46433,98823,76430.08%
83,70838,02026,58430.08%
84,21640,28428,16830.08%
105,39247,61233,29230.08%
81,94438,83627,15630.08%
81,32838,94427,23230.07%
81,32838,94427,23230.07%
67,28834,10423,84830.07%
76,52838,00426,57630.07%
76,86436,22425,33230.07%
267,096106,12074,21230.07%
153,21667,44047,16430.07%
197,59294,95666,40830.06%
74,20435,22024,63230.06%
100,01643,07230,12430.06%
92,54444,85631,37230.06%
71,45235,29224,68430.06%
131,05259,59241,68030.06%
112,75651,52836,04030.06%
64,05632,76422,91630.06%
68,96434,48424,12030.05%
187,39380,71256,45630.05%
152,21277,40054,14030.05%
82,60040,50428,33230.05%
133,44854,61638,20430.05%
107,06450,83635,56030.05%
103,02847,85633,47630.05%
84,58439,89627,90830.05%
84,52041,64029,12830.05%
120,12052,63636,82030.05%
76,68836,88825,80430.05%
112,82451,76436,21230.04%
71,60436,53625,56030.04%
86,30441,59629,10030.04%
198,32894,95666,43230.04%
96,82843,13230,17630.04%
99,50037,68826,36830.04%
65,28531,39221,96430.03%
74,44437,08025,94430.03%
62,89631,86022,29230.03%
63,68433,55223,47630.03%
73,91236,49625,53630.03%
74,17636,93625,84430.03%
71,38835,95225,15630.03%
64,73234,12823,88030.03%
86,74841,50829,04430.03%
133,74063,91644,72430.03%
61,70032,13222,48430.03%
187,74863,17244,20430.03%
84,91640,27228,18030.03%
85,78841,87229,30030.02%
82,89239,60827,71630.02%
46,78823,28816,29630.02%
46,84023,52816,46430.02%
112,30451,70836,18430.02%
206,07779,25655,46430.02%
132,07660,24442,16030.02%
70,10826,78418,74430.02%
75,80838,28826,79630.01%
71,14433,50423,44830.01%
87,79640,96828,67230.01%
120,96453,15237,20030.01%
135,82061,67643,16830.01%
74,43636,40425,48030.01%
103,16447,56433,29230.01%
102,06848,02033,61230.00%
81,20040,00828,00430.00%
85,84041,58429,10830.00%
85,86441,61229,12830.00%
85,60441,61229,12830.00%
90,90042,73229,91230.00%
95,65643,62830,54030.00%
207,38491,18463,83230.00%
90,59242,56829,80029.99%
102,50447,51633,26429.99%
92,06042,23629,56829.99%
76,42036,51625,56429.99%
84,23240,38428,27229.99%
98,54044,20030,94429.99%
116,06849,36434,56029.99%
73,06035,93625,16029.99%
84,89641,31228,92429.99%
367,572119,02883,33629.99%
95,29242,64829,86029.98%
86,76042,40829,69229.98%
57,81629,28420,50429.98%
71,69235,56824,90429.98%
211,16872,80850,98029.98%
92,86044,95231,47629.98%
135,59658,80441,17629.98%
126,66855,51238,87229.98%
75,18035,89625,13629.98%
112,06849,94834,97629.98%
115,20852,35236,66029.97%
96,16443,97230,79229.97%
76,80036,23225,37229.97%
92,60839,14427,41229.97%
135,87250,36035,26829.97%
80,44038,49626,96029.97%
81,54438,36426,86829.97%
85,42841,84829,30829.97%
95,33637,98026,60029.96%
86,16440,46428,34029.96%
111,12850,86435,62429.96%
85,96041,56029,10829.96%
151,12066,11246,30429.96%
149,71666,78046,77229.96%
74,47236,99625,91229.96%
116,55649,56034,71229.96%
81,48838,72027,12029.96%
124,22055,58438,93229.96%
75,91638,26826,80429.96%
104,06448,36433,87629.96%
168,09275,08852,59629.95%
201,66087,86861,54829.95%
220,22489,43262,64429.95%
220,22489,43262,64429.95%
62,83630,02021,02829.95%
115,49248,97234,30429.95%
96,40042,88430,04029.95%
116,86849,14034,42429.95%
138,24855,15238,63629.95%
302,380148,160103,79229.95%
470,708222,416155,81229.95%
89,50443,49630,47229.94%
76,68038,38026,88829.94%
99,64846,35632,47629.94%
85,60041,24028,89229.94%
76,68437,11226,00029.94%
86,92140,02828,04429.94%
168,80567,40447,22429.94%
168,80567,40447,22429.94%
95,45644,90831,46429.94%
78,93637,82826,50429.94%
83,14439,67227,79629.94%
73,84434,89224,44829.93%
64,45632,22022,57629.93%
76,32837,96826,60429.93%
108,86450,50435,38829.93%
89,39242,94030,08829.93%
122,00852,92437,08429.93%
133,31259,88841,96429.93%
76,46838,73227,14029.93%
84,64841,26028,91229.93%
82,40039,09627,39629.93%
99,23645,11231,61229.93%
90,49643,24430,30429.92%
71,98036,20025,36829.92%
88,84043,32830,36429.92%
194,06070,98849,74829.92%
64,06834,13623,92429.92%
96,52445,02031,55229.92%
112,14446,80032,80029.91%
74,29637,40026,21229.91%
111,80046,82832,82029.91%
115,94853,74437,66829.91%
112,38851,90036,37629.91%
115,04453,33237,38029.91%
66,22834,13223,92429.91%
39,87620,58414,42829.91%
88,95243,26830,32829.91%
101,43644,12430,92829.91%
258,044121,55285,20029.91%
107,24048,82034,22029.91%
98,93646,50832,60029.90%
226,77795,91667,23629.90%
130,23259,19641,49629.90%
279,028136,91295,97629.90%
111,14049,72834,86029.90%
25,10414,43610,12029.90%
107,90443,92430,79229.90%
114,66453,19637,29229.90%
91,76842,25229,62029.90%
132,41656,56839,65629.90%
124,08857,14440,06029.90%
91,07241,42429,04029.90%
73,66036,64825,69229.90%
77,93637,61226,36829.89%
81,62040,98428,73229.89%
63,59630,24021,20029.89%
67,56834,10823,91229.89%
91,10441,92429,39229.89%
74,67636,57225,64029.89%
200,87687,62461,43229.89%
200,87687,62461,43229.89%
89,51243,18430,27629.89%
72,78035,89225,16429.89%
88,48043,32030,37229.89%
83,68839,64027,79229.89%
99,04842,76029,98029.89%
87,02835,42824,84029.89%
125,53256,22839,42429.89%
76,96037,31626,16429.89%
75,62036,19225,37629.89%
68,74836,74425,76429.88%
79,16435,95625,21229.88%
100,63645,95632,22429.88%
97,78045,89232,18029.88%
95,93644,29231,06029.87%
73,84836,92825,89629.87%
114,17651,51236,12429.87%
85,75240,60028,47229.87%
86,07640,98028,74029.87%
79,82037,26026,13229.87%
75,88436,27225,44029.86%
69,78436,50025,60029.86%
198,70986,14060,42029.86%
117,02055,16038,69229.85%
102,79644,21631,01629.85%
76,44439,02027,37229.85%
90,46538,86027,26029.85%
145,04463,38444,46429.85%
132,86061,62043,22829.85%
151,82077,43654,32429.85%
78,90038,58427,06829.85%
89,63243,47630,50029.85%
84,84041,64029,21229.85%
80,49239,48427,70029.85%
254,568122,72886,10029.84%
94,46043,53630,54429.84%
81,76439,74427,88429.84%
86,45642,76030,00029.84%
101,86046,79632,83229.84%
94,04438,39226,93629.84%
180,39682,34857,77629.84%
92,64442,80430,03229.84%
74,34036,81225,82829.84%
92,92046,08032,33229.84%
83,55639,98028,05229.83%
107,04052,53236,86029.83%
89,40441,24828,94429.83%
93,40841,88029,38829.83%
27,02816,46811,55629.83%
73,48036,98825,95629.83%
85,42840,14028,16829.83%
151,38464,80445,47629.83%
79,23637,74026,48429.83%
73,16036,25225,44029.82%
77,16838,40026,94829.82%
125,39652,44436,80429.82%
79,35638,76427,20429.82%
106,34448,85234,28429.82%
71,63236,55225,65229.82%
81,68039,34427,61229.82%
73,16834,97224,54429.82%
136,32861,50843,16829.82%
125,13659,15641,52029.81%
163,34477,01654,05629.81%
85,25641,38029,04429.81%
90,59241,56829,17629.81%
186,25268,12447,81629.81%
114,51651,76836,33629.81%
89,22839,26427,56029.81%
96,74046,56432,68429.81%
100,80845,56031,98029.81%
129,42855,10438,68029.81%
64,16432,27622,65629.81%
199,74487,27661,26429.80%
199,74487,27661,26429.80%
82,21234,14423,96829.80%
104,13649,47234,72829.80%
103,17248,24033,86429.80%
106,16848,56434,09229.80%
60,06031,12821,85229.80%
103,59747,52033,36029.80%
89,50843,36030,44029.80%
71,59635,24024,74029.80%
105,80439,17627,50429.79%
113,24846,59232,71229.79%
79,03239,11627,46429.79%
101,75248,58434,11229.79%
112,13252,34436,75229.79%
89,98841,60429,21229.79%
86,17640,86828,69629.78%
97,77244,36031,14829.78%
85,93241,31229,00829.78%
88,11643,11230,27229.78%
96,44043,82430,77229.78%
62,22831,80422,33229.78%
112,94451,82036,38829.78%
107,80046,93232,95629.78%
114,04452,92837,16829.78%
98,49643,76830,73629.78%
74,22436,81225,85229.77%
89,64441,03228,81629.77%
70,80035,63225,02429.77%
83,27639,44827,70429.77%
91,14835,59224,99629.77%
91,14835,59224,99629.77%
120,98857,44040,34029.77%
111,00851,27636,01229.77%
89,28840,72828,60429.77%
270,46094,20866,16429.77%
86,55639,74827,91629.77%
91,58043,32430,42829.77%
67,44834,34824,12429.77%
76,81638,52827,06029.77%
148,22863,71244,74829.77%
468,808217,412152,70029.76%
74,34036,87625,90029.76%
74,49237,30826,20429.76%
70,11636,80025,84829.76%
82,14040,00028,09629.76%
75,60838,32026,91629.76%
80,55239,43627,70029.76%
164,87677,74854,61229.76%
104,02048,87634,33229.76%
235,27690,29263,42429.76%
81,71636,25625,46829.76%
80,17238,38426,96429.75%
74,31636,36825,54829.75%
66,41731,78422,32829.75%
115,89653,09637,30029.75%
97,65644,04830,94429.75%
87,66042,88030,12429.75%
125,72465,22845,82429.75%
100,36443,27230,40029.75%
91,73241,96829,48429.75%
279,964113,94080,04829.75%
91,87241,34029,04429.74%
73,93636,87625,90829.74%
73,93237,24026,16429.74%
63,44033,00423,18829.74%
47,30822,78416,00829.74%
63,35729,45620,69629.74%
125,86455,98039,33229.74%
115,00853,30437,45229.74%
142,86457,02040,06429.74%
96,26445,11631,70029.74%
74,94037,14026,09629.74%
85,97640,92028,75229.74%
112,78046,81232,89229.74%
77,41237,46426,32429.74%
77,43237,17226,12029.73%
97,91246,30832,54029.73%
132,37263,46444,59629.73%
80,87638,77627,24829.73%
71,15635,92425,24429.73%
88,42442,20829,66029.73%
85,29241,56429,20829.73%
75,14837,04826,03629.72%
140,32861,56843,26829.72%
75,50837,85626,60429.72%
90,87242,44829,83229.72%
77,52838,12826,79629.72%
76,40437,55226,39229.72%
74,11234,22824,05629.72%
322,552135,78895,43629.72%
85,34039,77627,95629.72%
77,89638,92827,36029.72%
91,37641,98429,50829.72%
85,27241,24428,98829.72%
81,34040,02028,12829.72%
93,23242,67229,99229.72%
84,77241,12428,90429.72%
110,86451,20835,99229.71%
91,69636,91225,94429.71%
104,17249,55634,83229.71%
104,17249,55634,83229.71%
102,58848,00833,74429.71%
102,15248,03633,76429.71%
83,64040,74028,63629.71%
70,59235,34424,84429.71%
70,42035,53624,98029.71%
39,28418,81213,22429.70%
116,58449,19234,58029.70%
95,06043,74030,74829.70%
65,95633,75223,72829.70%
277,18087,42461,46029.70%
117,40449,55234,83629.70%
197,72471,75250,44429.70%
89,24843,52030,59629.70%
102,92848,23633,91229.70%
96,43644,62831,37629.69%
165,78471,44850,23229.69%
79,45635,49624,95629.69%
138,83664,06445,04429.69%
196,22071,94850,58829.69%
78,64037,90426,65229.69%
140,84856,56839,77629.68%
65,40130,25221,27229.68%
124,74055,87239,28829.68%
111,60451,54836,24829.68%
112,86051,72436,37229.68%
101,08043,61230,66829.68%
76,79638,77627,26829.68%
71,62836,05625,35629.68%
104,39244,50431,30029.67%
71,78836,02425,33629.67%
84,06838,61627,16029.67%
77,57637,41626,31629.67%
94,25638,95627,40029.66%
93,56842,88030,16029.66%
249,428121,84485,70029.66%
249,428121,84485,70029.66%
71,47635,85625,22029.66%
85,98841,17228,96029.66%
85,68936,45225,64029.66%
122,56859,82442,08029.66%
117,18453,35237,52829.66%
143,09664,74845,54429.66%
76,98038,92427,38029.66%
76,26437,14426,12829.66%
110,42051,14435,97629.66%
82,89240,07228,18829.66%
98,95247,23633,22829.66%
200,35287,69261,68829.65%
200,35287,69261,68829.65%
125,79252,43236,88429.65%
121,30453,80837,85229.65%
76,92837,02826,04829.65%
112,24051,06035,92029.65%
111,74049,67234,94429.65%
99,60438,08426,79229.65%
99,70047,74433,58829.65%
83,85242,25629,72829.65%
77,79238,63227,18029.64%
75,40037,58026,44029.64%
162,16861,56043,31229.64%
162,16861,56043,31229.64%
98,41637,69226,52029.64%
94,69644,29231,16429.64%
125,79252,43236,89229.64%
117,20049,32834,70829.64%
32,86015,36010,80829.64%
53,35225,26817,78029.63%
136,90062,05243,66429.63%
147,01661,84043,51629.63%
115,98554,22838,16029.63%
83,66441,60829,28029.63%
82,50434,32024,15229.63%
106,56454,81638,57629.63%
61,80528,80020,26829.63%
72,64435,62025,06829.62%
57,85627,20819,14829.62%
113,07647,03233,10029.62%
61,80927,91219,64429.62%
201,33287,59661,65229.62%
98,68045,96032,34829.62%
77,34437,70826,54029.62%
62,81729,24020,58029.62%
52,58024,39217,16829.62%
87,75641,86029,46429.61%
82,35240,01228,16429.61%
85,72040,04028,18429.61%
73,10036,85225,94029.61%
91,32444,33631,20829.61%
62,32028,64420,16429.60%
138,32461,35643,19229.60%
24,78814,22810,01629.60%
77,78438,60427,17629.60%
86,66039,95628,12829.60%
226,772118,12883,16029.60%
70,60436,16025,45629.60%
106,94443,97230,95629.60%
139,72855,75639,25229.60%
236,660122,72486,40029.60%
85,21241,32829,09629.60%
75,29238,02026,76829.59%
89,18842,50829,92829.59%
49,79225,03217,62429.59%
221,73295,77667,43229.59%
85,53638,90027,38829.59%
112,50451,62036,34429.59%
117,17649,50034,85229.59%
115,83254,54438,40429.59%
106,93652,31636,83629.59%
145,06466,12046,55629.59%
176,02871,32850,22429.59%
176,02871,32850,22429.59%
82,99240,11228,24429.59%
83,08840,91228,80829.59%
168,53672,60451,12429.59%
84,55238,52027,12429.58%
93,01242,36029,82829.58%
112,04452,16436,73229.58%
100,97248,67634,27629.58%
101,31244,42431,28429.58%
110,69246,76432,93229.58%
89,01236,17625,47629.58%
75,36037,09626,12429.58%
77,06838,72427,27229.57%
77,83637,96826,74029.57%
132,66061,87243,57629.57%
93,70444,00430,99229.57%
96,41245,20831,84029.57%
120,00457,92440,79629.57%
77,64838,36427,02029.57%
96,80046,38032,66829.56%
104,18041,90429,51629.56%
128,37658,07640,90829.56%
88,79638,87627,38429.56%
113,34052,85637,23229.56%
70,72033,69623,73629.56%
107,67249,74835,04429.56%
116,56853,17237,45629.56%
103,93643,32030,51629.56%
103,93643,32030,51629.56%
164,01668,45248,22029.56%
97,56845,25631,88029.56%
88,42839,46427,80029.56%
185,85686,99661,28429.56%
532,064241,776170,32429.55%
138,36458,94841,52829.55%
214,92882,81258,34029.55%
65,20129,36020,68429.55%
115,68452,82037,21229.55%
84,31642,38429,86029.55%
143,47664,96445,76829.55%
91,95244,26831,18829.55%
271,832106,58475,09229.55%
22,56014,60810,29229.55%
302,664141,61699,77629.54%
71,43634,70024,44829.54%
71,47633,82023,82829.54%
191,49293,32865,75629.54%
226,87398,88069,66829.54%
139,22462,82444,26429.54%
144,97655,67639,22829.54%
91,80843,85630,90029.54%
149,00460,70042,76829.54%
112,54452,75237,16829.54%
196,74095,16067,04829.54%
146,80861,92443,63229.54%
68,99228,79220,28829.54%
106,90454,70038,54429.54%
124,39651,99236,63629.54%
132,28461,46043,30829.53%
138,66464,08845,16029.53%
72,72835,56825,06429.53%
133,62465,22445,96429.53%
124,39651,99236,64029.53%
83,40440,53628,56829.52%
28,43616,19211,41229.52%
77,77638,71227,28429.52%
106,33250,70435,73629.52%
106,33250,70435,73629.52%
197,77279,50456,03629.52%
197,77279,50456,03629.52%
144,32465,29246,02029.52%
109,84835,10024,74029.52%
91,53644,03231,03629.51%
164,98875,05652,90429.51%
93,00843,62830,75229.51%
83,77640,04028,22429.51%
174,60876,36853,83229.51%
140,36461,24443,17229.51%
107,93251,67636,42829.51%
194,06477,94854,94829.51%
194,06477,94854,94829.51%
78,02837,51226,44429.51%
85,22842,50429,96429.50%
78,68038,10026,86029.50%
94,13644,50031,37229.50%
77,48837,24826,26029.50%
135,76863,20444,56029.50%
81,20437,37226,34829.50%
98,77646,22832,59229.50%
189,23660,25242,48029.50%
98,52444,92831,67629.50%
130,99659,30441,81229.50%
124,41252,58037,07229.49%
64,48832,79623,12429.49%
75,83636,39225,66029.49%
134,21661,14843,11629.49%
97,73247,89633,77229.49%
206,41290,04863,49629.49%
126,01259,20041,74429.49%
94,84445,56832,13229.49%
78,10038,62427,23629.48%
111,60452,34036,90829.48%
73,65236,91626,03229.48%
91,34443,28030,52029.48%
81,84439,93228,16029.48%
76,31636,17625,51229.48%
105,76046,94033,10429.48%
135,74861,36843,28029.47%
94,68443,11630,40829.47%
87,27642,22429,78029.47%
76,41638,42427,10029.47%
95,14042,55630,01629.47%
112,56452,10036,74829.47%
96,82046,16832,56429.47%
116,16537,95626,77229.47%
96,26847,05233,18829.47%
45,24020,71614,61229.47%
133,66457,40040,48829.46%
81,80538,58427,21629.46%
93,93243,74830,86029.46%
90,94844,58431,45229.45%
84,74438,56827,20829.45%
77,57637,56426,50029.45%
79,41240,50028,57229.45%
111,92046,68032,93229.45%
127,46058,77241,46429.45%
166,50869,00448,68429.45%
130,52458,77641,46829.45%
128,90062,47244,07629.45%
103,76848,44434,18029.44%
209,46875,34853,16429.44%
71,25235,93625,35629.44%
82,36040,99228,92429.44%
142,23256,74040,03629.44%
134,26462,76044,28429.44%
71,86834,47224,32429.44%
29,54812,6648,93629.44%
94,94444,08031,10429.44%
98,13647,66833,63629.44%
189,63261,51643,40829.44%
78,78033,75623,82029.43%
138,16861,99643,74829.43%
138,16861,99643,74829.43%
64,58032,58822,99629.43%
68,69224,57217,34029.43%
124,00851,93236,64829.43%
92,56042,77230,18429.43%
112,57253,55237,79229.43%
113,91653,89238,03229.43%
73,25640,41228,52029.43%
108,36444,44031,36429.42%
125,85658,48441,27629.42%
98,12447,18833,30429.42%
65,61232,86023,19229.42%
124,38855,62439,26029.42%
98,44444,05631,09629.42%
18,2244,8003,38829.42%
209,97686,90461,34029.42%
272,49287,51661,77229.42%
85,04441,18829,07229.42%
137,12064,09645,24429.41%
71,40434,68024,48029.41%
77,60036,99226,11229.41%
94,78444,09231,12429.41%
112,10852,14836,81229.41%
116,41251,67236,47629.41%
84,33238,80827,39629.41%
89,08043,35230,60429.41%
79,31238,42827,12829.41%
98,82846,53632,85229.41%
170,10965,16046,00029.40%
170,10965,16046,00029.40%
64,94530,77221,72429.40%
101,28046,20032,61629.40%
93,50843,61630,79229.40%
128,23658,93641,60829.40%
115,49649,44034,90429.40%
85,39336,34025,65629.40%
99,98046,83233,06429.40%
80,96440,65628,70429.40%
100,17242,97630,34429.39%
112,88453,85638,02829.39%
76,10038,96827,51629.39%
70,45233,07623,35629.39%
90,72043,70830,86429.39%
77,42836,37225,68429.39%
142,55265,05645,94029.38%
115,70849,48434,94429.38%
88,80041,92029,60429.38%
78,99239,68828,02829.38%
172,80075,64853,42429.38%
140,45664,98845,89629.38%
82,68536,95626,10029.38%
107,48044,29631,28429.38%
97,45648,13633,99629.38%
75,89638,12826,92829.37%
151,84064,01645,21229.37%
151,84064,01645,21229.37%
78,09239,19227,68029.37%
116,83655,02038,86029.37%
90,59640,70828,75229.37%
80,56438,65227,30029.37%
90,40042,38429,93629.37%
200,33687,52061,81629.37%
469,028219,280154,88029.37%
154,00471,99650,85229.37%
78,33239,44427,86029.37%
75,48037,45626,45629.37%
82,30440,00428,25629.37%
98,56046,05232,52829.37%
172,91272,20451,00029.37%
81,95639,68028,02829.36%
167,79675,11253,05629.36%
58,02029,86021,09229.36%
112,84054,48038,48429.36%
98,94046,62032,93229.36%
74,71237,22426,29629.36%
63,64930,83621,78429.36%
134,07667,16447,44829.36%
80,08538,94827,51629.35%
144,22456,27239,75629.35%
108,58444,02031,10029.35%
137,25263,77245,05629.35%
94,97244,02431,10429.35%
137,60867,80847,90829.35%
119,78048,58034,32429.35%
97,84047,66833,68029.34%
67,85732,92023,26029.34%
64,50432,81223,18429.34%
150,26071,03650,19229.34%
77,18437,18826,27629.34%
73,90135,88025,35229.34%
88,29236,60425,86429.34%
72,48035,05224,76829.34%
132,48465,08845,99229.34%
66,14433,30823,53629.34%
113,14452,19236,88029.34%
101,54446,94433,17229.34%
101,54446,94433,17229.34%
98,06837,70026,64029.34%
112,67252,53637,12429.34%
130,87257,70440,77629.34%
91,14444,88831,72029.34%
137,94455,45639,18829.33%
78,21639,66828,03229.33%
137,78064,30045,44029.33%
96,13244,25631,27629.33%
96,13244,25631,27629.33%
107,62451,51236,40429.33%
91,38041,27229,16829.33%
112,58846,36032,76429.33%
83,64434,56424,42829.33%
108,57251,49236,39229.32%
77,58040,06428,31629.32%
95,56445,23631,97229.32%
197,78984,04859,40429.32%
197,78984,04859,40429.32%
77,81638,94827,52829.32%
80,68838,88027,48029.32%
504,580235,928166,75229.32%
91,34042,04829,72029.32%
77,15238,14826,96429.32%
71,32036,34825,69229.32%
133,66861,67643,59629.31%
202,34494,07666,50029.31%
133,36861,82043,70029.31%
263,504106,05274,96829.31%
121,06859,82042,28829.31%
125,35654,80038,74029.31%
447,372209,628148,19629.31%
112,54846,27632,71629.30%
137,09664,76045,78429.30%
615,800295,120208,64429.30%
119,33650,79635,91229.30%
95,26045,86832,42829.30%
68,33236,66825,92429.30%
141,39265,29646,16429.30%
106,81249,90035,28029.30%
77,72437,69626,65229.30%
81,92840,37228,54429.30%
74,90837,49226,50829.30%
91,34444,70831,61229.29%
76,01238,53627,24829.29%
89,46843,61630,84029.29%
73,42836,58425,86829.29%
269,048101,95672,09229.29%
121,26050,59635,77629.29%
196,65287,44461,83229.29%
221,956116,64882,48429.29%
80,52839,97628,26829.29%
210,30881,68457,76429.28%
137,67255,24439,06829.28%
71,86034,60424,47229.28%
194,13694,16866,59629.28%
137,29664,03245,28429.28%
84,21741,69629,48829.28%
77,76436,91626,10829.28%
101,06440,19628,42829.28%
95,73245,52832,20029.27%
113,59652,40437,06429.27%
79,09637,96426,85229.27%
106,00846,96033,21629.27%
104,88452,16836,90429.26%
133,14466,49647,04029.26%
140,14065,76046,52029.26%
98,38444,69631,62029.26%
142,08065,78046,53629.26%
76,46837,84826,77629.25%
81,18839,28427,79229.25%
125,88462,96844,54829.25%
122,36848,64034,41229.25%
122,36848,64034,41229.25%
77,68838,66027,35229.25%
141,12464,50845,64029.25%
70,83236,44825,78829.25%
71,12836,20425,61629.25%
128,00055,99239,62029.24%
128,24859,78442,30429.24%
137,31263,72445,09229.24%
143,02867,14847,51629.24%
85,24035,76425,30829.24%
234,512122,40086,61629.24%
82,97240,21228,45629.24%
160,74866,99247,40829.23%
83,92442,82830,30829.23%
85,21638,82027,47229.23%
82,72840,08028,36429.23%
146,30867,02447,43229.23%
95,08845,77632,39629.23%
96,70037,37626,45229.23%
203,24089,29263,19629.23%
27,43615,22010,77229.22%
154,50065,93246,66429.22%
243,064109,04877,18029.22%
169,90477,66054,96829.22%
84,04039,42827,90829.22%
160,09670,16449,66429.22%
141,67665,25246,18829.22%
230,88999,53670,45629.22%
98,89246,40032,84429.22%
92,41243,12830,52829.22%
138,13661,58843,59629.21%
107,12447,08833,33229.21%
107,27250,77235,94029.21%
228,51682,50058,40029.21%
131,61264,05645,34429.21%
114,17649,09234,75229.21%
107,92847,45233,59229.21%
106,61652,26036,99629.21%
91,84443,71630,94829.21%
93,21241,24029,19629.20%
95,53246,13232,66029.20%
358,256111,55278,97629.20%
134,67264,96845,99629.20%
106,08051,08036,16429.20%
99,18444,84831,75229.20%
132,50460,87643,10029.20%
137,62464,63245,76029.20%
119,81251,36036,36429.20%
121,46050,45635,72429.20%
106,55252,67637,29629.20%
100,60843,19630,58429.20%
136,30461,85643,79629.20%
88,76442,10429,81229.19%
82,43640,54428,70829.19%
54,12426,78818,96829.19%
79,26025,98018,39629.19%
135,14061,61243,62829.19%
135,14061,61243,62829.19%
86,25638,98827,60829.19%
80,26438,24827,08429.19%
230,67685,29660,40029.19%
138,84853,83238,12029.19%
244,19294,49666,91629.19%
112,60051,50436,47229.19%
97,92447,91633,93229.18%
139,18465,32846,26429.18%
139,18465,32846,26429.18%
72,30836,16025,60829.18%
126,80454,74838,77229.18%
96,82043,86831,06829.18%
344,408126,17689,36029.18%
69,27237,82426,78829.18%
126,51656,42039,96029.17%
139,17265,38846,31229.17%
63,72433,55223,76429.17%
75,01238,51627,28029.17%
82,40441,56029,43629.17%
63,01226,65618,88029.17%
130,06856,02839,68429.17%
202,97290,96064,42829.17%
301,456135,16895,74829.16%
136,30860,61242,93629.16%
101,20048,20034,14429.16%
127,58458,98441,78429.16%
136,24061,46843,54429.16%
209,25683,26458,98829.16%
108,70047,96433,98029.16%
142,46858,61241,52429.15%
117,38058,66841,56429.15%
113,76443,12430,55229.15%
134,72067,40447,75629.15%
135,43262,09643,99629.15%
98,19245,01231,89229.15%
98,04044,05231,21229.15%
269,72884,68860,00429.15%
216,79685,13660,32429.14%
145,60863,42444,94029.14%
310,076134,52895,32429.14%
202,11285,91660,88029.14%
49,54025,17617,84029.14%
137,70867,18447,60829.14%
107,18047,73233,82429.14%
215,30486,78061,49629.14%
215,30486,78061,49629.14%
237,59283,85659,42429.14%
126,90453,64038,01229.13%
120,62058,07641,15629.13%
141,01265,93246,72429.13%
85,40136,85226,11629.13%
135,04461,73243,74829.13%
91,85641,92029,70829.13%
132,03659,34842,06029.13%
90,43241,03229,08029.13%
70,37333,34423,63229.13%
70,70435,99625,51229.13%
143,08867,64447,94429.12%
91,38041,92429,71629.12%
141,24857,64440,86029.12%
141,24857,64440,86029.12%
147,69257,64840,86429.11%
94,04843,80031,04829.11%
81,41240,93229,01629.11%
228,66888,42462,68429.11%
138,85264,99646,07629.11%
100,06547,12033,40429.11%
532,236245,776174,23629.11%
63,82928,68020,33229.11%
83,69242,43630,08429.11%
122,90060,34442,78029.11%
60,66033,86824,01229.10%
135,55663,47645,00429.10%
180,27334,38024,37629.10%
106,74453,14437,68029.10%
81,92437,64026,68829.10%
95,96446,44032,92829.10%
128,45248,20034,17629.10%
118,16457,94841,08829.10%
98,13646,33232,85229.09%
81,73640,16028,47629.09%
271,648106,95275,83629.09%
63,53625,75618,26429.09%
87,14839,07227,70829.08%
202,67388,55662,80029.08%
77,80538,88027,57229.08%
131,39266,88847,43629.08%
140,10065,25246,27629.08%
95,48445,98432,61229.08%
122,16856,45240,03629.08%
138,03265,04046,12829.08%
138,03265,04046,12829.08%
173,42479,66456,50029.08%
80,85239,46827,99229.08%
206,940108,90877,24429.07%
112,22454,22438,46029.07%
120,56050,11235,54429.07%
176,47278,76055,86429.07%
145,12067,60447,95229.07%
111,89647,08833,40029.07%
132,51660,71243,06429.07%
77,91239,38827,94029.06%
128,96859,64042,30829.06%
137,57265,40846,40029.06%
162,37672,07651,13229.06%
132,14460,98443,26429.06%
84,30839,24827,84429.06%
82,36041,14829,19229.06%
98,21248,00434,05629.06%
138,24864,98446,10429.05%
138,24864,98446,10429.05%
100,88047,84433,94429.05%
122,59650,84836,07629.05%
66,02530,60821,71629.05%
80,29239,61628,10829.05%
137,52464,06045,45229.05%
144,87667,32447,76829.05%
111,26448,35234,30829.05%
363,996113,70080,67629.04%
82,96441,62029,53229.04%
144,15667,41647,83629.04%
91,46843,37230,77629.04%
68,11733,26423,60429.04%
80,00138,91227,61229.04%
138,63264,24445,58829.04%
98,48446,82033,22429.04%
120,45250,16835,60029.04%
79,09740,10028,45629.04%
139,11264,64845,87629.04%
96,86847,33633,59229.03%
112,12846,49632,99629.03%
69,42024,81217,60829.03%
39,42020,26814,38429.03%
210,00082,08458,25629.03%
210,00082,08458,25629.03%
138,70063,68045,19629.03%
65,91630,04821,32829.02%
91,84444,38831,50829.02%
134,17667,08047,61629.02%
95,45646,26432,84029.02%
78,77640,24028,56429.02%
60,10829,11620,66829.01%
63,62930,84021,89229.01%
80,53240,00828,40029.01%
119,31651,16436,32029.01%
79,00438,35627,22829.01%
125,88058,36441,43229.01%
127,53265,16446,26029.01%
80,38039,25627,86829.01%
132,84066,34047,09629.01%
18,2124,7163,34829.01%
113,24942,90030,45629.01%
113,24942,90030,45629.01%
132,28466,14046,95629.01%
207,088107,06076,00829.00%
69,61734,16424,25629.00%
75,38838,88427,60829.00%
134,66061,60443,74029.00%
80,19239,90828,33629.00%
126,82057,05640,51229.00%
119,15651,18036,34029.00%
83,76032,46023,04829.00%
140,34465,49246,50428.99%
169,08165,47246,49228.99%
169,08165,47246,49228.99%
121,24450,32435,73628.99%
67,48532,92423,38028.99%
156,96867,83648,17228.99%
136,28461,14443,42028.99%
143,38867,35647,83228.99%
73,64036,44825,88428.98%
51,60424,94017,71228.98%
76,73738,70427,48828.98%
66,84532,08022,78428.98%
122,51259,74042,43228.97%
273,968116,40482,68028.97%
98,31246,72433,18828.97%
135,46468,51648,66828.97%
195,20087,71262,30428.97%
136,42062,23644,20828.97%
71,61631,72022,53228.97%
119,92451,68036,71228.96%
39,32419,43213,80428.96%
99,41246,69633,17228.96%
138,96064,52045,83628.96%
164,64455,62839,52028.96%
113,22048,08834,16428.96%
59,31224,71617,56028.95%
122,34857,22440,65628.95%
296,464101,38072,02828.95%
82,78039,44428,02428.95%
95,26045,80032,54028.95%
79,34839,22427,86828.95%
90,92844,39231,54028.95%
147,08858,94441,88028.95%
123,18852,12037,03628.94%
145,19680,44457,16428.94%
101,04440,58428,84028.94%
115,76855,34839,33228.94%
82,97635,03224,89628.93%
79,99239,91628,36828.93%
173,46173,33252,12028.93%
95,18044,37631,54028.93%
80,59239,63628,17228.92%
96,78846,49633,04828.92%
79,61240,08028,48828.92%
105,14052,43637,27628.91%
78,82840,01228,44428.91%
120,94853,15637,78828.91%
131,08866,37247,18428.91%
141,22060,55243,04828.91%
125,35663,12844,88028.91%
96,25637,51626,67228.91%
135,60068,62848,79228.90%
139,46864,25645,68428.90%
82,33241,56029,54828.90%
67,61331,98422,74028.90%
87,62041,85229,75628.90%
107,23247,58433,83228.90%
79,52440,07228,49228.90%
79,83640,33628,68028.90%
18,2164,7483,37628.90%
140,66856,67240,29628.90%
134,13266,75247,46428.90%
121,69659,55642,34828.89%
266,156109,03677,53228.89%
130,00457,85641,14028.89%
144,80467,84048,24028.89%
130,48460,83643,26028.89%
65,45329,28420,82428.89%
137,53262,70844,59228.89%
143,05666,94847,60828.89%
138,83664,81646,09228.89%
80,73639,56028,13228.89%
98,69639,85228,34028.89%
78,72838,67627,50428.89%
122,56456,52840,20028.88%
166,69676,38854,32428.88%
83,66438,62427,46828.88%
84,80039,01227,74428.88%
130,30459,20442,10428.88%
44,50024,38817,34428.88%
102,06446,31232,93628.88%
129,82454,32838,64028.88%
90,40837,51226,68028.88%
100,88440,71228,95628.88%
149,29665,76046,77228.87%
127,89256,79640,40028.87%
79,54137,76026,86028.87%
64,72529,15620,74028.87%
204,14094,12466,95628.86%
90,35642,85230,48428.86%
97,30529,48020,97228.86%
93,80844,90831,94828.86%
75,36838,04827,06828.86%
207,52482,50458,69628.86%
207,52482,50458,69628.86%
155,96445,80032,58428.86%
78,90840,13228,55228.85%
125,66456,02039,85628.85%
506,188241,472171,80028.85%
96,00142,28430,08428.85%
139,74860,08842,75228.85%
136,80462,14444,21628.85%
102,98848,07234,20428.85%
123,02854,05238,46028.85%
145,11667,00847,68028.84%
51,42426,40418,78828.84%
99,84839,91228,40028.84%
180,16862,94844,79228.84%
76,17738,10027,11228.84%
121,51654,28838,63228.84%
93,18044,88431,94028.84%
128,54859,35642,24028.84%
101,61648,56434,56028.84%
172,46486,89661,84028.83%
39,32020,56014,63228.83%
86,27240,60828,90028.83%
180,08860,79643,26828.83%
119,67661,26843,60428.83%
130,89257,30840,78828.83%
68,82836,71626,13228.83%
104,55251,08036,35628.83%
100,81249,39235,15628.82%
226,120102,60473,03228.82%
95,45342,51630,26428.82%
111,59650,97236,28428.82%
138,71264,98846,26428.81%
79,10040,34828,72428.81%
68,78436,80826,20428.81%
101,80449,44435,20028.81%
143,96862,80444,71228.81%
86,22042,64430,36028.81%
74,30436,86826,24828.81%
137,56865,07246,32828.81%
99,42439,63228,21628.81%
78,38838,98027,75228.80%
126,11656,67240,34828.80%
193,19293,39266,49228.80%
136,16069,27249,32028.80%
114,08451,87236,93228.80%
80,04440,52828,85628.80%
287,168119,75285,26428.80%
80,24439,61228,20428.80%
74,54435,46025,24828.80%
86,85641,18429,32428.80%
136,26067,37247,97228.80%
120,63650,31635,82828.79%
99,32040,08028,54028.79%
142,75667,34047,95228.79%
132,10457,76841,13628.79%
132,10457,76841,13628.79%
64,08426,56418,91628.79%
49,04023,50816,74028.79%
92,52444,30831,55228.79%
294,684133,91295,36028.79%
101,30446,96433,44428.79%
80,06439,29627,98428.79%
27,08014,95210,64828.79%
100,71239,94028,44428.78%
198,51294,94067,61628.78%
105,01248,32834,42028.78%
79,75240,21628,64428.77%
99,34839,92028,43628.77%
96,93346,90433,41228.77%
80,72039,92428,44028.76%
88,08839,95228,46028.76%
138,50464,32445,82428.76%
278,052111,60079,50828.76%
131,17257,92441,26828.75%
55,58029,93621,32828.75%
165,10871,56050,98428.75%
192,02475,47253,77228.75%
87,51240,88829,13228.75%
121,99651,29636,54828.75%
78,90840,28028,70028.75%
114,13251,51236,70428.75%
80,15640,43628,81228.75%
312,876142,824101,76828.75%
140,92867,30847,96028.75%
137,20464,04445,63628.74%
123,71253,87238,38828.74%
96,73645,46832,40028.74%
262,868152,440108,62828.74%
140,06465,70846,82428.74%
528,976245,736175,11628.74%
62,75729,48021,00828.74%
62,60029,48021,00828.74%
141,86466,07647,08828.74%
95,15641,81629,80028.74%
127,86860,88843,39228.73%
141,83263,89645,53628.73%
161,71253,01237,78028.73%
179,83282,82459,02828.73%
90,42036,64426,11628.73%
89,72843,10830,72428.73%
82,88841,80029,79228.73%
92,74837,10826,44828.73%
96,00847,03633,52428.73%
76,20437,65626,84028.72%
234,65283,89659,80028.72%
112,32846,62833,23628.72%
78,38934,74024,76428.72%
50,32424,51617,47628.72%
100,04847,83634,10028.71%
140,54466,97647,74428.71%
272,460105,85675,46028.71%
84,80842,43230,24828.71%
118,12457,86841,25228.71%
46,80023,46016,72428.71%
144,80468,20848,62428.71%
210,02082,08458,51628.71%
210,02082,08458,51628.71%
100,82449,27635,12828.71%
73,35239,20427,94828.71%
82,71641,74029,75628.71%
99,72840,54428,90428.71%
63,47728,76020,50428.71%
99,65639,99228,51228.71%
121,52451,60436,79228.70%
205,14081,69258,24428.70%
205,14081,69258,24428.70%
131,24064,96046,31628.70%
95,82034,76024,78428.70%
121,23253,62038,23228.70%
179,15266,71247,56828.70%
147,11464,95646,31628.70%
139,18065,18046,47628.70%
26,72815,20810,84428.70%
54,50029,31620,90428.69%
101,56846,22832,96428.69%
101,56846,22832,96428.69%
91,28842,08830,01228.69%
112,93251,30436,58428.69%
313,288141,644101,00828.69%
123,37252,34437,32828.69%
23,46013,5409,65628.69%
90,96036,11625,75628.69%
98,60046,18432,93628.69%
101,03646,25632,98828.68%
131,53257,56841,05628.68%
121,52051,51636,74028.68%
173,46857,71241,16028.68%
66,95236,24825,85228.68%
89,00836,44425,99228.68%
102,63648,62034,67628.68%
129,30859,79242,64428.68%
138,90864,55246,04028.68%
104,22447,74034,05228.67%
143,15667,38448,06428.67%
135,68469,10049,28828.67%
223,092100,38471,60428.67%
219,28592,58466,04428.67%
72,56438,93227,77228.67%
24,86814,62410,43228.67%
106,87646,29233,02428.66%
78,80538,32427,34028.66%
300,836156,248111,46828.66%
95,29641,55229,64428.66%
75,86040,57628,94828.66%
143,42861,99244,22828.66%
125,15259,26842,28828.65%
100,63649,46035,29228.65%
150,08868,11648,60428.65%
182,73279,09256,43628.65%
63,68026,61618,99228.64%
86,39240,08028,60028.64%
73,87239,38428,10428.64%
71,94838,35627,37228.64%
528,892246,232175,72028.64%
155,12173,47652,43628.64%
528,004246,476175,90028.63%
142,06867,01247,82428.63%
141,45665,67246,86828.63%
141,45665,67246,86828.63%
141,67267,57648,22828.63%
171,74055,43639,56428.63%
311,536142,564101,75228.63%
124,67256,02039,98428.63%
159,78467,88848,45628.62%
76,62438,71227,63228.62%
518,788243,936174,12428.62%
520,816243,520173,82828.62%
66,96133,05623,59628.62%
75,66439,33228,07628.62%
77,32838,22827,28828.62%
143,85263,13645,06828.62%
148,90871,54051,06828.62%
80,34839,75628,38028.61%
135,14062,75244,79628.61%
125,00056,08440,03628.61%
101,02447,65634,02028.61%
51,20026,60418,99228.61%
124,78855,43239,57228.61%
116,03652,26037,30828.61%
86,94845,41232,42028.61%
65,07331,24022,30428.60%
204,82489,97664,24028.60%
99,14039,48028,18828.60%
130,91655,06039,31228.60%
154,07667,64848,30028.60%
93,78042,28030,18828.60%
125,25260,72843,36028.60%
129,49657,56841,10428.60%
231,39282,93259,21628.60%
85,01640,36828,82428.60%
99,92048,10434,34828.60%
105,59251,50436,77628.60%
24,74814,96810,68828.59%
213,24099,47671,03228.59%
326,761188,296134,46028.59%
16,8616,1284,37628.59%
139,80065,24046,58828.59%
99,66847,23233,73228.58%
75,16040,18028,69628.58%
152,50865,86447,04028.58%
152,50865,86447,04028.58%
78,15738,39227,42028.58%
104,30048,78434,84428.57%
153,04474,27653,05228.57%
135,33664,13645,81228.57%
149,89254,43638,88428.57%
133,53261,52443,94828.57%
133,14858,13641,52828.57%
306,240144,028102,88428.57%
78,76839,95228,54028.56%
125,76055,28839,49628.56%
124,26454,95239,25628.56%
78,37239,56428,26428.56%
135,71268,15248,68828.56%
153,06066,63247,60428.56%
119,11249,18035,13628.56%
167,41679,30456,66028.55%
80,03240,55628,97628.55%
225,684101,77672,71628.55%
160,13670,51650,38428.55%
65,58030,36421,69628.55%
94,58437,16426,55628.54%
140,16465,43246,75628.54%
367,105176,608126,20028.54%
367,105176,608126,20028.54%
83,71639,21628,02428.54%
322,036145,164103,73628.54%
142,15267,38048,15228.54%
163,51675,16453,71628.53%
117,60051,33636,68828.53%
97,76046,76833,42428.53%
129,60458,98442,15628.53%
86,60443,12830,82428.53%
72,10838,62827,60828.53%
91,69237,44026,76028.53%
119,37651,95637,13628.52%
111,70052,86837,78828.52%
76,83238,45627,48828.52%
85,26435,48425,36428.52%
99,96048,34834,56028.52%
308,380142,268101,69628.52%
80,92434,82824,89628.52%
91,06443,37231,00428.52%
144,87667,75248,43228.52%
100,52048,73234,83628.52%
112,80046,65633,35228.52%
141,64063,66045,50828.51%
98,40847,12433,68828.51%
251,624120,70886,29228.51%
92,08845,41632,46828.51%
231,560107,98077,19628.51%
124,75658,36841,72828.51%
68,23624,62417,60428.51%
113,06443,55231,13628.51%
144,48058,91642,12028.51%
156,16868,44448,93228.51%
94,85637,66426,92828.50%
619,400303,044216,66428.50%
155,36866,01247,19628.50%
81,11640,23628,76828.50%
124,69655,91639,98028.50%
139,37265,40446,76428.50%
325,792145,476104,01628.50%
143,44058,52841,84828.50%
157,52566,43247,50028.50%
62,78432,64823,34428.50%
92,81635,28825,23228.50%
159,49270,04450,08428.50%
148,06057,58441,17628.49%
148,06057,58441,17628.49%
111,44446,80433,46828.49%
144,73667,38848,18828.49%
152,52870,22450,21628.49%
66,48834,31224,53628.49%
53,45228,57220,43228.49%
87,59243,26430,94028.49%
348,320191,564136,99628.49%
102,20841,94830,00028.48%
93,25344,26831,66028.48%
99,35640,22428,76828.48%
92,64034,83224,91228.48%
521,472244,352174,77228.48%
133,46860,36443,17628.47%
188,12094,06867,28428.47%
86,99635,74025,56428.47%
80,81240,42028,91228.47%
150,86070,98450,77628.47%
95,08047,10033,69228.47%
86,40442,59230,46828.47%
162,72866,11647,29628.47%
79,03737,35226,72028.46%
20,84411,1447,97228.46%
87,58043,22830,92428.46%
231,425110,81279,27228.46%
90,28836,16425,87228.46%
137,57261,60444,07228.46%
80,50439,84828,50828.46%
76,33637,25226,65228.45%
102,20841,94830,01228.45%
50,08025,27618,08428.45%
140,65659,67642,69628.45%
128,42859,97242,90828.45%
144,03658,65241,96428.45%
130,77257,79641,35228.45%
61,72827,44419,63628.45%
316,880105,35275,38028.45%
141,34060,81243,51228.45%
134,32864,51246,16028.45%
102,03250,18435,90828.45%
74,55638,85627,80428.44%
128,87655,80039,93228.44%
128,87655,80039,93228.44%
133,22868,06848,71228.44%
93,10037,29226,68828.44%
100,10448,91235,00428.43%
134,76459,74842,76428.43%
86,95645,42032,51228.42%
102,60846,01232,93628.42%
154,49666,11247,32428.42%
150,28865,07646,58428.42%
103,11642,10430,14028.42%
226,416116,17683,17228.41%
138,52078,22056,00028.41%
118,98939,56828,32828.41%
92,36445,46032,54828.40%
148,32067,85648,58428.40%
620,436304,632218,11628.40%
93,76437,52426,86828.40%
153,86866,11247,34028.39%
115,85646,02432,95628.39%
97,58046,94033,61228.39%
136,88551,50836,88428.39%
100,73344,06031,55228.39%
93,56037,04426,52828.39%
615,584304,440218,02028.39%
130,88060,38443,24428.39%
218,552102,76473,59628.38%
72,66932,74023,44828.38%
131,14066,56847,67628.38%
173,46087,40862,60428.38%
93,74038,37227,48428.37%
103,48842,08030,14028.37%
143,74868,17648,83228.37%
96,59646,12833,04028.37%
84,02140,91229,30428.37%
86,46443,05630,84028.37%
105,72848,08034,44028.37%
130,39254,55239,07628.37%
616,616303,048217,07628.37%
16,84810,3367,40428.37%
113,18448,29634,59628.37%
128,16864,11645,93228.36%
107,81647,22033,82828.36%
152,74857,59241,26028.36%
152,74857,59241,26028.36%
112,54943,33231,04428.36%
112,54943,33231,04428.36%
71,13632,20423,07228.36%
98,57646,98833,66428.36%
155,07272,10051,65628.36%
609,280301,208215,80828.35%
104,65650,42036,12828.35%
139,80457,74441,37628.35%
105,97252,00437,26428.34%
135,70868,54449,11628.34%
78,89233,10823,72428.34%
55,71225,54418,30428.34%
53,06428,34020,30828.34%
147,18869,44049,76028.34%
72,79636,40026,08428.34%
32,64418,80013,47228.34%
97,66045,04432,28028.34%
36,97218,16813,02028.34%
70,90032,37223,20028.33%
194,48085,78461,48028.33%
146,46461,13643,81628.33%
125,95655,91640,07628.33%
148,19264,36446,13228.33%
122,40057,20841,00428.32%
77,08938,24427,41228.32%
129,11654,22038,86428.32%
133,70059,22042,44828.32%
132,91661,26843,91628.32%
152,38869,71649,97228.32%
134,84462,09244,50828.32%
141,08063,60445,59228.32%
246,24491,60065,66028.32%
99,96848,76034,95228.32%
81,33640,83629,27228.32%
31,54814,62010,48028.32%
25,41212,9969,31628.32%
57,87226,99619,35228.32%
90,16042,24030,28028.31%
100,64047,46834,02828.31%
100,64047,46834,02828.31%
134,50061,68844,22428.31%
98,02041,32029,62428.31%
63,13638,90427,89228.31%
234,20485,38461,21628.31%
132,71260,96443,71228.30%
165,71762,57644,86828.30%
165,71762,57644,86828.30%
184,01082,19258,93628.29%
40,05620,64014,80028.29%
112,98848,60434,85228.29%
96,48043,29231,04428.29%
87,28436,67626,30028.29%
137,96065,12846,70428.29%
137,96065,12846,70428.29%
71,71733,18823,80028.29%
163,99275,16053,90028.29%
79,06442,55230,51628.29%
98,42046,68433,48028.28%
170,20077,21255,37628.28%
120,94044,52831,93628.28%
139,88065,64047,08028.28%
93,79638,01627,26828.27%
501,360241,680173,35228.27%
86,22435,48425,45228.27%
91,29243,35231,09628.27%
87,09641,20429,55628.27%
129,60059,20842,47228.27%
86,69236,10025,89628.27%
63,57226,36418,91228.27%
93,66837,70027,04428.27%
105,32047,90434,36428.26%
90,46039,69628,47628.26%
120,88544,48031,90828.26%
120,88544,48031,90828.26%
40,19218,71213,42428.26%
92,56835,21625,26428.26%
116,45653,63238,47628.26%
283,116118,58085,07228.26%
313,724144,368103,57628.26%
379,580158,428113,66428.26%
95,29245,78832,85228.25%
206,72091,32865,52828.25%
159,39274,31253,32028.25%
56,69629,49621,16428.25%
128,87659,16842,45628.24%
309,584143,672103,09228.24%
119,76851,34036,84028.24%
92,03634,91225,05228.24%
616,988305,040218,89228.24%
91,16837,23626,72028.24%
133,73660,74043,58828.24%
134,29255,61639,91228.24%
129,03259,65642,81228.24%
109,58450,74836,42028.23%
88,67235,30825,34028.23%
121,61661,04043,80828.23%
147,80064,02445,95228.23%
70,41239,05628,03228.23%
139,59262,75645,04428.22%
112,45257,52841,29228.22%
145,59263,75245,76028.22%
608,664302,940217,45228.22%
116,30860,60043,50028.22%
71,00436,91626,50028.22%
142,90865,59647,08828.22%
72,39238,94427,95628.21%
124,48855,37639,75228.21%
102,01249,60835,61228.21%
229,66490,91265,26428.21%
162,30068,04448,84828.21%
160,10471,05251,00828.21%
121,14452,58037,74828.21%
121,14452,58037,74828.21%
92,28436,93226,51628.20%
219,48478,18056,13228.20%
55,03227,17619,51228.20%
206,96882,12458,96428.20%
194,75283,57660,00828.20%
62,47728,07220,15628.20%
106,83645,77632,86828.20%
64,16030,14421,64428.20%
135,64865,11646,75628.20%
189,80894,72868,02028.19%
100,36848,96835,16428.19%
77,59738,31227,51228.19%
197,888100,11271,89228.19%
136,51266,04447,42828.19%
74,68839,82428,60028.18%
150,01665,21646,83628.18%
140,25259,04842,40828.18%
97,57246,60033,46828.18%
81,30033,88424,33628.18%
94,13648,62434,92428.18%
93,52837,02826,59628.17%
164,93676,90055,23628.17%
156,03672,30051,93228.17%
154,29774,43253,46428.17%
92,02036,36026,12028.16%
61,27629,61621,27628.16%
71,03232,37223,25628.16%
126,89659,76042,93228.16%
79,27242,67230,65628.16%
607,948302,300217,18428.16%
104,20048,19234,62428.15%
85,75739,69628,52028.15%
78,34136,02025,88028.15%
92,65235,29625,36028.15%
151,45268,48049,20428.15%
153,91269,61250,02028.14%
98,11646,98833,76428.14%
108,68851,04036,67628.14%
53,99625,24818,14428.14%
93,53634,77624,99228.13%
164,14477,81255,92428.13%
139,26060,50843,48828.13%
90,26839,47628,37228.13%
136,94064,78046,56028.13%
116,07651,34436,90428.12%
346,948147,156105,77228.12%
139,10462,27644,76428.12%
246,03272,22051,91228.12%
156,82869,78850,16428.12%
84,13234,74024,97228.12%
88,20035,34025,40428.12%
128,97658,76042,24028.11%
67,70434,46024,77228.11%
161,84469,12049,68828.11%
94,49238,53227,70028.11%
119,79251,55237,06028.11%
70,49333,62424,17228.11%
147,20869,75650,14828.11%
189,60495,32068,52828.11%
106,77645,96833,04828.11%
113,99247,65634,26428.10%
500,904242,952174,68428.10%
501,908243,624175,17228.10%
94,55638,04027,35228.10%
97,62046,80033,65228.09%
116,61254,66439,30828.09%
192,63276,98055,35628.09%
192,63276,98055,35628.09%
84,20836,96826,58428.09%
162,35276,52455,03228.09%
114,54051,80437,25628.08%
133,78467,54048,57628.08%
177,34079,46457,15228.08%
348,356147,804106,30428.08%
90,49639,52028,42428.08%
39,68818,92013,60828.08%
165,72077,42055,68428.08%
116,61243,48431,27628.07%
101,06447,94434,48428.07%
147,70868,16449,02828.07%
136,37664,22046,19228.07%
76,86833,70024,24028.07%
52,80027,91620,08028.07%
75,71636,24026,06828.07%
132,20059,58842,86428.07%
72,79639,79228,62428.07%
136,72863,45245,64428.07%
118,20850,55636,36828.06%
70,62032,18423,15228.06%
168,38875,33254,19228.06%
79,56439,15628,16828.06%
110,76452,61237,84828.06%
76,13638,74427,87228.06%
91,58444,56032,05628.06%
89,99234,78825,02828.06%
97,68046,88033,72828.05%
164,11675,78454,52428.05%
93,55237,78827,18828.05%
153,16485,56061,56028.05%
355,852150,336108,17228.05%
181,14480,16857,68428.05%
163,74068,93249,60028.05%
108,86849,80835,84028.04%
89,57642,30830,44428.04%
114,98854,79239,42828.04%
27,90814,55210,47228.04%
63,11638,53627,73228.04%
129,15257,78441,58428.04%
159,14471,99651,81228.03%
88,04434,31624,69628.03%
208,81282,34459,26428.03%
208,81282,34459,26428.03%
182,33679,56457,26428.03%
124,12463,51245,71228.03%
70,28835,29625,40428.03%
115,60042,80430,80828.03%
74,47232,12823,12428.03%
76,16035,86825,81628.02%
103,48842,08030,28828.02%
87,12035,25225,37628.02%
168,78471,03251,13628.01%
114,79659,98043,18028.01%
158,52870,53650,78028.01%
24,91214,29610,29228.01%
156,69672,49652,19228.01%
166,58070,64450,86028.01%
91,16836,44026,23628.00%
86,27641,34029,76428.00%
106,11251,10036,79228.00%
114,54454,83239,48028.00%
89,00436,07625,97628.00%
113,11642,69230,74028.00%
97,71247,80834,42428.00%
99,53243,36831,22827.99%
53,32428,68020,65227.99%
101,19245,24432,58027.99%
133,67268,15649,08027.99%
67,39634,81625,07227.99%
79,84834,93225,15627.99%
471,524217,840156,88027.98%
100,59649,00035,28827.98%
71,46835,40825,50027.98%
231,79676,09254,80027.98%
90,56039,68428,58027.98%
87,85642,34430,49627.98%
82,96440,80429,38827.98%
119,24450,73236,54027.97%
96,79643,77231,52827.97%
77,89738,96828,06827.97%
166,18070,03250,44427.97%
107,64848,81235,16027.97%
107,64848,81235,16027.97%
159,94871,16851,26427.97%
89,30536,14426,03627.97%
151,18869,02849,72427.97%
98,70047,22034,01627.96%
137,71256,03240,36427.96%
106,96448,55234,97627.96%
106,96448,55234,97627.96%
118,88050,72836,54427.96%
98,20048,26834,77227.96%
141,20467,71248,78027.96%
144,42062,24844,84427.96%
149,58871,66451,62827.96%
89,21334,42424,80027.96%
191,02892,31666,50827.96%
76,68840,49229,17227.96%
77,59737,31626,88427.96%
90,20043,53231,36427.95%
115,11246,45233,46827.95%
124,47657,96041,76027.95%
124,47657,96041,76027.95%
173,61673,96453,29227.95%
150,53371,59651,58827.95%
138,35660,08843,29627.95%
167,85275,73654,57227.94%
147,14862,59645,10427.94%
118,26453,62838,64427.94%
52,66828,80420,75627.94%
109,70047,37234,13627.94%
155,78470,09250,50827.94%
87,90041,13229,64027.94%
87,31243,89631,63227.94%
80,13239,83228,70427.94%
97,54840,99229,54027.94%
115,79655,90040,28427.94%
112,97251,79637,32827.93%
136,26862,94045,36027.93%
118,21255,91240,29627.93%
146,64866,93248,24027.93%
123,29257,26841,27627.92%
95,38045,54432,82827.92%
25,30012,9529,33627.92%
189,64094,64868,22427.92%
63,95633,94424,46827.92%
29,10415,47611,15627.91%
147,28469,86050,36027.91%
112,98851,32036,99627.91%
90,53242,02030,29227.91%
120,22055,46439,98427.91%
213,05692,16866,44427.91%
99,33642,67230,76427.91%
79,16839,88028,75227.90%
88,66842,39230,56427.90%
112,55252,68837,98827.90%
50,68829,83621,51227.90%
97,52441,46429,89627.90%
120,67253,60838,65227.90%
131,75659,92843,21227.89%
153,41265,40847,16427.89%
70,71336,55626,36027.89%
104,93650,84036,66027.89%
158,68074,70853,87227.89%
88,36042,15230,39627.89%
128,89659,94043,22427.89%
123,27655,98840,37627.88%
132,64055,88840,30427.88%
107,60447,05233,93227.88%
107,60447,05233,93227.88%
168,88470,66850,96427.88%
104,78450,30036,27627.88%
140,94463,12845,52827.88%
55,53227,95220,16027.88%
279,132136,72498,61227.88%
85,79635,47625,58827.87%
79,02039,79628,70427.87%
120,13254,73639,48027.87%
119,15248,76835,17627.87%
104,92850,88036,70027.87%
119,30454,85639,56827.87%
153,42465,03646,91227.87%
67,14037,14826,79627.87%
83,66034,75225,06827.87%
115,94843,52431,39627.87%
102,59652,24437,68827.86%
98,07241,80830,16027.86%
91,50044,19231,88027.86%
134,85662,58445,14827.86%
166,32079,28457,19627.86%
99,33242,96430,99627.86%
124,67653,78038,80027.85%
80,27334,30824,75227.85%
119,83252,50437,88027.85%
21,00412,5969,08827.85%
458,812212,380153,23227.85%
81,27643,47631,36827.85%
91,36437,28826,90427.85%
131,62861,51244,38427.84%
141,34059,05642,61227.84%
130,22059,52042,94827.84%
151,93269,70850,30027.84%
88,66442,36830,57227.84%
24,94415,02810,84427.84%
163,44876,49655,20027.84%
198,93283,84060,50027.84%
109,50451,68837,30027.84%
109,50451,68837,30027.84%
161,76474,86854,02827.84%
175,53678,64856,75627.84%
99,60047,51234,28827.83%
68,68030,67222,13627.83%
33,24016,20011,69227.83%
111,16848,17234,76827.83%
89,33642,31230,54027.82%
507,068247,052178,32027.82%
139,45263,92446,14027.82%
96,33242,90430,96827.82%
68,78533,48824,17227.82%
134,28063,38845,75627.82%
80,09633,24824,00027.82%
75,18437,92427,38027.80%
93,07244,93232,44027.80%
360,920141,276102,00027.80%
71,05232,76423,65627.80%
85,66042,37630,59627.80%
163,70070,43650,85627.80%
76,82038,20427,58427.80%
22,71613,7289,91227.80%
175,55654,98839,70427.80%
85,42434,90025,20027.79%
125,80853,45238,59627.79%
161,99377,51655,97227.79%
160,69675,83654,76027.79%
170,06078,16856,44427.79%
77,31637,35226,97227.79%
140,27660,23243,49627.79%
100,82047,20434,08827.79%
100,82047,20434,08827.79%
108,60049,91236,04427.78%
160,20869,06049,87227.78%
87,55635,64825,74427.78%
99,64443,14431,16027.78%
103,51647,36434,20827.78%
103,51647,36434,20827.78%
157,18074,11253,52827.77%
64,52131,08022,44827.77%
99,12043,06431,10427.77%
113,74048,69635,17227.77%
145,36467,48848,74827.77%
228,285119,60886,39627.77%
67,20434,96425,25627.77%
100,13243,12031,14827.76%
75,11637,58827,15227.76%
41,12819,26413,91627.76%
172,70075,21254,33227.76%
124,84458,20442,04827.76%
165,86479,10457,14827.76%
148,26871,22451,45627.75%
167,96886,75262,67627.75%
97,70441,18029,75227.75%
78,10839,47228,52027.75%
150,88067,58848,83627.74%
141,49267,43248,72427.74%
85,11242,28830,55627.74%
108,55241,49629,98427.74%
75,55635,48425,64027.74%
172,60887,50863,23227.74%
172,60887,50863,23227.74%
92,23644,57232,20827.74%
66,58833,44024,16427.74%
77,84038,56027,86427.74%
64,43730,35621,93627.74%
152,40072,16452,14827.74%
150,95668,74449,68027.73%
97,76842,24830,53227.73%
99,45242,88430,99227.73%
181,05292,42066,79227.73%
181,05292,42066,79227.73%
163,21673,03652,78427.73%
90,74842,72030,87627.72%
114,23653,98839,02027.72%
51,76026,72019,31227.72%
76,23637,55627,14427.72%
163,94078,57656,79227.72%
73,09735,48025,64427.72%
56,44827,34419,76427.72%
36,62417,33212,52827.72%
24,84815,14010,94427.71%
99,27242,49230,71627.71%
77,45338,26827,66427.71%
115,19260,32843,61227.71%
112,88448,40834,99627.71%
112,88448,40834,99627.71%
94,17637,88427,38827.71%
86,38434,30824,80427.70%
78,37634,84425,19227.70%
135,87663,97246,25227.70%
89,64442,45630,69627.70%
123,99657,12841,30427.70%
105,20448,36434,96827.70%
72,76134,98025,29227.70%
45,52425,44818,40027.70%
118,24052,12437,68827.70%
67,94432,52823,52027.69%
76,96044,84032,42427.69%
73,58836,42026,33627.69%
204,14881,62059,02427.68%
89,17642,58030,79227.68%
136,44464,66046,76027.68%
81,61239,66428,68427.68%
53,40427,68820,02427.68%
94,13644,61232,26427.68%
204,84081,87259,21227.68%
145,61668,89249,82827.67%
93,89245,53632,93627.67%
57,67629,36021,23627.67%
75,38037,64427,22827.67%
215,864109,10478,91627.67%
126,02460,67643,88827.67%
23,82413,7209,92427.67%
75,07232,73223,67627.67%
506,988247,780179,22827.67%
127,87260,88844,04427.66%
89,86442,87231,01227.66%
193,336107,72477,92427.66%
135,67660,67643,89227.66%
131,16462,08044,90827.66%
99,50042,85231,00027.66%
140,39663,19645,72027.65%
110,58048,89235,37227.65%
85,88442,77630,94827.65%
189,58894,82868,60827.65%
189,58894,82868,60827.65%
109,67248,84035,33627.65%
285,236119,04886,13227.65%
102,70848,94435,41227.65%
148,40869,62050,37227.65%
86,39740,55629,34427.65%
91,44443,48031,46027.64%
165,92477,62856,16827.64%
79,88833,84424,48827.64%
95,53643,18031,24427.64%
83,51342,28430,59627.64%
173,86478,34056,68827.64%
81,56434,34424,85227.64%
151,71674,42053,85227.64%
117,36453,34038,60027.63%
131,77261,70844,65627.63%
85,38035,84425,94027.63%
51,37227,75220,08427.63%
77,37238,07627,55627.63%
174,98182,08859,40827.63%
119,96454,64039,54427.63%
66,09232,56423,56827.63%
97,72050,62036,63627.63%
140,14862,83245,47627.62%
458,220215,824156,22427.62%
136,39264,63646,78827.61%
201,96084,85661,42827.61%
99,72042,24830,58427.61%
145,86469,00849,95627.61%
64,68840,70029,46427.61%
108,40849,33635,71627.61%
75,82137,38427,06427.61%
40,99321,11215,28427.61%
118,04456,23640,71227.61%
135,52064,56846,74427.61%
165,61272,78452,69227.60%
76,62038,47227,85227.60%
125,96859,36842,98027.60%
157,72471,62851,85627.60%
166,21276,01255,03227.60%
75,54437,62427,24027.60%
505,912247,344179,08027.60%
113,74049,70435,98827.60%
74,00538,15227,62427.59%
52,25228,48420,62427.59%
111,70852,97238,35627.59%
89,82844,33232,10027.59%
112,38448,43635,07227.59%
112,38448,43635,07227.59%
44,27222,14016,03227.59%
74,93737,36427,05627.59%
114,97253,56038,78427.59%
149,66471,61251,85627.59%
120,94056,49240,90827.59%
112,06852,56838,06827.58%
178,52054,94839,79227.58%
47,02121,92815,88027.58%
84,39237,43227,10827.58%
81,11640,85629,58827.58%
187,15294,40068,36827.58%
187,15294,40068,36827.58%
141,58066,70048,30827.57%
74,64437,45627,12827.57%
163,24877,93656,44827.57%
147,78067,97249,23227.57%
188,48073,88053,51227.57%
321,253151,200109,51627.57%
151,88073,01252,88427.57%
133,86463,87246,26427.57%
97,93241,47230,04027.57%
91,36839,04028,28027.56%
72,86036,96826,78027.56%
171,98080,23658,12427.56%
133,39658,94442,70027.56%
125,84459,03242,76427.56%
89,46936,24426,25627.56%
31,82815,09610,93627.56%
127,54054,14839,22827.55%
90,51243,58031,57227.55%
145,41668,80049,84427.55%
358,952142,444103,20027.55%
286,892123,12089,20427.55%
160,52875,36454,60427.55%
68,85630,75622,28427.55%
143,00466,93248,49627.54%
109,32052,45638,00827.54%
148,39269,87650,63227.54%
286,044123,37289,39627.54%
64,71330,82422,33627.54%
101,98846,93634,01227.54%
76,20038,77228,09627.54%
163,38074,77254,18427.53%
125,25658,66442,51227.53%
132,41659,23242,92427.53%
78,21233,89624,56427.53%
192,83685,08461,66027.53%
82,95649,11235,59227.53%
165,00877,94856,49227.53%
106,08051,83637,56827.53%
339,273162,252117,59227.53%
67,84930,41622,04427.52%
138,31264,43646,70027.52%
80,32842,94431,12427.52%
140,12866,12447,92427.52%
144,62065,42847,42027.52%
73,50838,04827,57627.52%
127,68454,86439,76427.52%
108,70847,58434,48827.52%
33,68416,42411,90427.52%
96,26841,58430,14027.52%
88,73341,99230,43627.52%
163,11676,45655,41627.52%
134,10464,70046,89627.52%
107,07649,02035,53227.52%
93,72045,12432,70827.52%
122,56455,41240,17227.50%
217,88087,54063,46427.50%
110,68452,02437,71627.50%
282,200156,932113,77227.50%
158,60474,45253,97627.50%
144,43267,54448,96827.50%
76,22136,72826,62827.50%
154,38864,77646,96427.50%
120,54856,58841,02827.50%
111,27250,42436,56027.49%
89,89239,80428,86027.49%
360,288144,896105,06027.49%
147,98072,89652,85627.49%
130,86061,99244,95227.49%
104,22849,48035,88027.49%
111,06849,87636,16827.48%
84,74034,34824,90827.48%
120,41646,76433,91227.48%
62,66827,02819,60027.48%
157,66877,39256,12427.48%
82,83735,53225,76827.48%
111,18851,83237,59227.47%
109,78442,38430,74027.47%
133,03259,65643,26827.47%
149,08473,52053,32427.47%
142,74866,00847,87627.47%
89,52840,60029,44827.47%
124,89258,48442,42027.47%
99,59243,29631,40427.47%
124,22456,46440,95627.47%
724,168266,716193,46827.46%
144,01661,01644,26027.46%
90,49644,12032,00427.46%
152,43670,50451,14427.46%
69,33231,07222,54027.46%
72,52132,76423,76827.46%
143,42864,36446,69227.46%
78,44436,13626,21627.45%
138,00864,55646,83627.45%
98,41244,16032,04027.45%
711,004267,004193,72827.44%
97,41641,13229,84427.44%
27,82016,20811,76027.44%
164,51279,20057,47227.43%
287,548124,22490,14827.43%
144,79268,42049,65227.43%
79,78840,08829,09227.43%
138,56463,58446,14427.43%
109,65251,07237,06427.43%
98,26441,53630,14427.43%
137,36462,64045,46027.43%
130,12859,97643,52827.42%
121,40058,32842,33227.42%
98,67642,02830,50427.42%
234,92472,48852,61227.42%
81,57240,51229,40427.42%
89,50535,27625,60427.42%
174,87679,58457,76427.42%
88,85240,25229,21627.42%
113,43253,36838,73627.42%
105,84450,36436,55627.42%
51,58427,97220,30427.41%
76,45238,18827,72027.41%
53,79627,75620,14827.41%
117,31656,63641,11227.41%
116,05653,90839,13227.41%
141,30464,20046,60427.41%
94,94440,82429,63627.41%
86,43242,15630,60427.40%
128,85255,73240,46027.40%
77,76835,09225,47627.40%
88,66844,02831,96427.40%
90,56838,67228,07627.40%
76,62444,48432,29627.40%
84,98441,66830,25227.40%
112,45643,72831,74827.40%
91,31238,76428,14427.40%
153,37673,77653,56427.40%
731,068268,388194,86027.40%
96,70447,64434,59227.39%
165,87754,26039,39627.39%
163,51673,99253,72427.39%
77,04836,33226,38027.39%
145,49268,90050,02827.39%
139,79665,92447,86827.39%
87,04035,72825,94427.38%
77,95235,43625,73227.38%
192,58496,21669,86827.38%
131,29654,57239,62827.38%
710,780266,160193,27627.38%
90,91643,76431,78027.38%
137,98864,40846,77227.38%
91,15242,08830,56427.38%
130,39661,86044,92427.38%
120,60457,61241,84027.38%
90,02043,07631,28427.37%
67,35232,13223,33627.37%
68,84436,98426,86027.37%
137,12064,81247,07227.37%
79,75242,76031,05627.37%
253,66078,27256,84827.37%
38,05617,34812,60027.37%
149,42868,90450,04827.37%
114,66053,34038,74427.36%
92,17241,98430,49627.36%
109,12042,71631,02827.36%
89,58936,24026,32427.36%
98,15642,68831,00827.36%
78,07235,92026,09227.36%
125,59257,63241,86427.36%
88,88040,19629,20027.36%
132,30859,41243,16027.35%
375,560171,460124,56027.35%
111,09251,92837,72427.35%
189,22093,36067,82427.35%
189,22093,36067,82427.35%
458,180216,472157,26427.35%
100,12843,80431,82427.35%
89,55643,22031,40027.35%
132,89660,33643,83627.35%
78,17338,78028,17627.34%
138,00056,83641,29627.34%
179,84489,33264,90827.34%
151,96464,27246,70027.34%
97,76041,39230,07627.34%
125,53654,30039,45627.34%
137,20065,48447,58427.33%
109,80049,96036,30427.33%
135,50059,81243,46427.33%
87,16141,22829,96027.33%
85,58036,97226,86827.33%
98,06044,14432,08027.33%
80,92036,41626,46427.33%
95,27242,28830,73227.33%
139,23671,17251,72427.33%
139,23671,17251,72427.33%
132,42860,56044,01227.32%
107,52042,78031,09227.32%
82,41640,64429,54027.32%
149,75667,11648,78027.32%
89,64039,75228,89227.32%
115,83651,64437,53627.32%
118,55246,60833,87627.32%
111,74451,51637,44427.32%
33,92818,62813,54027.31%
150,00470,66451,36427.31%
113,03251,59637,50427.31%
110,28050,14836,45227.31%
157,50469,68850,65627.31%
88,94844,07632,04027.31%
96,15242,21630,68827.31%
88,29236,18426,30427.30%
85,06435,20425,59227.30%
157,66869,94050,84427.30%
89,31240,12829,17227.30%
63,33631,79223,11227.30%
68,79230,66422,29227.30%
96,41641,87230,44027.30%
196,28484,31661,29627.30%
102,80046,48833,79627.30%
135,15263,32446,03627.30%
107,25649,12835,71627.30%
143,26465,31247,48427.30%
99,24842,98031,24827.30%
117,56454,06039,30427.30%
92,74441,18029,94027.29%
74,32535,10025,52027.29%
77,52035,10025,52027.29%
101,42446,72433,97227.29%
98,66842,27230,73627.29%
102,98049,75236,17627.29%
152,04473,52053,46027.29%
136,41265,53647,65627.28%
103,04442,78431,11227.28%
192,40878,70857,23627.28%
90,03241,07229,86827.28%
183,24466,21248,15227.28%
84,65637,26427,10027.28%
98,13641,26830,01227.28%
110,28047,63634,64427.27%
110,28047,63634,64427.27%
90,00040,70029,60027.27%
141,54867,88049,36827.27%
116,11256,04840,76427.27%
79,71642,65631,02427.27%
110,10451,42837,40427.27%
123,91657,16441,57627.27%
94,42045,71233,24827.27%
146,74065,88447,92027.27%
132,28859,87243,54827.26%
145,59664,92047,22027.26%
45,42520,51214,92027.26%
89,07639,83628,97627.26%
73,75736,71226,70427.26%
146,86070,44051,24027.26%
88,57239,74028,90827.26%
89,76843,54431,67627.26%
107,77643,00431,28427.25%
111,58452,38438,10827.25%
93,82845,10432,81227.25%
89,44439,61628,82027.25%
67,43331,54422,94827.25%
92,24044,60832,45227.25%
90,61239,29628,58827.25%
80,82840,91229,76427.25%
164,36471,82852,25627.25%
138,29263,48046,18427.25%
147,26070,34451,18027.24%
152,21674,00053,84027.24%
111,05249,17235,77627.24%
72,53736,29626,40827.24%
83,92040,58829,53227.24%
112,60848,74035,46427.24%
112,60848,74035,46427.24%
87,11636,33626,44027.23%
120,94853,52038,94427.23%
77,66436,26426,38827.23%
104,71644,37232,28827.23%
143,16071,62052,11627.23%
143,16071,62052,11627.23%
98,38843,59631,72427.23%
74,04437,12027,01227.23%
112,66861,70044,90027.23%
90,20038,82828,25627.23%
80,45240,43229,42427.23%
78,84839,49228,74027.23%
90,93247,00034,20427.23%
76,60040,58029,53227.23%
89,52445,30032,96827.22%
139,10866,18048,16427.22%
29,31212,3448,98427.22%
79,52836,65226,67627.22%
99,45242,97231,27627.22%
113,36051,95237,81227.22%
166,58479,48057,84827.22%
91,93641,84430,45627.22%
108,60542,49230,92827.21%
108,60542,49230,92827.21%
98,53652,85638,47227.21%
88,28043,37631,57227.21%
98,26446,90434,14027.21%
111,48050,34436,64427.21%
150,52471,18851,81627.21%
121,91254,19639,44827.21%
121,91254,19639,44827.21%
76,52834,63225,20827.21%
77,29635,54425,87227.21%
107,72450,77636,96027.21%
107,72450,77636,96027.21%
152,83270,43251,26827.21%
111,30851,78037,69227.21%
90,57238,25627,84827.21%
37,88817,10012,44827.20%
91,65641,64030,31227.20%
108,31649,62436,12427.20%
67,15634,54025,14427.20%
112,82052,49638,21627.20%
47,88522,63216,47627.20%
81,41637,63227,39627.20%
89,06039,63228,85227.20%
86,05234,66425,23627.20%
136,02068,75650,05627.20%
136,02068,75650,05627.20%
80,85237,81627,53227.19%
92,97239,52428,77627.19%
98,07242,40830,87627.19%
137,15255,01640,05627.19%
89,07239,60028,83227.19%
118,50852,54838,26027.19%
91,00040,88429,76827.19%
122,42056,96441,47627.19%
90,24041,25230,03627.19%
31,18416,52412,03227.18%
119,92058,15242,34427.18%
78,10435,44825,81227.18%
340,072102,91674,94027.18%
142,70066,48448,41227.18%
91,36444,35632,30027.18%
87,73242,29630,80027.18%
73,25240,20829,28027.18%
107,74850,21636,56827.18%
183,10284,55261,57227.18%
138,19665,64847,80827.18%
188,54484,50461,54027.18%
109,54051,62437,59627.17%
88,89643,52831,70027.17%
89,49640,14429,23627.17%
53,64427,78020,23227.17%
93,68042,62031,04027.17%
77,86435,95626,18827.17%
77,42034,78025,33227.17%
108,61651,23237,31627.16%
135,85665,60847,78827.16%
110,64051,82437,74827.16%
324,692172,252125,46827.16%
145,60064,92047,28827.16%
105,46045,32033,01227.16%
120,10455,14840,17227.16%
111,54851,83637,76027.15%
18,54011,0928,08027.15%
106,79247,75634,78827.15%
334,804102,80474,88827.15%
28,22415,96811,63227.15%
30,35215,64411,39627.15%
75,29234,35225,02427.15%
93,91244,94432,74027.15%
63,98032,23223,48027.15%
217,15294,49668,84027.15%
78,21636,11226,30827.15%
72,50833,93224,72027.15%
47,50424,78418,05627.15%
136,61264,52447,00827.15%
458,012216,848157,98827.14%
93,34845,49233,14427.14%
77,86035,04425,53227.14%
116,11255,95640,76827.14%
151,08068,03249,56827.14%
82,65636,22826,39627.14%
81,76043,63231,79227.14%
77,18035,54025,89627.14%
105,22053,42438,92827.13%
135,77665,00047,36427.13%
90,34842,16430,72427.13%
122,23256,68841,30827.13%
93,36445,14432,89627.13%
106,96848,15235,08827.13%
92,91644,72032,58827.13%
136,52863,68446,40827.13%
129,84859,57243,41227.13%
83,96034,06424,82427.13%
108,16451,00837,17227.13%
78,11236,35226,49227.12%
111,34852,42838,20827.12%
116,46852,60038,33627.12%
26,24414,97210,91227.12%
96,23242,13230,70827.11%
101,98048,76035,54027.11%
144,90864,03246,67227.11%
144,90864,03246,67227.11%
145,23667,47249,18027.11%
469,676223,044162,57627.11%
135,03660,76044,28827.11%
72,43336,38826,52427.11%
151,63661,74445,00827.11%
135,50062,26445,38827.10%
77,29635,95226,20827.10%
146,28061,46044,80427.10%
86,79635,42425,82427.10%
107,83648,53235,38027.10%
84,46834,36825,05627.09%
62,51634,10424,86427.09%
99,81245,82833,41227.09%
138,00064,19646,80427.09%
149,68870,56051,44427.09%
81,76837,72427,50427.09%
88,37641,37230,16427.09%
153,29670,62451,49227.09%
115,88055,88840,74827.09%
96,68840,78429,73627.09%
80,87237,36427,24427.08%
618,393321,104234,14027.08%
72,52534,62025,24427.08%
107,09648,60835,44427.08%
138,31264,32446,90427.08%
135,52063,58846,36827.08%
76,28439,85229,06027.08%
141,13667,73249,39227.08%
108,08851,87237,82827.07%
138,76465,02447,42027.07%
133,63263,48846,30027.07%
151,92870,78851,62427.07%
138,53265,54447,80027.07%
314,784113,32882,64827.07%
324,620100,97673,64027.07%
93,90845,77633,38427.07%
76,95233,66024,54827.07%
109,07650,15236,57627.07%
191,48081,16459,19627.07%
30,99215,06010,98427.07%
94,18446,26033,74027.06%
293,605174,156127,02427.06%
92,50046,29233,76427.06%
81,81241,40030,19627.06%
106,44449,26435,93227.06%
155,65276,38855,71627.06%
67,70132,64023,80827.06%
88,88840,43229,49227.06%
144,19669,78450,90427.05%
97,45246,97234,26427.05%
109,85649,75236,29227.05%
87,36842,62831,09627.05%
135,54865,39247,70427.05%
111,66857,83642,19227.05%
96,00445,29633,04427.05%
146,70474,36054,24827.05%
73,08136,74026,80427.04%
88,80040,52829,56827.04%
108,44048,80035,60427.04%
97,52040,93629,86827.04%
108,26050,58836,91227.03%
108,26852,51238,31627.03%
98,30443,47231,72027.03%
139,53262,28045,44427.03%
462,784220,404160,82827.03%
121,48456,85641,48827.03%
102,22847,09234,36427.03%
331,94099,80872,83227.03%
107,79649,59636,19227.03%
123,82456,22841,03227.03%
90,36438,86828,36427.02%
137,71263,11646,06027.02%
210,532106,24077,53227.02%
80,76029,68021,66027.02%
136,48460,29644,00427.02%
107,54852,24438,12827.02%
195,38484,71261,82427.02%
138,90463,21646,13627.02%
93,23241,86830,55627.02%
76,76128,69220,94027.02%
79,22042,58031,07627.02%
142,73659,68843,56427.01%
116,25256,41641,17627.01%
123,23655,48840,50027.01%
123,23655,48840,50027.01%
194,02084,50061,67627.01%
75,20431,33622,87227.01%
216,63285,62862,50027.01%
140,17263,71246,50427.01%
75,70834,70025,32827.01%
114,86451,85237,84827.01%
95,02041,66430,41227.01%
110,19249,39636,05627.01%
166,88074,57654,43627.01%
82,16835,99226,27227.01%
136,77663,20446,13627.00%
134,43262,76045,81227.00%
80,24437,13627,10827.00%
129,76859,41643,37227.00%
149,37277,10456,28427.00%
81,10037,67227,50027.00%
85,70442,38430,94027.00%
85,70442,38430,94027.00%
76,89234,41625,12427.00%
205,46883,97661,30427.00%
107,70448,65635,52027.00%
95,87244,10832,20027.00%
112,71251,47237,57627.00%
109,79651,48837,58827.00%
108,86451,44437,55627.00%
91,30442,64431,13227.00%
128,04857,00441,61626.99%
153,40474,40454,32026.99%
114,41252,92038,63626.99%
85,27641,68830,43626.99%
90,62442,31230,89226.99%
116,73256,49641,24826.99%
124,03259,68443,57626.99%
112,82449,13235,87226.99%
118,26857,86442,24826.99%
91,70041,68030,43226.99%
211,208105,06876,71626.98%
100,23645,86433,48826.98%
108,88047,32034,55226.98%
112,55251,44437,56426.98%
194,74484,19661,48026.98%
110,36851,28437,44826.98%
136,61260,24443,99226.98%
120,74055,90040,82026.98%
314,784113,32882,75626.98%
114,04853,18838,84026.98%
141,28067,73649,46426.98%
90,96442,38030,94826.97%
130,26062,14845,38426.97%
120,73656,74441,44026.97%
90,54437,98427,74026.97%
90,73639,46828,82426.97%
98,40838,96428,45626.97%
83,96041,70830,46026.97%
78,81640,86429,84426.97%
97,03640,63229,67626.96%
116,38455,76440,72826.96%
146,99261,87645,19226.96%
129,06060,96044,52426.96%
102,32448,32035,29226.96%
135,25263,97646,72826.96%
110,47249,95636,48826.96%
112,22849,66036,27226.96%
212,544106,34077,67226.96%
80,06836,36826,56426.96%
108,88452,26038,17226.96%
129,25260,60044,26426.96%
133,62059,83243,70426.96%
94,88845,16032,98826.95%
23,35213,1649,61626.95%
91,90841,11230,03226.95%
93,72841,84030,56426.95%
161,14078,35257,23626.95%
80,93644,36432,40826.95%
88,03243,34031,66026.95%
334,312102,19674,65626.95%
140,37262,99646,02026.95%
105,73248,79635,64826.94%
107,44449,37636,07226.94%
110,96051,70837,77626.94%
104,29647,70034,84826.94%
61,99224,97218,24426.94%
140,16467,21249,10426.94%
120,41251,81637,85626.94%
199,97385,92062,77226.94%
103,19649,66436,28426.94%
108,41251,54037,65626.94%
96,22442,26030,87626.94%
74,68138,44428,08826.94%
58,47228,12420,54826.94%
142,11677,64856,73226.94%
122,89256,13241,01226.94%
110,53246,67634,10426.93%
86,25634,75225,39226.93%
133,38459,84043,72426.93%
167,01755,10440,26426.93%
108,53250,14836,64426.93%
102,65248,53235,46426.93%
128,61258,81242,97626.93%
75,76838,07627,82426.93%
134,50062,56045,71626.92%
66,37332,26823,58026.92%
142,82872,29652,83226.92%
142,82872,29652,83226.92%
221,352107,42478,50426.92%
232,136111,19281,26026.92%
160,82057,49642,02026.92%
101,42449,51636,18826.92%
101,42449,51636,18826.92%
138,72464,96047,47626.92%
111,28850,39636,83226.91%
228,90474,80054,66826.91%
126,98454,54839,86826.91%
83,69742,36430,96426.91%
121,73260,16043,97226.91%
158,73668,91650,37226.91%
117,76855,44840,52826.91%
136,36862,28845,52826.91%
143,56069,47650,78426.90%
137,77263,50046,41626.90%
92,85643,76031,98826.90%
468,680222,996163,00826.90%
142,28465,14847,62426.90%
122,64457,68442,16826.90%
105,32448,82435,69226.90%
93,62040,61629,69226.90%
136,65260,29244,07626.90%
43,47224,21217,70026.90%
137,30059,09243,20026.89%
109,67250,12436,64426.89%
30,74015,90011,62426.89%
89,64843,47631,78426.89%
113,47652,44838,34426.89%
110,30446,70834,14826.89%
116,60856,49641,30426.89%
136,68862,86445,96026.89%
83,48038,00827,78826.89%
85,79234,42425,16826.89%
112,22454,95640,18026.89%
97,24042,06030,75226.89%
89,49334,90425,52026.89%
165,30872,53253,03226.88%
93,80842,07630,76426.88%
88,84044,08832,23626.88%
136,71663,90846,72826.88%
113,70055,47240,56026.88%
110,66850,22036,72026.88%
214,812105,62477,23226.88%
219,120106,89278,16026.88%
121,82457,63642,14426.88%
114,43653,87239,39226.88%
97,28842,92031,38426.88%
130,12862,52045,71626.88%
125,67250,54036,95626.88%
132,58463,04446,10026.88%
118,80052,79238,60426.88%
119,84458,10842,49226.87%
72,60028,71220,99626.87%
111,35642,74831,26026.87%
76,16834,60825,30826.87%
92,50841,63630,44826.87%
249,184104,60476,49626.87%
195,17682,75260,51626.87%
135,63260,97644,59226.87%
67,14043,33631,69226.87%
93,68843,86032,07626.87%
61,54826,18819,15226.87%
110,56851,18837,43626.87%
42,00919,14814,00426.86%
99,53642,03630,74426.86%
106,51650,76437,12826.86%
137,53663,61646,52826.86%
74,63337,24427,24026.86%
101,82443,24831,63226.86%
311,116160,096117,09626.86%
90,34842,19230,86026.86%
94,20442,14830,82826.86%
107,45250,40036,86426.86%
157,26167,38049,28426.86%
114,17655,70440,74426.86%
133,32860,50044,25226.86%
66,99235,77626,16826.86%
105,88449,04835,87626.86%
89,59640,97629,97226.85%
114,38053,31238,99626.85%
77,04834,75225,42026.85%
107,89250,90037,23226.85%
132,80056,70441,48026.85%
117,61656,63641,43226.85%
114,10851,86837,94426.85%
102,90049,45636,18026.84%
93,37644,21232,34426.84%
90,81639,44428,85626.84%
132,76062,94446,04826.84%
57,94826,43619,34026.84%
80,42141,26430,18826.84%
78,24839,61228,98026.84%
82,71635,50025,97226.84%
113,28452,47638,39226.84%
109,09251,28437,52026.84%
125,65256,02440,98826.84%
98,72845,87633,56426.84%
94,34444,68432,69226.84%
216,368105,54077,21626.84%
196,72080,24858,71226.84%
79,65733,22424,30826.84%
77,40835,37225,88026.83%
133,33260,83244,50826.83%
65,66035,92426,28426.83%
107,68850,44436,90826.83%
87,45642,38031,00826.83%
163,92875,13254,97226.83%
192,79290,96466,55626.83%
137,43661,83645,24426.83%
77,83635,70426,12426.83%
136,46464,65647,30826.83%
140,13664,46447,16826.83%
137,64059,33643,41626.83%
64,02532,10023,48826.83%
93,82443,92432,14026.83%
80,71637,56027,48426.83%
138,55264,41647,13626.83%
98,70845,16833,05226.82%
135,14064,85247,45626.82%
105,88845,12433,02026.82%
85,72835,31225,84026.82%
94,38842,11230,81626.82%
129,12456,89241,63226.82%
98,02843,23231,63626.82%
168,73275,70055,39626.82%
100,60448,70835,64426.82%
81,49637,01627,08826.82%
165,72458,38842,72826.82%
192,96472,81253,28426.82%
123,72459,09243,24426.82%
76,88435,21625,77226.82%
91,08843,03231,49226.82%
148,32457,54842,11626.82%
106,57645,49633,29626.82%
110,21251,36437,59226.81%
151,55269,82051,10026.81%
117,94055,72440,78426.81%
82,15635,95626,31626.81%
140,90465,45647,90826.81%
56,98530,40822,25626.81%
89,12439,46828,88826.81%
108,62451,06437,37626.81%
232,53276,28855,84026.80%
71,05232,77223,98826.80%
113,72051,77237,89626.80%
125,69659,49243,54826.80%
76,91234,74825,43626.80%
135,37665,08447,64426.80%
94,58844,15632,32426.80%
163,06553,23638,97226.79%
75,28037,81627,68426.79%
60,72832,81624,02426.79%
61,67631,26422,88826.79%
140,57266,29248,53226.79%
116,76853,90439,46426.79%
88,74442,38031,02826.79%
99,74047,42834,72426.79%
89,02843,99632,21226.78%
166,22490,47266,24026.78%
100,76044,37232,48826.78%
227,42498,34872,00826.78%
139,19662,94046,08426.78%
81,07636,78826,93626.78%
28,15215,50411,35226.78%
110,59250,33636,85626.78%
76,47234,62425,35226.78%
100,28832,26423,62426.78%
136,99664,30447,08426.78%
79,43636,82026,96026.78%
64,88828,69621,01226.78%
107,92449,71636,40426.78%
27,02416,61212,16426.78%
70,98033,97224,87626.77%
77,28835,02025,64426.77%
100,68048,55635,55626.77%
151,45670,86851,89626.77%
105,87247,00834,42426.77%
91,41640,06029,33626.77%
179,56455,15240,38826.77%
93,32442,91631,42826.77%
96,29241,67630,52026.77%
97,75245,72833,48826.77%
93,84844,40032,51626.77%
106,82449,79636,46826.77%
224,65270,11251,34826.76%
90,96439,26428,75626.76%
222,86069,74051,07626.76%
109,65649,56436,30026.76%
92,53244,81232,82026.76%
106,58449,20836,04026.76%
111,67650,72037,14826.76%
214,092104,94076,86026.76%
99,40845,40033,25226.76%
96,35738,68828,33626.76%
148,66471,35252,26026.76%
76,80041,70830,54826.76%
110,20851,74037,89626.76%
94,20444,23632,40026.76%
84,87342,14430,86826.76%
139,79661,64045,14826.76%
229,89676,53256,05626.75%
107,84049,06835,94026.75%
93,23243,55231,90026.75%
116,42053,37639,09626.75%
79,21636,36426,63626.75%
142,72866,62848,80426.75%
17,90410,8567,95226.75%
99,20048,22435,32426.75%
110,60851,14037,46026.75%
136,82464,82447,48426.75%
99,64047,54034,82426.75%
101,26446,98834,42026.75%
97,75640,66429,78826.75%
118,82851,83637,97226.75%
90,59642,68431,26826.75%
118,58849,90836,56026.75%
171,33665,22847,78426.74%
63,87239,52028,95226.74%
214,380106,82078,25626.74%
111,54852,67638,59226.74%
85,09742,32831,01226.73%
99,10443,31631,73626.73%
113,76054,36039,82826.73%
102,91248,60035,60826.73%
134,78061,32444,93226.73%
93,85242,54431,17226.73%
110,25651,85237,99226.73%
64,29732,28023,65226.73%
92,96040,87229,94826.73%
135,62860,97244,67626.73%
98,99645,57233,39226.73%
74,58937,59627,54826.73%
223,97270,56851,70826.73%
46,31220,83615,26826.72%
130,53260,36844,23626.72%
143,52867,12049,18426.72%
78,29633,02424,20026.72%
107,06044,10432,32026.72%
104,79648,31235,40426.72%
114,71654,60440,01626.72%
80,32036,41626,68826.71%
81,67236,65626,86426.71%
105,31648,80035,76426.71%
68,46033,75224,73626.71%
52,56425,65218,80026.71%
31,04818,18013,32426.71%
113,69255,54440,70826.71%
113,30454,96040,28026.71%
91,53644,61232,69626.71%
76,11641,93230,73226.71%
99,61247,48834,80426.71%
117,80453,86839,48026.71%
91,08842,36831,05226.71%
113,55253,84039,46026.71%
110,24049,30436,13626.71%
142,77257,39242,06426.71%
78,23636,62026,84026.71%
116,34854,26439,77226.71%
219,960107,01678,43626.71%
98,06043,27231,71626.71%
29,52015,54811,39626.70%
224,44469,40050,86826.70%
87,31640,70029,83226.70%
82,76836,49226,74826.70%
133,70062,60445,88826.70%
77,58435,19225,79626.70%
76,30434,32425,16026.70%
77,15634,68425,42426.70%
66,07333,03624,21626.70%
99,39643,72032,04826.70%
77,57236,08426,45226.69%
93,18440,76029,88026.69%
78,26440,01229,33226.69%
120,01653,80039,44026.69%
109,59250,90837,32026.69%
57,94826,43619,38026.69%
56,87620,23214,83226.69%
239,37682,41260,41626.69%
310,028145,208106,45226.69%
90,60041,72430,58826.69%
231,064101,38874,32826.69%
91,10040,84029,94026.69%
30,22016,39612,02026.69%
150,82069,37650,86026.69%
185,81293,46468,52026.69%
93,87643,24031,70026.69%
75,56834,95225,62426.69%
124,02458,94843,21626.69%
184,52872,78453,36026.69%
184,52872,78453,36026.69%
106,14449,12036,01226.69%
135,07263,04846,22426.68%
107,58049,34836,18026.68%
83,26038,73628,40026.68%
76,56434,18025,06026.68%
142,15667,05649,16426.68%
112,66453,17638,98826.68%
93,66844,27232,46026.68%
111,52453,75239,41226.68%
113,32053,52839,24826.68%
79,76036,60026,83626.68%
126,07244,12832,35626.68%
145,18863,84846,81626.68%
97,45647,68434,96426.68%
105,94449,00435,93226.68%
87,54041,19230,20426.68%
89,79638,15227,97626.67%
77,70835,00425,66826.67%
103,11247,09234,53226.67%
99,57648,05235,23626.67%
76,50035,54826,06826.67%
117,99652,46838,47626.67%
96,24443,83232,14426.67%
77,82834,90825,60026.66%
107,10849,29636,15226.66%
90,29642,53231,19226.66%
85,54836,39626,69226.66%
114,99655,82840,94426.66%
80,55636,50426,77226.66%
342,956104,98476,99626.66%
95,66046,76834,30026.66%
128,82860,64844,48026.66%
115,02055,92441,01626.66%
86,78840,98030,05626.66%
179,95684,56062,02026.66%
105,90848,93635,89226.66%
88,20434,32025,17226.66%
80,57237,42827,45226.65%
90,55639,32028,84026.65%
107,50849,67636,43626.65%
142,22866,65648,89226.65%
162,70476,12855,84026.65%
90,96040,03229,36426.65%
138,57664,42447,25626.65%
120,03255,82440,94826.65%
109,95651,53237,80026.65%
143,62469,54851,01626.65%
96,95244,40432,57226.65%
77,54038,89628,53226.65%
95,37245,90833,67626.64%
140,73265,36847,95226.64%
58,40828,12020,62826.64%
134,04061,43645,06826.64%
94,54046,70834,26426.64%
107,40049,30836,17226.64%
111,71652,32838,38826.64%
131,89651,28037,62026.64%
72,90936,32426,64826.64%
116,67253,64039,35226.64%
115,33249,64836,42426.64%
81,82836,68826,91626.64%
222,30070,32851,59626.64%
103,28046,74034,29226.63%
123,67656,78841,66426.63%
164,79664,32847,19626.63%
195,48879,72458,49226.63%
106,72849,43236,26826.63%
112,27668,04449,92426.63%
122,18852,90438,81626.63%
118,53654,81240,21626.63%
116,16852,60438,59626.63%
142,93263,04846,26026.63%
97,00847,77235,05226.63%
75,96834,13225,04426.63%
98,72044,96432,99226.63%
98,14845,19233,16026.62%
58,72029,25221,46426.62%
136,12063,40446,52426.62%
177,96080,16458,82426.62%
81,22837,04027,18026.62%
113,48052,60838,60426.62%
221,74870,88452,01626.62%
135,80060,17244,15626.62%
116,13253,81639,49226.62%
109,94052,02838,18026.62%
75,30936,70026,93226.62%
106,80051,48037,78026.61%
125,30858,47242,91226.61%
109,24041,74430,63626.61%
103,51649,27636,16426.61%
95,49246,73634,30026.61%
79,78037,35627,41626.61%
81,88040,96430,06426.61%
102,22043,16031,67626.61%
110,79651,46037,76826.61%
101,80449,61236,41226.61%
76,54931,01622,76426.61%
225,720109,09280,06826.61%
107,31250,42837,01226.60%
141,94868,86450,54426.60%
131,84062,68846,01226.60%
32,32418,67613,70826.60%
109,10850,55637,10826.60%
135,39458,93243,25626.60%
114,22054,12039,72426.60%
140,55663,28046,44826.60%
80,87237,89627,81626.60%
171,36080,48859,08026.60%
138,82064,35247,23626.60%
93,25642,02030,84426.60%
88,26443,97632,28026.60%
110,90852,18838,30826.60%
113,96842,48831,18826.60%
80,88036,29226,64026.60%
113,26554,86840,27626.59%
265,502131,48896,52026.59%
115,95653,41239,20826.59%
108,51250,40437,00026.59%
109,72049,53636,36426.59%
104,43651,16437,56026.59%
104,43651,16437,56026.59%
96,64443,94432,26026.59%
129,01256,94441,80426.59%
138,32463,22046,41226.59%
108,19649,36436,24026.59%
32,03216,83612,36026.59%
170,05277,02056,54426.59%
121,68854,75640,20026.58%
121,65656,47241,46026.58%
80,34837,15227,27626.58%
61,40830,58022,45226.58%
97,53646,41234,07626.58%
112,24851,36437,71226.58%
131,72859,61643,77226.58%
99,14048,73635,78426.58%
248,77283,79261,52426.58%
99,58846,97634,49226.58%
110,50851,43237,76426.57%
27,69216,45212,08026.57%
90,92442,82431,44426.57%
162,83354,22039,81226.57%
112,43653,22839,08426.57%
141,34864,53247,38826.57%
93,80041,82830,71626.57%
85,93234,36025,23226.57%
111,31652,32438,42426.57%
121,36454,84040,27226.56%
149,89260,92444,74026.56%
92,68045,35633,30826.56%
335,136103,90876,30826.56%
112,06450,32836,96026.56%
76,66035,28425,91226.56%
78,53638,02827,92826.56%
132,19267,68449,70826.56%
90,17238,18028,04026.56%
58,40828,12020,65226.56%
95,44046,16433,90426.56%
137,42863,51646,64826.56%
80,10441,00030,11226.56%
91,78443,51631,96026.56%
44,71625,20018,50826.56%
76,56434,66025,45626.56%
116,58053,56839,34426.55%
209,57691,74467,38426.55%
129,14462,00845,54426.55%
109,76050,75637,28026.55%
99,79647,74435,06826.55%
84,91634,21625,13226.55%
84,41239,28028,85226.55%
94,10445,50433,42426.55%
116,42056,12841,22826.55%
98,23644,75232,87226.55%
110,36050,99237,45626.55%
93,49245,04033,08426.55%
112,72455,15240,51226.54%
79,53238,27628,11626.54%
77,22042,27231,05226.54%
132,88861,21644,96826.54%
138,01256,56041,54826.54%
101,18446,98034,51226.54%
101,18445,71633,58426.54%
107,89649,16836,12026.54%
133,93262,37245,82026.54%
60,89630,10422,11626.53%
97,56844,47232,67226.53%
163,67354,27239,87226.53%
67,42432,82024,11226.53%
144,72470,60051,86826.53%
82,34440,13229,48426.53%
142,08864,80047,60826.53%
90,94440,68029,88826.53%
110,85254,35639,93626.53%
80,80036,85227,07626.53%
110,30851,93238,15626.53%
80,54837,80427,77626.53%
98,12048,55635,67626.53%
92,84043,38431,87626.53%
60,92832,62023,96826.52%
125,88866,49248,85626.52%
79,35636,43626,77226.52%
163,60485,51262,83226.52%
55,05726,99619,83626.52%
111,16053,79639,52826.52%
36,70019,06414,00826.52%
99,38447,24034,71226.52%
77,40036,82027,05626.52%
90,55239,14428,76426.52%
112,44054,94040,37226.52%
97,22043,56832,01626.51%
107,79250,37237,01626.51%
131,41261,53645,22026.51%
111,77252,84838,83626.51%
76,65333,32824,49226.51%
135,34861,24045,00426.51%
86,20438,23228,09626.51%
90,46441,84030,74826.51%
111,10851,19637,62426.51%
80,07237,51227,56826.51%
120,19262,77246,13226.51%
108,32450,53637,14026.51%
77,65637,01627,20426.51%
119,57262,97246,28026.51%
87,60844,80432,92826.51%
114,36056,28841,36826.51%
140,97264,89247,69226.51%
113,41255,44840,75226.50%
130,00864,23247,20826.50%
120,84858,19642,77226.50%
115,14455,20840,57626.50%
341,90899,58073,18826.50%
97,17644,31232,56826.50%
123,59255,80041,01226.50%
94,01643,56032,01626.50%
87,23239,83229,27626.50%
131,63457,49642,26026.50%
107,36449,82836,62426.50%
122,04054,91640,36426.50%
139,44065,30448,00026.50%
58,47228,12420,67226.50%
98,65644,76032,90026.50%
58,18029,03221,34026.49%
90,61241,74430,68426.49%
56,99328,83621,19626.49%
101,94449,52036,40026.49%
110,22053,16439,08026.49%
100,30845,79633,66426.49%
87,32043,78832,18826.49%
124,23658,84443,25626.49%
195,53386,76463,78026.49%
79,50036,51226,84026.49%
77,30034,36825,26426.49%
149,31667,36849,52426.49%
114,30452,93238,91226.49%
78,60842,66431,36426.49%
79,18836,30826,69226.48%
134,76865,12847,88026.48%
97,45246,65634,30026.48%
141,23657,94042,59626.48%
134,71259,74043,92026.48%
80,52439,68429,17626.48%
108,28046,39234,10826.48%
91,87243,62832,07626.48%
151,53269,58851,16426.48%
64,37732,39223,81626.48%
108,97642,96831,59226.48%
176,32854,52840,09226.47%
132,59660,48444,47226.47%
34,73619,08414,03226.47%
134,50461,46845,19626.47%
133,62855,28840,65226.47%
83,33642,46031,22026.47%
112,68453,12839,06426.47%
138,93664,29647,27626.47%
106,41249,89636,68826.47%
80,16836,22426,63626.47%
97,50448,39235,58426.47%
84,03242,83231,49626.47%
119,53655,25640,63226.47%
137,54865,77648,36826.47%
90,76543,75632,17626.46%
65,78835,77626,30826.46%
124,20456,89241,83626.46%
121,90854,94440,40426.46%
121,96856,18841,32026.46%
77,48837,09627,28026.46%
64,88828,69221,10026.46%
89,41243,78032,19626.46%
84,67239,83629,29626.46%
62,26832,98824,26026.46%
138,78479,00858,10426.46%
133,72465,31248,03226.46%
80,02836,02826,49626.46%
193,31674,94455,11626.46%
193,31674,94455,11626.46%
135,62065,54448,20426.46%
78,94035,34025,99226.45%
30,86417,84413,12426.45%
90,56039,13628,78426.45%
78,65635,76426,30426.45%
110,63651,08437,57226.45%
84,95239,38028,96426.45%
135,05660,84044,74826.45%
107,67250,93637,46426.45%
78,23637,22027,37626.45%
126,22057,08441,98826.45%
65,56931,84023,42026.44%
131,84463,40846,64026.44%
132,18862,52045,98826.44%
315,844113,53283,51226.44%
135,40064,29647,29626.44%
138,92863,10446,42026.44%
85,10042,97231,61226.44%
170,89284,39262,08426.43%
89,14042,26831,09626.43%
81,88441,22430,32826.43%
72,10032,70424,06026.43%
59,94426,15219,24026.43%
81,06037,62427,68026.43%
136,81264,41247,38826.43%
142,14866,03248,58026.43%
105,14849,14436,15626.43%
139,20464,67647,58426.43%
101,42048,51235,69226.43%
124,72856,65641,68426.43%
310,472144,648106,42426.43%
109,26449,21636,21226.42%
107,70450,06436,83626.42%
103,24048,05235,35626.42%
80,11237,36427,49226.42%
96,53645,40433,40826.42%
78,86036,12426,58026.42%
106,92441,07630,22426.42%
187,68893,66068,91626.42%
109,51251,32837,76826.42%
103,20845,48433,46826.42%
139,56851,05637,56826.42%
337,596103,69276,30026.42%
143,50064,30847,32026.42%
158,14073,00053,71626.42%
136,38463,81246,95626.42%
305,444144,372106,23626.42%
103,00450,95637,49626.41%
97,54444,67632,87626.41%
120,47255,86841,11226.41%
138,04467,32049,54026.41%
78,10837,02027,24426.41%
113,01255,18440,61226.41%
88,22838,28428,17626.40%
80,17239,57229,12426.40%
162,65270,48051,87226.40%
92,57642,10430,98826.40%
105,34449,60436,50826.40%
99,82047,27234,79226.40%
135,25662,80446,22426.40%
182,04978,62457,86826.40%
99,65645,35233,38026.40%
79,68436,29226,71226.40%
105,32448,68835,83626.40%
63,05733,18824,42826.40%
159,99672,36453,26426.39%
157,16482,33660,60426.39%
77,97637,02427,25226.39%
122,00459,21243,58426.39%
198,44062,82046,24026.39%
99,06847,20434,74826.39%
115,12855,52840,87626.39%
138,65267,23649,49626.38%
102,24050,65237,28826.38%
30,54919,22414,15226.38%
82,86441,46830,52826.38%
233,36077,11656,77226.38%
135,27665,18447,98826.38%
98,43244,73232,93226.38%
117,20056,69641,74026.38%
110,40056,62441,68826.38%
135,33665,41248,16026.37%
97,64444,60432,84026.37%
126,66866,65649,07626.37%
60,52832,45623,89626.37%
78,00436,76427,06826.37%
69,97333,29224,51226.37%
111,29652,69238,79626.37%
77,35636,44826,83626.37%
77,64036,05626,54826.37%
82,67238,18028,11226.37%
82,06541,39630,48026.37%
111,01651,56037,96426.37%
76,93234,69225,54426.37%
119,59658,79643,29226.37%
116,32843,09631,73226.37%
108,78850,86837,45626.37%
138,92063,88847,04426.36%
105,67648,82435,95226.36%
79,47636,14426,61626.36%
91,88841,48830,55226.36%
97,12842,52031,31226.36%
56,26031,86823,46826.36%
83,92039,39629,01226.36%
112,10052,29638,51226.36%
141,50066,51648,98426.36%
89,50841,85630,82426.36%
86,88042,08430,99226.36%
62,42432,50823,94026.36%
79,24836,13626,61226.36%
103,59647,96035,32026.36%
96,61645,47233,48826.35%
77,42435,59226,21226.35%
109,30051,27237,76026.35%
137,24061,08044,98426.35%
134,94061,53645,32026.35%
111,55651,48837,92026.35%
100,84445,87233,78426.35%
107,14047,14834,72426.35%
101,17248,86435,98826.35%
161,65676,23656,14826.35%
110,66451,58437,99226.35%
95,37245,01233,15226.35%
82,05241,17230,32426.35%
78,50435,48026,13226.35%
161,04953,41239,34026.35%
120,02053,27639,24026.35%
88,83335,52826,16826.35%
78,13636,10826,59626.34%
100,79649,97236,80826.34%
90,68839,40429,02426.34%
73,02433,46824,65226.34%
57,90428,50420,99626.34%
138,32064,02447,16026.34%
343,068105,10477,42026.34%
86,82843,63232,14026.34%
137,37268,42450,40426.34%
106,29647,61635,07626.34%
305,764144,420106,38826.33%
247,79283,01261,15226.33%
315,844113,53283,63626.33%
88,70842,44431,26826.33%
137,54865,06447,93226.33%
94,10045,98833,88026.33%
94,24443,05631,72026.33%
100,20847,60035,06826.33%
91,84039,92829,41626.33%
97,48044,38032,69626.33%
104,02050,71637,36426.33%
74,42136,04026,55226.33%
32,22016,66812,28026.33%
165,27676,08056,05226.32%
138,80857,48442,35226.32%
155,94872,69653,56026.32%
82,51640,14829,58026.32%
129,03259,84444,09226.32%
111,67252,53638,70826.32%
104,46050,10836,92026.32%
76,91235,73226,32826.32%
108,14450,38437,12426.32%
114,18854,58040,21626.32%
101,94045,24833,34026.32%
65,03332,13223,67626.32%
71,96534,65625,53626.32%
59,48020,91615,41226.31%
134,64862,99246,41626.31%
127,74058,82843,34826.31%
85,95643,49232,04826.31%
113,08437,33627,51226.31%
116,60855,94441,22426.31%
92,81241,32030,44826.31%
72,55736,76027,08826.31%
110,84850,73237,38426.31%
75,99634,37625,33226.31%
82,69637,76827,83226.31%
193,06075,06055,31626.30%
193,06075,06055,31626.30%
106,99247,30834,86426.30%
76,34034,42825,37226.30%
78,57235,35626,05626.30%
80,65636,83227,14426.30%
107,20446,52034,28426.30%
133,74073,72854,33626.30%
137,85265,98848,63226.30%
107,36447,90835,30826.30%
113,80157,34042,26026.30%
249,924102,21275,33226.30%
85,35639,88429,39626.30%
135,75665,84048,52826.29%
70,33232,10023,66026.29%
132,09253,12839,16026.29%
137,96065,39248,20026.29%
194,91680,07659,02426.29%
194,91680,07659,02426.29%
124,91257,94042,70826.29%
72,00934,82825,67226.29%
92,22841,50830,59626.29%
243,612113,19283,43626.29%
98,54044,67632,93226.29%
136,92866,36048,91626.29%
45,27625,50418,80026.29%
114,33254,82840,41626.29%
97,31243,82832,30826.28%
117,09260,99644,96426.28%
110,08450,89237,51626.28%
118,04462,04845,74026.28%
134,62861,12045,05626.28%
100,12846,28434,12026.28%
135,65260,77644,80426.28%
83,14438,14428,12026.28%
114,84853,96039,78026.28%
113,94453,50839,44826.28%
99,79647,55635,06026.28%
113,74054,44040,13626.27%
85,28439,93229,44026.27%
84,36839,94829,45226.27%
105,31648,36835,66026.27%
77,51636,92027,22026.27%
73,80441,64030,70026.27%
90,46439,05228,79226.27%
121,94050,01636,87626.27%
107,28448,92036,06826.27%
106,12446,33234,16026.27%
89,94042,42031,27626.27%
110,98052,74438,88826.27%
115,41653,61639,53226.27%
109,08451,28837,81626.27%
90,03641,26830,42826.27%
109,99651,06037,64826.27%
120,32455,79641,14026.27%
73,75736,82427,15226.27%
106,93648,90436,06026.26%
91,07239,44829,08826.26%
89,53245,34433,43626.26%
87,61641,73630,77626.26%
67,58037,13627,38426.26%
92,72043,16831,83226.26%
115,04450,63237,33626.26%
79,35636,19226,68826.26%
110,16853,06039,12826.26%
129,94852,66838,84026.26%
76,52434,90425,74026.25%
108,72052,38038,62826.25%
77,24035,88026,46026.25%
82,57236,44426,87626.25%
79,03636,04826,58426.25%
92,25645,86033,82026.25%
92,25645,86033,82026.25%
57,15627,68420,41626.25%
94,62445,10033,26026.25%
99,26450,38837,16026.25%
51,20023,00816,96826.25%
60,14832,51623,98026.25%
137,45262,20045,87226.25%
107,53646,70434,44426.25%
81,87636,40426,84826.25%
109,03650,46037,21626.25%
78,32533,25624,52826.24%
113,08045,98433,91626.24%
78,91236,03226,57626.24%
105,08051,97638,33626.24%
84,57240,92830,18826.24%
105,61241,20830,39626.24%
124,40055,08440,63226.24%
67,62425,02018,45626.24%
78,48439,04828,80426.23%
249,25679,63658,74426.23%
111,06052,68038,86026.23%
75,71234,14025,18426.23%
99,22847,30034,89226.23%
76,67234,73625,62426.23%
106,31650,24437,06426.23%
111,83654,22440,00026.23%
76,06436,18826,69626.23%
32,85218,57613,70426.23%
89,53641,35230,50826.22%
80,37633,46824,69226.22%
194,45678,27257,74826.22%
194,45678,27257,74826.22%
110,52051,18037,76026.22%
126,70658,90043,45626.22%
123,68857,19242,19626.22%
143,74467,14049,53626.22%
82,35238,30828,26426.22%
85,75240,05229,55226.22%
100,36447,72835,21626.22%
95,77244,26832,66426.21%
130,16060,10844,35226.21%
158,19270,06451,70026.21%
130,69259,16843,66026.21%
138,90454,95640,55226.21%
105,50047,86035,31626.21%
77,05634,24825,27226.21%
214,756109,61280,88426.21%
154,83260,72844,81226.21%
164,94859,44843,86826.21%
99,70047,66835,17626.21%
76,98034,32825,33226.21%
126,74055,28840,80026.20%
105,04047,78035,26026.20%
92,12841,72030,78826.20%
204,55388,21265,10026.20%
123,08457,46842,41226.20%
78,29636,56826,98826.20%
110,66848,72435,96026.20%
156,62079,40058,60026.20%
121,66856,43641,65226.20%
110,54056,94042,02426.20%
73,23735,90026,49626.19%
86,75240,00829,52826.19%
136,25661,31645,25626.19%
130,01258,98043,53226.19%
129,42855,88041,24426.19%
77,61636,33226,81626.19%
50,06827,79620,51626.19%
74,63234,88425,74826.19%
71,46426,68419,69626.19%
124,96056,53241,72826.19%
216,07694,55269,79226.19%
325,049204,320150,81626.19%
79,54036,41626,88026.19%
61,60830,36822,41626.19%
89,78841,38430,54826.18%
87,20041,24830,44826.18%
93,03240,16429,64826.18%
129,95657,08042,13626.18%
89,19642,68831,51226.18%
127,90457,43242,39626.18%
67,87633,12424,45226.18%
99,88447,70035,21226.18%
81,66838,42828,36826.18%
106,73252,08838,45226.18%
88,88042,26431,20026.18%
161,03753,12839,22026.18%
136,29262,06845,82026.18%
79,51235,66826,33226.17%
137,15459,46443,90026.17%
89,50838,98828,78426.17%
379,084106,11678,34426.17%
94,14043,97232,46426.17%
128,26861,15245,14826.17%
84,33233,58024,79226.17%
98,32046,31234,19226.17%
77,74436,64027,05226.17%
25,89615,70011,59226.17%
77,02037,54827,72426.16%
101,86048,63235,90826.16%
87,70041,89230,93226.16%
101,85248,57635,86826.16%
64,54429,72421,94826.16%
116,24060,79644,89226.16%
127,12855,99641,34826.16%
24,76016,57612,24026.16%
299,264126,03693,06826.16%
76,37634,40825,40826.16%
81,84840,43629,86026.15%
34,16019,74414,58026.15%
105,09740,98830,26826.15%
105,09740,98830,26826.15%
120,16463,52046,90826.15%
144,32867,33249,72426.15%
117,51651,46038,00426.15%
79,46435,53626,24426.15%
105,01248,17635,58026.15%
110,00451,80438,26026.14%
111,74050,06036,97226.14%
79,20837,57627,75226.14%
94,65632,08423,69626.14%
58,28028,62821,14426.14%
106,21644,68033,00026.14%
98,17248,38435,73626.14%
72,90535,80826,44826.14%
88,48045,14433,34426.14%
103,19644,30432,72426.14%
79,00036,34826,84826.14%
80,70843,22031,92426.14%
84,69639,88429,46026.14%
105,46048,60835,90426.14%
250,668103,43276,40026.14%
230,28476,27256,34026.13%
105,04449,56436,61226.13%
79,08436,17226,72026.13%
61,42437,89227,99226.13%
134,88861,96445,77626.12%
165,99678,53258,01626.12%
110,23653,30039,37626.12%
56,52829,81222,02426.12%
86,90839,79629,40026.12%
30,68519,41614,34426.12%
106,48846,68834,49226.12%
149,23264,54447,68426.12%
82,93243,36832,04026.12%
107,36851,50038,04826.12%
175,78883,30861,54826.12%
102,04045,89633,90826.12%
74,32834,82425,72826.12%
116,15655,46840,98026.12%
74,12034,74825,67226.12%
115,72852,16438,54026.12%
127,61259,60844,04026.12%
130,51660,77244,90026.12%
86,89243,83632,38826.12%
246,224107,66879,55226.11%
230,55275,34855,67226.11%
110,85251,53238,07626.11%
76,73635,17625,99226.11%
111,27658,58843,29226.11%
31,02119,59614,48026.11%
56,38425,74019,02026.11%
102,84442,19631,18026.11%
111,03249,79636,79626.11%
80,47237,96828,05626.11%
112,21651,65238,16826.11%
108,18851,07237,74026.10%
112,64050,95237,65226.10%
114,78852,59238,86426.10%
84,70034,91225,80026.10%
42,04121,01215,52826.10%
111,48453,59639,60826.10%
90,82840,95230,26426.10%
114,60060,24844,52426.10%
123,03257,12442,21626.10%
69,56431,80423,50426.10%
86,40840,46429,90426.10%
195,56889,37666,05226.10%
128,78856,82041,99226.10%
79,50437,60027,78826.10%
106,99250,09637,02426.09%
86,90442,29631,26026.09%
120,97656,58441,82026.09%
68,16840,85630,19626.09%
88,14439,34029,07626.09%
77,32036,18426,74426.09%
115,02449,60036,66026.09%
105,76848,80436,07226.09%
129,80068,06450,30826.09%
100,54450,96837,67226.09%
90,53639,30029,04826.09%
134,32464,40847,60826.08%
110,95755,11640,74026.08%
141,91267,21649,68426.08%
136,54461,12845,18426.08%
248,11684,86862,73226.08%
87,92441,22430,47226.08%
122,12854,35240,17626.08%
88,06441,34830,56426.08%
92,38448,58835,91626.08%
107,15250,03236,98426.08%
101,72849,38836,50826.08%
170,26483,89262,01626.08%
78,91236,72427,14826.08%
80,83637,98428,08026.07%
264,608113,98484,26426.07%
84,42839,15228,94426.07%
104,50847,01234,75626.07%
103,89646,84434,63226.07%
91,54843,39232,08026.07%
95,66445,96033,98026.07%
126,72457,02842,16426.06%
91,45638,41628,40426.06%
76,67233,42824,71626.06%
215,14095,02070,25626.06%
87,92844,74033,08026.06%
97,85248,34835,74826.06%
97,34442,97631,77626.06%
101,40045,26433,46826.06%
119,31253,90839,86026.06%
101,58444,94433,23226.06%
96,24852,46838,79626.06%
124,52065,01648,07626.06%
154,16469,86851,66426.05%
119,77655,20840,82426.05%
89,46839,10428,91626.05%
83,54840,16429,70026.05%
125,74459,44843,96026.05%
59,10828,49621,07226.05%
59,32829,35621,70826.05%
59,32829,35621,70826.05%
98,27644,28032,74426.05%
81,01637,62027,82026.05%
26,76415,04811,12826.05%
207,73688,44865,40826.05%
134,15263,11246,67226.05%
133,74053,48439,55226.05%
121,00457,89242,81226.05%
201,28497,09671,80426.05%
140,59268,01250,29626.05%
84,90041,81630,92426.05%
81,09638,25628,29226.05%
94,51642,28031,26826.05%
80,49236,60027,06826.04%
114,80061,92845,80026.04%
84,77640,07229,63626.04%
200,46475,36855,74026.04%
200,46475,36855,74026.04%
117,44855,74041,22426.04%
105,57751,26037,91226.04%
117,20055,01240,68826.04%
144,38460,72844,91626.04%
122,98458,42443,21226.04%
101,34850,17637,11226.04%
23,40813,53610,01226.03%
41,86019,85214,68426.03%
41,86019,85214,68426.03%
198,67677,42457,27226.03%
198,67677,42457,27226.03%
186,40095,57670,70026.03%
131,80869,31251,27226.03%
84,93239,82029,45626.03%
131,05258,14043,00826.03%
120,95258,75643,46426.03%
104,56844,66433,04026.03%
27,70816,29212,05226.03%
29,07617,56812,99626.02%
114,96850,49237,35226.02%
75,31734,90825,82426.02%
118,26062,16445,98826.02%
132,59657,00042,16826.02%
58,62029,79222,04026.02%
81,04438,12428,20426.02%
131,41663,18846,74826.02%
116,80456,19641,57626.02%
81,49638,79228,70026.02%
131,98469,51251,42826.02%
115,08471,77653,10426.01%
113,60454,34040,20426.01%
101,91646,30034,25626.01%
96,11230,90822,86826.01%
123,71659,28443,86426.01%
93,78446,24434,21626.01%
83,81638,54028,51626.01%
107,37651,66038,22426.01%
134,92853,89239,87626.01%
113,64455,37240,97226.01%
105,68850,76037,56026.00%
153,68082,52461,06426.00%
24,86414,33610,60826.00%
123,12458,13243,01626.00%
98,01242,88831,73626.00%
123,81664,58447,79226.00%
127,68860,40044,69626.00%
136,67667,92450,26426.00%
81,63640,48029,95626.00%
90,86843,00431,82426.00%
107,97652,72839,02026.00%
102,06448,42035,83226.00%
81,84837,00427,38426.00%
125,74458,39243,21226.00%
77,76035,16026,02026.00%
108,06450,93237,69226.00%
97,87641,19230,48426.00%
118,90047,81635,38825.99%
121,32455,69641,22025.99%
67,54932,61224,13625.99%
121,15658,42843,24425.99%
126,75659,06443,71625.99%
103,06049,07636,32425.98%
107,52850,83237,62425.98%
105,82451,42038,06025.98%
113,50460,56844,83225.98%
102,97245,71233,83625.98%
102,18446,66834,54425.98%
99,18846,79234,63625.98%
106,58846,28434,26025.98%
170,13876,43256,57625.98%
90,61642,00431,09225.98%
98,51632,84424,31225.98%
175,11273,40854,34025.98%
88,10038,85628,76425.97%
90,85241,24430,53225.97%
127,41258,18843,07625.97%
91,04844,60433,02025.97%
58,69229,80422,06425.97%
103,32846,41234,36025.97%
28,09215,51211,48425.97%
113,77254,00839,98425.97%
31,10119,76414,63225.97%
110,60449,15636,39225.97%
75,07235,12826,00825.96%
22,83311,2328,31625.96%
72,29336,60827,10425.96%
135,72860,30844,65225.96%
66,17631,98823,68425.96%
100,76850,01637,03225.96%
106,00851,48038,11625.96%
58,78031,94423,65225.96%
168,59658,28443,15625.96%
77,88432,30423,92025.95%
111,24051,94038,46025.95%
83,91241,35230,62025.95%
261,284112,97683,65625.95%
98,19246,33234,30825.95%
98,26038,36428,40825.95%
85,64047,42835,12025.95%
87,39245,81233,92425.95%
133,25660,07244,48425.95%
95,64846,92434,74825.95%
130,85669,34051,34825.95%
82,11637,92428,08425.95%
136,77247,99235,54025.95%
350,212101,71275,32425.94%
119,34062,75646,47625.94%
92,12444,30032,80825.94%
92,08442,38831,39225.94%
84,09239,56829,30425.94%
158,39672,13653,42425.94%
72,24135,76026,48425.94%
78,91236,47227,01225.94%
104,08048,68836,06025.94%
101,81647,18034,94425.93%
63,12834,59625,62425.93%
97,16845,64033,80425.93%
133,62864,73647,94825.93%
52,14033,13224,54025.93%
89,87241,48030,72425.93%
130,19268,58450,80025.93%
101,98049,41236,60025.93%
108,86053,96439,97225.93%
81,06838,68428,65625.92%
119,04054,62440,46425.92%
96,60043,60832,30425.92%
486,968195,620144,91225.92%
91,30043,74832,40825.92%
112,62059,95244,41225.92%
179,32868,13250,47225.92%
179,32868,13250,47225.92%
179,32868,13250,47225.92%
89,83239,41629,20025.92%
103,70046,61234,53225.92%
88,48439,42029,20425.92%
88,08039,66829,38825.92%
78,12435,30026,15225.92%
181,40082,74861,30425.91%
128,56856,14041,59225.91%
53,72126,05619,30425.91%
127,71660,06444,50025.91%
129,11661,41245,50025.91%
88,59241,37630,65625.91%
138,43264,75247,97625.91%
105,35248,35635,82825.91%
116,46056,74042,04025.91%
96,82446,87634,73225.91%
29,85615,78011,69225.91%
81,55637,02827,43625.90%
23,20815,50411,48825.90%
113,79249,83636,92825.90%
79,30439,44429,22825.90%
87,17638,11628,24425.90%
106,16851,24437,97225.90%
86,41243,69232,37625.90%
51,18429,96422,20425.90%
109,34050,58437,48425.90%
71,28432,31223,94425.90%
123,93261,01245,21225.90%
90,28839,60429,34825.90%
124,15661,58445,63625.90%
107,78851,54438,19625.90%
34,38818,41213,64425.90%
80,26039,40429,20025.90%
109,33651,05237,83225.90%
28,82414,98411,10425.89%
95,94444,39632,90025.89%
74,07232,59624,15625.89%
149,54068,96451,10825.89%
109,30050,96837,77225.89%
89,87241,32830,62825.89%
98,70849,20836,46825.89%
250,728122,75290,97225.89%
99,30447,38835,12025.89%
215,084109,45281,12025.89%
68,33640,22429,81225.89%
109,18050,64037,53225.88%
78,61236,68827,19225.88%
92,30041,28030,59625.88%
66,66832,70424,24025.88%
110,19757,03242,27225.88%
128,90858,34843,24825.88%
115,28853,85239,91625.88%
114,79257,62442,71225.88%
133,50847,68835,34825.88%
84,27240,11629,73625.87%
80,65236,71627,21625.87%
125,26060,10844,55625.87%
93,66042,62431,59625.87%
136,86863,37246,97625.87%
91,55238,42028,48025.87%
113,49655,66041,26025.87%
81,01643,78432,46025.86%
101,92047,74835,40025.86%
114,26854,54040,43625.86%
87,97243,03231,90425.86%
40,92519,89214,74825.86%
350,420165,076122,38825.86%
110,19650,16037,19225.85%
75,44435,69626,46825.85%
354,288102,29275,84825.85%
110,13647,61235,30425.85%
128,33267,97650,40425.85%
93,75241,68830,91225.85%
87,03641,18030,53625.85%
93,81242,49631,51225.85%
118,00454,90840,71625.85%
51,64524,80818,39625.85%
186,20480,31659,56025.84%
136,53281,02860,08825.84%
99,64846,51234,49225.84%
74,66433,60424,92025.84%
101,99646,36034,38025.84%
55,02420,21614,99225.84%
78,53635,94426,65625.84%
89,36442,04831,18425.84%
89,68838,87628,83225.84%
116,98052,31638,80025.84%
117,50455,67641,29225.84%
57,90428,50421,14025.83%
135,87664,92448,15225.83%
105,92848,62036,06025.83%
74,44833,54024,87625.83%
106,45648,98036,32825.83%
178,56873,49654,51225.83%
101,85647,76035,42425.83%
77,66435,99226,69625.83%
60,75630,82022,86025.83%
98,32446,57234,54425.83%
121,42453,68439,82025.83%
129,74459,29243,98025.82%
96,87644,51633,02025.82%
254,928127,74494,75625.82%
111,02451,76838,40025.82%
166,02498,73673,24025.82%
97,71245,16033,50025.82%
129,97658,53243,42025.82%
99,79634,25625,41225.82%
35,11617,38412,89625.82%
132,84461,14445,36025.81%
89,13238,80028,78425.81%
115,20860,07644,56825.81%
88,07240,97230,39625.81%
79,21638,64828,67225.81%
128,53259,33644,02025.81%
110,28050,96837,81225.81%
85,19235,46026,30825.81%
57,54826,68819,80025.81%
54,10426,08419,35225.81%
101,08047,92435,55625.81%
245,788100,82474,80425.81%
177,82879,22058,77625.81%
135,36064,35647,74825.81%
108,75251,74038,38825.81%
84,18135,62026,42825.81%
116,46455,01640,82025.80%
87,93243,70032,42425.80%
105,03247,81235,47625.80%
84,58837,86028,09225.80%
87,51241,27230,62425.80%
115,74060,42044,83225.80%
127,07659,84844,40825.80%
104,91651,08837,90825.80%
116,36454,48440,42825.80%
114,47250,17637,23225.80%
50,74823,84817,69625.80%
96,76045,00433,39625.79%
30,42019,16814,22425.79%
194,436103,19276,57625.79%
103,84447,68835,38825.79%
120,74056,98042,28425.79%
100,57247,84835,50825.79%
88,44838,35628,46425.79%
106,98448,74836,17625.79%
105,08848,84436,24825.79%
118,11653,54439,73625.79%
126,57266,63649,45225.79%
102,36847,34435,13625.79%
117,68855,28841,03225.78%
136,93263,40447,05625.78%
86,34040,75630,24825.78%
215,624110,01281,64825.78%
96,76846,84034,76425.78%
135,48067,14049,83225.78%
64,73225,80419,15225.78%
49,42822,48416,68825.78%
81,43238,93228,89625.78%
83,64035,20826,13225.78%
90,19639,61629,40425.78%
72,92033,98425,22425.78%
93,14444,80033,25225.78%
131,06061,28045,48425.78%
53,74125,88419,21225.78%
111,82451,05637,89625.78%
143,27660,02844,55625.77%
475,256194,552144,40825.77%
96,03646,06434,19225.77%
118,44075,96456,38825.77%
177,68860,53644,93625.77%
104,14048,84836,26025.77%
121,80856,92442,25625.77%
100,90048,57636,06025.77%
134,41261,12445,37625.76%
41,82820,57215,27225.76%
41,82820,57215,27225.76%
91,74441,03630,46425.76%
76,42033,94425,20025.76%
113,21655,56041,24825.76%
143,21255,59241,27225.76%
112,24051,06037,90825.76%
168,19272,01653,46825.76%
215,440110,10081,74425.75%
117,16847,03234,92025.75%
98,11644,26832,86825.75%
110,91653,04439,38425.75%
101,58849,08436,44425.75%
31,26817,69213,13625.75%
43,80024,65218,30425.75%
113,11254,01640,10825.75%
111,45251,82838,48425.75%
88,16837,55227,88425.75%
131,04458,21643,22825.75%
134,98461,03245,32025.74%
133,53261,37645,57625.74%
125,95243,29232,14825.74%
105,37644,28832,88825.74%
105,21250,30437,35625.74%
86,76040,04829,74025.74%
82,80040,53230,10025.74%
81,58838,12428,31225.74%
102,65249,03636,41625.74%
102,34046,80034,75625.74%
125,14460,71245,08825.73%
111,95653,14439,46825.73%
104,43648,66836,14425.73%
99,50445,42033,73225.73%
86,35241,20830,60425.73%
81,11237,32827,72425.73%
138,92865,23648,45225.73%
114,98044,10832,76025.73%
114,80453,36039,63225.73%
112,54047,46835,25625.73%
88,53642,85231,82825.73%
175,97681,22860,33225.73%
58,28028,62821,26425.72%
90,34440,58830,14825.72%
97,74844,22832,85225.72%
83,12440,66830,20825.72%
100,80846,51634,55225.72%
88,22041,87231,10425.72%
106,80448,50036,02825.72%
81,52037,47227,83625.72%
66,76432,48024,12825.71%
166,98458,56843,50825.71%
81,20437,72428,02425.71%
125,20059,61244,28425.71%
92,19643,10832,02425.71%
91,05239,93629,66825.71%
106,10448,46436,00425.71%
80,68040,15629,83225.71%
115,38457,85242,98025.71%
133,22860,98045,30425.71%
95,58441,70430,98425.70%
372,108107,62479,96025.70%
88,44037,34827,74825.70%
100,83646,96834,89625.70%
108,68057,58442,78425.70%
39,70021,20015,75225.70%
83,04837,40827,79625.70%
104,59648,36835,94025.69%
132,39663,65647,30025.69%
105,19649,77236,98425.69%
144,43249,76036,97625.69%
69,22031,87223,68425.69%
96,53644,18832,83625.69%
245,320102,65676,28425.69%
86,87240,82830,34025.69%
90,83244,05232,73625.69%
91,42838,86828,88425.69%
82,67239,86829,62825.68%
100,26446,55234,59625.68%
82,77239,24829,16825.68%
35,72421,24415,78825.68%
40,00021,69616,12425.68%
97,26443,92432,64425.68%
113,02855,06840,92825.68%
131,36460,39644,88825.68%
128,15260,98845,32825.68%
138,00064,85648,20425.68%
84,00837,79628,09225.67%
100,12049,15636,53625.67%
68,96832,42824,10425.67%
379,212107,78880,12025.67%
81,28838,04028,27625.67%
32,38816,92412,58025.67%
206,99687,76865,24025.67%
85,48440,55230,14425.67%
98,98044,63633,18025.67%
57,93228,49221,18025.66%
61,35729,80422,15625.66%
96,13242,86831,86825.66%
54,62826,98420,06025.66%
87,48844,27632,91625.66%
25,79214,92011,09225.66%
94,52447,24035,12025.66%
99,79646,35234,46025.66%
88,53639,69629,51225.65%
123,20458,18843,26025.65%
115,01244,18832,85225.65%
83,93641,24430,66425.65%
110,44454,46840,49625.65%
111,09652,50439,03625.65%
76,28035,78826,60825.65%
70,09632,12423,88425.65%
204,30480,17259,60825.65%
101,72447,40835,24825.65%
114,96457,42042,69225.65%
111,30449,74836,98825.65%
112,02852,34038,91625.65%
71,80834,18825,42025.65%
131,91658,08443,18825.65%
101,84446,94834,90825.65%
128,52059,57644,30025.64%
162,20470,85652,68825.64%
110,51652,63639,14025.64%
106,50849,55236,84825.64%
82,90038,18028,39225.64%
81,50434,03225,30825.63%
81,50434,03225,30825.63%
136,70463,34047,10425.63%
83,58038,45228,59625.63%
92,70441,49630,86025.63%
88,90845,16433,58825.63%
57,54826,68819,84825.63%
107,80851,11638,01625.63%
71,63234,65225,77225.63%
81,40040,49230,11625.62%
97,15646,95634,92425.62%
92,86841,52430,88425.62%
100,21246,20834,36825.62%
183,19680,41259,80825.62%
368,032106,59279,28025.62%
99,38046,88034,86825.62%
116,94853,20439,57225.62%
57,93228,49221,19225.62%
135,54866,36849,36425.62%
89,44438,75228,82425.62%
107,64051,35638,20025.62%
199,780112,43683,63625.61%
83,51239,58829,44825.61%
86,17640,08829,82025.61%
49,97623,98817,84425.61%
134,80047,12035,05225.61%
143,82461,06845,42825.61%
106,58053,74439,98025.61%
119,22855,06040,96025.61%
53,42927,16420,20825.61%
113,20852,10038,76025.60%
86,13640,08829,82425.60%
97,16045,46433,82425.60%
94,66043,80832,59225.60%
93,60842,38831,53625.60%
100,08046,07634,28025.60%
103,61648,42036,02425.60%
155,85271,74853,38025.60%
115,61644,42433,05225.60%
111,48047,96035,68425.60%
118,78055,72841,46425.60%
81,20840,52430,15225.59%
103,91249,44836,79225.59%
74,17634,76025,86425.59%
137,70862,89646,80025.59%
86,14841,09230,57625.59%
96,54841,60830,96025.59%
100,44047,98835,70825.59%
89,62843,42432,31225.59%
86,11638,54828,68425.59%
180,25668,82051,21225.59%
180,25668,82051,21225.59%
83,99238,85228,91225.58%
125,39259,24044,08425.58%
79,02039,40029,32025.58%
74,96037,58827,97225.58%
40,07220,62415,34825.58%
105,10046,42434,54825.58%
90,52843,22832,17225.58%
125,49258,94843,87225.58%
75,38434,80025,90025.57%
104,72049,28436,68025.57%
88,22439,43629,35225.57%
143,26472,41253,89625.57%
168,38478,56058,47225.57%
84,64440,23629,94825.57%
117,14459,07243,96825.57%
100,99247,56435,40425.57%
101,40847,78835,57225.56%
110,10050,70037,74025.56%
101,61646,86834,88825.56%
105,27645,05633,54025.56%
79,36436,16826,92425.56%
37,83619,17214,27225.56%
71,22033,69625,08425.56%
99,32046,83234,86425.56%
70,16427,59620,54425.55%
83,83238,24028,46825.55%
27,19615,92011,85225.55%
100,04047,13635,09225.55%
82,80037,18027,68025.55%
105,62849,22036,64425.55%
137,39661,98046,14425.55%
137,42449,26836,68025.55%
109,06450,54037,62825.55%
51,20126,47619,71225.55%
100,56446,83234,86825.55%
77,58836,87627,45625.55%
77,94436,72027,34025.54%
39,06118,05613,44425.54%
51,64925,82419,22825.54%
103,92449,56836,90825.54%
238,552109,12081,25225.54%
80,87636,60427,25625.54%
129,70849,70037,00825.54%
100,58847,93235,69225.54%
81,48040,58830,22425.53%
114,62054,07640,26825.53%
124,14860,75245,24025.53%
85,32041,67631,03625.53%
105,69651,04838,01625.53%
90,52042,38431,56425.53%
141,91665,88849,06825.53%
81,50836,35227,07225.53%
81,02840,02029,80425.53%
99,04846,15634,37625.52%
100,52843,98032,75625.52%
77,33235,83226,68825.52%
138,74849,75237,05625.52%
241,720101,65275,71225.52%
83,60434,18825,46425.52%
134,16061,34045,68825.52%
85,08439,86429,69225.52%
73,30833,70425,10425.52%
107,05251,48838,35225.51%
109,58452,35238,99625.51%
105,31651,00437,99225.51%
143,34850,71237,77625.51%
53,47327,16020,23225.51%
98,93245,86834,16825.51%
74,70835,09626,14425.51%
122,80460,96045,41225.51%
84,50142,64431,76825.50%
69,77231,77623,67225.50%
89,76048,87236,40825.50%
88,31239,63629,52825.50%
111,58453,75640,04825.50%
112,28054,05640,27225.50%
181,03680,99260,34025.50%
122,95650,86037,89225.50%
307,176108,25280,65225.50%
128,62868,34050,91625.50%
75,10834,89225,99625.50%
113,96061,02045,46425.49%
96,40445,68034,03625.49%
116,94454,29640,45625.49%
103,46849,40036,80825.49%
101,53651,11238,08425.49%
69,30832,10823,92425.49%
175,28876,66457,12425.49%
88,10838,60828,76825.49%
143,38858,55643,63225.49%
84,01638,43628,64025.49%
79,52836,42827,14425.49%
40,69620,82815,52025.48%
84,85642,12831,39225.48%
82,75240,42030,12025.48%
48,86424,04817,92025.48%
115,91257,22042,64025.48%
78,94435,80826,68425.48%
78,94435,80826,68425.48%
101,20847,48835,38825.48%
127,53655,74841,54425.48%
93,57645,13633,63625.48%
93,67242,90831,97625.48%
81,16840,25630,00025.48%
75,17234,58025,77225.47%
26,75615,50011,55225.47%
140,23666,16449,31225.47%
72,06036,18426,96825.47%
133,40860,70045,24025.47%
101,82847,30435,25625.47%
59,49629,41621,92425.47%
53,08126,92020,06425.47%
104,72851,31238,24425.47%
114,21252,41239,06425.47%
84,43640,05229,85225.47%
97,27233,42424,91225.47%
137,44866,55249,60425.47%
35,57221,06415,70025.47%
76,22437,41627,88825.47%
101,04846,68434,79625.46%
112,00052,62439,22425.46%
100,66845,11633,62825.46%
117,54456,49242,10825.46%
357,652105,50878,64425.46%
65,21734,12425,43625.46%
122,13657,25242,67625.46%
108,01254,92840,94425.46%
186,64094,43270,39225.46%
133,05257,93243,18425.46%
37,51218,82414,03225.46%
181,99275,98856,64425.46%
190,06878,72458,68425.46%
97,32846,30834,52025.46%
88,34834,68025,85225.46%
100,26846,13634,39225.46%
77,86836,70827,36425.45%
109,23646,04434,32425.45%
85,55241,53630,96425.45%
106,29652,41239,07225.45%
115,02054,18840,39625.45%
127,69259,52044,37225.45%
117,97654,30440,48425.45%
130,25258,81243,84825.44%
126,70858,67243,74425.44%
124,80058,26443,44025.44%
89,12442,86031,95625.44%
87,44837,26427,78425.44%
49,98031,74823,67225.44%
76,56531,20023,26425.44%
75,90835,13226,19625.44%
149,83677,92858,10825.43%
97,89241,55230,98425.43%
122,44458,46443,59625.43%
99,99247,25235,23625.43%
64,77626,60019,83625.43%
39,94420,08814,98025.43%
29,56816,66012,42425.43%
115,46462,03646,26425.42%
76,84835,49626,47225.42%
153,43268,76051,28025.42%
98,94045,11233,64425.42%
92,74046,89234,97225.42%
107,78050,51237,67225.42%
101,96047,69635,57225.42%
152,75266,03649,25225.42%
54,80826,89620,06025.42%
28,21615,61211,64425.42%
130,69651,54438,44425.42%
184,84483,11661,99225.42%
87,17241,11230,66425.41%
126,65246,04034,34025.41%
118,90055,03241,04825.41%
109,26053,14439,64025.41%
115,32053,39639,82825.41%
80,20836,46027,19625.41%
117,84855,06841,07625.41%
109,51651,16438,16425.41%
103,85651,93638,74025.41%
71,00834,55625,77625.41%
30,18815,93211,88425.41%
82,45640,52430,22825.41%
107,84851,95638,75625.41%
104,32447,58035,49225.41%
43,10422,94017,11225.41%
117,62059,09244,08025.40%
87,74437,46027,94425.40%
103,02850,00037,30025.40%
102,64847,76435,63225.40%
110,46052,58439,22825.40%
108,67246,58434,75225.40%
124,91258,52843,66425.40%
114,25661,86846,15625.40%
107,15257,68043,03225.40%
111,75253,30839,77225.39%
120,02855,73641,58425.39%
33,97617,18812,82425.39%
97,97648,24035,99225.39%
101,90449,83237,18025.39%
76,12435,76826,68825.39%
125,92058,34843,53625.39%
113,73251,68438,56425.39%
83,10038,46428,70025.38%
94,48442,75231,90025.38%
77,52836,87627,51625.38%
81,30035,33226,36425.38%
33,51618,59613,87625.38%
112,49653,64840,03225.38%
51,17226,63619,87625.38%
27,86816,88012,59625.38%
83,95638,58428,79225.38%
100,52845,55233,99225.38%
127,95267,30450,22425.38%
143,12059,75644,59225.38%
75,55243,83632,71225.38%
89,34843,85232,72425.38%
95,48047,04035,10425.37%
89,07639,60429,55625.37%
72,54033,99225,36825.37%
98,68845,61234,04025.37%
70,75220,08814,99225.37%
107,53648,09235,89225.37%
68,13231,64823,62025.37%
101,76444,23233,01225.37%
101,50047,34035,33225.37%
77,89636,19227,01225.36%
98,58046,91635,01625.36%
51,59724,69618,43225.36%
124,64055,51241,43225.36%
86,96837,17227,74425.36%
135,82862,00046,27625.36%
75,69635,50426,50025.36%
111,18447,92035,76825.36%
93,63645,33633,84025.36%
71,86034,70425,90425.36%
81,83637,22827,78825.36%
85,01240,19630,00425.36%
118,03657,00042,54825.35%
111,57651,40038,36825.35%
39,98820,06814,98025.35%
156,10470,87652,90825.35%
111,82051,32838,31625.35%
175,06066,85649,90825.35%
175,06066,85649,90825.35%
175,06066,85649,90825.35%
175,06066,85649,90825.35%
104,32050,00437,32825.35%
140,08459,55644,46025.35%
123,91658,75243,86025.35%
32,06116,19212,08825.35%
133,60460,55645,20825.35%
133,60460,55645,20825.35%
177,55255,77641,64025.34%
67,94832,42024,20425.34%
161,61253,50839,94825.34%
103,58050,60437,78025.34%
101,31647,74835,64825.34%
90,07239,62029,58025.34%
83,32035,84826,76425.34%
135,43645,85634,23625.34%
99,55246,26034,54025.34%
104,48051,15638,19625.33%
81,65641,02030,62825.33%
94,28046,20034,49625.33%
102,86444,41633,16425.33%
113,47255,91241,74825.33%
84,21633,98025,37225.33%
99,78448,16035,96025.33%
87,90039,02029,13625.33%
129,15650,67637,84025.33%
117,00454,65640,81225.33%
114,54054,40440,62425.33%
114,25254,64440,80425.33%
112,12456,50842,19625.33%
96,23249,07236,64425.33%
86,16039,88429,78425.32%
113,49660,72045,34425.32%
71,98434,75225,95225.32%
43,42820,33215,18425.32%
43,42820,33215,18425.32%
91,36839,82829,74425.32%
117,63659,77644,64425.31%
144,25267,33250,28825.31%
57,22826,56419,84025.31%
109,05244,16832,98825.31%
149,01277,56057,92825.31%
106,63651,00038,09225.31%
81,16034,74025,94825.31%
98,60846,86835,00825.31%
261,468120,80090,23225.30%
117,92059,13644,17225.30%
103,08044,78433,45225.30%
80,82836,96027,60825.30%
176,19266,68049,80825.30%
176,19266,68049,80825.30%
176,19266,68049,80825.30%
133,24064,01247,81625.30%
141,35264,47248,16025.30%
99,63249,56437,02425.30%
85,17641,39230,92025.30%
49,65622,70416,96025.30%
52,20030,43622,73625.30%
116,22451,94038,80025.30%
88,26841,58431,06425.30%
94,85245,30433,84425.30%
129,27260,93245,52025.29%
210,216114,60485,62025.29%
92,46444,11232,95625.29%
100,04847,56435,53625.29%
108,07353,19639,74425.29%
132,42861,02845,59625.29%
83,79237,57228,07225.28%
113,94452,80839,45625.28%
99,98048,87236,51625.28%
50,67223,43217,50825.28%
172,85892,35269,00425.28%
122,92049,38036,89625.28%
104,00050,12437,45225.28%
104,36449,11636,70025.28%
103,42050,24037,54025.28%
98,74846,30034,59625.28%
94,30443,46832,48025.28%
128,88860,71645,36825.28%
81,23239,42029,45625.28%
147,14051,07238,16425.27%
85,51640,59630,33625.27%
89,10844,03232,90425.27%
77,43635,75626,72025.27%
57,22826,56019,84825.27%
167,38852,86839,50825.27%
86,62841,44030,96825.27%
215,52878,86058,93225.27%
120,18456,43242,17225.27%
129,23257,00442,60025.27%
106,36449,12436,71225.27%
97,31648,76036,44025.27%
87,96837,66428,14825.27%
66,10036,55627,32025.27%
101,82848,84436,50425.26%
103,39248,37236,15225.26%
111,71253,18839,75225.26%
98,88046,14434,48825.26%
101,03244,10432,96425.26%
95,16446,49634,75225.26%
136,64864,72848,38025.26%
103,98448,86036,52025.26%
104,52850,49237,74025.26%
41,73621,54016,10025.26%
100,45649,36836,90025.26%
80,07236,46027,25225.26%
87,71239,12429,24425.25%
84,62041,32830,89225.25%
71,48933,33224,91625.25%
98,34848,26036,07625.25%
121,70843,39632,44025.25%
133,24867,40050,38425.25%
37,55619,93214,90025.25%
123,66059,00844,11225.24%
100,62446,52434,78025.24%
87,85237,58828,10025.24%
87,13637,20827,81625.24%
35,86017,48013,06825.24%
108,82450,27237,58425.24%
117,12846,96035,10825.24%
97,36846,40834,69625.24%
65,86830,78423,01625.23%
72,45634,33625,67225.23%
123,86460,43245,18425.23%
72,17235,54426,57625.23%
109,20454,79240,96825.23%
71,44035,00826,17625.23%
85,39642,95232,11625.23%
138,66056,58842,31225.23%
98,02846,56834,82025.23%
117,73675,25256,26825.23%
99,70046,49234,76425.23%
192,58182,60061,76425.23%
69,50433,77625,25625.23%
103,96851,20438,28825.22%
104,53247,25635,33625.22%
149,62064,35248,12025.22%
156,16870,23652,52025.22%
81,85643,66032,64825.22%
72,56434,68425,93625.22%
88,14039,44429,49625.22%
79,69640,09629,98425.22%
98,05246,02834,42025.22%
79,71241,50831,04025.22%
341,996114,53285,64825.22%
88,44847,34835,40825.22%
79,36839,67229,66825.22%
75,79635,29626,39625.22%
135,43646,48034,76025.22%
63,88830,36422,70825.21%
68,06042,82032,02425.21%
39,90419,80014,80825.21%
86,50442,63231,88425.21%
95,80046,18834,54425.21%
110,52849,64837,13225.21%
88,29639,49629,54025.21%
88,22845,00433,66025.21%
64,07631,23223,36025.20%
81,27637,58028,10825.20%
93,25242,68031,92425.20%
175,32853,66440,14025.20%
177,74478,87258,99625.20%
18,70411,9848,96425.20%
95,88446,74834,96825.20%
135,44461,38445,91625.20%
72,57635,76426,75225.20%
78,77638,49628,79625.20%
116,50053,35639,91225.20%
109,68051,34438,40825.19%
117,74856,80042,49225.19%
88,24040,63630,40025.19%
91,38443,30432,39625.19%
84,40040,24030,10425.19%
71,10834,04825,47225.19%
106,54851,75638,72025.19%
117,68855,12441,24025.19%
117,00455,90441,82425.19%
110,06854,73240,94825.18%
68,99630,35222,70825.18%
124,27653,22439,82025.18%
70,30033,30824,92025.18%
105,12849,05236,70025.18%
102,54846,38434,70425.18%
96,66447,67235,66825.18%
119,71260,66845,39225.18%
118,56460,00444,89625.18%
99,36046,05634,46025.18%
118,25255,76441,72425.18%
50,20424,86418,60425.18%
115,36853,74840,21625.18%
121,32453,89240,32425.18%
90,27642,00831,43225.18%
46,59625,36018,97625.17%
125,37254,23240,58025.17%
95,80043,85632,81625.17%
132,64061,17645,77625.17%
83,69640,80830,53625.17%
149,05677,39657,91625.17%
110,33661,00045,64825.17%
100,00449,48037,02825.17%
574,885364,836273,02425.17%
70,85228,46821,30425.17%
72,02434,73225,99225.16%
166,24455,54041,56425.16%
73,85634,33625,69625.16%
79,71626,56419,88025.16%
128,52050,88838,08425.16%
72,20133,56025,11625.16%
125,51255,10441,24025.16%
136,53669,86052,28425.16%
128,54859,00444,16025.16%
176,30079,96059,84425.16%
104,22450,71237,95625.15%
181,27659,03244,18425.15%
16,2775,2963,96425.15%
16,2765,2963,96425.15%
94,66833,87625,35625.15%
46,98822,68016,97625.15%
72,84434,68825,96425.15%
135,04449,46437,02425.15%
106,88047,78035,76425.15%
89,30441,67631,19625.15%
356,529168,092125,82425.15%
104,61250,28837,64425.14%
73,46833,56825,12825.14%
35,62419,68014,73225.14%
70,44035,51226,58425.14%
102,71246,88835,10025.14%
125,79259,06044,21225.14%
85,04039,15629,31225.14%
99,86447,98835,92425.14%
98,59243,42432,50825.14%
89,70443,10832,27225.14%
132,18066,41249,72025.13%
54,99725,46419,06425.13%
73,87236,00026,95225.13%
86,37240,53630,34825.13%
109,10850,29637,65625.13%
121,68063,49247,53625.13%
50,08824,05218,00825.13%
82,62440,48030,30825.13%
94,53646,91235,12425.13%
128,94449,58837,12825.13%
109,56454,70040,95625.13%
115,36057,08842,74425.13%
100,83645,40433,99625.13%
86,46440,62830,42025.13%
83,87241,57231,12825.12%
94,72042,60831,90425.12%
184,17676,38457,19625.12%
69,07632,45224,30025.12%
125,42465,20848,82825.12%
201,276108,09680,94425.12%
104,41248,95636,66025.12%
102,73647,36435,46825.12%
88,46839,68829,72025.12%
120,56856,04841,97225.11%
153,41271,96053,88825.11%
70,10028,16021,08825.11%
79,04037,90828,38825.11%
102,54846,73234,99625.11%
127,27661,46846,03225.11%
68,30832,17624,09625.11%
101,52044,90833,63225.11%
79,09237,90028,38425.11%
44,36119,62814,70025.11%
59,22028,23221,14425.11%
86,44446,39634,74825.11%
83,59636,13627,06425.11%
96,80844,68033,46425.10%
51,78425,32018,96425.10%
128,01655,08841,26025.10%
88,59639,68029,72025.10%
152,12064,49648,30825.10%
109,25650,78038,03625.10%
87,07640,23230,13625.09%
90,24842,64031,94025.09%
140,79249,64437,18825.09%
50,38424,29618,20025.09%
87,42844,22433,12825.09%
49,98824,32818,22425.09%
88,77242,12031,55225.09%
153,38866,83250,06425.09%
69,66831,48823,58825.09%
103,16848,61236,41625.09%
101,03246,44834,79625.09%
125,54465,24848,88025.09%
131,51258,26443,64825.09%
99,37646,18034,59625.08%
63,37623,88817,89625.08%
47,56031,08023,28425.08%
87,14841,00030,71625.08%
57,27227,86020,87225.08%
54,32825,66019,22425.08%
122,50458,72043,99225.08%
107,96450,20437,61225.08%
147,44849,31236,94425.08%
31,35216,30012,21225.08%
114,33252,31639,19625.08%
148,50869,00051,69625.08%
133,34451,87238,86425.08%
40,69620,97615,71625.08%
116,44044,74433,52425.08%
179,68071,22453,36425.08%
179,68071,22453,36425.08%
115,50055,70441,73625.08%
119,57254,79641,05625.07%
248,640101,92076,36425.07%
127,95657,86043,35225.07%
111,55253,87240,36425.07%
89,57641,97231,44825.07%
96,33244,30433,19625.07%
88,74042,74432,02825.07%
52,80425,70419,26025.07%
175,380105,91279,36025.07%
99,69648,85636,60825.07%
97,58444,02432,98825.07%
303,344144,728108,44825.07%
88,80041,39231,01625.07%
97,57646,05234,50825.07%
74,80835,06026,27225.07%
75,18033,62425,19625.07%
121,79650,97238,19625.06%
71,04032,68424,49225.06%
107,02850,99238,21225.06%
94,57644,84833,60825.06%
112,88454,50440,84425.06%
85,35241,72031,26425.06%
158,77280,98460,68825.06%
119,08050,29237,68825.06%
97,99646,17634,60425.06%
140,08849,34036,97625.06%
124,49658,12043,55625.06%
93,10444,96833,70025.06%
180,60471,93253,90825.06%
180,60471,93253,90825.06%
105,19247,86035,86825.06%
50,72425,09618,80825.06%
59,33632,47224,33625.06%
123,81254,34440,72825.06%
94,75646,84435,10825.05%
74,32434,60025,93225.05%
104,05250,04037,50425.05%
92,96841,05230,76825.05%
114,87657,43643,04825.05%
78,64435,81626,84425.05%
78,64435,81626,84425.05%
95,77644,15233,09225.05%
91,76845,04833,76425.05%
132,09648,83636,60425.05%
99,87247,20835,38425.05%
70,18435,60026,68425.04%
128,78849,00036,72825.04%
84,41635,42826,55625.04%
96,08846,02034,49625.04%
170,13653,46440,07625.04%
244,860108,14481,06425.04%
190,10696,66472,46025.04%
77,20835,64026,71625.04%
83,38840,96030,70425.04%
101,98049,54037,13625.04%
16,1735,2563,94025.04%
86,63243,06032,28025.03%
42,35620,38815,28425.03%
42,35620,38815,28425.03%
99,12446,14834,59625.03%
72,70834,32425,73225.03%
85,13240,28830,20425.03%
99,52047,33635,48825.03%
79,40032,50824,37225.03%
79,40032,50824,37225.03%
145,34469,57652,16425.03%
57,20427,81220,85225.03%
94,88039,81629,85225.03%
55,12826,18419,63225.02%
79,54035,29626,46425.02%
128,10854,19240,63225.02%
88,65641,24430,92425.02%
169,72453,06039,78425.02%
117,80460,53645,39225.02%
117,37659,82044,85625.02%
124,86854,82041,10825.01%
76,34432,70424,52425.01%
91,64041,66031,24025.01%
86,22842,02831,51625.01%
73,38833,71225,28025.01%
75,51635,52026,63625.01%
86,76437,12027,83625.01%
209,90074,54855,90425.01%
86,04445,52434,14025.01%
110,21252,62839,46825.01%
80,08036,24827,18425.01%
72,46434,90826,18025.00%
165,15275,40056,54825.00%
84,91641,32430,99225.00%
92,30044,36433,27225.00%
110,51647,50035,62425.00%
105,12048,50836,38025.00%
126,48456,23642,17625.00%
94,50840,03230,02425.00%
91,70044,43233,32425.00%
83,24840,52830,39625.00%
90,09245,64834,23625.00%
43,19221,00815,75625.00%
43,19221,00815,75625.00%
223,49272,08054,06025.00%
108,77654,37240,78025.00%
86,03245,54034,15625.00%
55,29627,09220,32025.00%
152,48063,94847,96425.00%
57,24821,30015,97625.00%
154,88974,12855,60024.99%
110,95652,50839,38424.99%
91,05649,24436,93624.99%
116,80458,33643,75624.99%
184,72879,92859,95224.99%
123,08853,04039,78424.99%
98,73249,63237,22824.99%
92,48042,57631,93624.99%
102,89650,10037,58024.99%
110,34056,15242,12024.99%
91,47645,12833,85224.99%
87,68842,63231,98024.99%
93,10445,54834,16824.98%
106,52849,64837,24424.98%
63,05230,69223,02424.98%
148,84878,37258,79224.98%
73,44436,13627,10824.98%
42,52020,64015,48424.98%
42,52020,64015,48424.98%
93,34045,17233,88824.98%
94,87245,01233,76824.98%
88,25240,00030,00824.98%
126,88849,70437,28824.98%
97,50844,69233,52824.98%
50,80424,22818,17624.98%
65,19628,74421,56424.98%
97,79246,64834,99624.98%
86,19641,82831,38024.98%
87,39241,70031,28424.98%
112,29250,30437,74024.98%
84,12841,72031,30024.98%
122,74454,16440,63624.98%
64,81226,22019,67224.97%
62,66429,64822,24424.97%
59,62821,92816,45224.97%
99,04446,11634,60024.97%
87,71242,17631,64424.97%
67,33633,97625,49224.97%
87,33243,26832,46424.97%
128,93261,32446,01224.97%
82,38841,15630,88024.97%
117,21257,06842,82024.97%
74,80036,03227,03624.97%
43,75620,79615,60424.97%
43,75620,79615,60424.97%
145,79657,72843,31624.97%
54,66125,63619,23624.96%
123,02053,72440,31224.96%
149,53278,67259,03224.96%
89,76042,02831,53624.96%
85,11245,02833,78824.96%
158,64060,01245,03224.96%
163,80876,31257,26424.96%
262,720111,09283,36824.96%
110,14049,83237,39624.96%
48,50423,05217,30024.95%
125,72454,45640,86824.95%
110,71650,25637,71624.95%
49,27627,18820,40424.95%
91,54041,34431,02824.95%
91,69645,22433,94024.95%
92,20045,51634,16024.95%
102,09651,03238,30024.95%
99,98448,53236,42424.95%
140,83658,05643,57224.95%
95,17244,06033,06824.95%
109,15251,61638,74024.95%
92,31642,17231,65224.95%
42,01621,28015,97224.94%
171,07276,86457,69224.94%
99,75243,44432,60824.94%
101,94049,79637,37624.94%
98,78446,01234,53624.94%
50,34024,55618,43224.94%
93,21645,42434,09624.94%
107,56052,86839,68424.94%
147,02063,78047,87624.94%
91,90444,90033,70424.94%
73,69233,80025,37224.93%
153,48879,02459,32024.93%
118,41254,82041,15224.93%
115,12457,77243,36824.93%
94,84047,23235,45624.93%
94,36839,78829,86824.93%
74,78833,69225,29224.93%
50,04023,40817,57224.93%
119,62039,52029,66824.93%
88,16442,26431,72824.93%
80,20840,34030,28424.93%
88,76841,28830,99624.93%
92,64845,09233,85224.93%
80,39239,17229,40824.93%
139,67667,45250,64024.92%
61,95226,25619,71224.92%
107,09248,46836,38824.92%
92,87642,80432,13624.92%
53,50525,20018,92024.92%
75,03236,45227,36824.92%
97,71247,10035,36424.92%
87,94445,46434,13624.92%
150,33278,77659,14824.92%
97,00844,00433,04024.92%
94,54447,52035,68024.92%
116,00854,52040,93624.92%
73,68034,32425,77224.92%
103,48048,48436,40424.92%
98,43644,44033,36824.91%
93,06043,33632,54024.91%
58,59628,50021,40024.91%
100,93646,43634,86824.91%
92,80842,88832,20424.91%
55,90826,97620,25624.91%
93,64445,87634,44824.91%
97,51243,16432,41224.91%
81,17239,64829,77224.91%
119,84849,54037,20024.91%
107,78450,58437,98424.91%
88,06441,70431,31624.91%
116,72455,74041,85624.91%
282,636137,192103,02024.91%
51,03625,76019,34424.91%
97,58844,58433,48024.91%
169,45666,57249,99224.91%
94,95645,69634,31624.90%
92,71642,92032,23224.90%
70,44831,32423,52424.90%
66,80830,92423,22424.90%
88,68042,84432,17624.90%
137,01264,61248,52424.90%
73,50835,23226,46024.90%
73,74435,21626,44824.90%
30,10416,38812,30824.90%
146,91663,38447,60424.90%
129,00848,89236,72024.90%
128,14459,47244,66824.89%
48,77622,14416,63224.89%
115,24847,90435,98024.89%
144,90461,48846,18424.89%
180,28471,64053,81224.89%
180,28471,64053,81224.89%
108,26450,36037,82824.88%
92,55249,09236,87624.88%
96,20040,47630,40424.88%
77,10434,04825,57624.88%
54,07226,18819,67224.88%
92,17246,65635,04824.88%
71,28433,08824,85624.88%
80,68836,86827,69624.88%
44,00421,20815,93224.88%
44,00421,20815,93224.88%
50,49224,37618,31224.88%
71,95635,63226,76824.88%
111,16050,22037,72824.87%
148,14864,52048,47224.87%
102,59648,53636,46424.87%
92,25238,34028,80424.87%
95,72445,33634,06024.87%
91,55641,25230,99224.87%
98,44046,62435,02824.87%
92,54442,66832,05624.87%
83,19638,61629,01224.87%
202,200104,60878,59224.87%
110,61252,11239,15224.87%
83,81641,66031,30024.87%
206,04887,56865,79224.87%
44,11621,87616,43624.87%
44,11621,87616,43624.87%
131,24855,98042,06024.87%
94,52444,64033,54024.87%
128,32857,98443,56824.86%
91,13240,88430,72024.86%
74,30434,93226,24824.86%
85,46839,10029,38024.86%
114,79653,72840,37224.86%
58,54822,59216,97624.86%
148,38877,93258,56024.86%
117,33656,44042,41224.85%
90,98044,54833,47624.85%
97,14843,85632,95624.85%
56,72825,99219,53224.85%
76,32434,16825,67624.85%
48,74022,50016,90824.85%
103,48448,39636,36824.85%
103,26048,28436,28424.85%
79,39240,02830,08024.85%
100,10046,61235,02824.85%
69,84435,66826,80424.85%
33,54818,68814,04424.85%
88,79638,87629,21624.85%
146,10881,69661,39624.85%
76,56036,64027,53624.85%
91,56841,18030,94824.85%
117,50055,80041,93624.85%
131,37662,48446,96024.84%
91,34844,60033,52024.84%
82,37641,22030,98024.84%
98,78846,48834,94024.84%
81,68039,29229,53224.84%
91,50838,55228,97624.84%
81,94040,19630,21224.84%
116,30449,31237,06424.84%
205,748111,73683,98424.84%
90,21637,94428,52024.84%
91,07240,87630,72424.84%
88,67642,97232,30024.83%
89,52448,08036,14024.83%
147,24052,20439,24024.83%
101,15246,77635,16024.83%
49,76028,68821,56424.83%
89,52846,26434,77624.83%
107,27755,41641,65624.83%
98,90445,73634,38024.83%
48,89224,02018,05624.83%
80,07640,95230,78424.83%
103,49248,47636,44024.83%
93,20841,30831,05224.83%
98,81246,64435,06424.83%
80,03239,05629,36024.83%
90,33239,47629,67624.83%
127,01257,15242,96424.83%
83,79243,13632,42824.82%
97,74447,05235,37224.82%
66,32431,16423,42824.82%
132,29662,76447,18424.82%
130,70446,89235,25224.82%
40,23220,32015,27624.82%
139,96869,45652,21624.82%
80,95240,32030,31224.82%
94,21247,80035,93624.82%
116,13658,72844,15224.82%
29,28416,37612,31224.82%
90,75644,72833,62824.82%
143,07251,12838,44024.82%
78,87235,89626,98824.82%
120,18849,40437,14424.82%
120,18849,40437,14424.82%
120,18849,40437,14424.82%
116,44856,26042,30024.81%
55,76426,77620,13224.81%
87,30839,98030,06024.81%
136,81663,95248,08424.81%
71,02834,04825,60024.81%
88,28840,22430,24424.81%
91,82840,72430,62024.81%
92,88044,85233,72424.81%
88,94039,01629,33624.81%
114,60452,72039,64024.81%
109,80058,70844,14424.81%
291,412139,500104,89624.81%
77,08036,68827,58824.80%
287,396101,76076,52024.80%
85,42440,15630,19624.80%
101,38849,10836,92824.80%
137,15258,83644,24424.80%
69,25227,59620,75224.80%
44,08421,51616,18024.80%
44,08421,51616,18024.80%
89,36041,95231,54824.80%
50,12024,29218,26824.80%
61,13228,69621,58024.80%
92,03244,52033,48024.80%
110,60449,94037,55624.80%
71,42032,61624,52824.80%
120,49657,33243,11624.80%
119,23660,54845,53624.79%
87,98441,09230,90424.79%
77,52035,28426,53624.79%
149,41662,13646,73224.79%
42,83221,49216,16424.79%
94,70844,87233,74824.79%
102,28048,58436,54024.79%
154,78472,45254,49224.79%
80,25235,87226,98024.79%
146,67656,12442,21224.79%
82,72043,79632,94024.79%
117,98848,57636,53624.79%
117,98848,57636,53624.79%
117,98848,57636,53624.79%
95,27246,07634,65624.79%
73,90436,07227,13224.78%
127,58061,42846,20424.78%
101,22841,48031,20024.78%
93,70845,48434,21224.78%
112,36059,77244,96024.78%
72,79234,94826,28824.78%
94,79642,11631,68024.78%
76,73236,96827,80824.78%
102,43649,06436,90824.78%
124,53659,64044,86424.78%
92,15641,62431,31224.77%
105,98553,83640,50024.77%
297,528152,484114,71224.77%
297,528152,484114,71224.77%
70,55231,81223,93224.77%
81,55239,35629,60824.77%
99,80045,33234,10424.77%
74,66437,84028,46824.77%
123,01242,52431,99224.77%
96,24032,98024,81224.77%
116,39659,00044,38824.77%
77,61238,34428,84824.77%
67,96831,75623,89224.76%
88,69238,93229,29224.76%
106,83249,88837,53624.76%
42,27222,02016,56824.76%
113,25253,89640,55224.76%
121,03252,63639,60424.76%
49,79623,55617,72424.76%
41,80021,03615,82824.76%
93,93245,32034,10024.76%
88,90039,76429,92024.76%
288,632101,87676,65624.76%
98,06846,50434,99224.75%
115,66457,91243,57624.75%
116,79249,67237,37624.75%
98,31648,56036,54024.75%
139,90050,32837,87224.75%
49,08823,32417,55224.75%
65,12426,02419,58424.75%
67,47633,12024,92424.75%
96,84040,18430,24024.75%
37,40018,50813,92824.75%
67,04431,00423,33224.75%
76,93734,74026,14424.74%
101,94446,31634,85624.74%
85,94039,56029,77224.74%
135,99268,24051,35624.74%
82,29236,52427,48824.74%
67,62833,37625,12024.74%
54,43626,71620,10824.73%
122,28454,26040,84024.73%
90,96841,11230,94424.73%
44,04122,78817,15224.73%
108,40851,35238,65224.73%
121,45655,75241,96424.73%
73,14433,74025,39624.73%
87,44847,39235,67224.73%
80,63638,86829,25624.73%
101,98048,91636,82024.73%
323,013205,000154,31224.73%
87,63240,34830,37224.72%
93,26047,59635,82824.72%
116,66856,59242,60024.72%
50,35224,98018,80424.72%
138,26851,40038,69224.72%
86,66839,72029,90024.72%
120,92451,54838,80424.72%
211,40488,63266,72024.72%
76,58834,10825,67624.72%
91,14839,80429,96424.72%
94,34850,16437,76424.72%
62,98429,11221,91624.72%
57,64026,91220,26024.72%
185,91299,80075,13224.72%
220,02880,33260,47624.72%
60,53228,58021,51624.72%
124,19659,91245,10424.72%
95,32446,49635,00424.72%
90,32442,17631,75224.72%
62,30428,97221,81224.71%
74,32834,64026,08024.71%
91,64844,14433,23624.71%
92,02844,14433,23624.71%
100,36048,93636,84424.71%
68,39632,03624,12024.71%
84,61245,40834,18824.71%
81,73640,40830,42424.71%
54,54420,48015,42024.71%
111,95650,14037,75224.71%
78,14438,11228,69624.71%
52,74426,13219,67624.71%
85,84446,12834,73224.71%
73,12037,96828,58824.71%
152,94491,43268,84424.70%
108,92848,04036,17224.70%
82,66440,59230,56424.70%
113,46469,49652,32824.70%
112,21653,19240,05224.70%
50,06423,54417,72824.70%
88,08837,98828,60424.70%
79,21639,61229,82824.70%
100,41645,86434,53624.70%
74,91236,52027,50024.70%
82,46445,31634,12424.70%
165,00452,26839,36024.70%
82,80841,07630,93224.70%
36,40016,29612,27224.69%
97,07643,98033,12024.69%
58,32437,00027,86424.69%
120,98453,18440,05224.69%
75,59236,30427,34024.69%
88,20439,18829,51224.69%
125,74855,30841,65224.69%
111,35251,97639,14424.69%
72,46834,86826,26024.69%
33,95617,90413,48424.69%
111,93250,88838,32824.68%
112,25250,24037,84024.68%
96,73244,24433,32424.68%
95,42846,35234,91224.68%
44,32021,89616,49224.68%
44,32021,89616,49224.68%
77,45235,26826,56424.68%
56,54027,34420,59624.68%
72,82433,53625,26024.68%
83,06044,56033,56424.68%
98,70845,38834,18824.68%
78,82036,40827,42424.68%
96,85644,41633,45624.68%
68,89628,67621,60024.68%
200,716119,53690,04024.68%
44,13221,83616,44824.67%
44,13221,83616,44824.67%
97,83647,54835,81624.67%
81,95237,71228,40824.67%
287,396101,76076,65624.67%
96,88045,72434,44424.67%
115,41654,88841,34824.67%
125,27257,84043,57224.67%
62,77229,82022,46424.67%
68,40031,15223,46824.67%
71,15633,50425,24024.67%
97,66848,06836,21224.67%
96,39645,63634,38024.66%
85,59646,52835,05224.66%
104,87647,79636,00824.66%
126,30455,34041,69224.66%
70,60433,68825,38024.66%
57,14026,29219,80824.66%
62,46829,66822,35224.66%
138,71258,11243,78424.66%
31,58816,50012,43224.65%
34,21217,06812,86024.65%
81,54839,78429,97624.65%
110,89251,87239,08424.65%
59,63628,15221,21224.65%
49,89623,80417,93624.65%
64,05630,81623,22024.65%
88,54840,21230,30024.65%
109,73652,95239,90024.65%
71,00035,78426,96424.65%
179,58877,98058,76024.65%
51,25227,76820,92424.65%
54,28826,60020,04424.65%
77,86837,83228,50824.65%
97,65244,74833,72024.64%
104,58047,28035,62824.64%
71,34036,01627,14024.64%
185,412112,43284,72424.64%
71,77230,74423,16824.64%
53,32025,97219,57224.64%
97,68446,34434,92424.64%
98,96444,65633,65224.64%
111,44448,76436,74824.64%
111,98051,26838,63624.64%
55,69229,82422,47624.64%
75,97636,14027,23624.64%
49,65625,60419,29624.64%
105,24448,98836,92024.63%
79,46835,93627,08424.63%
174,64876,19257,42424.63%
110,64049,98437,67224.63%
72,10433,92425,56824.63%
88,98444,01233,17224.63%
118,05650,68838,20424.63%
86,56842,01631,66824.63%
291,889190,204143,36024.63%
67,44831,36423,64024.63%
97,92445,02433,93624.63%
110,62452,17239,32424.63%
93,38045,10834,00024.63%
88,92843,35632,68024.62%
110,70055,03641,48424.62%
84,08838,12828,74024.62%
92,93642,85632,30424.62%
96,58846,23634,85224.62%
184,95678,13258,89624.62%
88,43641,30031,13224.62%
67,60831,18023,50424.62%
144,43250,56438,11624.62%
73,51233,74825,44024.62%
59,63228,24021,28824.62%
120,42856,22442,38424.62%
231,92899,38474,92024.62%
120,90056,17642,34824.62%
30,18816,86812,71624.61%
96,77644,25233,36024.61%
110,92452,23239,37624.61%
107,67248,86836,84024.61%
49,90024,03618,12024.61%
155,43349,52037,33224.61%
239,900125,08494,30024.61%
103,37247,47635,79224.61%
96,60844,48833,54024.61%
76,86438,08428,71224.61%
81,73234,21625,79624.61%
83,39640,86830,81224.61%
107,91648,20036,34024.61%
125,59253,04039,99224.60%
54,74026,52019,99624.60%
89,25644,52033,56824.60%
89,28839,67629,91624.60%
75,16836,83227,77224.60%
121,38449,45237,28824.60%
121,38449,45237,28824.60%
121,38449,45237,28824.60%
39,82022,10016,66424.60%
112,98850,46438,05224.60%
98,50045,40834,24024.59%
124,60461,10446,07624.59%
97,39247,05235,48024.59%
128,18259,49644,86424.59%
98,50839,70429,94024.59%
112,06049,36837,22824.59%
87,30040,74830,72824.59%
104,32847,51635,83224.59%
102,49248,94836,91224.59%
95,62846,67635,20024.59%
107,39651,99639,21224.59%
71,42433,33625,14024.59%
66,62031,36823,65624.59%
107,31647,28035,65624.59%
116,72856,40842,54024.59%
88,78842,17231,80424.59%
96,06847,21635,60824.58%
175,65268,97252,01624.58%
175,65268,97252,01624.58%
175,65268,97252,01624.58%
87,16843,00432,43224.58%
66,82832,42824,45624.58%
102,01648,03636,22824.58%
125,05257,26443,18824.58%
70,95230,70823,16024.58%
92,10441,56431,34824.58%
141,86863,14447,62424.58%
124,26455,07241,53624.58%
88,88443,42032,74824.58%
80,04439,80830,02424.58%
67,22832,66424,63624.58%
134,36461,29246,22824.58%
141,40850,96038,43624.58%
57,92827,80020,96824.58%
107,54449,41637,27224.58%
121,33653,32440,22024.57%
92,74045,33234,19224.57%
91,04442,20831,83624.57%
107,91252,25239,41224.57%
72,82035,34026,65624.57%
192,88898,90874,60424.57%
59,48027,56020,78824.57%
118,67659,34044,76024.57%
62,46029,68022,38824.57%
97,55248,04836,24424.57%
108,56849,50437,34424.56%
78,86839,60429,87624.56%
38,88020,55215,50424.56%
110,16050,84438,35624.56%
116,18058,71244,29224.56%
89,86838,61629,13224.56%
113,25254,97241,47224.56%
88,76038,76829,24824.56%
64,67631,29223,60824.56%
39,97221,27616,05224.55%
95,75643,87233,10024.55%
136,89257,98443,74824.55%
119,12452,18439,37224.55%
125,42857,23643,18424.55%
118,73250,90038,40424.55%
175,58468,61251,76824.55%
175,58468,61251,76824.55%
89,58829,50822,26424.55%
67,80831,67623,90024.55%
117,14457,20443,16424.54%
288,632101,87676,87224.54%
88,26441,31631,17624.54%
54,42827,09220,44424.54%
108,61252,24839,42824.54%
101,72448,90836,90824.54%
161,91678,17258,99224.54%
115,36055,96842,23624.54%
137,63257,63243,49224.53%
97,20848,52036,61624.53%
74,45636,24427,35224.53%
81,87638,54429,08824.53%
71,35233,99625,65624.53%
116,46047,79236,06824.53%
116,46047,79236,06824.53%
116,46047,79236,06824.53%
88,85241,94031,65224.53%
82,51240,81630,80424.53%
67,39231,34423,65624.53%
102,00448,16436,35224.52%
42,62822,42816,92824.52%
68,21632,62424,62424.52%
104,38847,84436,11224.52%
84,75639,46029,78424.52%
107,66051,74439,05624.52%
128,82854,30840,99224.52%
55,54026,80420,23224.52%
69,17633,77225,49224.52%
112,20850,12037,83224.52%
74,25230,02022,66024.52%
55,82427,32820,62824.52%
74,53227,05220,42024.52%
74,53227,05220,42024.52%
111,73249,86437,64024.51%
54,15626,71220,16424.51%
103,45641,90831,63624.51%
91,99233,26025,10824.51%
71,78034,94426,38024.51%
54,57626,73620,18424.51%
75,42433,98425,65624.51%
144,73255,59641,97224.51%
88,91641,92431,65224.50%
96,08046,33234,98024.50%
86,52846,62835,20424.50%
101,37647,23635,66424.50%
139,01659,94045,25624.50%
356,980172,572130,29624.50%
113,27249,67237,50424.50%
57,36426,96020,35624.50%
34,13220,41215,41224.50%
98,50448,68036,75624.49%
110,81252,24039,44424.49%
96,57646,07234,78824.49%
75,30436,81227,79624.49%
56,01626,90020,31224.49%
124,90455,50041,90824.49%
76,86531,37623,69224.49%
95,40845,68434,49624.49%
131,00066,46050,18424.49%
102,10048,56036,66824.49%
72,49235,62426,90024.49%
52,92825,22019,04424.49%
79,40040,28430,42024.49%
89,25647,86436,14424.49%
111,06851,93239,21624.49%
108,64854,25640,97224.48%
105,12047,44435,82824.48%
52,76825,32419,12424.48%
94,11646,15634,85624.48%
73,03232,04024,19624.48%
100,41246,68035,25224.48%
115,84053,21640,18824.48%
81,39237,97228,67624.48%
65,37230,26022,85224.48%
32,98819,82014,96824.48%
135,63256,74842,85624.48%
103,17650,88438,42824.48%
110,70852,42039,58824.48%
71,11233,54825,33624.48%
54,63626,04819,67224.48%
143,07666,07649,90424.47%
214,98491,67269,23624.47%
67,46125,02418,90024.47%
115,30455,54441,95224.47%
106,85649,09637,08424.47%
72,06034,62826,15624.47%
96,32845,01234,00024.46%
108,32053,02440,05224.46%
101,62448,70836,79224.46%
69,43233,37225,20824.46%
96,15645,84834,63224.46%
50,22419,75214,92024.46%
72,58835,54826,85224.46%
70,50443,23632,66024.46%
95,70043,97233,21624.46%
71,98438,05628,74824.46%
65,93230,58423,10424.46%
90,22443,22832,65624.46%
110,10052,60039,73624.46%
62,85229,72022,45224.45%
95,52845,16434,12024.45%
110,76053,57240,47224.45%
90,55242,89232,40424.45%
81,10836,67627,70824.45%
70,78433,57225,36424.45%
107,22051,70039,06024.45%
109,32051,63639,01224.45%
55,84426,98020,38424.45%
58,20827,70020,92824.45%
106,15646,37235,03624.45%
93,19244,90033,92424.45%
86,46040,72830,77224.45%
101,91248,97637,00424.44%
110,10055,62042,02424.44%
87,76843,56032,91224.44%
38,73621,22416,03624.44%
111,01652,04039,32024.44%
92,52045,12034,09224.44%
117,98056,18442,45224.44%
84,66035,59626,89624.44%
114,28057,74043,62824.44%
72,65234,79626,29224.44%
133,02848,87236,92824.44%
73,97635,81227,06024.44%
76,86838,10428,79224.44%
77,35237,36828,23624.44%
56,01226,15619,76424.44%
71,40033,78425,52824.44%
119,18458,12443,92024.44%
98,68444,75233,81624.44%
90,27640,80830,83624.44%
79,45236,35627,47224.44%
159,82164,52848,76024.44%
69,57230,76023,24424.43%
71,22432,87224,84024.43%
64,86831,10423,50424.43%
107,56851,94439,25224.43%
62,83230,15622,78824.43%
92,62045,37234,28824.43%
101,98446,45635,10824.43%
92,94845,46034,35624.43%
136,04455,25641,76024.42%
100,62449,57637,46824.42%
93,22843,99233,24824.42%
55,64827,32020,64824.42%
107,67648,30436,50824.42%
88,70438,08428,78424.42%
54,08525,26019,09224.42%
174,34068,51251,78424.42%
174,34068,51251,78424.42%
74,40036,63227,68824.42%
179,52077,47658,56024.42%
104,92451,92039,24424.41%
95,65645,72834,56424.41%
92,75643,12432,59624.41%
88,70841,70031,52024.41%
120,68460,20045,50424.41%
74,58037,21228,12824.41%
72,73234,80426,30824.41%
76,23733,44425,28024.41%
183,16057,37643,37224.41%
101,01647,39635,82824.41%
85,35238,76029,30024.41%
63,96831,14023,54024.41%
119,60859,92045,29624.41%
69,06833,63225,42424.41%
116,72056,80842,94424.41%
73,81236,19227,36024.40%
226,852130,60898,73624.40%
96,26445,48834,38824.40%
96,76444,29233,48424.40%
101,28049,19637,19224.40%
99,32446,36035,04824.40%
63,26430,10022,75624.40%
97,58446,05234,81624.40%
117,89653,18440,20824.40%
81,82841,21631,16024.40%
113,06453,00440,07224.40%
110,48052,98840,06024.40%
78,42822,95617,35624.39%
78,42822,95617,35624.39%
64,81230,61623,14824.39%
95,89651,41238,87224.39%
64,81630,86423,33624.39%
95,77245,95234,74424.39%
71,70434,93226,41224.39%
100,68848,84036,92824.39%
118,54059,38844,90424.39%
108,39252,48439,68424.39%
101,87237,92028,67224.39%
89,58441,46431,35224.39%
90,65248,48836,66424.39%
67,46431,39623,74024.39%
100,26846,83235,41224.39%
100,72849,19637,20024.38%
101,88849,03637,08024.38%
96,79644,49633,64824.38%
106,96447,84436,18024.38%
53,36827,48420,78424.38%
127,12061,60046,58424.38%
61,24822,43216,96424.38%
61,24822,43216,96424.38%
108,31252,33239,57624.38%
97,58448,44436,63624.37%
104,37248,75636,87224.37%
118,33258,47244,22024.37%
110,10852,38439,61624.37%
80,85639,76430,07224.37%
173,36076,35257,74424.37%
101,22448,99237,05224.37%
115,56456,61242,81624.37%
99,85247,82036,16824.37%
57,59627,92421,12024.37%
89,93638,62829,21624.37%
90,94442,75232,33624.36%
95,81231,11223,53224.36%
129,53661,42046,45624.36%
63,06830,39222,98824.36%
54,75627,68420,94024.36%
102,03247,37235,83224.36%
95,95645,32434,28424.36%
60,51628,49621,55624.35%
87,13639,73230,05624.35%
71,24032,42424,52824.35%
72,70032,11224,29224.35%
71,52430,40423,00024.35%
97,08043,97233,26424.35%
69,52427,58020,86424.35%
116,70056,68842,88424.35%
116,85257,14843,23224.35%
64,92831,11223,53624.35%
92,98045,42034,36024.35%
64,30431,37623,73624.35%
52,46425,31619,15224.35%
40,88021,01215,89624.35%
71,75633,35225,23224.35%
178,86894,45671,46024.35%
87,84842,12831,87224.34%
122,86855,76842,19224.34%
130,76045,81234,66024.34%
101,62048,06436,36424.34%
91,14046,06834,85624.34%
72,40433,62825,44424.34%
123,40452,44839,68424.34%
178,95693,88471,03624.34%
55,25628,30421,41624.34%
91,01242,60432,23624.34%
39,55219,39614,67624.33%
77,35637,41228,30824.33%
69,79234,40426,03224.33%
110,84849,05237,11624.33%
71,12433,74825,53624.33%
99,91246,65635,30424.33%
96,37246,34435,06824.33%
54,52026,58420,11624.33%
96,07646,13234,90824.33%
118,48046,28035,02024.33%
118,12859,64845,13624.33%
79,20438,16028,87624.33%
54,51627,12820,52824.33%
78,33238,12828,85224.33%
179,50094,98471,87624.33%
52,76025,22419,08824.33%
137,21265,08449,25224.33%
63,60029,61622,41224.32%
77,08437,72428,54824.32%
71,86837,52828,40024.32%
68,49230,54023,11224.32%
101,76849,07637,14024.32%
99,37245,82034,67624.32%
111,70054,35641,13624.32%
71,23634,60426,18824.32%
178,85295,31272,13224.32%
247,020105,89280,14024.32%
100,74045,20034,20824.32%
75,76439,20029,66824.32%
95,55645,46834,41224.32%
89,30445,30434,28824.32%
66,40832,93624,92824.31%
105,02047,56436,00024.31%
118,74060,31645,65224.31%
86,38439,94830,23624.31%
129,62867,77251,29624.31%
127,41656,30442,61624.31%
59,73631,51223,85224.31%
74,88029,91622,64424.31%
86,11239,28029,73224.31%
99,46845,56834,49224.31%
109,03649,66837,59624.31%
128,89249,19237,23624.30%
158,74060,97646,15624.30%
40,99221,11615,98424.30%
77,21236,86827,90824.30%
86,29247,04035,60824.30%
232,924101,01276,46424.30%
95,68044,93634,01624.30%
54,52025,16819,05224.30%
77,25236,94027,96424.30%
131,71660,84446,06024.30%
100,49648,08836,40424.30%
67,23632,26824,42824.30%
110,90451,96039,33624.30%
101,75648,30836,57224.29%
45,19219,95615,10824.29%
200,57271,16453,87624.29%
108,26450,48438,22024.29%
56,68024,86418,82424.29%
106,56451,36038,88424.29%
70,36434,51626,13224.29%
102,08847,88836,25624.29%
89,66443,03232,58024.29%
91,49244,79633,91624.29%
195,892100,66076,21224.29%
79,28437,83228,64424.29%
91,27242,98832,54824.29%
61,92429,38422,24824.29%
106,98452,59639,82424.28%
75,44445,30034,30024.28%
65,30430,78823,31224.28%
69,42032,43624,56024.28%
34,64818,22013,79624.28%
70,95635,73227,05624.28%
96,26844,54833,73224.28%
70,25234,20425,90024.28%
178,56494,75271,75224.27%
96,56047,59236,04024.27%
96,53646,16034,95624.27%
77,18038,31629,01624.27%
100,12046,04834,87224.27%
105,08846,41235,14824.27%
95,35645,16034,20024.27%
217,00492,58870,12024.27%
95,29644,95234,04424.27%
172,44083,85663,50824.27%
62,81629,64022,44824.26%
54,43226,88820,36424.26%
53,18827,54820,86424.26%
54,45626,11619,78024.26%
86,98439,90030,22024.26%
98,42045,57234,51624.26%
101,55248,41236,66824.26%
71,30035,99627,26424.26%
55,63627,09220,52024.26%
64,29629,36822,24424.26%
76,88834,36826,03224.26%
71,16434,22025,92024.25%
149,54464,00448,48024.25%
88,31241,69231,58024.25%
126,36067,37651,03624.25%
71,19230,33222,97624.25%
58,88827,99221,20424.25%
110,90448,77636,94824.25%
84,52439,52429,94024.25%
109,62852,82040,01224.25%
66,22030,45223,06824.25%
69,82832,71224,78024.25%
42,47622,14016,77224.25%
56,84825,96819,67224.25%
55,13629,92822,67224.24%
76,27636,96028,00024.24%
50,17626,26819,90024.24%
90,12443,21632,74024.24%
103,96448,33236,61624.24%
179,98875,20456,97624.24%
51,30027,82421,08024.24%
119,10460,20445,61224.24%
78,40838,81629,40824.24%
118,96860,32045,70024.24%
69,40833,70025,53224.24%
70,35234,60826,22024.24%
224,756116,34088,14424.24%
115,42456,66042,92824.24%
107,14852,45239,74024.24%
96,94845,63634,57624.24%
127,12852,80040,00424.23%
74,07236,00027,27624.23%
100,99649,17237,25624.23%
115,22456,45242,77224.23%
119,66455,89242,34824.23%
76,34439,32029,79224.23%
118,42461,42446,54024.23%
66,86432,38824,54024.23%
77,73637,72028,58024.23%
84,41643,16832,70824.23%
107,12849,39237,42424.23%
88,16442,31232,06024.23%
89,95641,98431,81224.23%
90,73237,57628,47224.23%
52,61625,52419,34024.23%
92,09245,25634,29224.23%
68,21630,62823,20824.23%
101,36848,44436,70824.23%
54,88026,93220,40824.22%
67,63726,34019,96024.22%
67,63726,34019,96024.22%
103,93250,14037,99624.22%
86,84441,28831,28824.22%
119,58459,78845,30824.22%
132,35661,62446,70024.22%
179,52095,39672,29624.21%
57,82427,70420,99624.21%
107,06049,90837,82424.21%
62,93631,96824,22824.21%
118,80059,98845,46424.21%
92,78845,78034,69624.21%
96,34447,08835,68824.21%
187,47268,33651,79224.21%
102,73248,06436,42824.21%
116,33255,46842,04024.21%
134,96463,91248,44024.21%
121,03655,48842,05624.21%
55,44024,95218,91224.21%
64,19631,00023,49624.21%
54,63627,18420,60424.21%
89,95643,66033,09224.21%
87,52040,96831,05224.20%
54,44026,74020,26824.20%
94,88044,68833,87224.20%
54,37226,98820,45624.20%
61,64422,56017,10024.20%
56,73329,43622,31224.20%
178,69294,42871,57624.20%
96,94843,68833,11624.20%
56,18827,85621,11624.20%
86,26043,74433,16024.20%
60,04032,66824,76424.19%
64,56030,02422,76024.19%
93,99645,02034,12824.19%
36,12015,85612,02024.19%
43,31624,52018,58824.19%
128,28461,26046,44024.19%
97,78045,40434,42024.19%
137,40875,83657,49224.19%
95,54042,76432,42024.19%
64,88429,91622,68024.19%
89,50442,20431,99624.19%
90,72442,53632,24824.19%
87,04840,80030,93224.19%
90,52843,33232,85224.19%
90,89643,33232,85224.19%
107,40448,60836,85224.19%
86,48040,06030,37224.18%
96,92448,33236,64424.18%
87,46042,92832,54824.18%
85,91238,89229,48824.18%
90,07643,27632,81224.18%
100,30445,21234,28024.18%
71,52033,73225,57624.18%
38,16019,24014,58824.18%
75,16832,26024,46024.18%
93,02445,38034,40824.18%
72,42833,40425,32824.18%
97,86045,40434,42824.17%
95,39245,04034,15224.17%
93,83645,30834,35624.17%
42,51623,03617,46824.17%
99,79248,12836,49624.17%
53,14425,96819,69224.17%
95,60445,66434,62824.17%
47,25622,82417,30824.17%
86,70841,90831,78024.17%
87,34447,37235,92424.17%
103,72048,41636,71624.17%
57,51627,08020,53624.17%
87,40442,88832,52424.17%
118,04059,86045,39624.16%
93,66844,53233,77224.16%
86,98428,40821,54424.16%
88,79643,04432,64424.16%
119,62060,06445,55224.16%
74,06437,51628,45224.16%
98,70046,30835,12024.16%
55,06026,98820,46824.16%
52,98425,41619,27624.16%
67,72832,86824,92824.16%
117,20458,13644,09224.16%
126,76054,11641,04424.16%
102,73651,20438,83624.15%
68,16031,54823,92824.15%
109,04452,15639,56024.15%
82,74836,70427,84024.15%
67,36032,31624,51224.15%
61,34829,83222,62824.15%
89,55642,96832,59224.15%
130,14460,77646,10024.15%
55,52425,69219,48824.15%
93,46845,62034,60424.15%
95,68446,18435,03224.15%
90,12043,36832,89624.15%
178,63293,49670,92024.15%
86,42443,08832,68424.15%
119,06057,13643,34024.15%
86,25240,83630,97624.15%
100,14840,24030,52424.15%
100,97248,04436,44424.14%
95,00846,17235,02424.14%
72,12033,06825,08424.14%
85,79639,13229,68424.14%
174,63275,78457,48824.14%
116,20058,05644,04024.14%
48,61625,99619,72024.14%
57,04827,38820,77624.14%
58,24028,25221,43224.14%
103,17247,77236,24024.14%
117,31658,41244,31224.14%
56,77230,04422,79224.14%
67,68926,50020,10424.14%
67,68926,50020,10424.14%
122,68846,85235,54424.14%
112,18850,25238,12424.13%
116,97657,53243,64824.13%
105,42449,41237,48824.13%
124,39646,61635,36824.13%
62,62431,88024,18824.13%
132,06462,85647,69224.12%
34,35717,67613,41224.12%
110,61652,79640,06024.12%
51,90023,68017,96824.12%
105,18446,63235,38424.12%
57,02026,35219,99624.12%
54,37227,79621,09224.12%
85,74438,97629,57624.12%
72,18840,88431,02424.12%
65,20830,10422,84424.12%
95,92045,81234,76424.12%
96,59648,06836,47624.12%
67,80432,46024,63224.12%
95,91648,73236,98024.12%
67,95632,04824,32024.11%
70,62033,92425,74424.11%
16,7257,2005,46424.11%
73,86825,41619,28824.11%
50,50826,08019,79224.11%
70,43233,79625,64824.11%
58,12427,72421,04024.11%
96,81647,85236,31624.11%
53,56427,86021,14424.11%
75,01236,09227,39224.11%
65,64428,06821,30424.10%
98,82848,13636,53624.10%
93,11643,14032,74424.10%
90,54041,20031,27224.10%
71,80433,54825,46424.10%
54,84827,67221,00424.10%
76,43235,06026,61224.10%
64,69630,61223,23624.10%
133,18863,64848,31224.10%
95,73245,96834,89224.10%
123,20059,20044,93624.09%
74,16836,19227,47224.09%
96,34845,98834,90824.09%
70,70033,47225,40824.09%
69,00033,01225,06024.09%
89,25241,99631,88024.09%
78,51235,95227,29224.09%
132,86060,34845,81224.09%
128,40860,21645,71224.09%
86,16839,72430,15624.09%
67,36032,71624,83624.09%
95,86846,36835,20024.09%
117,04458,44444,36824.08%
78,84440,49230,74024.08%
61,46438,28429,06424.08%
96,54047,42036,00024.08%
102,67246,62435,39624.08%
61,04829,73222,57224.08%
85,52837,12428,18424.08%
120,60452,42439,80024.08%
246,21295,81672,74424.08%
85,48038,67229,36024.08%
65,63631,36423,81224.08%
77,78437,19628,24024.08%
73,30034,88826,48824.08%
70,43234,84026,45224.08%
95,85647,05235,72424.08%
55,33625,08819,04824.08%
88,01241,67231,64024.07%
71,36033,68025,57224.07%
82,23235,82827,20424.07%
40,36421,92016,64424.07%
95,80046,63235,40824.07%
72,53234,91626,51224.07%
64,30830,16422,90424.07%
86,14039,48829,98424.07%
74,89236,69627,86424.07%
113,12054,59641,45624.07%
68,16030,13622,88424.06%
104,88849,15237,32424.06%
56,82827,01220,51224.06%
77,63639,39629,91624.06%
92,74843,47233,01224.06%
118,33659,43245,13224.06%
65,50030,65623,28024.06%
109,42852,32039,73224.06%
88,34839,43629,94824.06%
93,01644,37633,70024.06%
82,64036,28027,55224.06%
87,26043,56433,08424.06%
145,40460,36045,84024.06%
59,80028,05221,30424.06%
95,18046,22835,10824.05%
304,176156,400118,78024.05%
304,176156,400118,78024.05%
85,57239,51230,00824.05%
94,43644,70433,95224.05%
69,81234,57626,26024.05%
44,28024,11618,31624.05%
150,84881,71262,06024.05%
116,84457,93244,00024.05%
84,40841,50031,52024.05%
92,69643,49633,03624.05%
68,00031,27223,75224.05%
56,58826,94820,46824.05%
93,98044,66433,92424.05%
54,55227,11620,59624.04%
67,46432,65624,80424.04%
76,63637,64828,59624.04%
64,37231,54423,96024.04%
52,92025,37219,27224.04%
67,17241,12831,24024.04%
84,49242,87632,56824.04%
64,79637,72028,65224.04%
39,44419,90015,11624.04%
109,83252,81240,11624.04%
239,956119,52090,78824.04%
50,70826,02419,76824.04%
96,96046,82435,56824.04%
164,99778,86059,90424.04%
122,41263,36848,13624.04%
54,82427,57620,94824.04%
116,13257,63243,78024.04%
67,10030,05622,83224.04%
192,40465,28849,59624.04%
60,48829,32422,27624.03%
71,94434,60026,28424.03%
83,23638,42829,19224.03%
77,62438,61229,33224.03%
123,67646,46835,30024.03%
99,58844,14033,53224.03%
56,41627,38020,80024.03%
95,96845,64434,67624.03%
72,90041,57231,58424.03%
96,37645,98434,93624.03%
173,69658,80444,67624.03%
67,83726,57220,18824.03%
67,83726,57220,18824.03%
115,10455,66042,28824.02%
194,252103,92878,96024.02%
69,53630,95223,51624.02%
52,30825,60819,45624.02%
62,72424,36018,50824.02%
177,57693,96071,38824.02%
54,20428,47621,63624.02%
92,66044,03233,45624.02%
183,116110,61684,04824.02%
43,22422,20016,86824.02%
90,24843,45233,01624.02%
54,06026,86420,41224.02%
58,26036,62427,82824.02%
55,95626,34820,02024.02%
53,30425,43219,32424.02%
91,50844,55233,85224.02%
57,53226,84820,40024.02%
52,99225,31619,23624.02%
43,43622,56817,14824.02%
119,12459,08044,89224.01%
65,25230,61623,26424.01%
98,57250,12838,09224.01%
68,85232,33624,57224.01%
72,03633,80425,68824.01%
95,53244,50033,81624.01%
94,61646,66835,46424.01%
100,36046,00434,96024.01%
150,52477,91259,20824.01%
51,92823,42817,80424.01%
65,57629,46022,38824.01%
65,07630,76023,37624.01%
57,90027,12820,61624.00%
70,72837,06028,16424.00%
106,34450,50838,38424.00%
107,52052,80840,13224.00%
57,77227,08020,58024.00%
77,90838,61229,34424.00%
77,60436,88028,02824.00%
75,32835,56427,02824.00%
70,72433,44825,42024.00%
52,74825,53219,40424.00%
50,68026,21619,92424.00%
56,14427,48420,88824.00%
57,04826,98420,50824.00%
70,33233,16825,20824.00%
67,16432,66824,82824.00%
69,94429,73622,60024.00%
92,95645,18834,34424.00%
73,38035,68827,12424.00%
53,02425,70419,53624.00%
333,616157,304119,56023.99%
134,30462,05247,16423.99%
57,07226,66020,26423.99%
63,01229,82822,67223.99%
102,84449,90437,93223.99%
66,62029,89622,72423.99%
73,06841,64031,65223.99%
76,08435,22026,77223.99%
96,92447,89636,40823.99%
77,09237,74028,68823.99%
70,45633,77225,67223.98%
89,44843,33232,94023.98%
76,28037,96428,86023.98%
94,99644,78834,04823.98%
53,29225,45619,35223.98%
127,02462,07247,18823.98%
68,97633,03225,11223.98%
57,75227,46020,87623.98%
70,08433,46825,44423.98%
68,54033,05225,12823.97%
101,31245,43234,54023.97%
40,42822,80817,34023.97%
51,66022,70817,26423.97%
118,20854,28041,26823.97%
124,79246,84035,61223.97%
53,90427,50020,90823.97%
92,06843,00432,69623.97%
66,78432,34424,59223.97%
72,95234,53226,25623.97%
28,20818,14413,79623.96%
98,32047,32435,98423.96%
56,95227,07620,58823.96%
41,76518,78014,28023.96%
35,06018,91614,38423.96%
57,17223,80818,10423.96%
117,16457,76843,92823.96%
86,36839,62030,12823.96%
57,54823,96018,22023.96%
58,19228,93622,00423.96%
130,96061,49646,76423.96%
58,08427,92021,23223.95%
99,67245,70434,75623.95%
58,38429,04022,08423.95%
118,25251,38439,07623.95%
96,68046,50835,36823.95%
43,58423,68018,00823.95%
92,22843,77233,28823.95%
46,43724,30018,48023.95%
132,27261,69646,92023.95%
92,19643,69233,22823.95%
45,23218,25613,88423.95%
122,10445,44834,56423.95%
112,66856,27242,79623.95%
55,02427,12820,63223.95%
56,09227,12820,63223.95%
73,66034,32826,10823.95%
55,20827,68021,05223.95%
90,28836,75227,95223.94%
107,71250,72038,57623.94%
123,85651,65639,28823.94%
49,50425,29619,24023.94%
54,23226,66820,28423.94%
53,42426,05219,81623.94%
77,58837,04828,18023.94%
118,20859,92845,58423.94%
43,52020,74015,77623.93%
93,09245,04034,26023.93%
78,65238,67629,42023.93%
66,55635,01626,63623.93%
48,25225,25619,21223.93%
64,58829,90422,74823.93%
67,60830,07222,87623.93%
98,13251,35639,06823.93%
69,15231,31223,82023.93%
94,20846,52835,39623.93%
92,86444,18833,61623.93%
53,05625,76419,60023.92%
65,98429,10822,14423.92%
39,23221,66816,48423.92%
71,32833,82425,73223.92%
102,89647,26835,96023.92%
93,05245,26434,43623.92%
73,97236,63627,87223.92%
72,34040,90031,11623.92%
58,73229,02822,08423.92%
96,82847,20435,91223.92%
75,58840,13230,53223.92%
96,34846,70435,53223.92%
101,06447,90836,44823.92%
87,19243,21232,87623.92%
122,03661,96047,14023.92%
90,28042,59632,40823.92%
67,66926,04019,81223.92%
67,66926,04019,81223.92%
84,36036,51227,78023.92%
131,61662,78847,77223.92%
87,32838,00428,91623.91%
57,77628,48821,67623.91%
72,98436,49227,76823.91%
54,33626,97220,52423.91%
54,93627,79221,14823.91%
67,65631,35623,86023.91%
78,91236,88028,06423.90%
79,34036,48027,76023.90%
73,36443,56433,15223.90%
69,55232,63624,83623.90%
66,82031,90024,27623.90%
78,83640,48830,81223.90%
127,79260,77646,25223.90%
50,48826,08019,84823.90%
178,64075,69657,60823.90%
102,56047,24035,95223.90%
141,83265,05249,50823.89%
65,98831,17223,72423.89%
91,30044,80034,09623.89%
42,90423,20417,66023.89%
56,07627,80821,16423.89%
93,21630,64023,32023.89%
62,05229,82022,69623.89%
173,86076,06857,89623.89%
99,88055,54042,27223.89%
54,48025,92019,72823.89%
91,53646,23235,18823.89%
103,61247,48836,14423.89%
72,81635,06426,68823.89%
46,50423,62817,98423.89%
54,54426,12419,88423.89%
93,75231,66824,10423.89%
60,44828,55621,73623.88%
93,39643,22832,90423.88%
94,48844,55233,91223.88%
93,45645,70834,79223.88%
39,39622,44417,08423.88%
104,46842,61232,43623.88%
89,81244,12033,58423.88%
92,62441,31231,44823.88%
53,12825,81619,65223.88%
71,55229,95622,80423.88%
70,10440,14430,56023.87%
55,10929,34022,33623.87%
60,74829,42422,40023.87%
93,28444,80834,11223.87%
120,07654,44841,45223.87%
64,87230,10022,91623.87%
104,64456,83643,27223.87%
93,67245,97635,00423.86%
92,88443,39633,04023.86%
93,67632,03224,38823.86%
116,44857,94844,12023.86%
57,35627,57620,99623.86%
54,72929,23622,26023.86%
56,19626,45620,14423.86%
153,93665,85650,14423.86%
53,78026,66020,30023.86%
50,46826,04019,82823.86%
121,02060,44846,02823.86%
51,89624,96819,01223.85%
64,95229,06022,12823.85%
164,08575,66057,61223.85%
64,05229,49622,46023.85%
86,79238,01628,94823.85%
65,50429,93622,79623.85%
107,08452,86440,25623.85%
96,28845,82034,89223.85%
116,51639,02829,72023.85%
160,14471,60454,52823.85%
70,48033,91625,82823.85%
40,73220,96815,96823.85%
150,26875,89257,79623.84%
54,90828,70421,86023.84%
55,81229,72822,64023.84%
54,30426,25619,99623.84%
91,93242,60032,44423.84%
79,84829,48022,45223.84%
89,42039,98430,45223.84%
66,07229,19622,23623.84%
172,53276,58458,32823.84%
63,06829,93622,80023.84%
96,06047,18835,94023.84%
129,52055,91642,58823.84%
51,60426,76820,38823.83%
46,69323,84818,16423.83%
50,74826,35220,07223.83%
47,84424,70818,82023.83%
61,14431,69224,14023.83%
55,49624,76018,86023.83%
120,83260,85246,35223.83%
85,54437,36828,46423.83%
118,11657,39643,72023.83%
78,66436,31227,66023.83%
123,94052,13639,71623.82%
96,54845,89234,96023.82%
72,17635,02826,68423.82%
58,79629,42022,41223.82%
51,68824,75218,85623.82%
99,41649,23637,50823.82%
66,60430,76823,44023.82%
59,21228,40021,63623.82%
87,44036,51227,81623.82%
70,67635,06826,71623.82%
58,71229,22422,26423.82%
81,50836,88428,10023.82%
50,15726,38820,10423.81%
56,34827,06020,61623.81%
75,35235,98027,41223.81%
104,98448,42836,89623.81%
96,85647,05235,84823.81%
102,24048,14436,68023.81%
95,17647,00435,81223.81%
115,79257,30443,66023.81%
43,32022,41217,07623.81%
57,45228,10821,41623.81%
87,64436,71227,97223.81%
61,51629,96022,82823.81%
186,48467,72051,60023.80%
106,84852,48039,98823.80%
65,62830,24823,04823.80%
68,30435,08826,73623.80%
72,88434,73626,46823.80%
99,36048,08036,63623.80%
93,12044,18433,66823.80%
68,03632,45624,73223.80%
67,82430,86023,51623.80%
63,93629,92022,80023.80%
69,28435,40026,97623.80%
48,40424,42418,61223.80%
63,35229,73622,66023.80%
101,06048,48036,94423.80%
96,83246,85235,70423.79%
75,62836,90028,12023.79%
80,10030,38023,15223.79%
101,62848,97637,32423.79%
70,84032,98825,14023.79%
66,79232,40024,69223.79%
96,82447,11635,90823.79%
86,05636,70827,97623.79%
71,06434,64026,40023.79%
58,28028,90822,03223.79%
48,06422,95617,49623.78%
66,58029,44822,44423.78%
54,88425,96819,79223.78%
105,36052,46439,98823.78%
97,54848,10836,66823.78%
45,53624,00418,29623.78%
97,31247,18435,96423.78%
71,61233,40825,46423.78%
59,00829,52422,50423.78%
30,89219,78415,08023.78%
105,92452,44039,97223.78%
89,24037,73628,76423.78%
42,82022,20816,92823.78%
54,55226,98820,57223.77%
55,19229,66422,61223.77%
65,03230,30423,10023.77%
77,01644,13633,64423.77%
61,43231,31623,87223.77%
55,19226,50420,20423.77%
98,04847,30436,06023.77%
83,64440,55630,91623.77%
72,71634,78426,51623.77%
74,22036,48427,81223.77%
76,28034,08025,98023.77%
86,61641,64431,74823.76%
73,76836,34827,71223.76%
97,13647,20835,99223.76%
58,56028,96022,08023.76%
64,06427,63221,06823.76%
108,04852,74040,21223.75%
168,25678,58059,91623.75%
71,62834,50826,31223.75%
47,26924,30418,53223.75%
86,73637,62828,69223.75%
61,41228,73621,91223.75%
55,08827,84421,23223.75%
69,92836,40427,76023.74%
93,57245,94035,03223.74%
86,78442,72432,58023.74%
61,90428,86022,00823.74%
59,31226,38420,12023.74%
50,58826,06419,87623.74%
155,58873,02055,68423.74%
71,78829,78822,71623.74%
75,00030,49623,25623.74%
57,60430,07622,93623.74%
69,87227,95621,32023.74%
49,81622,41217,09223.74%
76,48036,53627,86423.74%
77,83235,66027,19623.74%
68,70032,94825,12823.73%
92,79243,96033,52823.73%
54,25226,21219,99223.73%
50,30826,04419,86423.73%
77,11644,15233,67623.73%
38,58421,90016,70423.73%
93,95243,92033,50023.72%
133,42063,28048,26823.72%
97,34044,31233,80023.72%
50,26826,37220,11623.72%
59,68428,09221,42823.72%
60,81229,94822,84423.72%
69,94433,69225,70023.72%
65,26940,01630,52423.72%
63,90830,16823,01223.72%
55,89627,11620,68423.72%
52,64825,78419,66823.72%
93,85246,58435,53623.72%
74,18042,40432,34823.71%
78,35238,86429,64823.71%
95,36843,36833,08423.71%
52,50026,02819,85623.71%
93,58045,58034,77223.71%
41,86022,04816,82023.71%
100,21648,56837,05223.71%
117,20046,62835,57223.71%
68,10429,27222,33223.71%
63,89227,87221,26423.71%
320,389198,584151,50423.71%
46,06424,04418,34423.71%
62,15628,98822,11623.71%
91,03244,59634,02423.71%
68,18033,07625,23623.70%
116,43660,92446,48423.70%
74,42036,03227,49223.70%
78,42038,71629,54023.70%
182,80083,35663,60023.70%
56,50830,23223,06823.70%
71,74034,25226,13623.69%
73,21634,86026,60023.69%
97,98446,72835,65623.69%
58,76828,85222,01623.69%
67,13231,42023,97623.69%
67,71632,02824,44023.69%
73,05236,40427,78023.69%
59,81228,82421,99623.69%
91,39246,58835,55223.69%
59,20429,58422,57623.69%
66,18430,80023,50423.69%
120,63260,58846,23623.69%
85,53244,12433,67223.69%
68,29633,06425,23223.69%
67,94832,13624,52423.69%
72,13633,92825,89223.69%
76,96438,38829,29623.68%
97,36043,98033,56423.68%
78,89230,45223,24023.68%
56,19227,16020,72823.68%
49,57223,63218,03623.68%
49,57223,63218,03623.68%
71,84833,92025,88823.68%
45,43625,05219,12023.68%
47,44025,02019,09623.68%
54,44034,40026,25623.67%
67,78433,62425,66423.67%
30,87617,70813,51623.67%
88,18039,62430,24423.67%
92,95643,46033,17223.67%
63,38031,92024,36423.67%
123,17657,59243,96023.67%
97,78451,61639,40023.67%
119,12460,56446,23223.66%
85,37237,12028,33623.66%
77,02838,44029,34423.66%
44,16022,65217,29223.66%
65,01630,80023,51223.66%
50,50426,45620,19623.66%
93,34841,70831,84023.66%
87,53639,39230,07223.66%
55,78029,45222,48423.66%
72,00432,24424,61623.66%
69,72033,64825,68823.66%
63,40433,17625,32823.66%
63,98830,67623,42023.65%
49,13626,26420,05223.65%
48,27224,55618,74823.65%
486,216277,220211,65223.65%
108,57651,09239,00823.65%
61,92029,51622,53623.65%
66,29630,28023,12023.65%
115,16456,45243,10423.64%
56,29627,81221,23623.64%
65,85231,63624,15623.64%
107,13252,48040,07223.64%
71,48833,09225,26823.64%
70,48434,70026,49623.64%
58,16028,71221,92423.64%
50,72426,92020,55623.64%
51,63224,40018,63223.64%
55,44426,16019,97623.64%
66,62831,52424,07223.64%
69,52028,09221,45223.64%
117,44058,67244,80423.64%
53,88026,82420,48423.64%
104,76846,41235,44423.63%
54,55226,44020,19223.63%
30,62820,00815,28023.63%
55,84827,15220,73623.63%
94,45643,70833,38023.63%
116,95257,77644,12423.63%
176,83675,14857,39223.63%
64,70030,60823,37623.63%
63,60830,23623,09223.63%
50,36826,07219,91223.63%
59,68029,27222,35623.63%
113,17854,84041,88423.63%
73,12835,92827,44023.63%
101,26450,47238,54823.62%
98,86849,51637,82023.62%
49,73225,72419,64823.62%
103,27650,08038,25223.62%
97,38846,39235,43623.62%
68,22432,26824,64823.61%
73,03229,00022,15223.61%
93,80843,58833,29623.61%
95,05646,32035,38423.61%
176,084100,18076,52823.61%
71,43234,00425,97623.61%
70,96141,80031,93223.61%
76,45637,48028,63223.61%
118,85260,30446,06823.61%
52,23624,97619,08023.61%
71,80833,51625,60423.61%
46,92423,43617,90423.60%
116,87257,75244,12023.60%
50,61226,03219,88823.60%
117,02058,25644,50823.60%
26,42415,74812,03223.60%
77,97237,54828,68823.60%
42,44421,64816,54023.60%
124,25660,06445,89223.59%
70,46432,80425,06423.59%
59,07229,24422,34423.59%
118,73254,81241,88023.59%
56,49627,06020,67623.59%
68,47632,45224,79623.59%
69,70024,41618,65623.59%
72,54835,25226,93623.59%
55,29226,09619,94023.59%
71,77634,88026,65223.59%
34,81219,55214,94023.59%
173,61656,65643,29223.59%
173,61656,65643,29223.59%
60,40029,50822,54823.59%
69,15232,88425,12823.59%
70,66433,92025,92023.58%
115,17654,76441,84823.58%
84,13636,17627,64423.58%
63,27626,62820,34823.58%
54,44026,47620,23223.58%
68,26031,70024,22423.58%
98,76048,64437,17223.58%
55,90026,88420,54423.58%
86,86029,84022,80423.58%
58,67629,11222,24823.58%
48,40424,82018,96823.58%
95,93645,60434,85223.58%
84,90440,39630,87223.58%
117,04458,31644,56823.58%
15,1567,2965,57623.57%
116,68057,98044,31223.57%
93,57644,02033,64423.57%
115,88457,58444,01223.57%
97,68449,23237,63223.56%
55,96427,57621,08023.56%
74,51238,83629,68823.56%
82,74039,90830,50823.55%
122,91657,80844,19223.55%
50,05625,81619,73623.55%
55,68424,78018,94423.55%
38,80422,33617,07623.55%
124,02059,30045,33623.55%
85,52044,55634,06423.55%
71,22933,19225,37623.55%
86,83641,85632,00023.55%
39,06417,38013,28823.54%
37,43218,80814,38023.54%
52,17625,87619,78423.54%
47,44823,85618,24023.54%
50,22821,58016,50023.54%
69,53234,37626,28423.54%
61,50829,40022,48023.54%
194,18898,43275,26423.54%
74,86435,04426,79623.54%
99,34847,46836,29623.54%
50,97227,10820,72823.54%
94,89246,42035,49623.53%
80,27629,78022,77223.53%
76,15629,78022,77223.53%
48,83625,10819,20023.53%
55,69228,71221,95623.53%
61,93229,73222,73623.53%
120,02859,85645,77223.53%
59,40030,22823,11623.53%
55,56426,88020,55623.53%
95,91647,35236,21223.53%
171,00484,74464,80823.52%
86,11640,06030,63623.52%
70,70035,13226,86823.52%
71,72034,11226,08823.52%
72,09634,16426,12823.52%
94,82846,44435,52023.52%
162,11297,87274,85223.52%
115,90460,01645,90023.52%
117,36457,50043,97623.52%
71,49634,57626,44423.52%
341,324160,180122,50823.52%
81,33638,40429,37223.52%
99,83649,53237,88423.52%
198,34486,65666,28023.51%
198,34486,65666,28023.51%
95,20044,04433,68823.51%
128,19662,57247,86023.51%
44,69224,38018,64823.51%
48,36824,38018,64823.51%
176,83277,16859,02823.51%
176,83277,16859,02823.51%
87,84840,06030,64423.50%
123,78455,63642,56023.50%
70,81233,52825,64823.50%
58,52028,57621,86023.50%
93,81245,92035,12823.50%
58,45229,22422,35623.50%
39,36819,33614,79223.50%
119,39259,88445,81223.50%
74,07234,67626,52823.50%
73,19233,74025,81223.50%
56,30030,54023,36423.50%
59,06429,67222,70023.50%
54,82428,36421,70023.49%
36,05617,26413,20823.49%
92,93246,26035,39223.49%
51,12820,17615,43623.49%
74,61635,70427,31623.49%
62,14030,44423,29223.49%
55,70828,55621,84823.49%
77,88039,01229,84823.49%
94,39244,30833,90023.49%
55,82029,80022,80023.49%
73,62836,66428,05223.49%
76,42437,19628,46023.49%
71,67635,44427,12023.48%
58,84429,58822,64023.48%
69,77632,09224,55623.48%
54,75226,52420,29623.48%
50,56826,45620,24423.48%
61,28022,36817,11623.48%
92,93646,30435,43223.48%
322,497209,836160,56823.48%
57,42827,46421,01623.48%
99,37648,67637,24823.48%
51,70824,96019,10023.48%
75,14432,53224,89623.47%
77,46438,12429,17623.47%
97,00447,27636,18023.47%
72,70836,42027,87223.47%
62,24830,27223,16823.47%
117,81643,44833,25223.47%
130,76858,89245,07223.47%
70,91341,54031,79223.47%
49,45225,74019,70023.47%
84,94436,87228,22023.46%
84,15230,32823,21223.46%
66,57230,89223,64423.46%
85,12030,10023,04023.46%
49,98023,86018,26423.45%
49,98023,86018,26423.45%
94,89647,00435,98023.45%
68,12431,65624,23223.45%
52,11224,61218,84023.45%
52,11224,61218,84023.45%
73,65636,18427,70023.45%
42,96023,16817,73623.45%
54,56826,25620,10023.45%
39,51622,06016,88823.45%
65,16939,61630,32823.45%
68,80427,26420,87223.44%
84,03241,66431,89623.44%
58,38829,31222,44023.44%
76,01643,80433,53623.44%
73,77230,73623,53223.44%
77,39638,67229,60823.44%
134,84471,22454,53223.44%
48,97225,41619,46023.43%
32,65619,22014,71623.43%
67,66431,34023,99623.43%
76,14443,97633,67223.43%
70,26434,84426,68023.43%
71,37229,41622,52423.43%
40,80422,96417,58423.43%
61,27736,69228,09623.43%
37,40817,99613,78023.43%
54,51628,39621,74423.43%
50,68826,22820,08423.43%
51,15626,52020,30823.42%
117,01258,11244,50023.42%
45,83621,86016,74023.42%
44,52424,56018,80823.42%
61,06829,73622,77223.42%
67,99232,89625,19223.42%
93,38853,82041,21623.42%
80,58832,94825,23223.42%
117,56849,31237,76423.42%
93,18045,09634,53623.42%
164,10459,38445,48023.41%
59,51228,32821,69623.41%
80,58936,03627,60023.41%
48,34424,36818,66423.41%
63,54432,82825,14423.41%
153,94487,41266,95223.41%
55,00826,14820,02823.41%
55,82026,06419,96423.40%
78,02826,28820,13623.40%
47,16422,27217,06023.40%
153,72868,66852,60023.40%
121,61658,29244,65223.40%
12,4766,4964,97623.40%
386,440185,140141,82023.40%
57,00027,78021,28023.40%
87,03645,18434,61223.40%
59,39630,17623,11623.40%
56,86427,73221,24423.40%
76,64034,21226,20823.40%
74,22030,58823,43223.39%
98,15251,68839,59623.39%
116,88857,12843,76423.39%
82,09238,76429,69623.39%
56,77629,66822,72823.39%
55,97227,10420,76423.39%
56,99628,08021,51223.39%
57,24427,89221,36823.39%
54,97228,51221,84423.39%
73,66836,74428,15223.38%
55,34026,90820,61623.38%
92,67642,23632,36023.38%
67,54431,58024,19623.38%
54,96426,29620,14823.38%
158,08069,96053,60423.38%
56,15227,63221,17223.38%
71,69235,58827,26823.38%
78,38438,85629,77223.38%
63,04830,64423,48023.38%
92,30442,65632,68423.38%
29,79617,12813,12423.38%
75,87636,31227,82423.38%
57,30828,23621,63623.37%
56,94027,74021,25623.37%
67,62031,32024,00023.37%
118,00452,93640,56423.37%
51,95625,04019,18823.37%
42,57221,17216,22423.37%
72,12834,40426,36423.37%
100,38845,92835,19623.37%
52,66827,71621,24023.37%
67,24432,51224,91623.36%
89,21638,48829,49623.36%
73,49636,77628,18423.36%
56,54026,59220,38023.36%
114,98058,78445,05223.36%
125,82448,41237,10423.36%
48,12024,50818,78423.36%
54,71228,82422,09223.36%
50,62825,77619,75623.36%
71,99235,96827,56823.35%
56,41227,68021,21623.35%
98,70449,19637,70823.35%
31,67718,55214,22023.35%
42,78823,18017,76823.35%
78,16437,21228,52423.35%
76,16036,97628,34423.34%
114,12452,98040,61223.34%
102,55250,24438,51623.34%
56,42828,44821,80823.34%
88,80837,17228,49623.34%
62,37230,06023,04423.34%
96,30846,13635,36823.34%
60,70030,11223,08423.34%
58,25628,12421,56023.34%
51,60426,72020,48423.34%
83,43236,09627,67223.34%
42,36822,06016,91223.34%
96,96847,63636,52023.34%
174,78473,28056,18023.34%
62,30031,61224,23623.33%
86,06436,10427,68023.33%
52,89224,74018,96823.33%
52,89224,74018,96823.33%
72,97235,52827,24023.33%
67,17232,88825,21623.33%
48,43624,67618,92023.33%
108,40840,96831,41223.33%
96,41651,41239,42023.33%
58,36428,17621,60423.32%
68,44032,63625,02423.32%
73,59236,66828,11623.32%
67,65632,43224,86823.32%
35,16820,78815,94023.32%
49,59625,48819,54423.32%
34,11621,73216,66423.32%
111,76460,84046,65223.32%
63,08828,75222,04823.32%
195,66987,24066,90023.31%
302,076152,332116,81623.31%
302,076152,332116,81623.31%
77,23237,60828,84023.31%
162,75668,10052,22423.31%
82,02839,10429,98823.31%
59,39230,21623,17223.31%
65,92025,44819,51623.31%
50,65626,92420,64823.31%
51,86425,19219,32023.31%
48,63624,95219,13623.31%
54,42026,89220,62423.31%
71,97634,97626,82423.31%
235,312101,54877,88023.31%
57,49228,08021,53623.30%
94,04844,04433,78023.30%
101,18047,10036,12423.30%
97,94048,86837,48023.30%
99,72833,62825,79223.30%
73,81235,02026,86023.30%
37,45621,56416,54023.30%
99,03648,00436,82023.30%
29,00016,03612,30023.30%
77,32438,64829,64423.30%
72,65235,35227,11623.30%
56,82427,83221,34823.30%
53,63630,40823,32423.30%
54,59226,58020,38823.30%
102,25650,68838,88023.30%
79,03236,06027,66023.29%
79,54836,81628,24023.29%
62,52429,48422,61623.29%
56,99227,78421,31223.29%
70,21634,67226,59623.29%
54,87228,69622,01223.29%
76,18040,87231,35223.29%
71,78030,14023,12023.29%
57,57627,15220,82823.29%
55,67227,90821,40823.29%
64,48427,13620,81623.29%
59,37629,92022,95223.29%
66,60429,50822,63623.29%
55,14828,56421,91223.29%
33,93621,19616,26023.29%
95,06833,51225,70823.29%
76,76037,29228,60823.29%
171,61258,80045,10823.29%
153,57280,19261,52023.28%
55,82827,26420,91623.28%
49,52427,52421,11623.28%
38,22019,00414,58023.28%
80,14432,71625,10023.28%
93,22046,18835,43623.28%
59,62822,94017,60023.28%
51,12427,23620,89623.28%
86,29644,59234,21223.28%
55,06829,02422,26823.28%
57,74428,42421,80823.28%
68,41631,77624,38023.28%
38,69721,27616,32423.28%
72,28030,48823,39223.27%
62,88026,72820,50823.27%
59,32030,18423,16023.27%
144,51663,72048,89223.27%
98,76844,50434,14823.27%
54,77628,46821,84423.27%
96,32046,22835,47223.27%
66,88431,22023,95623.27%
54,37628,26421,68823.27%
119,21663,88849,02423.27%
199,91292,74071,16423.27%
62,39629,45222,60023.26%
74,37631,55224,21223.26%
188,83262,86848,24423.26%
54,63226,96420,69223.26%
51,20826,32820,20423.26%
12,7326,6565,10823.26%
68,27232,64425,05223.26%
52,65227,29620,94823.26%
60,29629,53222,66423.26%
96,60031,64824,28823.26%
50,61626,66020,46023.26%
96,49646,16835,43223.25%
322,081211,172162,06823.25%
76,24437,10828,48023.25%
77,41638,66029,67223.25%
111,32059,58445,73223.25%
59,55229,82822,89623.24%
63,69632,74025,13223.24%
50,92425,80419,80823.24%
55,65629,46022,61623.23%
72,21635,07626,92823.23%
57,24428,17221,62823.23%
110,26047,70036,62023.23%
67,23632,11624,65623.23%
43,24421,37216,40823.23%
57,77228,16021,62023.22%
122,25251,98039,90823.22%
62,86826,33620,22023.22%
72,55632,00424,57223.22%
67,24433,45225,68423.22%
57,85627,94021,45223.22%
40,64821,36016,40023.22%
144,34463,96049,10823.22%
69,36034,28026,32023.22%
67,60033,48825,71223.22%
70,07234,66026,61223.22%
62,96031,73224,36423.22%
60,54028,96022,23623.22%
87,60039,73230,50823.22%
78,89630,03223,06023.22%
69,47232,03224,59623.21%
66,27629,56822,70423.21%
71,19234,62026,58423.21%
63,36830,64023,52823.21%
76,89234,29626,33623.21%
76,89234,29626,33623.21%
80,10836,74428,21623.21%
66,29232,98825,33223.21%
9,3364,2403,25623.21%
54,71228,78422,10423.21%
81,75633,07625,40023.21%
42,92422,02816,91623.21%
50,70026,76820,55623.21%
58,08028,66422,01223.21%
85,12036,09627,72023.20%
92,20842,49232,63223.20%
67,10028,51221,89623.20%
187,60886,08866,11223.20%
48,32424,42818,76023.20%
71,97630,30823,27623.20%
32,81214,29210,97623.20%
54,96028,96422,24423.20%
48,72424,88019,10823.20%
47,72024,93219,14823.20%
87,68037,03628,44423.20%
57,60431,58824,26023.20%
125,47260,64446,57623.20%
79,70436,35227,92023.20%
39,24420,83216,00023.20%
378,892101,60878,04023.20%
115,78850,10438,48423.19%
159,38078,94460,63623.19%
116,40457,92044,48823.19%
193,99684,77665,11623.19%
69,30033,42825,67623.19%
61,14429,49622,65623.19%
55,86827,22020,90823.19%
54,71227,15220,85623.19%
101,80050,49238,78423.19%
122,86455,03242,27223.19%
78,48435,88427,56423.19%
72,73231,36424,09223.19%
48,93326,58820,42423.18%
64,67230,23223,22423.18%
54,71228,94022,23223.18%
97,48844,71634,35223.18%
49,36825,73219,76823.18%
113,68850,18838,55623.18%
93,22842,70032,80423.18%
85,03235,62427,36823.18%
71,14432,65625,08823.17%
48,62024,64818,93623.17%
52,81626,27220,18423.17%
59,38430,12423,14423.17%
154,53877,96059,89623.17%
68,82430,26423,25223.17%
106,41255,36842,54023.17%
76,92829,26422,48423.17%
64,65725,05219,24823.17%
64,65725,05219,24823.17%
48,88426,12420,07223.17%
64,48430,51223,44423.16%
66,17629,63622,77223.16%
65,10429,90022,97623.16%
100,10443,78833,64823.16%
21,5298,8446,79623.16%
71,62834,11626,21623.16%
101,18450,85639,08023.16%
41,79622,06016,95223.16%
32,81620,10815,45223.15%
77,88835,93227,61223.15%
122,35663,29648,64023.15%
52,14025,41219,52823.15%
68,23231,63224,30823.15%
56,65628,92022,22423.15%
67,45232,91225,29223.15%
170,93258,34444,83623.15%
119,82052,31640,20423.15%
75,36436,83628,30823.15%
101,29650,97239,17223.15%
24,98816,05212,33623.15%
88,19638,01629,21623.15%
68,39632,12424,68823.15%
50,67226,94020,70423.15%
87,71636,72428,22423.15%
119,67243,19233,19623.14%
54,16429,10822,37223.14%
71,40038,78829,81223.14%
71,40038,78829,81223.14%
57,19221,59216,59623.14%
65,70032,58825,04823.14%
72,63630,30823,29623.14%
72,65234,64826,63223.14%
415,552193,296148,57623.14%
58,41227,88821,43623.14%
78,98838,00429,21223.13%
60,66429,77622,88823.13%
49,32025,59219,67223.13%
78,88835,76027,48823.13%
57,34028,04821,56023.13%
79,90836,16027,79623.13%
71,68832,89225,28423.13%
48,71225,07619,27623.13%
48,66824,64418,94423.13%
73,34834,74426,70823.13%
56,97229,55622,72023.13%
99,96049,30837,90423.13%
54,20829,59222,74823.13%
63,48427,08820,82423.12%
125,49258,12444,68423.12%
67,31633,87226,04023.12%
69,38832,14424,71223.12%
58,20028,68422,05223.12%
59,53630,17223,19623.12%
100,70850,53638,85223.12%
65,06829,56822,73223.12%
62,18430,66423,57623.12%
59,51230,20023,22023.11%
78,59229,37222,58423.11%
63,97226,83220,63223.11%
55,30029,18822,44423.11%
49,35226,59220,44823.10%
43,22422,04016,94823.10%
99,07642,90432,99223.10%
148,71274,20857,06423.10%
74,16429,08822,36823.10%
41,78822,44017,25623.10%
89,72846,70035,91223.10%
70,64435,32427,16423.10%
68,25633,05625,42023.10%
57,91231,72424,39623.10%
65,91630,46023,42423.10%
409,608193,328148,67223.10%
58,07228,54021,94823.10%
44,10821,33616,40823.10%
74,37631,62424,32023.10%
61,24028,92422,24423.10%
227,78096,14473,94023.09%
227,78096,14473,94023.09%
65,15629,10022,38023.09%
87,51638,78429,82823.09%
83,54835,06026,96423.09%
57,17227,82021,39623.09%
101,56450,48038,82423.09%
58,43228,22021,70423.09%
66,80426,38420,29223.09%
106,94855,73242,86423.09%
57,22428,25621,73223.09%
75,09632,38024,90423.09%
54,62428,69222,06823.09%
71,62433,75225,96023.09%
29,08418,80014,46023.09%
56,88029,70022,84423.08%
59,06027,70821,31223.08%
40,27221,95616,88823.08%
98,75246,86036,04423.08%
64,60525,04419,26423.08%
64,60525,04419,26423.08%
100,39649,65638,19623.08%
51,94028,04421,57223.08%
52,26426,88420,68023.08%
56,87629,52022,70823.08%
75,74836,68428,22023.07%
69,81630,75623,66023.07%
47,54426,80420,62023.07%
97,28052,93240,72023.07%
79,05632,52825,02423.07%
55,71224,24018,64823.07%
22,2097,8726,05623.07%
80,09637,12428,56023.07%
50,82426,94820,73223.07%
106,50055,56842,75223.06%
96,10451,37239,52423.06%
44,74824,42018,78823.06%
18,3376,3484,88423.06%
73,16035,47227,29223.06%
69,52831,82024,48423.05%
68,13632,84425,27223.05%
50,41626,20020,16023.05%
49,24426,09620,08023.05%
67,42832,56825,06023.05%
100,98850,68439,00023.05%
95,06444,70034,39623.05%
56,45228,73622,11223.05%
76,65638,64829,74023.05%
78,35235,85627,59223.05%
125,35649,34437,97223.05%
54,66428,10021,62423.05%
63,09231,03623,88423.04%
47,20824,26818,67623.04%
289,813190,812146,84423.04%
71,94435,00426,94023.04%
81,50439,32830,26823.04%
196,97663,95649,22423.03%
87,95639,73230,58023.03%
41,20423,08017,76423.03%
100,85252,34440,28823.03%
153,14068,79252,94823.03%
67,09628,44821,89623.03%
72,65235,13627,04423.03%
50,95626,45220,36023.03%
88,19642,36832,61223.03%
59,31632,62425,11223.03%
80,34036,17227,84423.02%
126,38063,97249,24423.02%
79,27235,94827,67223.02%
59,48431,95224,59623.02%
56,65628,84422,20423.02%
66,18429,80022,94023.02%
125,08848,58437,40023.02%
57,59228,27221,76423.02%
87,83639,72430,58023.02%
87,80445,06034,68823.02%
93,08042,22832,50823.02%
67,76832,02824,65623.02%
50,40026,85220,67223.02%
80,65637,26428,68823.01%
152,12870,04853,92823.01%
102,73246,69635,95223.01%
57,74827,85221,44423.01%
92,24845,31234,88823.00%
80,37637,14028,59623.00%
46,88023,64818,20823.00%
57,17230,81223,72423.00%
64,40030,27623,31223.00%
68,05232,54025,05623.00%
125,39249,41238,04823.00%
54,58028,31621,80423.00%
70,46032,38824,94023.00%
101,84045,14034,76023.00%
92,95641,12431,66822.99%
51,81232,14824,75622.99%
113,58061,95247,70822.99%
57,46031,61224,34422.99%
50,88023,97618,46422.99%
53,76029,33622,59222.99%
81,00438,73229,82822.99%
64,14827,49221,17222.99%
38,14023,68418,24022.99%
43,58019,45614,98422.99%
59,09629,60422,80022.98%
96,37250,57638,95222.98%
80,04033,19225,56422.98%
56,09227,01620,80822.98%
58,12428,09621,64022.98%
72,74835,35627,23222.98%
18,4456,3724,90822.98%
18,4446,3724,90822.98%
353,824169,776130,77222.97%
93,03242,13632,45622.97%
75,38435,81627,58822.97%
67,24030,73223,67222.97%
57,07229,49622,72022.97%
67,62431,76024,46422.97%
61,28029,63622,82822.97%
146,32063,80049,14422.97%
78,45235,24427,14822.97%
57,75626,99220,79222.97%
54,70828,70022,10822.97%
55,32029,52022,74022.97%
366,992176,912136,28022.97%
85,58434,12026,28422.97%
69,20031,66824,39622.96%
79,67236,66828,24822.96%
67,10028,51621,96822.96%
120,43657,08843,98022.96%
97,43649,91238,45222.96%
68,37232,21224,81622.96%
72,29230,28023,32822.96%
56,49228,74822,14822.96%
58,05227,56421,23622.96%
80,92837,37628,79622.96%
60,27229,69222,87622.96%
45,83623,54418,14022.95%
110,16458,36844,97222.95%
58,46427,64421,30022.95%
67,74033,80026,04422.95%
86,92838,52429,68422.95%
78,78432,61625,13222.95%
82,52039,01630,06422.94%
59,08432,04424,69222.94%
115,52839,36830,33622.94%
53,40827,82821,44422.94%
64,04031,24824,08022.94%
56,37228,74022,14822.94%
66,46430,81623,74822.94%
115,82459,03645,49622.94%
67,63632,92825,37622.93%
101,05250,77239,12822.93%
78,08036,08827,81222.93%
58,32431,43224,22422.93%
36,92022,18817,10022.93%
46,64024,58018,94422.93%
50,10026,59220,49622.92%
60,80429,89223,04022.92%
57,56422,47617,32422.92%
56,24427,03220,83622.92%
60,85631,44824,24022.92%
61,98030,24423,31222.92%
54,72028,41221,90022.92%
36,26022,27217,16822.92%
106,56047,18036,36822.92%
68,37632,01224,67622.92%
55,99628,59222,04022.92%
67,85228,90822,28422.91%
125,95249,66438,28422.91%
63,52430,48023,49622.91%
57,06829,52022,75622.91%
68,38831,25224,09222.91%
124,00460,08046,31622.91%
58,36027,60821,28422.91%
76,61238,75229,87622.90%
51,93227,43621,15222.90%
120,20044,88434,60422.90%
98,19252,14440,20422.90%
76,09236,52828,16422.90%
58,05632,74025,24422.90%
66,36028,06021,63622.89%
56,11629,89623,05222.89%
138,54865,84050,76822.89%
76,93237,51628,92822.89%
55,34826,36820,33222.89%
70,19228,92022,30022.89%
72,98035,38827,28822.89%
114,51256,11643,27222.89%
53,43628,01621,60422.89%
38,82020,80016,04022.88%
77,37238,42029,62822.88%
81,82033,21225,61222.88%
57,43627,56821,26022.88%
61,63629,68422,89222.88%
82,11639,00430,08022.88%
100,90049,88038,46822.88%
101,03250,98839,32422.88%
202,82497,22074,98022.88%
157,97269,01653,22822.88%
56,27629,39622,67222.87%
31,15213,86810,69622.87%
86,00035,60827,46422.87%
61,76030,01223,14822.87%
48,77220,92016,13622.87%
106,68055,57242,86422.87%
66,22031,36424,19222.87%
57,51222,70817,51622.86%
213,432110,37685,14022.86%
36,64018,75614,46822.86%
125,34048,78437,63222.86%
68,17631,58824,36822.86%
55,78429,89223,06022.86%
54,91629,28022,58822.86%
139,86859,33245,77222.85%
135,32867,75252,26822.85%
58,96831,90824,61622.85%
47,27226,50020,44422.85%
79,49633,55625,88822.85%
58,77628,90022,29622.85%
130,30061,47647,42822.85%
58,73628,09621,67622.85%
77,19239,21230,25222.85%
55,93230,68823,67622.85%
73,08831,32024,16422.85%
60,60830,51623,54422.85%
63,82427,20820,99222.85%
76,84038,57229,76022.85%
61,14536,26427,98022.84%
71,78532,83225,33222.84%
113,57649,60838,27622.84%
55,27626,68820,59222.84%
61,47229,56022,80822.84%
122,15642,33232,66422.84%
51,18427,00820,84022.84%
116,40063,72049,16822.84%
209,504106,22481,96822.83%
108,70044,67234,47222.83%
67,38427,10420,91622.83%
69,70028,84022,25622.83%
66,84432,27624,90822.83%
61,64029,78822,98822.83%
82,42838,53229,73622.83%
100,24049,50438,20422.83%
34,11621,71216,75622.83%
57,26829,39222,68422.82%
80,06032,26824,90422.82%
25,68110,8328,36022.82%
88,56842,51632,81622.81%
88,56842,51632,81622.81%
50,92427,00020,84022.81%
55,26026,30020,30022.81%
83,92440,29231,10022.81%
74,69231,50824,32022.81%
66,65627,93221,56022.81%
52,94827,10820,92422.81%
288,821189,588146,34422.81%
53,30427,37621,13222.81%
73,92435,48027,38822.81%
54,98427,92421,55622.80%
39,13222,92817,70022.80%
67,08828,30021,84822.80%
138,24462,72848,42822.80%
71,72835,93627,74422.80%
59,32829,70822,93622.80%
95,55633,69226,01222.79%
55,52828,78022,22022.79%
59,54029,85223,04822.79%
55,12829,60822,86022.79%
124,76060,02446,34422.79%
55,15229,55622,82022.79%
44,08822,68017,51222.79%
100,96450,71639,16022.79%
68,58431,49624,32022.78%
84,26440,29231,11222.78%
84,26440,29231,11222.78%
64,81629,62022,87222.78%
149,24875,55258,34022.78%
64,46524,67219,05222.78%
64,46524,67219,05222.78%
40,53223,18017,90022.78%
51,48026,95620,81622.78%
69,05229,01222,40422.78%
79,15236,33628,06022.78%
54,28828,79222,23622.77%
46,89224,92819,25222.77%
30,42814,96811,56022.77%
156,83293,79672,44022.77%
53,60827,37621,14422.76%
67,84443,03233,23622.76%
61,40429,55622,82822.76%
55,24828,29221,85222.76%
86,40033,47625,85622.76%
97,41653,04040,96822.76%
56,14429,22822,57622.76%
121,00858,16444,92822.76%
98,85252,04840,20422.76%
72,18034,57626,70822.76%
69,05228,98822,39222.75%
51,73627,74021,42822.75%
62,77628,97222,38022.75%
57,02021,80416,84422.75%
53,58827,57221,30022.75%
19,59612,6089,74022.75%
55,85229,78823,01222.75%
86,48030,89623,86822.75%
68,46139,67230,64822.75%
61,98426,02820,10822.74%
88,42841,34831,94422.74%
69,78834,79226,88022.74%
52,45227,35221,13222.74%
57,07229,58822,86022.74%
37,00820,82816,09222.74%
67,02433,54825,92022.74%
86,37233,62025,97622.74%
64,42832,07224,78022.74%
105,59247,57236,75622.74%
101,23647,11636,40422.74%
36,27217,86013,80022.73%
84,69640,35231,18022.73%
84,69640,35231,18022.73%
87,63640,38831,20822.73%
54,84821,84016,87622.73%
45,38826,06420,14022.73%
61,17229,76423,00022.73%
62,57228,79622,25222.73%
102,45641,47232,04822.72%
55,35629,55622,84022.72%
74,75240,31231,15222.72%
72,81631,00023,95622.72%
68,90828,36021,91622.72%
89,19242,04432,49222.72%
41,49623,75218,35622.72%
61,84027,52021,26822.72%
106,04454,42442,06022.72%
57,71627,68021,39222.72%
223,66094,85673,30822.72%
223,66094,85673,30822.72%
68,34828,54422,06022.72%
58,86829,83223,05622.71%
91,41242,93633,18422.71%
91,41242,93633,18422.71%
64,35628,28421,86022.71%
172,28862,26848,12822.71%
61,82831,90424,66022.71%
104,47648,37637,39222.71%
68,96031,28824,18422.71%
59,24428,80422,26422.71%
99,43251,88440,10422.70%
121,79658,02044,84822.70%
68,96032,93225,45622.70%
106,56055,59242,97222.70%
69,72826,57220,54022.70%
42,84822,32817,26022.70%
60,31720,37215,74822.70%
12,8726,5565,06822.70%
66,61231,90024,66022.70%
55,76827,21221,03622.70%
104,27646,74036,13222.70%
104,27646,74036,13222.70%
76,59238,51229,77222.69%
34,30021,38016,52822.69%
76,11232,87225,41222.69%
56,79630,33623,45222.69%
63,66430,23223,37222.69%
78,21227,71221,42422.69%
59,30428,40021,95622.69%
80,48836,66828,34822.69%
53,78027,96021,61622.69%
70,12435,18827,20422.69%
37,09221,20816,39622.69%
51,56026,97620,85622.69%
66,04830,25623,39222.69%
52,74426,87220,77622.69%
61,19629,00822,42822.68%
58,38827,88021,55622.68%
45,31226,15220,22022.68%
68,13232,53625,15622.68%
119,94044,74034,59222.68%
73,70031,56824,40822.68%
81,64839,08430,22022.68%
81,64839,08430,22022.68%
39,67621,53616,65222.68%
82,07233,48025,88822.68%
82,07233,48025,88822.68%
69,13233,62426,00022.67%
62,30030,45223,54822.67%
65,89231,60024,43622.67%
82,09238,89230,07622.67%
106,40855,94043,26022.67%
89,92055,27242,74422.67%
55,34028,61222,12822.66%
55,80026,97220,86022.66%
66,54431,60024,44022.66%
64,82830,01623,21622.65%
47,20426,94420,84022.65%
77,68026,75220,69222.65%
46,50826,48820,48822.65%
61,71229,70422,97622.65%
44,16825,09619,41222.65%
73,75636,43628,18422.65%
59,14030,16823,33622.65%
85,05238,13629,50022.65%
57,93227,85621,54822.65%
37,62420,93216,19222.64%
61,26428,51222,05622.64%
118,36053,66841,51622.64%
40,98421,46416,60422.64%
60,74829,41622,75622.64%
61,08831,57224,42422.64%
73,43230,92423,92422.64%
69,72834,21626,47222.63%
101,23641,51632,12022.63%
94,33642,27632,70822.63%
72,02031,65624,49222.63%
73,95231,90424,68422.63%
65,28430,12023,30422.63%
61,48430,16023,33622.63%
96,26832,35625,03622.62%
53,12027,34021,15622.62%
120,12445,13634,92822.62%
87,44439,60430,64822.61%
127,07256,84043,98822.61%
57,50430,00423,22022.61%
52,62827,95221,63222.61%
92,98846,90036,29622.61%
82,52439,33230,44022.61%
101,79653,75241,60022.61%
58,35627,78021,50022.61%
39,83222,24417,21622.60%
125,10059,76446,25622.60%
55,88027,18421,04022.60%
55,88027,18421,04022.60%
57,85629,03222,47222.60%
210,67277,73660,17222.59%
55,26029,53222,86022.59%
72,90028,94822,40822.59%
80,21636,97228,62022.59%
49,80422,98417,79222.59%
64,70433,48825,92422.59%
100,22441,31631,98422.59%
62,60030,24823,41622.59%
98,68451,71640,03622.58%
89,05642,68433,04422.58%
59,07227,59621,36422.58%
49,85225,96820,10422.58%
47,64825,38419,65222.58%
89,36843,36433,57222.58%
45,51626,04020,16022.58%
68,69631,62024,48022.58%
61,79232,34825,04422.58%
102,54842,21632,68422.58%
57,53227,83221,54822.58%
52,35628,40021,98822.58%
59,10432,17624,91222.58%
89,27640,11631,06022.57%
62,06032,60425,24422.57%
153,13267,78052,48022.57%
53,50827,66421,42022.57%
85,75234,20426,48422.57%
52,16827,73621,47622.57%
64,94432,11624,86822.57%
69,23230,46823,59222.57%
65,11230,41623,55222.57%
57,04431,30424,24022.57%
68,91631,32424,25622.56%
187,85296,18874,48422.56%
45,80025,77619,96022.56%
47,40426,43220,46822.56%
85,30840,34031,24022.56%
59,56029,17222,59222.56%
53,40827,64821,41222.55%
53,41627,40021,22022.55%
47,40126,40820,45222.55%
100,38448,02837,19622.55%
94,61242,67233,04822.55%
65,11234,03626,36022.55%
52,90427,04820,94822.55%
66,89232,08824,85222.55%
48,79216,56812,83222.55%
59,65632,69625,32422.55%
100,14846,48436,00422.55%
115,46856,82844,01622.55%
69,14029,79223,07622.54%
65,29631,74424,58822.54%
65,29631,74424,58822.54%
58,07228,64022,18422.54%
133,29265,32450,60022.54%
47,74427,10020,99222.54%
60,10432,46025,14422.54%
61,53632,46025,14422.54%
94,67642,60033,00022.54%
133,89361,79247,86822.53%
105,58847,22036,58022.53%
60,94933,42825,89622.53%
120,36044,27634,30022.53%
70,53232,64825,29222.53%
90,97644,34834,35622.53%
56,87629,84423,12022.53%
52,92027,04020,94822.53%
61,98829,94023,19622.53%
94,80845,85235,52422.52%
86,69638,14829,55622.52%
65,95231,02824,04022.52%
265,600125,64497,34822.52%
96,09250,21638,90822.52%
52,38027,32021,16822.52%
61,75232,20824,95622.52%
55,44029,65222,97622.51%
65,72430,64823,74822.51%
82,66039,30830,46022.51%
53,98426,62020,62822.51%
65,57234,72426,90822.51%
78,61628,22021,86822.51%
121,03258,19245,09622.50%
59,41228,30021,93222.50%
56,59230,89623,94422.50%
272,628129,116100,06422.50%
61,53232,08824,86822.50%
70,02433,84826,23222.50%
78,44439,02430,24422.50%
116,95654,58442,30422.50%
95,85641,55232,20422.50%
96,21232,80825,42822.49%
62,09631,92024,74022.49%
118,57461,95648,02022.49%
64,55324,86419,27222.49%
64,55324,86419,27222.49%
48,80424,58019,05222.49%
85,50033,90026,27622.49%
115,80057,98444,94422.49%
65,53231,85624,69222.49%
65,53231,85624,69222.49%
38,68016,72012,96022.49%
37,04421,08016,34022.49%
54,28826,64820,65622.49%
71,84843,42433,66022.49%
165,92175,58858,59222.49%
51,85627,27221,14022.48%
49,93625,90420,08022.48%
61,48429,39222,78422.48%
66,73632,13224,90822.48%
61,98832,01224,81622.48%
99,20051,00039,53622.48%
51,01224,36418,88822.48%
51,92027,87221,60822.47%
111,42843,59233,79622.47%
45,61624,90419,30822.47%
60,78831,76024,62422.47%
80,21637,56829,12822.47%
80,21637,56829,12822.47%
57,00830,98424,02422.46%
52,60828,61622,18822.46%
71,07234,17226,49622.46%
62,60032,16024,93622.46%
57,74832,94425,54422.46%
42,39624,09618,68422.46%
67,22431,81224,66822.46%
83,13239,13630,34822.46%
101,78841,43632,13222.45%
138,51264,00049,63222.45%
30,54817,42813,51622.45%
83,51634,63226,86022.44%
66,71631,46024,40022.44%
47,80825,31219,63222.44%
120,17245,30035,13622.44%
61,02430,57623,71622.44%
69,86833,78826,20822.43%
65,20430,93623,99622.43%
28,25218,52814,37222.43%
66,25631,08424,11222.43%
83,80829,51622,89622.43%
192,51294,71673,47622.42%
95,99639,40430,56822.42%
81,67638,78030,08422.42%
81,67638,78030,08422.42%
49,44423,74818,42422.42%
33,98421,76816,88822.42%
67,70032,20824,98822.42%
59,36428,10421,80422.42%
68,69232,74425,40422.42%
132,08468,49253,14022.41%
120,84845,66035,42822.41%
52,60428,79222,34022.41%
123,03663,05248,92422.41%
78,42837,40029,02022.41%
104,74854,50442,29222.41%
65,52032,81625,46422.40%
39,20818,32014,21622.40%
112,99251,64040,07222.40%
58,72430,16023,40422.40%
103,39246,30835,93622.40%
94,43646,79236,31222.40%
58,22032,07624,89222.40%
67,33226,84420,83222.40%
61,16831,65224,56422.39%
56,20828,76022,32022.39%
66,41232,17224,96822.39%
157,65250,48439,18022.39%
54,64028,51222,12822.39%
103,28042,72833,16422.38%
20,26013,31610,33622.38%
53,07626,99220,95222.38%
61,49632,12424,93622.38%
50,03620,64816,02822.38%
68,86828,82422,37622.37%
105,25243,04433,41622.37%
57,94831,52824,47622.37%
65,65634,94427,12822.37%
91,52441,43632,16822.37%
85,76440,13231,15622.37%
158,20056,13243,58022.36%
110,89647,03236,51622.36%
56,46029,21622,68422.36%
53,52027,58821,42022.36%
73,52436,32028,20022.36%
47,24822,76017,67222.36%
78,70028,04021,77222.35%
45,13625,57219,85622.35%
65,84831,05224,11222.35%
70,02834,53226,81622.34%
48,89623,22018,03222.34%
48,30823,74018,43622.34%
54,66027,34021,23222.34%
78,12836,84828,61622.34%
50,84428,15221,86422.34%
62,02831,73624,64822.33%
103,83248,41237,60022.33%
78,39234,39226,71222.33%
56,23629,68423,05622.33%
62,85632,18024,99622.32%
85,46033,79626,25222.32%
57,20830,21623,47222.32%
156,89650,74839,42422.31%
184,732103,43280,35622.31%
49,06422,37617,38422.31%
44,26019,16814,89222.31%
226,880119,34892,72422.31%
56,12829,12022,62422.31%
46,12425,06819,47622.31%
81,88841,08431,92022.31%
396,645259,948201,97622.30%
185,85674,02057,51622.30%
143,22063,97649,71222.30%
38,15223,28818,09622.29%
178,62890,98470,70022.29%
139,92069,62054,10022.29%
61,83232,08424,93222.29%
61,70032,17625,00422.29%
71,48529,70023,08022.29%
97,62047,21636,69222.29%
58,36427,30021,21622.29%
50,67227,30421,22022.28%
135,79261,74047,98422.28%
63,21232,44825,22022.28%
102,16139,53630,73222.27%
58,10432,80025,49622.27%
86,30840,22031,26422.27%
121,15854,43242,31222.27%
32,58817,30013,44822.27%
153,70866,74451,88422.26%
50,84827,11221,07622.26%
56,58030,54423,74422.26%
86,74842,81633,28422.26%
56,79632,10824,96022.26%
94,22442,62033,13222.26%
76,56036,66028,50022.26%
127,20058,15645,21222.26%
75,63626,01220,22422.25%
122,29259,81246,50422.25%
39,48818,93214,72022.25%
70,16434,55626,86822.25%
69,94034,16826,56822.24%
84,74040,95231,84422.24%
61,64832,14424,99622.24%
65,19241,12031,97622.24%
65,71234,37626,73222.24%
294,020150,112116,73622.23%
294,020150,112116,73622.23%
67,19632,46025,24422.23%
56,75231,25624,30822.23%
33,00019,05614,82022.23%
81,53235,03627,24822.23%
128,03260,39646,97222.23%
104,92854,64442,50022.22%
52,19228,62022,26022.22%
43,50021,83616,98422.22%
50,89227,32821,25622.22%
77,62034,33226,70422.22%
52,35327,88821,69222.22%
79,91635,34427,49222.22%
71,95626,72420,78822.21%
716,101456,172354,85222.21%
69,68835,98427,99222.21%
81,65640,97631,87622.21%
37,14417,68813,76022.21%
68,64132,04824,93222.20%
61,70032,08824,96422.20%
95,08842,62833,16422.20%
104,82846,93636,51622.20%
64,56429,96423,31222.20%
106,78433,56826,11622.20%
106,78433,56826,11622.20%
320,82884,18465,49622.20%
38,99221,28416,56022.20%
86,89243,99234,22822.19%
64,62027,76021,60022.19%
64,44831,31224,36422.19%
66,35631,24024,30822.19%
110,82453,20041,39622.19%
62,60029,00822,57222.19%
140,30071,99256,02422.18%
56,78430,64023,84422.18%
45,08823,77218,50022.18%
52,08828,51622,19222.18%
64,78432,28825,12822.18%
52,46428,70022,33622.17%
142,01661,66047,98822.17%
47,58424,64419,18022.17%
26,49617,52413,64022.16%
65,09232,00024,90822.16%
43,96824,44019,02422.16%
66,11231,91624,84422.16%
66,11231,91624,84422.16%
36,50419,93215,51622.16%
72,22443,06033,52022.16%
64,88028,07621,85622.15%
23,52813,59610,58422.15%
67,21224,44819,03222.15%
91,79641,70032,46422.15%
26,1939,9527,74822.15%
75,75236,47228,39622.14%
32,90416,69212,99622.14%
106,76851,70440,25622.14%
69,69635,98828,02022.14%
101,98444,55234,68822.14%
43,27216,76813,05622.14%
37,33621,05216,39222.14%
76,79234,91227,18422.14%
48,61222,93217,85622.14%
50,64827,30821,26422.13%
49,50425,41219,78822.13%
54,77228,52422,21222.13%
25,08412,1849,48822.13%
25,08412,1849,48822.13%
103,04443,08033,54822.13%
43,39223,99218,68422.12%
159,22451,15239,83622.12%
81,32041,84832,59222.12%
65,98432,24825,11622.12%
65,98432,24825,11622.12%
58,10029,60823,06022.12%
97,88443,64433,99222.12%
65,36030,53223,78022.11%
60,11227,04421,06422.11%
67,00032,35225,20022.11%
56,91630,25623,56822.10%
106,05649,07638,22822.10%
64,88028,05221,85222.10%
54,62427,98021,79622.10%
57,25630,40823,68822.10%
131,34064,36850,14422.10%
80,38433,18025,84822.10%
80,38433,18025,84822.10%
71,06833,07625,76822.09%
79,14037,02828,84822.09%
100,42846,39636,14822.09%
57,26429,56023,03222.08%
64,39631,73624,72822.08%
76,72033,36826,00022.08%
130,90858,53245,60822.08%
158,81679,58462,01222.08%
154,56049,94838,92022.08%
65,27631,59624,62022.08%
54,73228,48022,19222.08%
107,75254,20842,24022.08%
70,55625,36819,76822.08%
39,54824,40819,02022.07%
51,49627,69221,58022.07%
73,72834,43626,83622.07%
62,08432,00824,94422.07%
57,79230,32423,63222.07%
58,68829,90823,30822.07%
58,68829,90823,30822.07%
79,12118,96414,78022.06%
48,18825,69620,02822.06%
66,21632,39225,24822.05%
66,21632,39225,24822.05%
91,78844,38434,59622.05%
91,78844,38434,59622.05%
126,47260,00846,77622.05%
46,84423,51218,32822.05%
73,61634,65227,01222.05%
46,35626,52820,68022.04%
80,01645,75635,67222.04%
56,67629,84023,26422.04%
143,35071,22455,52822.04%
60,93229,18822,75622.04%
70,71632,64025,44822.03%
33,18019,50015,20422.03%
74,18834,58826,96822.03%
122,32851,35240,04022.03%
113,34449,70438,75622.03%
47,58820,25215,79222.02%
101,50451,62040,25222.02%
77,61639,65230,92022.02%
66,00831,18824,32022.02%
66,74431,31624,42022.02%
134,82866,24851,66022.02%
62,43632,78825,56822.02%
67,11632,17225,08822.02%
58,32827,25221,25222.02%
113,87252,08440,62022.01%
111,57347,23236,83622.01%
168,17684,61665,99222.01%
80,46436,87628,76022.01%
105,61252,60441,02822.01%
48,07222,32417,41222.00%
74,39235,39627,60822.00%
96,95242,61633,24022.00%
55,10828,72822,40822.00%
57,48431,76824,78022.00%
52,28028,52022,24821.99%
56,42831,07224,24021.99%
80,12838,35229,92021.99%
774,729523,184408,16821.98%
41,34421,62016,86821.98%
85,14838,34029,91621.97%
62,16832,55225,40021.97%
58,76430,24023,59621.97%
33,01617,86013,93621.97%
54,52028,56822,29221.97%
62,19632,49225,35621.96%
51,85227,84821,73221.96%
57,62830,21623,58021.96%
107,96460,72447,38821.96%
65,68834,88027,22021.96%
80,38041,34832,26821.96%
125,61255,50443,31621.96%
126,25659,90046,74821.96%
116,24447,14836,79621.96%
66,18431,31224,44021.95%
118,50655,48043,30421.95%
98,24839,78831,05621.95%
75,28428,01621,86821.94%
63,40433,74426,34021.94%
104,64046,68836,44421.94%
94,80837,37629,17621.94%
94,17238,38029,96021.94%
57,14431,45224,55221.94%
107,10841,04432,04021.94%
64,53629,63623,13621.93%
138,53666,60451,99621.93%
76,42035,23627,50821.93%
51,58827,66821,60021.93%
90,27242,53633,20821.93%
57,17231,46824,56821.93%
289,269195,720152,80821.93%
47,22822,69617,72021.92%
73,89625,50819,91621.92%
63,62829,19622,79621.92%
71,43233,92426,48821.92%
61,87231,54424,63221.91%
63,36829,52023,05221.91%
67,13232,11625,08021.91%
78,70431,53624,62821.91%
62,22032,74425,57221.90%
177,60881,43263,59621.90%
119,34858,42845,63221.90%
94,73245,35635,42421.90%
100,10047,75237,29621.90%
93,29644,04834,40421.89%
93,29644,04834,40421.89%
143,66468,68853,65221.89%
99,32848,04037,52421.89%
33,80418,38414,36021.89%
65,37634,44826,90821.89%
115,28859,88846,78021.89%
51,00827,56021,52821.89%
57,02832,61225,47621.88%
91,20437,44029,24821.88%
82,88838,48430,06421.88%
58,10030,56823,88021.88%
50,05226,27620,52821.88%
56,97229,86023,32821.88%
57,02431,54424,64421.87%
207,92496,48875,38421.87%
65,56834,69627,10821.87%
92,03255,84843,63621.87%
44,67224,11218,84021.86%
99,85647,80437,35221.86%
44,13623,41618,30021.85%
73,35234,57227,02021.84%
73,58836,63628,63621.84%
75,00436,30828,38021.84%
71,28033,78026,40421.84%
88,72841,58432,50421.84%
42,18023,76018,57221.84%
102,76845,13635,28421.83%
42,91223,57218,42821.82%
91,15237,78029,53621.82%
71,23233,69626,34421.82%
57,71229,35222,94821.82%
78,22837,67629,45621.82%
54,99628,73222,46421.82%
53,68124,11218,85221.81%
69,22034,14826,70021.81%
36,94020,06415,68821.81%
124,39257,76045,16421.81%
53,51228,78022,50421.81%
146,24866,38451,90821.81%
72,81227,90021,81621.81%
104,47644,45234,76021.80%
103,74046,30836,21221.80%
76,93234,76827,18821.80%
73,45225,41219,87221.80%
87,38445,15635,31221.80%
104,37643,17633,76421.80%
282,864177,496138,80821.80%
57,88830,94424,20021.79%
41,42818,48414,45621.79%
57,07231,36024,52821.79%
115,49253,32041,70421.79%
56,75231,28824,47221.78%
81,64835,01627,38821.78%
62,73229,41623,00821.78%
100,78446,88836,67621.78%
86,17253,96442,21221.78%
92,45637,97229,70421.77%
100,09647,76437,36821.77%
78,72438,48430,10821.76%
97,78450,58039,57221.76%
70,58437,15229,06821.76%
176,44890,83271,06821.76%
51,55621,03616,46021.75%
39,52817,98414,07221.75%
180,52881,99664,16021.75%
180,52881,99664,16021.75%
88,30841,89232,78021.75%
123,60453,64441,97621.75%
55,92825,32419,81621.75%
53,16929,07622,75221.75%
58,53227,77221,73221.75%
61,59631,70824,81221.75%
216,208127,55299,81221.75%
66,70427,86821,80821.75%
39,39625,53619,98421.74%
83,70840,16431,43221.74%
37,18820,79616,27621.73%
69,72834,64027,11221.73%
63,37228,42022,24421.73%
120,72855,18843,19621.73%
62,08432,08825,11621.73%
65,49639,96831,28421.73%
172,22098,77677,32021.72%
180,61682,14864,30421.72%
122,66154,79242,89221.72%
99,72447,31637,04021.72%
66,87631,97625,03221.72%
61,59640,00831,32021.72%
96,42846,44436,36021.71%
140,66871,20855,74821.71%
66,37630,99224,26421.71%
53,02027,45621,49621.71%
65,26434,55227,05221.71%
44,71623,48018,38421.70%
78,79638,54030,17621.70%
73,49626,54420,78421.70%
99,88444,28434,67621.70%
151,88074,83658,60021.70%
39,39218,64014,59621.70%
50,00425,64820,08421.69%
43,88822,07217,28421.69%
33,62419,86015,55221.69%
56,59630,48823,87621.69%
44,34024,53219,21221.69%
75,48436,54428,62021.68%
42,38423,15218,13221.68%
160,25681,62463,92821.68%
89,30439,06030,59221.68%
114,91252,06840,78021.68%
61,63627,49621,53621.68%
63,50829,01222,72421.67%
86,86040,78831,94821.67%
42,16020,94816,40821.67%
55,66030,27223,71221.67%
66,79232,08825,13621.67%
54,51629,34422,98821.66%
80,35640,44431,68421.66%
67,07630,04823,54021.66%
33,00419,58015,34021.65%
141,40072,57656,86021.65%
105,42846,92036,76021.65%
182,70473,08057,25621.65%
76,35244,39634,78421.65%
51,30428,16422,06821.64%
49,02025,61620,07221.64%
57,67231,97625,05621.64%
67,12431,57224,74021.64%
183,46486,17267,52821.64%
151,78464,54450,58021.63%
36,74419,78415,50421.63%
93,31638,47630,15621.62%
82,49642,11233,00821.62%
88,50845,57235,72021.62%
91,60038,08029,84821.62%
51,40418,82014,75221.62%
33,00819,61615,37621.62%
62,71735,33227,69621.61%
66,20431,14024,41221.61%
106,19644,21234,66021.60%
53,26823,84818,69621.60%
75,49227,24021,35621.60%
47,61625,42819,93621.60%
96,20846,45236,42021.60%
78,26037,36029,29221.60%
145,92462,58849,07221.60%
43,80021,72817,03621.59%
110,36849,68438,95621.59%
90,62844,92435,22421.59%
46,62425,38019,90021.59%
41,01221,27216,68021.59%
135,13262,52049,02421.59%
95,28043,34833,99221.58%
132,81257,78045,31221.58%
62,22432,57225,54421.58%
106,98848,28037,86421.57%
159,15684,02865,90021.57%
54,55229,16822,87621.57%
24,87612,4249,74421.57%
179,41681,30063,76421.57%
89,62042,45233,29621.57%
85,88043,51634,13221.56%
39,99620,98416,46021.56%
128,09655,08843,21221.56%
78,41230,72824,10421.56%
111,21648,35637,93221.56%
119,96053,15241,69621.55%
32,63617,76413,93621.55%
28,58813,27210,41221.55%
104,34849,06038,48821.55%
95,88041,32432,42021.55%
61,94032,28425,32821.55%
80,00837,41229,35221.54%
64,19230,50823,93621.54%
136,33669,04054,16821.54%
126,59644,72035,08821.54%
100,56038,33230,07621.54%
46,28022,99618,04421.53%
162,19268,75253,94821.53%
82,50838,49230,20421.53%
82,50838,49230,20421.53%
162,87278,58461,66421.53%
92,99642,67633,48821.53%
126,49652,74841,39221.53%
96,85246,92036,82021.53%
78,62835,28827,69221.53%
237,216113,74089,26021.52%
36,84819,98015,68021.52%
36,68020,09615,77221.52%
46,01622,70417,82021.51%
57,79229,47623,13621.51%
73,79236,43628,60021.51%
49,39626,72820,98021.51%
67,86030,82024,19221.51%
71,02433,89226,60421.50%
143,03667,07252,65221.50%
124,70063,97250,22021.50%
85,28442,34033,24021.49%
95,79246,23236,29621.49%
57,06830,74824,14021.49%
123,06451,56040,48021.49%
36,41619,30815,16021.48%
56,42031,84425,00421.48%
130,55256,72444,54021.48%
83,09322,23617,46021.48%
41,70821,69617,03621.48%
136,33669,04454,21621.48%
76,05236,13628,37621.47%
59,54824,37219,14021.47%
43,98823,05218,10421.46%
93,49242,24833,18021.46%
97,71651,51240,45621.46%
100,40047,86037,58821.46%
48,31222,10417,36021.46%
123,40474,42458,45221.46%
119,12858,71246,11221.46%
128,41656,19644,13621.46%
100,74839,74431,21621.46%
81,70033,98426,69221.46%
61,28430,80824,20021.45%
81,46841,66432,73221.44%
65,71238,75630,44821.44%
103,25644,92435,29621.43%
123,06451,56040,51221.43%
100,22845,92436,08421.43%
114,78050,92840,01621.43%
51,52028,22822,18021.43%
49,21626,28820,65621.42%
57,11230,92024,29621.42%
32,91219,28815,15621.42%
107,28844,87235,26021.42%
76,58837,96429,83221.42%
105,07647,71637,50021.41%
43,86021,64017,00821.40%
578,057370,312291,05221.40%
41,06021,26816,71621.40%
150,98049,36038,79621.40%
119,02857,59245,26821.40%
90,84042,58433,47221.40%
57,03230,86424,26021.40%
114,47654,97243,21221.39%
57,78430,98424,35621.39%
178,10059,50446,77621.39%
38,00819,54415,36421.39%
120,81660,31647,41621.39%
148,93248,86038,41221.38%
75,36028,49222,40021.38%
77,29638,22430,05221.38%
58,40831,56424,81621.38%
47,97624,79619,49621.37%
80,99640,42431,78421.37%
41,31622,92818,02821.37%
47,06825,40819,98021.36%
108,56045,57635,84021.36%
41,58819,12015,03621.36%
49,72826,38820,75221.36%
98,52451,34040,37621.36%
177,17680,32063,16821.35%
117,76451,75640,70421.35%
44,35223,43618,43221.35%
56,98830,50823,99621.35%
110,74051,68440,65221.35%
51,83629,10422,89221.34%
98,34038,29230,12021.34%
32,9409,3927,38821.34%
132,16868,94454,23621.33%
84,98037,80829,74421.33%
85,23242,36833,33221.33%
80,12029,44823,16821.33%
101,51644,59235,08421.32%
91,30436,90829,04021.32%
57,92031,27224,60821.31%
29,88018,78014,78021.30%
53,58029,03622,85221.30%
113,84451,31240,38421.30%
51,80027,76021,84821.30%
46,84825,15219,79621.29%
153,04049,79239,19221.29%
79,79639,78031,31221.29%
43,00821,94817,27621.29%
101,32846,28436,43221.29%
62,91629,61623,31221.29%
56,89231,74024,98421.29%
49,61625,70820,23621.29%
150,75648,89238,48821.28%
177,176102,18480,44821.27%
71,82841,35232,55621.27%
26,05617,13213,48821.27%
179,98893,26073,42421.27%
49,11226,48020,84821.27%
98,58845,44035,77621.27%
57,30431,24024,59621.27%
106,31248,09237,86421.27%
133,10056,16444,22021.27%
36,17619,70415,51621.25%
104,33647,89637,71621.25%
47,63219,42415,29621.25%
138,66465,44851,54021.25%
137,24068,98054,32821.24%
55,60029,34023,10821.24%
95,63638,80430,56421.23%
96,65649,31638,84421.23%
113,24459,05646,52021.23%
100,09244,30434,90021.23%
98,61247,14037,13621.22%
36,70824,73219,48421.22%
107,42049,20438,76421.22%
49,04026,04020,51621.21%
147,29648,08437,88421.21%
48,29620,73216,33621.20%
65,93338,44030,29221.20%
37,82020,91216,48021.19%
44,42823,40418,44421.19%
67,04434,99627,58021.19%
54,15626,65621,00821.19%
76,46434,22826,97621.19%
35,34419,65615,49221.18%
35,34419,65615,49221.18%
114,65655,68443,88821.18%
178,86059,58446,96421.18%
44,17221,96417,31221.18%
94,51652,07241,04421.18%
77,02437,85229,83621.18%
73,32442,96033,86421.17%
76,01235,86028,26821.17%
96,20845,91236,19221.17%
45,45622,07617,40421.16%
81,79236,94029,12421.16%
94,97647,71637,62021.16%
110,73249,55639,07221.16%
50,73627,00821,29621.15%
37,48819,39215,29221.14%
51,20827,68021,82821.14%
74,62436,00828,39621.14%
120,45657,11245,04421.13%
100,02846,84036,94421.13%
97,08050,10039,51621.13%
137,03669,28454,64821.12%
48,48818,29214,42821.12%
124,34453,53242,22421.12%
100,72451,01640,24021.12%
36,00023,90418,85621.12%
119,99251,56040,67221.12%
114,43654,64843,10821.12%
55,70431,69225,00021.12%
28,12416,21612,79221.11%
74,89225,68820,26421.11%
62,50426,22020,68421.11%
158,89680,46063,47221.11%
57,51228,87622,78021.11%
49,14026,58420,97221.11%
83,66443,16434,05221.11%
96,69249,82839,31221.10%
47,10822,88018,05221.10%
52,14028,00022,09221.10%
152,01249,31638,91221.10%
91,96041,04032,38421.09%
57,16829,06022,93221.09%
207,29295,85675,64821.08%
91,23642,06833,20021.08%
40,97621,55617,01221.08%
54,63225,86420,41221.08%
36,81624,73219,52021.07%
82,89643,54034,36821.07%
40,45222,59617,83621.07%
229,396124,88098,57621.06%
57,79234,08826,90821.06%
95,46849,23238,86421.06%
184,96894,01274,21621.06%
80,52435,13227,73621.05%
82,00437,52829,62821.05%
95,94049,64439,19621.05%
149,56848,51638,30821.04%
107,90849,03238,71621.04%
90,08442,93233,90021.04%
39,92821,77217,19221.04%
169,94898,91678,10821.04%
94,70044,04434,78021.03%
131,43266,10852,20421.03%
73,52425,48820,12821.03%
57,15228,91222,83221.03%
41,82823,30818,40821.02%
53,86429,47623,28021.02%
153,12880,68463,72821.02%
66,24031,21624,65621.01%
155,95672,94057,61221.01%
153,86490,09671,16421.01%
34,48421,53217,00821.01%
78,77638,06030,06421.01%
89,58044,09634,83221.01%
44,28822,50817,78021.01%
227,860121,14495,70021.00%
72,86433,42426,40421.00%
46,38826,15220,66021.00%
148,17248,37638,22020.99%
44,36424,29619,19620.99%
55,24826,99221,32820.98%
56,70124,40419,28420.98%
34,82022,48017,76420.98%
31,65621,74017,18020.98%
108,64051,01640,31620.97%
100,01242,80033,82420.97%
106,67654,26442,88820.96%
96,36451,88041,00420.96%
109,07650,21239,68820.96%
203,776114,45290,46420.96%
53,69629,26423,13220.95%
50,86423,90018,89220.95%
100,80844,65235,29620.95%
61,88836,46428,82420.95%
81,45638,24830,23620.95%
136,39659,02446,66020.95%
44,19622,52017,80420.94%
180,41682,82865,48420.94%
119,69259,20446,80820.94%
96,40451,25240,52420.93%
41,21223,35218,46420.93%
99,86850,71240,10020.93%
181,87693,95674,30020.92%
199,680100,34879,36020.92%
122,73252,59641,59620.91%
51,97226,62421,05620.91%
98,42858,26846,08420.91%
79,67238,72430,62820.91%
48,85626,28820,79220.91%
108,92451,14840,45620.90%
100,86443,59234,48020.90%
76,82834,58027,35220.90%
56,92429,03222,96420.90%
96,61638,56430,50420.90%
52,45222,45217,76020.90%
38,78421,78817,23620.89%
44,26822,07617,46420.89%
99,30851,52040,76020.89%
35,59220,67216,35620.88%
35,59220,67216,35620.88%
241,716126,404100,01620.88%
125,78054,66843,26020.87%
106,60449,47639,15220.87%
115,48854,11642,82420.87%
97,27253,37642,24420.86%
60,45230,49624,13620.86%
431,317293,620232,39220.85%
51,16027,55221,80820.85%
100,28851,86441,05220.85%
107,44444,48035,20820.85%
93,66848,54838,43220.84%
42,04424,18819,14820.84%
32,73217,91614,18420.83%
97,69651,45640,74020.83%
97,55251,68440,92820.81%
52,17224,95219,76020.81%
51,90025,78420,42020.80%
63,89630,88024,45620.80%
58,10433,71226,70020.80%
97,21658,12046,03220.80%
97,68040,80832,32420.79%
37,58019,26015,25620.79%
109,83244,16034,98020.79%
46,24827,48021,76820.79%
129,41773,13257,93220.78%
55,87224,59619,48420.78%
70,37639,64831,40820.78%
147,14070,62055,94420.78%
38,67228,74422,77220.78%
55,25630,84824,44020.77%
73,91236,03228,54820.77%
106,44449,38039,12420.77%
98,94042,14033,38820.77%
42,80819,71215,62020.76%
85,44041,60432,96820.76%
37,02820,29216,08020.76%
37,02820,29216,08020.76%
86,80033,08826,22020.76%
169,46457,30045,40820.75%
57,68836,54828,96420.75%
134,50960,35647,83220.75%
55,20426,66421,13220.75%
41,87624,00419,02420.75%
80,61637,90830,04420.74%
35,44420,52016,26420.74%
35,44420,52016,26420.74%
49,75226,26820,82020.74%
70,12833,37626,45620.73%
106,17655,60444,07620.73%
35,83624,52819,44420.73%
93,84447,41637,58820.73%
42,58824,34019,30020.71%
92,77648,01238,07220.70%
55,57226,54821,05220.70%
93,32448,44038,41220.70%
107,46446,27636,69620.70%
107,46446,27636,69620.70%
105,62054,56443,27220.69%
317,79683,96866,59220.69%
57,55228,37622,50420.69%
99,01651,75241,04420.69%
117,02851,58040,90820.69%
97,17650,87640,35220.69%
69,52042,83633,97620.68%
49,35626,92021,35220.68%
50,80827,21221,58420.68%
109,62051,80441,09220.68%
54,63626,98821,40820.68%
38,10820,43216,20820.67%
82,65241,26032,73220.67%
99,83252,08041,31620.67%
54,74828,53622,64020.66%
62,24123,58418,71220.66%
45,31225,48420,22020.66%
59,59631,27624,81620.65%
111,13652,73641,84420.65%
147,91249,09638,95620.65%
109,28042,79633,96420.64%
616,201392,924311,83620.64%
115,09256,09644,52020.64%
50,82027,21621,60020.63%
50,88023,52018,66820.63%
29,48820,14815,99220.63%
36,73618,90815,00820.63%
110,10443,88834,83620.63%
43,21222,18817,61220.62%
76,84041,29632,78020.62%
44,72827,21621,60420.62%
62,12433,17226,33220.62%
39,99220,42816,21620.62%
71,87641,00032,55220.60%
36,90016,42413,04020.60%
93,23247,21637,48820.60%
98,21251,92041,22420.60%
72,65634,00026,99620.60%
63,45629,53623,45220.60%
89,30844,10435,02020.60%
53,36023,15218,38420.59%
37,66418,30414,53620.59%
60,46129,92423,76420.59%
125,78470,96456,35620.59%
57,60835,15627,92020.58%
45,35217,08813,57220.58%
106,04055,11643,77620.57%
66,50833,11226,30020.57%
43,23222,22817,65620.57%
128,78472,02057,21220.56%
177,08459,02846,89220.56%
97,40443,60034,63620.56%
78,04436,79229,22820.56%
78,04436,79229,22820.56%
78,04436,79229,22820.56%
107,72850,24039,91220.56%
39,69621,71617,25220.56%
58,14830,34424,10820.55%
108,93648,00038,13620.55%
108,93648,00038,13620.55%
64,93631,22424,80820.55%
42,06823,98819,06020.54%
61,62036,31628,85620.54%
29,82820,08015,95620.54%
55,45629,22023,22020.53%
43,59622,89218,19220.53%
97,79741,13632,69220.53%
52,02825,33620,13620.52%
50,40423,29218,51620.50%
99,46052,10841,42420.50%
105,76055,08043,78820.50%
37,10416,78413,34420.50%
105,96855,98444,51220.49%
41,79222,72818,07220.49%
42,04424,27619,30420.48%
72,25234,70427,60020.47%
56,14026,99221,46820.47%
45,53225,64420,39620.46%
39,25621,34416,97620.46%
54,56428,91623,00020.46%
79,03639,94831,78020.45%
62,36432,28425,68420.44%
54,89230,21224,03620.44%
164,73285,76068,23620.43%
96,15244,22035,18820.43%
51,10029,20023,23620.42%
44,0447,2085,73620.42%
105,34455,30044,00820.42%
71,36030,97224,64820.42%
42,16424,21619,27220.42%
82,80843,14434,33620.42%
41,28822,14817,62820.41%
50,56431,40024,99220.41%
51,28429,44023,43220.41%
105,81255,59244,24820.41%
59,78030,64424,39220.40%
105,94855,74444,37220.40%
36,96418,60814,81220.40%
98,73251,96441,36420.40%
33,15218,06014,37620.40%
46,29223,29618,54420.40%
72,49633,02426,28820.40%
48,25623,65218,82820.40%
108,42842,76834,04820.39%
54,10025,80820,54820.38%
30,39620,58816,39220.38%
58,87230,28824,11620.38%
59,23631,50825,08820.38%
41,86823,95219,07220.37%
76,69240,99632,64420.37%
136,81658,98446,96820.37%
45,89625,27220,12420.37%
78,03636,78029,28820.37%
70,24039,59231,52820.37%
72,48041,69233,20420.36%
98,70851,10840,70420.36%
183,932109,12086,91620.35%
71,46032,30025,72820.35%
92,30048,38438,54020.35%
49,77226,72021,28420.34%
92,91248,36838,52820.34%
108,91246,77237,26020.34%
84,05251,49641,02420.34%
87,23246,18836,79620.33%
62,78430,51224,30820.33%
150,12466,06852,63620.33%
90,32845,82436,50820.33%
47,88824,62019,61620.32%
30,17614,94011,90420.32%
170,11288,56070,56420.32%
42,29624,48019,50820.31%
92,73248,36038,54020.31%
34,22818,73614,93220.30%
37,85224,70419,69220.29%
40,57623,05218,37620.28%
46,75222,28417,76420.28%
53,74825,68020,47220.28%
105,85255,74044,43620.28%
71,80033,86827,00020.28%
51,94029,37623,42020.28%
85,51244,75235,68020.27%
98,36051,57241,12020.27%
29,71219,86015,83620.26%
90,43641,69633,24820.26%
197,012110,00887,73620.25%
78,94838,46430,68020.24%
70,96041,04032,73620.23%
61,43630,67624,47220.22%
130,12864,44851,41620.22%
39,69221,30817,00020.22%
105,64044,43235,45220.21%
105,64044,43235,45220.21%
43,34823,95219,11220.21%
38,42420,90416,68020.21%
50,52427,57622,00420.21%
64,36831,54425,17220.20%
37,53619,62415,66020.20%
42,76822,08817,62820.19%
36,36820,92016,69620.19%
36,36820,92016,69620.19%
41,44819,74015,75620.18%
92,17654,24843,30020.18%
35,15219,50415,56820.18%
79,55639,04831,16820.18%
46,86027,85222,23220.18%
41,82023,85219,04020.17%
52,84029,98023,93220.17%
41,86023,79618,99620.17%
63,20937,04429,57620.16%
65,34429,87223,85220.15%
59,60429,85623,84020.15%
51,59228,42822,70420.14%
172,92481,16064,82420.13%
198,012111,35288,94020.13%
72,66441,58833,22020.12%
42,54823,52418,79620.10%
38,81221,09616,85620.10%
84,89645,20436,12020.10%
97,41641,40433,08420.09%
41,69223,82819,04020.09%
99,85644,24035,35220.09%
73,00035,44028,32020.09%
43,27222,50417,98420.09%
92,24048,10838,44820.08%
37,18825,16020,10820.08%
62,69630,89224,69220.07%
37,48822,20417,74820.07%
81,70433,18826,52820.07%
86,31646,41237,10020.06%
74,44844,48435,56020.06%
75,07241,14432,89220.06%
80,26042,58034,04020.06%
76,54835,70428,54420.05%
82,32843,50434,78020.05%
69,48132,48025,96820.05%
106,16446,43237,12420.05%
57,17231,05624,83220.04%
108,63051,34841,06020.04%
86,64046,88437,49620.02%
100,42161,31249,03620.02%
73,44421,60017,27620.02%
37,44025,64020,50820.02%
92,80048,12838,49620.01%
36,02819,33215,46420.01%
36,02819,33215,46420.01%
171,37688,73670,98820.00%
46,30427,66022,12820.00%
47,08017,86414,29220.00%
67,24438,00430,41219.98%
54,86924,35219,48819.97%
42,68828,15222,53219.96%
65,14829,66023,74019.96%
52,79625,69220,56419.96%
69,73231,50425,21619.96%
77,06037,98030,40019.96%
81,36442,80034,26019.95%
106,95647,57238,08019.95%
40,78420,21216,18019.95%
54,86826,35221,09619.95%
42,24024,01219,22419.94%
57,32431,96425,59219.93%
105,20845,13636,14419.92%
46,00424,33619,48819.92%
47,50828,13622,53219.92%
75,90836,76829,44819.91%
504,013319,064255,54419.91%
174,56489,03671,32019.90%
773,017452,588362,53619.90%
78,87334,79227,87219.89%
35,17218,26414,63219.89%
40,46023,23618,61619.88%
84,49642,96034,42019.88%
146,42848,19238,61219.88%
66,22036,07628,90819.87%
55,20827,52422,05619.87%
48,62026,92021,57219.87%
110,08063,77251,10419.86%
86,81647,26837,88019.86%
78,49243,99235,25619.86%
62,80033,99227,24419.85%
47,39225,24820,23619.85%
81,08043,59234,94019.85%
35,54818,68414,97619.85%
39,38021,26817,04819.84%
47,27229,88023,95219.84%
110,61253,83643,15619.84%
71,25633,73627,04419.84%
74,10437,12429,76019.84%
203,784118,61295,08419.84%
138,60472,04057,75619.83%
106,80447,41638,01619.82%
30,17220,99216,83219.82%
95,56551,71241,46819.81%
36,89618,92815,18019.80%
79,73243,49634,88419.80%
80,57642,56034,13619.79%
98,96843,90435,21619.79%
47,75224,21619,42419.79%
80,40437,53630,11219.78%
97,44844,59635,77619.78%
53,95223,58818,92419.77%
52,64819,08015,30819.77%
50,76018,21614,61619.76%
38,74022,37217,95219.76%
38,81620,32816,31219.76%
90,47242,93634,45619.75%
73,54840,28832,33219.75%
64,90032,57226,14419.73%
22,50812,3049,87619.73%
37,68421,58817,32819.73%
85,82046,99237,72019.73%
146,18848,07238,58819.73%
68,60834,93228,04419.72%
56,78422,94418,42019.72%
37,58825,48020,45619.72%
85,85247,08837,80419.72%
80,58043,70035,08419.72%
33,43218,68815,00419.71%
49,60825,89220,78819.71%
38,57220,31216,30819.71%
117,07275,06460,26819.71%
71,59641,52033,33619.71%
51,44825,89620,79219.71%
61,52432,61626,18819.71%
76,70039,76831,93219.70%
39,80822,35217,94819.70%
53,14828,23622,67619.69%
52,09629,78023,91619.69%
50,95226,91621,61619.69%
66,71231,54825,33619.69%
71,67240,98032,91219.69%
33,77219,14415,37619.68%
117,39658,00446,58819.68%
85,52046,83237,61619.68%
76,52040,86032,82019.68%
61,50833,36026,79619.68%
50,38018,20014,62019.67%
61,98424,26019,48819.67%
72,91232,58426,17619.67%
36,99618,96415,23619.66%
90,74444,80836,00019.66%
102,00648,52838,99219.65%
72,52441,60433,43219.64%
34,86820,10816,16019.63%
190,044100,20880,53619.63%
105,68445,24836,36819.63%
75,82433,59227,00019.62%
75,82433,59227,00019.62%
38,31620,38416,38419.62%
55,62029,88824,02419.62%
81,38441,50033,36419.60%
86,49247,32838,05219.60%
58,49630,90424,84819.60%
85,93647,19637,95219.59%
45,12422,69618,25219.58%
45,12422,69618,25219.58%
49,74027,19221,86819.58%
85,71246,46437,36819.58%
50,00427,87222,41619.58%
34,18819,72015,86019.57%
62,37230,44024,48419.57%
49,22027,27621,94019.56%
30,84021,30817,14019.56%
156,27666,66053,62419.56%
79,88843,32434,85219.55%
79,49243,26434,80819.55%
127,37672,44058,28819.54%
61,94838,68031,12419.53%
58,86433,34426,83219.53%
36,88419,04815,32819.53%
36,75225,24020,31219.52%
62,72436,55229,41619.52%
33,63218,87615,19219.52%
45,62414,65611,79619.51%
82,90838,58031,05219.51%
74,47641,64033,51619.51%
55,29628,50822,94819.50%
36,50021,06416,95619.50%
96,17642,36034,10019.50%
68,21631,57225,41619.50%
33,98018,81215,14419.50%
78,61243,63635,12819.50%
42,68823,53218,94419.50%
30,38420,98016,89219.49%
80,34843,19234,77619.49%
87,90436,46829,36419.48%
66,49234,17227,51619.48%
62,08438,72031,18019.47%
40,00025,49620,53219.47%
57,28027,38822,05619.47%
144,30076,97261,99219.46%
69,33239,48831,80419.46%
84,86850,81640,92819.46%
152,42467,19254,12019.45%
45,36822,08417,78819.45%
33,98024,26819,54819.45%
255,092142,336114,66019.44%
33,36019,47215,68819.43%
44,56814,32811,54419.43%
75,81640,33232,49619.43%
216,552123,05299,15219.42%
43,17623,87219,23619.42%
44,29623,93619,28819.42%
47,83617,86014,39219.42%
46,07618,21214,67619.42%
100,39361,39649,47619.41%
70,33227,38822,07219.41%
76,18840,76432,85219.41%
51,07618,38414,81619.41%
46,42423,37218,83619.41%
46,25623,21618,71219.40%
88,22837,07629,88419.40%
63,68537,55230,26819.40%
125,62175,80061,10019.39%
46,74025,10420,23619.39%
159,91654,75244,14419.37%
46,93223,84819,22819.37%
54,10423,89219,26419.37%
50,18425,83620,83219.37%
326,388176,528142,34019.37%
80,26843,66435,20819.37%
38,00020,03616,15619.37%
57,40831,35625,28419.36%
41,12422,42018,08019.36%
37,96821,16817,07219.35%
88,60437,30030,08419.35%
58,76833,24826,81619.35%
51,52027,34022,05619.33%
80,65640,22432,45219.32%
48,30826,31621,23219.32%
79,92443,15234,81619.32%
45,25222,48818,14419.32%
32,85610,1888,22019.32%
244,584137,272110,75619.32%
101,28046,55637,56419.31%
55,40824,95620,13619.31%
77,27233,55227,07219.31%
56,91230,42824,55219.31%
58,71735,38428,55219.31%
51,73627,86422,48419.31%
47,04023,70419,12819.30%
47,74023,78819,19619.30%
117,07257,09246,07219.30%
47,23618,74015,12419.30%
75,86840,72032,86419.29%
53,55626,89221,70419.29%
89,83245,04036,35219.29%
46,22029,62023,90819.28%
75,69240,78432,92019.28%
73,07636,20029,22019.28%
39,43623,04818,60419.28%
51,24027,46822,17219.28%
110,42651,66041,70019.28%
191,032103,37683,44819.28%
57,62830,86824,92019.27%
36,82025,26420,39619.27%
21,27611,4209,22019.26%
150,36085,78469,26819.25%
34,00022,57218,22819.25%
63,84430,26824,44419.24%
34,24422,64018,28419.24%
53,04429,75224,02819.24%
66,00432,64826,36819.24%
34,33217,94814,49619.23%
139,58869,68456,28419.23%
39,32425,04820,23219.23%
34,44422,53218,20019.23%
194,992117,23294,70019.22%
77,51246,54037,59619.22%
50,22425,00020,19619.22%
69,43643,49235,14019.20%
38,35622,08017,84019.20%
81,24446,71237,74419.20%
33,59618,73215,13619.20%
76,06439,59231,99219.20%
75,34840,62432,82819.19%
68,57240,37632,62819.19%
102,44648,86439,48819.19%
36,23220,28816,39619.18%
73,28044,16835,70019.17%
50,14025,08020,27219.17%
44,14821,81217,63219.16%
44,14821,81217,63219.16%
49,26824,96820,18419.16%
32,31217,95614,51619.16%
65,82034,64028,00419.16%
69,30043,45235,12819.16%
122,54474,19659,98419.15%
79,35243,41635,10019.15%
34,85620,23616,36019.15%
109,47458,64447,41219.15%
58,29232,74826,47619.15%
142,66879,42464,22819.13%
142,66879,42464,22819.13%
103,30849,44839,99619.12%
31,92016,24413,14019.11%
148,00479,25664,11219.11%
65,16431,16025,20819.10%
216,968123,34499,78819.10%
62,52422,89618,52419.10%
36,81220,60416,67219.08%
62,46431,48425,47619.08%
34,73220,22816,36819.08%
40,91222,97618,59219.08%
57,90032,00425,90019.07%
56,30430,60024,76419.07%
65,64039,00431,57219.05%
37,17220,80416,84019.05%
82,82441,90033,92019.05%
75,39640,83633,06019.04%
47,11726,30421,29619.04%
156,14053,68843,46819.04%
85,56045,03236,46019.04%
40,04423,36818,92019.03%
89,08837,11230,04819.03%
72,95643,59635,30019.03%
53,56428,37222,97619.02%
61,48431,74025,70419.02%
66,53239,94432,34819.02%
132,86469,06055,92819.02%
46,01614,91612,08019.01%
41,05221,71217,58419.01%
210,916119,92497,12419.01%
594,560368,932298,82019.00%
67,43234,88028,25219.00%
81,34446,94838,02819.00%
75,72440,62032,90419.00%
58,43231,59225,59218.99%
33,74817,31614,02818.99%
77,96048,38439,20018.98%
90,08445,08036,52418.98%
77,93635,70828,93218.98%
77,93635,70828,93218.98%
52,20031,86025,81618.97%
82,80041,87233,93218.96%
82,80041,87233,93218.96%
83,26940,93633,17618.96%
119,82453,07643,01618.95%
118,78854,22043,94818.95%
34,92022,28018,06018.94%
47,15728,22022,87618.94%
69,66834,28827,79618.93%
52,52828,44023,05618.93%
130,95272,79259,01218.93%
81,48046,98438,09218.93%
47,52824,82420,12818.92%
56,58430,80824,98018.92%
36,92019,42015,74818.91%
31,92418,64815,12418.90%
34,44819,08015,47618.89%
128,63284,34868,41618.89%
37,90421,54017,47218.89%
89,62839,83232,31218.88%
29,14815,76412,78818.88%
72,13236,23229,39218.88%
50,86019,36815,71218.88%
44,48024,01219,48018.87%
48,64024,20419,63618.87%
37,20420,88016,94018.87%
56,38030,61224,84018.86%
46,04414,92012,10818.85%
67,38433,57627,24818.85%
89,49442,50834,50018.84%
95,94441,03633,31218.82%
38,88421,40817,38018.82%
61,97230,04024,38818.81%
76,48438,02430,87218.81%
51,72431,43625,52418.81%
47,22419,10415,51218.80%
90,65250,00440,60418.80%
48,58817,94014,56818.80%
49,15228,12822,84418.79%
37,04820,40416,57218.78%
44,75229,07623,61618.78%
34,48019,51215,84818.78%
148,89788,66472,01618.78%
58,36429,10823,64418.77%
189,916107,93287,67618.77%
49,52823,42819,03218.76%
36,82020,66016,78418.76%
41,89626,76021,74418.74%
295,952155,152126,07218.74%
47,90419,34015,71618.74%
71,51231,21625,36818.73%
71,51231,21625,36818.73%
64,85636,89629,98418.73%
35,19218,86415,33218.72%
37,57620,53216,68818.72%
43,60420,90016,98818.72%
31,61617,10013,90018.71%
31,61617,10013,90018.71%
31,61617,10013,90018.71%
110,66166,01253,66018.71%
75,19233,24827,03218.70%
75,19233,24827,03218.70%
235,388127,124103,36818.69%
35,21219,43615,80418.69%
54,05225,28420,56018.68%
60,80033,31627,09218.68%
249,324140,432114,20418.68%
65,25634,74428,25618.67%
33,44818,88015,35618.67%
48,42419,50815,86818.66%
36,44419,83216,13218.66%
116,38465,28053,10418.65%
55,23230,42824,75618.64%
36,56820,46416,65218.63%
48,36424,50819,94418.62%
48,14022,47618,29218.62%
39,38920,63216,79218.61%
59,10032,90426,78018.61%
153,34452,59642,80818.61%
36,58419,96816,25218.61%
54,85630,39224,74018.60%
71,01241,26833,59618.59%
35,58419,07215,52818.58%
47,47632,78826,69618.58%
40,17220,86816,99218.57%
36,71220,49616,69218.56%
294,652155,220126,41218.56%
32,16817,74014,44818.56%
32,16817,74014,44818.56%
43,07624,46819,92818.55%
57,23231,43625,60418.55%
93,60444,61236,33618.55%
35,36822,83618,60018.55%
202,368121,04098,58818.55%
111,16565,94453,72018.54%
37,13220,63216,80818.53%
54,22423,54819,18418.53%
41,75623,12018,83618.53%
49,98025,90821,10818.53%
42,73622,74818,53618.52%
60,17236,69229,90018.51%
278,376148,164120,74018.51%
37,87222,01217,94018.50%
49,03225,36420,67218.50%
44,60822,03217,96018.48%
36,27621,32417,38418.48%
53,06828,40423,15618.48%
300,316158,412129,14818.47%
64,32835,82829,21218.47%
37,00420,45216,67618.46%
37,70020,50016,71618.46%
37,70020,50016,71618.46%
50,05227,24022,21218.46%
34,70820,44016,66818.45%
48,17619,45215,86418.45%
62,86032,93626,86418.44%
61,24834,76828,36018.43%
80,67039,40032,14018.43%
138,35673,89660,28018.43%
61,83227,07622,08818.42%
45,94830,28424,70818.41%
277,640147,660120,47618.41%
29,74817,66814,41618.41%
39,83223,58819,24818.40%
35,58418,50415,10018.40%
74,02842,68434,83618.39%
66,18429,33223,94018.38%
273,664144,344117,81218.38%
47,51623,22018,95218.38%
79,88237,95230,98018.37%
68,68835,97229,36418.37%
48,23219,47615,90018.36%
36,86421,56817,60818.36%
32,43218,43215,04818.36%
53,68827,49622,44818.36%
36,70820,37216,63218.36%
294,876155,400126,87218.36%
34,46020,24416,52818.36%
86,50048,26439,40818.35%
51,00026,66421,77218.35%
49,67232,11626,22418.35%
80,54439,01231,85618.34%
42,90824,27219,82018.34%
100,82460,48049,38818.34%
37,44820,40016,66018.33%
65,66027,47622,44018.33%
46,02822,26418,18418.33%
66,65231,79225,96818.32%
115,23660,35649,30018.32%
33,94019,26015,73218.32%
149,74879,88065,24818.32%
51,59626,92821,99618.32%
65,92031,38425,63618.32%
47,79625,77221,05218.31%
273,220144,316117,88818.31%
35,06020,66416,88018.31%
88,67236,58829,88818.31%
47,98032,31626,40018.31%
47,05615,44812,62018.31%
59,84431,38025,63618.30%
58,13221,08817,22818.30%
37,58420,50016,74818.30%
278,432147,292120,33618.30%
48,32819,56415,98418.30%
274,740144,640118,17618.30%
68,70038,02031,06418.30%
65,99628,93623,64418.29%
37,10021,56817,62418.29%
18,5289,5167,77618.28%
54,43231,82026,00418.28%
35,57219,41215,86418.28%
299,564158,496129,53218.27%
59,39629,83624,38418.27%
49,51633,09627,05218.26%
184,836106,98087,44418.26%
85,74446,72438,19218.26%
200,905124,424101,70418.26%
42,38420,61616,85218.26%
38,50820,77216,98018.26%
33,53619,20415,70018.25%
299,832159,360130,28818.24%
69,06434,07627,86018.24%
37,93620,94417,12418.24%
71,69234,41228,13618.24%
71,69234,41228,13618.24%
301,264159,888130,73618.23%
47,25225,67620,99618.23%
38,99221,50817,58818.23%
279,072148,348121,31218.22%
66,74844,66836,52818.22%
272,844144,584118,23618.22%
52,66427,35622,37218.22%
55,49631,18025,50018.22%
55,20038,75631,69618.22%
46,68023,54019,25218.22%
82,04050,57641,36818.21%
50,19626,52021,69218.21%
38,39222,06418,05218.18%
50,42820,67216,91618.17%
45,82029,92424,48818.17%
43,23220,84017,05618.16%
294,220156,084127,74418.16%
71,80436,63629,98818.15%
152,90880,21265,66018.14%
37,40020,62816,88818.13%
61,87632,90426,94018.13%
37,65221,34417,47618.12%
50,47620,70416,95218.12%
120,66056,69246,42018.12%
41,14826,01221,30018.11%
59,24031,20425,55218.11%
63,01634,55228,29618.11%
43,73623,17618,98018.10%
36,13220,05216,42418.09%
55,37629,76024,37618.09%
63,53635,62429,18018.09%
39,22822,55618,47618.09%
37,51621,07617,26418.09%
299,796158,240129,62018.09%
37,86021,85217,90018.09%
132,25654,06444,28818.08%
64,07234,66828,40018.08%
38,08820,99617,20018.08%
53,36432,62026,72418.07%
284,068152,576125,00018.07%
36,24019,96416,35618.07%
48,98826,04021,33618.06%
54,42037,38030,62818.06%
42,34021,66017,74818.06%
67,38834,07227,92018.06%
33,80418,92415,50818.05%
73,90839,79232,61218.04%
48,04426,53621,74818.04%
73,17234,54028,30818.04%
75,98436,01629,52018.04%
39,69222,89218,76418.03%
66,34444,39236,38818.03%
36,84819,63616,09618.03%
59,55326,42821,66418.03%
52,72421,72417,80818.03%
35,53619,32815,84418.03%
44,08427,47622,52818.01%
52,60429,21623,95618.00%
72,37235,66029,24018.00%
59,02828,37623,26818.00%
120,12866,46454,50018.00%
33,48418,86815,47218.00%
33,48418,86815,47218.00%
37,14420,36016,69618.00%
273,280144,412118,42418.00%
53,02421,94017,99217.99%
62,24433,54827,51217.99%
56,98518,63215,28017.99%
299,780158,600130,07217.99%
221,43269,96857,38417.99%
64,45235,18828,86417.97%
36,88021,42817,58017.96%
53,29230,23224,80417.95%
50,82827,82822,83217.95%
64,88434,33628,17217.95%
47,08815,44412,67217.95%
54,35629,69224,36417.94%
51,65627,13622,26817.94%
60,66030,18424,77217.93%
157,06098,57280,90417.92%
38,70821,13617,34817.92%
283,488152,096124,84017.92%
32,13218,93615,54417.91%
72,98438,39231,51617.91%
64,29636,18429,70417.91%
81,80847,40838,92017.90%
34,64020,15216,54417.90%
35,10819,28415,83217.90%
60,78428,82823,66817.90%
35,29219,44415,96417.90%
53,95626,84022,04017.88%
39,80024,13619,82017.88%
67,39635,36829,04417.88%
41,60021,65617,78417.88%
55,52031,12425,56017.88%
53,44817,02813,98417.88%
46,22030,88425,36417.87%
277,136147,216120,90817.87%
68,15235,34429,02817.87%
283,736152,644125,38017.86%
64,84035,32829,02017.86%
63,45233,85227,80817.85%
33,18419,23215,80017.85%
36,62419,70416,18817.84%
277,036147,176120,91617.84%
42,34823,56419,36017.84%
38,37619,51216,03217.84%
283,260153,280125,94417.83%
38,54420,68016,99217.83%
262,296141,556116,31217.83%
262,176141,836116,56017.82%
69,37239,93232,81617.82%
47,45715,37612,63617.82%
48,31632,12426,40017.82%
71,70833,29227,36017.82%
41,95623,36019,20017.81%
52,03227,31622,45217.81%
51,97221,39217,58417.80%
76,31640,93233,64817.80%
283,428153,020125,79217.79%
45,74028,93223,78417.79%
141,64475,80462,31617.79%
35,54419,42415,96817.79%
67,89239,23232,25217.79%
83,05243,04435,38817.79%
37,28820,12816,54817.79%
35,31219,48416,02017.78%
69,62432,06826,36817.77%
54,62430,72825,26817.77%
66,32031,18425,64817.75%
66,32031,18425,64817.75%
66,32031,18425,64817.75%
38,41622,11218,18817.75%
44,61628,16823,17217.74%
41,91623,41619,26417.73%
35,24019,42815,98417.73%
53,42425,81621,24017.73%
262,412142,032116,86417.72%
263,904141,924116,78017.72%
59,42430,01224,69617.71%
41,86823,39619,25217.71%
69,63232,07626,40017.70%
69,63232,07626,40017.70%
69,63232,07626,40017.70%
69,58832,14426,45617.70%
55,68031,38425,83217.69%
43,38023,89219,66817.68%
68,64032,85227,04817.67%
95,47845,24837,25617.66%
109,37648,87240,24017.66%
64,34022,24818,32017.66%
35,74019,50816,06417.65%
61,99634,27628,22817.64%
32,93218,68415,38817.64%
36,98820,22816,66017.64%
37,23220,07216,53217.64%
37,91621,35217,58817.63%
261,920142,184117,12417.63%
78,82842,12434,70417.61%
42,96426,70822,00417.61%
37,63621,16817,44017.61%
37,92019,70416,23617.60%
294,872155,524128,16817.59%
72,45639,50432,55617.59%
123,61670,35657,98817.58%
64,56832,96027,16817.57%
59,11226,50821,85217.56%
58,10432,42026,72817.56%
33,26419,28415,90017.55%
80,06449,68840,97217.54%
41,31627,09222,34017.54%
282,744152,168125,48417.54%
48,63226,03621,47217.53%
65,43231,53626,00817.53%
62,46834,26428,26017.52%
56,88432,35226,68417.52%
39,91623,13219,08017.52%
64,94033,36827,52417.51%
51,12427,09222,35217.50%
54,73231,16825,71617.49%
59,60033,93628,00017.49%
64,15237,28830,76817.49%
59,77234,15628,18817.47%
66,56035,41629,22817.47%
39,71221,52017,76017.47%
43,76917,40414,36417.47%
61,12034,36428,36417.46%
48,74425,38420,95217.46%
37,42421,12817,44017.46%
51,90021,38817,65617.45%
53,25221,86018,04817.44%
59,62431,22825,78417.43%
64,43634,77228,71217.43%
47,02422,98818,98417.42%
55,01628,27223,34817.42%
50,03226,69222,04417.41%
41,53623,02019,01217.41%
62,44436,90030,47617.41%
272,592144,260119,15617.40%
55,01626,94022,26017.37%
69,39632,74827,06017.37%
69,39632,74827,06017.37%
69,39632,74827,06017.37%
59,00031,41625,96017.37%
59,79632,73227,04817.37%
80,82840,20433,23617.33%
63,68034,71228,69617.33%
60,38033,94828,06817.32%
36,74025,20420,84017.31%
49,53631,43225,99217.31%
57,74032,08826,53617.30%
43,06023,54819,47617.29%
438,445271,392224,46817.29%
69,38832,73627,08017.28%
100,52052,23643,21217.28%
87,05242,70035,32417.27%
63,53633,60827,80417.27%
130,56454,00444,68017.27%
99,21653,14043,96817.26%
39,70021,57617,85217.26%
118,33670,70458,50817.25%
58,18434,94828,92017.25%
35,87619,87616,44817.25%
72,85639,39232,60017.24%
103,74160,08849,72817.24%
76,54844,94037,19217.24%
86,42443,44035,95217.24%
75,25647,43639,26017.24%
43,01226,32021,78417.23%
93,15647,14839,02417.23%
261,424141,336116,98817.23%
64,39635,32029,23617.23%
67,09634,27628,37217.22%
16,68112,86810,65217.22%
40,74022,06818,26817.22%
125,13675,29262,32817.22%
59,13635,08029,04017.22%
142,57276,10063,00417.21%
68,96841,32834,21617.21%
57,89231,14825,78817.21%
58,89631,10825,75617.20%
47,68826,15621,65617.20%
145,43676,42463,27617.20%
41,14022,46018,59617.20%
58,41231,16825,80817.20%
57,63632,11226,59217.19%
54,79231,11625,76817.19%
37,94420,21216,74017.18%
92,40846,86438,81617.17%
44,52824,55620,34017.17%
39,93222,56018,68817.16%
41,76423,17219,19617.16%
39,06822,24018,42417.16%
75,87638,98032,29217.16%
40,84022,34018,50817.15%
156,07795,15678,84417.14%
59,37631,17225,83217.13%
62,82035,35629,30017.13%
64,43630,05624,90817.13%
44,14824,97220,69617.12%
40,09621,66017,95217.12%
136,18877,68464,39217.11%
57,25230,34825,16017.10%
58,20432,06426,58417.09%
60,05232,59227,02417.08%
49,60827,86423,10417.08%
74,45238,38831,83217.08%
74,45238,38831,83217.08%
66,31231,17225,85217.07%
54,35624,70820,49217.06%
47,55224,42820,26017.06%
75,84440,98433,99217.06%
42,09223,56819,54817.06%
90,65246,74038,77217.05%
54,30428,47223,62017.04%
58,72830,05224,93617.02%
65,37234,74828,83617.01%
63,91235,92829,81617.01%
111,42865,44854,31617.01%
49,89226,52822,02016.99%
46,18824,15220,05216.98%
54,36424,62420,44416.98%
63,24034,95629,02416.97%
74,47638,41631,90416.95%
61,62432,99227,40016.95%
50,01628,23223,44816.95%
44,16425,21220,94416.93%
44,84026,27621,83216.91%
126,32875,38062,65216.89%
42,66023,66819,67216.88%
43,33223,36419,42016.88%
57,28431,19225,92816.88%
57,28431,19225,92816.88%
42,01223,13619,23216.87%
66,16039,62032,93616.87%
49,01627,62822,96816.87%
38,66821,84818,16416.86%
100,70049,44441,10816.86%
43,21224,20420,12416.86%
56,29230,32025,21216.85%
33,76019,66416,35216.84%
45,05225,28821,03216.83%
73,00840,49633,68416.82%
65,85631,56026,25216.82%
42,25623,10019,21616.81%
97,60858,93249,02416.81%
39,95221,46417,85616.81%
80,71645,91238,19616.81%
72,34040,53633,72416.80%
79,56045,78038,08816.80%
45,43223,57219,61216.80%
82,98848,80040,60416.80%
191,09691,94076,50016.79%
44,53223,87219,86416.79%
47,13227,14022,58416.79%
57,97632,00826,63616.78%
32,46021,85618,18816.78%
47,90026,98422,45616.78%
49,96024,59620,47216.77%
37,40025,24821,01616.76%
46,37623,32019,41616.74%
47,47627,38422,80016.74%
73,49642,28435,21616.72%
55,49630,89625,73216.71%
41,12022,44018,69216.70%
78,71246,72038,92016.70%
43,32424,04020,02816.69%
40,77622,08018,39616.68%
45,36425,47621,22816.67%
72,74839,65233,04416.66%
24,42814,69212,24416.66%
43,51624,22820,19216.66%
44,43624,90420,75616.66%
46,62024,88420,74016.65%
62,11634,59628,83616.65%
76,40839,20032,67616.64%
62,12034,18428,50816.60%
43,63228,12423,45616.60%
41,94823,24019,38416.59%
62,23628,72823,96416.58%
61,29629,62824,72016.57%
145,83284,48070,48816.56%
45,28825,43621,22416.56%
42,87623,87219,92016.55%
50,82426,09621,77616.55%
42,94827,84423,23616.55%
59,85237,88831,62016.54%
47,00826,63222,22816.54%
115,24868,60057,26016.53%
78,22843,28436,13616.51%
41,66423,06019,25216.51%
64,49634,20828,56416.50%
64,86034,14028,50816.50%
45,23223,97220,02016.49%
43,90825,34821,17216.47%
46,75227,08422,62416.47%
36,16924,26820,27216.47%
46,74825,24021,08416.47%
61,72028,91224,15216.46%
55,96026,82422,41216.45%
62,71628,77624,04416.44%
63,06433,03627,60416.44%
44,42424,98820,88016.44%
40,59223,11619,31616.44%
41,90422,60818,89216.44%
46,46421,30017,80016.43%
49,11227,45222,94416.42%
38,40023,89619,97216.42%
45,17624,07620,12416.41%
68,04831,82826,60416.41%
58,89230,85625,79216.41%
98,04853,60044,80416.41%
50,94025,20421,06816.41%
56,02431,91226,67616.41%
44,87625,57621,38016.41%
41,98025,27621,13216.39%
158,18494,52479,02816.39%
66,76839,44032,97616.39%
44,36828,24823,62016.38%
44,87221,85618,27616.38%
40,17622,03218,42416.38%
55,00829,63224,78016.37%
42,26825,58021,39216.37%
43,31623,78019,88816.37%
84,11656,18846,99616.36%
45,36025,90421,66816.35%
47,20827,57623,06816.35%
49,78428,09623,50416.34%
44,34023,10419,32816.34%
41,26024,77620,72816.34%
40,84822,06018,45616.34%
51,83230,43625,46416.34%
46,79224,70820,67216.33%
40,50423,03619,28016.30%
83,24451,84443,39216.30%
42,52424,00020,08816.30%
43,36823,07219,31216.30%
63,80029,36024,57616.29%
57,26831,72426,55616.29%
71,04440,08833,56016.28%
56,82030,66425,67216.28%
44,42424,16420,23216.27%
44,64824,46020,48016.27%
50,53227,07222,66816.27%
83,92856,06846,94816.27%
103,94858,03648,60016.26%
47,96027,72423,22016.25%
39,18821,96418,39616.24%
61,50033,64028,18016.23%
46,99627,25622,83616.22%
46,33626,38022,10416.21%
41,72025,04820,98816.21%
50,15631,07226,04016.19%
58,84832,01226,83216.18%
47,16425,19221,11616.18%
41,52422,70419,03216.17%
38,88822,90419,20016.17%
67,50442,76435,85216.16%
52,73629,73624,93216.16%
45,66426,65222,34816.15%
60,75233,44028,04016.15%
43,53624,03220,15616.13%
52,68829,77224,97216.12%
46,16424,51620,56416.12%
47,14024,99220,96416.12%
39,78021,64818,16016.11%
75,80442,45235,61216.11%
40,40422,07218,52016.09%
38,93622,42418,81616.09%
49,51627,57223,14016.07%
79,18451,54043,25616.07%
57,99231,85226,73616.06%
42,45223,59219,80416.06%
45,89626,04021,86016.05%
51,18828,82024,20016.03%
39,48422,48418,88016.03%
46,99224,85220,87216.01%
39,80821,88018,37616.01%
54,35224,81220,84016.01%
54,61227,03622,70816.01%
45,78426,56822,31616.00%
23,90814,34812,05216.00%
66,12837,45231,46016.00%
24,20414,62812,28816.00%
44,01224,46820,55615.99%
80,32044,10437,06015.97%
87,00047,73640,11215.97%
50,24025,98021,83215.97%
48,38425,10421,09615.97%
50,30026,43222,21215.97%
41,92422,90419,24815.96%
41,93222,85619,21215.94%
47,95627,17622,84415.94%
44,01624,57220,65615.94%
54,56831,61226,57615.93%
61,26434,59229,08415.92%
23,86014,30412,02815.91%
45,72825,80421,70015.90%
47,92828,51223,98415.88%
67,29641,17634,64015.87%
30,42418,78415,80415.86%
69,27643,12436,28415.86%
40,92423,46019,74015.86%
55,10025,48021,44015.86%
47,48827,83223,42415.84%
45,60025,91621,81215.84%
71,50839,44833,21615.80%
50,34027,57223,22015.78%
46,24426,30822,15615.78%
47,30827,59223,24015.77%
45,51225,50421,48415.76%
40,34027,11622,84415.75%
52,88429,04024,46815.74%
49,29627,92423,53215.73%
43,45225,56021,54415.71%
41,08822,34018,83215.70%
69,43637,88831,94815.68%
49,18827,62423,29615.67%
47,99625,61621,60415.66%
41,44022,96019,36415.66%
41,48023,03219,42815.65%
66,50439,18833,05615.65%
44,54826,15222,06015.65%
40,55623,32019,67215.64%
44,68425,85621,82815.58%
96,48855,40046,77615.57%
58,92031,47226,58015.54%
45,84826,50822,38815.54%
41,90023,94820,23215.52%
43,85625,30821,38815.49%
75,13647,80840,40415.49%
41,95624,66820,84815.49%
46,14826,89622,73215.48%
51,31228,80824,35215.47%
29,93218,49215,63215.47%
45,34824,47620,69215.46%
46,56827,16822,96815.46%
47,05627,31623,09615.45%
60,58034,20828,92815.43%
64,86435,55630,07215.42%
49,97626,74422,62015.42%
61,43229,16024,66415.42%
51,05228,78424,34815.41%
48,75227,12822,94815.41%
52,28828,24823,89615.41%
130,65671,09260,14015.41%
51,51229,40024,87615.39%
52,04829,87625,28015.38%
44,04825,29221,40815.36%
43,64424,39220,65215.33%
39,86822,72419,24015.33%
46,00426,45622,40015.33%
49,95227,56023,33615.33%
56,13737,44031,70415.32%
55,07630,64025,94815.31%
52,11629,45224,94415.31%
45,21224,65220,88015.30%
49,98428,74424,34815.29%
43,06023,72020,10015.26%
24,18014,45212,24815.25%
49,85628,46424,12415.25%
46,31627,06422,94015.24%
46,80027,40423,23215.22%
44,66424,12020,44815.22%
65,50030,22425,62415.22%
51,93628,02823,76415.21%
47,55626,27622,28015.21%
42,75622,07218,71615.20%
44,98425,21621,38415.20%
44,92824,55620,82815.18%
92,59658,79249,86815.18%
46,14425,84421,93615.12%
24,56814,82012,58815.06%
56,86832,00027,18415.05%
42,00423,77220,19615.04%
46,37625,31621,50815.04%
45,82025,81221,95214.95%
48,24825,87222,00414.95%
42,12427,37223,28414.93%
27,28816,74414,24414.93%
46,76827,82823,67614.92%
50,55628,70824,42814.91%
54,79231,62826,92014.89%
45,46425,94422,08414.88%
44,56426,31622,40814.85%
49,80027,85223,71614.85%
60,62835,61630,33614.82%
55,78032,95628,07214.82%
49,40427,76823,65614.81%
46,36826,74422,78814.79%
47,46027,68423,59214.78%
73,69247,42840,42014.78%
46,42426,45622,54814.77%
41,55223,70420,20414.77%
58,53233,59228,63614.75%
55,54033,54028,59614.74%
51,46423,40819,96014.73%
50,61622,83219,47214.72%
81,81641,35635,27614.70%
45,63625,63621,86814.70%
49,29227,94423,84014.69%
48,00826,72822,80414.68%
55,93228,72824,51214.68%
49,61227,05623,08814.67%
42,80424,61221,00414.66%
48,48426,96023,02414.60%
48,82827,26823,28814.60%
52,07625,25221,58014.54%
74,93645,20038,63214.53%
48,71227,34023,36814.53%
52,17225,37221,69214.50%
46,39625,76822,03214.50%
47,70427,57223,57614.49%
46,10826,96823,06414.48%
63,90830,14025,78014.47%
46,76826,03222,27214.44%
41,19224,87621,28414.44%
56,69632,22027,57214.43%
47,44026,81622,94814.42%
44,81626,95623,06814.42%
47,96825,46021,79214.41%
45,39625,42421,76414.40%
104,75257,91249,57614.39%
46,31626,82422,96814.38%
56,49233,05628,31614.34%
51,99630,24425,90814.34%
49,86427,18423,29214.32%
46,20027,03223,16414.31%
47,14425,38821,76014.29%
56,83633,35228,58814.28%
57,52034,73229,77214.28%
45,92426,23622,49214.27%
55,46031,76027,22814.27%
45,06827,47623,55614.27%
45,82429,12824,97614.25%
51,11229,16425,00814.25%
72,35641,02835,18414.24%
43,01624,20820,76414.23%
53,94827,71223,77214.22%
97,98054,75246,97214.21%
46,57627,59623,67614.20%
54,93631,24826,83214.13%
56,95633,22028,53614.10%
46,06026,84423,06814.07%
45,42824,89621,40014.04%
47,45227,46023,60814.03%
48,82427,79223,90014.00%
53,30828,31224,34814.00%
44,65626,12022,46813.98%
57,54433,41228,76813.90%
55,52030,28826,08013.89%
48,21226,82423,10813.85%
57,85231,25626,93213.83%
49,08827,76823,94013.79%
53,34829,31625,27613.78%
48,63628,50424,57613.78%
49,07627,78023,95213.78%
55,44830,08025,93613.78%
307,964188,456162,50413.77%
52,86031,00026,74013.74%
52,23629,60825,54813.71%
43,63228,73624,79613.71%
53,81631,25226,96813.71%
51,44028,39624,50413.71%
37,35225,04021,61213.69%
23,09710,7609,29613.61%
48,37627,69623,93213.59%
47,90029,43625,44013.58%
51,40032,02427,68013.56%
47,74827,97624,18813.54%
47,67627,37223,68013.49%
50,44428,59224,73613.49%
48,05627,77624,03213.48%
47,95227,66823,94413.46%
52,49628,57624,73213.45%
53,37631,55227,30813.45%
56,19230,57626,47613.41%
44,45225,92822,45213.41%
52,36418,47215,99613.40%
56,58031,91627,66413.32%
103,77261,67653,46813.31%
51,26029,76025,80013.31%
54,84033,32428,89213.30%
48,08827,94824,23213.30%
56,36030,65626,58013.30%
48,70829,97626,00813.24%
53,99229,51225,61213.21%
56,12031,72427,53213.21%
54,32032,42428,14413.20%
48,94827,73624,07613.20%
51,78828,98025,15613.20%
47,85627,76824,11213.17%
39,67627,94024,27613.11%
55,56831,69227,53613.11%
46,17225,84822,46013.11%
53,70432,03227,83613.10%
47,80029,43625,58813.07%
52,74428,49224,76813.07%
51,07228,66424,94412.98%
35,36113,93212,14012.86%
54,35619,70017,17612.81%
47,67227,13623,67212.77%
51,21628,90825,23212.72%
51,68131,00827,07212.69%
53,34431,61227,60012.69%
37,84824,23621,16412.68%
57,49620,34817,78012.62%
49,66028,22824,69212.53%
54,36430,34426,54412.52%
61,40835,26030,85212.50%
57,56833,70429,50012.47%
43,90526,52823,24412.38%
62,26436,27231,86012.16%
120,06073,86864,92812.10%
61,06036,98032,68011.63%
65,43641,68037,00811.21%
209,504135,984121,56010.61%
219,876142,460127,83210.27%
204,044131,424118,20010.06%
46,54428,07226,2166.61%

Appendix C: Curve point prediction

Due to the regular placement of curve points on the outline of a glyph, it is possible to reliably predict the coordinates of some points. A study of 37,00 fonts (the Monotype font corpus)was performed to test the feasibility of this. While the results varied substantially from font to font, the average number of all points that could be predicted (with respective coordinates eliminated as redundant info) was 2.0%, corresponding to an average of 3.11 bytes saved per eliminated point.

A second study on a small corpus (fonts supplied with Windows 7) identified and eliminated on-curve points that were exactly midway between their preceding and following off-curve points. No flag was added to indicate removal. The size of the compressed, altered font was compared with the compressed size of the unaltered version. The results varied substantially; in a few cases the font was significantly smaller (around 2% in the best case). In around one-third of the fonts tested, the reduction was insignificant (a small fraction of a percent). However, in two-thirds of the fonts tested, the compressed size waslarger than the unaltered font (by around 0.1%).

These results indicate that, for predictable coordinates, the entropy coder is doing a better job of compressing the redundant data than a content-aware hueristic for point removal. The Working group thus concluded that this approach was not worth pursuing further.

Appendix D: MTX-like Preprocessing

This appendix summarizes the preprocessing steps used for initial testing, and is non-normative. The preprocessing steps eventually chosen are fully documented in the WOFF 2.0 specification [WOFF2].

Table-specific transforms

In some cases, the TrueType tables contain significant redundancy. For these, WOFF 2.0
defines transforms that strip out the redundancy, and then allow the table to be reconstituted.
Currently, effort is focussed on the ‘glyf’ table, but applying transforms to other tables is also under
consideration as well.

When the glyf table is transformed, both the ‘glyf’ and ‘loca’ tables should be listed in the
directory with the applyTransform flag set. The transformSize of the loca table should be zero -
the data in the transformed ‘glyf’ table will be used to reconstruct both glyf and loca tables.

The ‘glyf’ table

When the applyTransform flag is set on the ‘glyf’ table, the contents of the glyf table are
transformed using an algorithm designed to optimize the compressibility of the resulting stream.
This transform is based on the one in [MTX], but has been updated to achieve even more
performance.

The transformed glyf table consists of seven substreams. There is a header consisting of a
version, the number of glyphs, and the sizes of each of the substreams, then the data of the
substreams follow.

USHORT numGlyphs
USHORT indexFormat
ULONG nContourStreamSize
ULONG nPointsStreamSize
ULONG flagStreamSize
ULONG glyphStreamSize
ULONG compositeStreamSize
ULONG bboxStreamSize
ULONG instructionStreamSize

The individual glyphs are interleaved across all these streams. Thus, each stream contains
some number of bytes for glyph 0, followed by some number of bytes for glyph 1, etc. The
reconstruction process is defined in terms of reading from the various streams.

The ‘loca’ table

The origLength for the ‘loca’ table should be large enough to hold the reconstructed loca table.
If the indexFormat is short, this means 2 * (numGlyphs + 1). If long, 4 * (numGlyphs + 1).
The origLength in the ‘maxp’ table must match that in the transformed ‘glyf’ table. (Rationale
for duplicating the value: the transformed table should contain sufficient information for
reconstructing the final table. Otherwise, it’s much harder to do incremental processing).

Bounding boxes

Each glyph can optionally have an explicitly specified bounding box. Since a bounding box takes
8 bytes, it should be omitted where possible. However, reconstructing a bounding box in the
case of arbitrary glyph transformations is non-trivial. Further, it is possible for the source font
to have a bounding box inconsistent with the actual glyph data. In this case, it the role of the
compression algorithm to represent the font as accurately as possible, inconsistencies or no, so
that the use of the font does not vary at all dependent on whether compression was applied.

The bounding box data stream is defined as follows. First, there is a bitmask, consisting of 4
* ((nGlyphs + 31) / 32) bytes. Bits are packed big-end-first. Thus, glyph 0 is represented as a
value of 0x80 in the first byte, glyph 1 as 0x40, and glyph 8 as a value of 0x80 in the second
byte. A bit of 1 indicates that the bbox is present, and a bit of 0 indicates its absence.
For each glyph with a 1 bit set, the bounding box is represented as 4 SHORT values, xMin,
yMin, xMax, yMax, and the interpretation of these values is the same as in the header of an
individual glyph.

Note: In the present implementation, bounding boxes must be specified for all composite glyphs.
Under consideration is reconstructing bounding boxes for composite glyphs with offset-only
transforms. For this reason, the bbox reconstruction is described (and implemented, in the
reference code), as a separate pass rather than part of the stream processing for glyphs.

A bounding box present for a glyph with zero contours is an error.

Appendix E: CFF de-subroutinisation

CFF outlines typically use subroutines. The effect of de-subroutinization on compression efficiency was studied. Three corpi were studied: the Adobe Source Sans family, Google Noto, and fonts from Monotype. For Noto, in addition to desubroutinization, re-subroutinization was examined. The font family names in the Monotype corpus have been obfuscated.

E.1 Adobe Source Sans

referencedesubroutinized
OTF (original)OTF (fonttool optimized)WOFFWOFF2OTFWOFFWOFF2
totalCFFtotalCFFtotalCFFtotalCFFtotalCFFtotal
sizeratio to refsizeratio to refsizeratio to refsizeratio to refsizeratio to ref
SourceSansPro-BlackIt835125266575976525754931238567434001137241.4968903241.7180493561.0009386101.0011413080.951876024
SourceSansPro-Black238112126502227184126623127360901141032443122521.37442116911.67181259240.9887886770.9841984640.9537225684
SourceSansPro-BoldIt824725166774888515454940038331434601125401.5028891971.7305499001.0101388311.0130419200.964674840
SourceSansPro-Bold239148125359228048125497130988908901068363111721.36452086221.66241292120.9864891160.98051018080.9529227128
SourceSansPro-ExtraLightIt787044781671172477314513634448398681098801.5439864381.8109451761.0009344871.0011379960.953070576
SourceSansPro-ExtraLight22662411517321598011530611978082216985282987121.38311980391.71751176240.9820800570.9737930080.9440214216
SourceSansPro-It816725088174132507994895237847433161104681.4902871351.7153494241.0096383181.0124418040.965173760
SourceSansPro-LightIt797284882372172487194739636346420921097721.5210863191.7718477001.0064366501.0084403480.958672260
SourceSansPro-Light230688117643219584117774124920854591022523001001.36671982911.68371238600.9915843970.9876979480.9579217736
SourceSansPro-Regular234960120755223856120886128532882421051003022921.35041993221.64881277440.9939874530.99111012200.9631221880
SourceSansPro-SemiboldIt826205159875076515064935638220435161112321.4816876611.7020497881.0088386511.0113417400.959274772
SourceSansPro-Semibold238044123710226936123846129800895851056403070841.35322039931.64721284520.9896882370.98501018000.9637225020
SourceSerifPro-Black912163775083300376784383229047396641039641.2481583431.5485428120.9767280250.9648382960.965582748
SourceSerifPro-Bold927603773684824376644624429447416081054881.2436583271.5486453520.9807285540.9697404280.971684808
SourceSerifPro-ExtraLight897203662281968365204220828132382001033881.2613579371.5864411200.9742270410.9612367680.962582088
SourceSerifPro-Light914243699683676369224480028840404601046361.2505578821.5677437840.9773278210.9647390560.965383692
SourceSerifPro-Regular912763772883464376464408829252398481040601.2468582431.5471429800.9749281430.9621383680.962983428
SourceSerifPro-Semibold931443800585208379334631229489417241055001.2381582251.5349453640.9795285430.9679402920.965784980

E.2 Google Noto

familyweightReference: OTF with subOTF - desubOTF - desub - resub-Goog
OTFwoffwoff2OTFwoffwoff2woff2 ratio 2 refOTFwoffwoff2woff2 ratio
NotoSansKRRegular4,559,8203,584,2683,120,6765,012,9323,490,6202,927,9400.9384,452,6043,060,7400.981
NotoSansKR-s5v2,002,4601,462,2441,213,6962,341,2241,381,1241,083,3400.8931,977,0521,195,7400.985
NotoSansKR-s4v1,768,6681,289,8481,064,8362,084,7521,214,652943,6800.886
NotoSansTC5,649,0044,867,0644,199,7045,943,0684,872,5644,054,6600.965
NotoSansTC-s14,136,8443,573,4923,085,3604,310,2363,553,6322,962,9240.960
NotoSansTC-s5k1,678,4361,434,7001,268,0001,699,7521,380,2081,201,1160.947

E.3 Monotype fonts

font name
(obfuscated)
referencedesubroutinized

OTFWOFFWOFF2OTFWOFFWOFF2

totalCFFtotalCFFtotalCFFtotalCFFtotal






sizeratio to refsizeratio to refsizeratio to refsizeratio to refsizeratio to ref
2274941418739280071116,952113,7465679255,08750,740270,1122.3096267,1862.34939,3920.693637,6880.684234,2080.6742
192812685232397874415,74812,30685286,6867,80841,4082.629438,4033.12076,5760.77114,7360.70835,6840.7280
3309121790410754814137,040133,7666055258,86754,084285,9802.0868282,9872.115543,6160.720341,9290.712337,5000.6934
82268031885475527076,9844,20945003,1633,9489,8561.41127,3531.7473,6040.80092,2650.71612,9600.7497
132155360894106218318,5606,75535762,6553,31623,5442.750521,9963.25632,8280.79081,9080.71862,3280.7021
130373213177612772245,6723,54033882,2322,9369,4401.66437,5772.14042,7880.82291,6310.73072,3480.7997
14735554941386493756,2684,35236722,7203,2729,9921.59418,3481.91822,9440.80171,9890.73122,4760.7567
104182968961814369754,0761,61823881,0991,9244,5201.10892,4281.50062,0960.87778080.73521,5720.8170
1830027219631795322311,2208,46774765,9206,74816,7041.488814,2471.68275,9120.79084,3530.73535,0920.7546
546234345079472862210,0727,61749243,7234,40815,2801.517113,0941.7193,9400.80022,7400.73603,3160.7523
139728259725770960244,3282,46529281,9092,5366,1121.41224,5211.83412,4240.82791,4060.73651,9280.7603
125116269626105656986,8004,52443683,2633,8728,8161.29656,8101.50533,5280.80772,4210.74202,9600.7645
64038221941994857998,2806,45161324,9935,63614,1401.707712,5831.95064,8520.79133,7150.74404,1240.7317
49641281499451142836,6124,42942683,1973,8288,6401.30676,7291.51933,4480.80792,3790.74412,9520.7712
8534615578973514835,8122,85636762,0913,1087,8961.35865,2531.83933,1520.85751,5650.74842,4960.8031
169143124114955258868,8207,28962005,2465,65611,9721.357410,6891.46654,8880.78843,9340.74994,1560.7348
39667763705512720016,6325,37231522,3722,82014,6962.215913,6842.54732,5640.81351,7810.75082,0040.7106
100504159169746432414,5002,49229481,8482,5525,7761.28364,0151.61122,5000.8481,3990.75702,0640.8088
26085580514414099067,4484,90748363,4764,3728,8241.18476,5771.34033,9960.82632,6330.75753,4200.7823
1219354597116994231613,2608,72179005,7776,98017,0321.284512,7661.46386,5080.82384,3870.75945,5480.7948
485135081360746938121,37616,498102207,7229,42044,8962.100340,3732.44718,3720.81925,8760.76097,3760.7830
15161499348287467984,5762,59531202,0552,7726,0321.31824,3241.66632,6280.84231,5640.76112,2080.7965
1134588565622727477413,4609,34291646,9578,18421,7041.612517,8771.91367,5040.81895,2980.76156,4760.7913
152809709324481094907,2244,95646603,5664,1489,0641.25477,0651.42553,8200.81972,7260.76443,2920.7936
106308699058293064439,2006,81167405,5876,04818,2001.978316,0662.35885,4480.80834,2930.76844,6720.7725
44855573853990108127,1044,77047043,6014,2008,6201.21346,5571.37463,8880.82652,7860.77373,3640.8010
132107479345911184217,3284,98247323,6154,2729,2041.2567,1291.4313,9160.82762,7970.77373,3480.7837
34648898480537971607,0844,76146603,4684,2208,0801.14066,0261.26573,8840.83352,6920.77623,4160.8095
996143578047017001413,05211,05383327,1837,68016,5841.270614,8531.34386,7320.8085,5820.77716,0680.7901
895362337396360185610,5487,37352763,7014,73218,4361.747815,5322.10664,4560.84462,8830.77903,7120.7844
527840564773878891613,94010,53291487,6907,86428,0762.014124,9372.36777,5000.81996,0430.78586,3640.8093
12701846987747846447,6205,00152523,9114,80011,2841.48088,9371.7874,4280.84313,0880.78963,9080.8142
97283451812755777969,8847,77970605,9456,53614,0961.426112,2621.57635,8120.82324,6990.79045,2000.7956
144974681443220075535,4243,37133162,3962,9206,3041.16224,5211.34112,8200.85041,8980.79222,3280.7973
243370329199886200710,6287,75177486,1997,04416,4161.544613,8341.78486,4640.83434,9130.79255,6920.8081
126709529678762667203,1081,35720201,0501,6883,0840.99231,7441.28521,8040.89318330.79331,4120.8365
10366829123553250428,1646,03760484,8445,46812,0201.47239,9131.6425,0600.83663,8550.79584,4880.8208
562313715608084749313,34410,53283086,8247,69625,4681.908622,9232.17656,9320.83445,4450.79796,1760.8025
168160271934787112837,2244,81447283,6024,2528,7681.21376,6301.37724,0120.84862,8850.80093,4240.8053
161255099526553064898,3806,26862044,9825,59612,0841.4429,9921.59415,2120.84013,9920.80134,6240.8263
491504387283763933411,0369,49289407,9908,42016,7561.518315,4831.63127,3520.82246,4040.80156,5640.7796
160161044860975348686,5724,35645003,3584,17210,0601.53078,1151.86293,8360.85242,6940.80233,3600.8054
500344558385584239515,82812,607112609,38110,55622,4881.420819,5421.55019,4040.83527,5280.80258,4120.7969
47386909628839645164,8762,37629561,7282,4805,0041.02632,7741.16752,6160.8851,3870.80272,1160.8532
18767272316937210767,1524,63549363,4934,3649,4641.32337,1891.5514,2480.86062,8080.80393,4960.8011
156420370478616069046,3324,42443603,2513,88813,3642.110511,5252.60513,7240.85412,6140.80413,2040.8241
74229382630496896813,00810,32483847,1307,72831,4282.416129,0122.81026,9880.83355,7360.80456,2160.8043
1333938239139487553313,0368,69284566,2337,59213,7881.057710,0881.16067,2360.85575,0150.80466,0280.7940
180809258177821722385,2563,18432882,1522,8286,0401.14924,2401.33172,8680.87231,7320.80482,3720.8388
176027376424194702426,9084,57447803,5804,41210,1681.47198,1071.77244,0840.85442,8820.80503,5880.8132
174880513398046250676,9844,71548043,6384,42410,4841.50118,4861.79984,0960.85262,9290.80513,5920.8119
88056245625961178667,7405,49252323,8414,5408,7281.12766,7461.22834,4840.8573,0930.80533,7400.8238
468387840425228823912,9527,42186246,0157,60817,8841.380812,9841.74967,4560.86464,8450.80556,2480.8212
181283783470159511018,1644,23349723,2044,19611,0481.35337,3901.74584,3520.87532,5820.80593,5600.8484
21850306631469219406,4925,10246003,6864,2927,7601.19536,5631.28643,8840.84432,9710.80603,4640.8071
72355025162760318396,6604,51745843,3634,14011,0001.65179,1262.02043,9320.85782,7110.80613,3800.8164
854188759458397182414,94010,09068564,6426,12040,3682.70236,0053.56845,9680.87053,7530.80854,9440.8078
1350548345802768458413,7849,63698727,5259,01217,3561.259113,4801.39898,4320.85416,0850.80867,3920.8202
42721191662400540816,0283,84236482,5723,2969,0161.49577,0791.84253,1560.86512,0800.80872,7160.8240
128472832862733812157,9244,43150883,3324,6169,3921.18536,4531.45634,4520.8752,6950.80883,8040.8241
292714021829788134913,70811,125105089,0459,50024,1761.763621,8491.9648,7840.83597,3240.80977,8360.8248
139554209405275327214,02811,34375766,3057,02819,8481.414917,4291.53656,3760.84165,1060.80985,5720.7928
94055422996740287746,1683,86342003,0243,8569,8681.59997,8362.02853,6280.86382,4500.81023,1360.8133
148369930702501876628,9041,53523721,1302,0603,5640.40031,8441.20132,1600.91069190.81331,7080.8291
175108262221024107979,8401,53523721,1302,1083,5640.36221,8441.20132,1600.91069190.81331,6600.7875
117354039526639239579,8401,53523721,1302,1083,5640.36221,8441.20132,1600.91069190.81331,6600.7875
12743547526740289937355,080353,676192020191,084173,356405,6161.1423404,4551.1436156,3760.8144155,4380.8135148,2000.8549
110996606181741660186,0284,26239202,9063,5086,8441.13545,3521.25573,3800.86222,3650.81382,9120.8301
1608621389127738234413,1529,58698807,6858,95617,0201.294113,7261.43198,4520.85556,2590.81447,4680.8339
441622625185442930610,3767,03177125,9157,05617,2361.661114,1612.01416,6160.85794,8190.81475,8080.8231
1572204030002906262113,08410,28684287,1327,68831,7202.424329,1922.8387,1240.84535,8250.81676,3440.8252
284612903372147674232,86826,3891431611,85813,08866,9762.037761,5382.33212,1440.84839,6860.816810,4360.7974
571369471001173643914,95212,309113649,67610,44822,0921.477519,7241.60249,5960.84447,9050.81708,5680.8201
1071374810190923065112,1729,80896328,1318,85619,7121.619517,3531.76938,1440.84556,6440.81717,4240.8383
137533945096723073613,1569,40596167,4668,70819,1001.451815,6221.6618,2600.8596,1090.81827,3400.8429
58648924233883440212,91610,01885686,9467,96824,2361.876421,6082.15697,3040.85255,6840.81836,5720.8248
51507584309962325712,9687,43187366,0637,75618,3481.414913,4401.80867,6440.8754,9700.81976,4840.8360
12199750677878960026,5324,17344803,2694,10810,1561.55488,0721.93433,8880.86792,6800.81983,3720.8208
141202505858317257333,8241,77225401,3512,1284,0801.06692,2741.28332,2960.90391,1080.82011,7480.8214
517872787754941242713,93210,23398487,6938,88017,6641.267914,2711.39468,4640.85956,3120.82057,4040.8338
73288428339091431545,3323,00734482,1572,9886,3041.18234,2471.41243,0600.88751,7710.82102,4680.8260
892127201543447786113,7409,61396127,4228,58817,5881.280113,7361.42898,2840.86186,0950.82127,1520.8328
918587797910253773617,95611,689129209,40311,99623,0641.284517,0701.460311,2440.87037,7250.821510,0960.8416
717637803041177962513,66410,86689047,5988,14828,2482.067325,7202.3677,5520.84826,2470.82226,7680.8306
126480552521661308248,6964,66554243,5594,62812,0361.38418,2731.77344,7920.88352,9270.82243,9880.8617
151117191431809036937,8006,01843243,2784,02012,5681.611311,0581.83753,7440.86592,6970.82283,2560.8100
57862628095676010095,5803,78839042,8343,5647,1041.27315,5791.47283,4000.87092,3320.82292,9680.8328
179780404985929867163,3521,77023841,4432,1004,4401.32463,1301.76842,1280.89261,1880.82331,7840.8495
474144354251134950516,28812,726113689,43610,36019,2361.18115,9631.25449,7080.8547,7740.82398,4160.8124
748769388170647249,6286,43171645,3986,50415,6081.621112,6831.97226,2200.86824,4540.82515,4240.8339
476206259453804467916,24012,668113929,47810,44419,2601.18615,9751.26119,7440.85537,8290.82608,4600.8100
1769499179521576394,0722,26327601,7492,3765,5321.35853,9971.76622,4560.88991,4450.82622,0160.8485
29414859926551763649,5526,73064365,0455,86812,1321.27019,5771.4235,5600.86394,1690.82644,8160.8207
1312200151159052681715,46412,507114809,91510,64421,5361.392718,8491.50719,7640.85058,1990.82698,9240.8384
1692803767665235546013,11610,65599768,5869,19620,5041.563318,3111.71858,4960.85167,1050.82757,6880.8360
1027170217319780884511,9528,19386286,5847,77216,9561.418713,4711.64427,5040.86975,4600.82936,5080.8374
355742552507786657312,5528,98990807,0547,97216,9801.352813,6921.52327,8800.86785,8550.83006,7360.8450
100544316684291699673,3321,58621921,1481,8563,5801.07442,0811.31212,0000.91249540.83101,6560.8922
1271567593184485260312,72010,11591727,6618,35217,1561.348714,8211.46527,8760.85876,3680.83127,1000.8501
76894826816746624714,08810,59166804,8356,10455,6763.95252,5264.95955,8640.87784,0200.83145,0120.8211
597673332185689784611,0448,67078166,4626,99215,9761.446613,6261.57166,7320.86135,3800.83266,0240.8616
40254282326367364484,8563,21932122,2672,8766,5401.34685,1521.60052,8320.88171,8880.83282,3440.8150
178587695566301078395,9163,57236002,4383,1967,2561.22655,1791.44993,1920.88672,0310.83312,7600.8636
1337065793717166746513,1609,02293727,1828,44416,3641.243512,5001.38558,1720.8725,9830.83317,0760.8380
68117612321873817408,8605,74354643,9294,89210,4601.18067,6261.32794,8080.87993,2740.83334,0680.8316
736271111984091184520,05610,23692805,1927,38064,0523.193755,7415.44568,4280.90824,3370.83536,3560.8612
53751786720842848696,4084,07443963,1954,0329,8961.54437,8331.92273,8720.88082,6720.83633,3960.8423
469296232868702039310,0406,67775365,6506,84815,5881.552612,5001.87216,6160.87794,7290.83705,8400.8528
1634452974989562537019,70812,4281432410,20113,11626,4961.344419,4871.56812,6600.88388,5380.837011,2960.8612
1334161777282747981310,8007,96379846,3777,16419,8521.838117,2962.1726,9560.87125,3500.83906,0000.8375
54996049752959881210,6887,24878205,9907,22817,1561.605213,9851.92956,8560.87675,0270.83926,0880.8423
151643712601352168174,5882,79134122,3503,0485,1881.13083,6611.31173,0360.88981,9740.84002,5920.8504
50148395190183375413,65610,016103528,2199,52823,0761.689819,7011.9679,0400.87336,9070.84048,0680.8468
40995448653174091999,3045,98768365,0466,24816,8761.813813,8292.30986,0360.8834,2470.84175,2080.8335
48575141559556001079,9566,54372925,5006,72018,3681.844915,2262.32716,4240.8814,6300.84185,6560.8417
4721028481344450114,24811,171112769,38110,52821,4041.502218,5981.66489,7920.86847,8990.84208,8920.8446
1662391036782752550116,58412,9171230410,32411,17222,1761.337218,7831.454110,6760.86778,6930.84209,3840.8400
1019844010006300446813,8489,620101447,7439,21216,7161.207112,7611.32658,9280.88016,5250.84277,7440.8406
127444836571919856579,8887,36372125,8396,64414,8721.50412,6191.71386,2960.8734,9230.84315,4960.8272
176285818268669804476,6203,44540322,5273,5727,3721.11364,4731.29843,6360.90182,1310.84332,9920.8376
1699956182118055104812,4448,31585286,3267,54015,8121.270711,9531.43757,5400.88415,3400.84416,4480.8552
67899753978153062412,3568,72692327,2098,47221,1641.712917,8032.04028,1200.87956,1000.84627,1960.8494
15092917279369822740267,736265,574170164168,751140,688417,7041.5601415,8191.5657144,5480.8495143,1360.848296,5920.6866
175965585552895177175,6563,42340082,7853,5607,1921.27165,2321.52853,5840.89422,3630.84853,0640.8607
1167317881811820874316,38812,483109889,1859,92025,4361.552122,0441.76599,5960.87337,7960.84888,5480.8617
948345659258314382015,33210,917113049,22810,58021,7601.419318,3171.67789,9120.87697,8340.84899,0160.8522
1690641820163556716123,28811,884118969,29611,04020,9760.900716,5131.389510,4960.88237,8950.84939,3680.8486
270531113955348856,0843,92743643,1053,9448,1801.34456,2931.60253,9000.89372,6410.85063,3400.8469
1320834154433250970713,68411,086100088,7619,34024,7441.808222,4152.02198,7040.86977,4570.85127,8800.8437
405995475773981843623,17211,696119169,31211,05621,5480.929917,0131.454610,5320.88397,9260.85129,3880.8491
1739841193719158142313,38010,544100728,4379,41217,1801.28414,6141.3868,8240.87617,1890.85217,9920.8491
449284337838132695615,40812,5041180410,08510,85619,0121.233916,3751.309610,3120.87368,5950.85239,3040.8570
1048145075329833792313,40410,571100848,4539,38417,1881.282314,6261.38368,8360.87627,2060.85257,9880.8512
615966774904344881913,40410,571100848,4539,38817,1881.282314,6261.38368,8360.87627,2060.85258,0840.8611
1527981689993920980817,79215,0811276011,23311,98025,5361.435323,0971.531511,1000.86999,5760.852510,0960.8427
25467264300184405537,3724,59848523,4464,3969,6961.31527,1961.5654,3440.89532,9380.85263,7400.8508
156954339293791899196,0524,23541723,1713,8406,8161.12625,2721.24493,7080.88882,7060.85343,2480.8458
1385770003614285629715,74413,1811288811,26712,23226,7121.696624,4171.852411,2560.87349,6340.855110,1800.8322
857650101178226422110,6688,38875286,3046,68414,5801.366712,3241.46926,6200.87945,3940.85565,8960.8821
997574286215441572311,4688,83784847,0267,77616,9481.477914,5851.65047,4720.88076,0140.85606,7000.8616
1026130753088039550123,00011,481117929,19910,97220,4840.890615,9121.385910,4680.88777,8750.85619,3120.8487
163173916327309179969,5446,49862484,6185,76413,7041.435910,9491.6855,5840.89373,9560.85664,8400.8397
129341942687541336065,6684,00439522,8803,5006,1161.0794,7041.17483,5400.89572,4680.85692,9640.8469
538150770838610869812,4969,45496247,8388,97618,3601.469315,5921.64928,5000.88326,7160.85697,6080.8476
261920220505269094223,30411,821121929,61511,30821,7240.932217,1851.453810,8160.88718,2390.85699,4800.8383
1379063280412594643314,82011,32167324,8856,14466,3964.480263,2465.58666,0360.89664,1900.85775,0480.8216
184896441532490064910,8048,75186847,2347,87215,3721.422813,3201.52217,6560.88166,2060.85796,8880.8750
496907825384439927317,04414,3141194810,53611,16824,0561.411421,5991.508910,4560.87519,0410.85819,4640.8474
747339738890803453817,04414,3141194810,53611,15224,0561.411421,5991.508910,4560.87519,0410.85819,4840.8504
1237018542273229078322,10410,695112048,63910,39620,3280.919715,8611.4839,9800.89087,4140.85828,7960.8461
1081754870060119277113,44410,71198608,4319,13218,0481.342515,5881.45538,6680.87917,2390.85867,7200.8454
269692542814647659111,2687,22575245,5556,68412,0281.06748,4291.16666,7400.89584,7700.85875,8400.8737
1566344397810683533523,29211,785123289,68511,38420,8680.895916,3061.383610,9600.8898,3180.85899,7880.8598
34830946848509278018,07615,2721290011,32612,07225,8121.42823,2771.524211,3080.87669,7350.859510,3000.8532
1683953015216871003618,07615,2721290011,32612,06425,8121.42823,2771.524211,3080.87669,7350.859510,3000.8538
923743424632798047712,5169,76890687,5698,51215,4441.233912,9661.32748,0040.88276,5070.85977,2040.8463
1405969084023555575112,5169,76890687,5698,46815,4441.233912,9661.32748,0040.88276,5070.85977,1960.8498
29825794488444318916,6964,27249003,5874,50810,0321.49827,8781.84414,3960.89713,0840.85983,8840.8616
1546619348968374230012,4409,68890327,5368,45215,4241.239912,9441.33617,9760.88316,4800.85997,1840.8500
70717872450162553914,24010,69488407,2977,66446,1363.239942,8584.00777,8160.88426,2750.85996,5160.8502
29865270972221231716,10410,471113968,46710,28824,9081.546719,5821.870110,2120.89617,2810.85998,9040.8655
2961623510164040164,9723,28035082,4943,2046,0641.21964,6371.41373,1600.90082,1460.86052,7440.8564
1265069174747376980815,00010,604110288,93110,37221,7201.44818,2961.72549,7840.88727,6860.86068,8680.8550
110838401569583101637,4805,08751843,9464,60412,4881.669510,3412.03284,6360.89433,3970.86094,0600.8818
1469403946212233179417,55614,5311368411,99112,76021,8201.242919,0701.312412,0200.878410,3250.861111,0560.8665
1327771295168572592522,89211,437119049,31411,05620,4600.893815,9501.394610,6080.89118,0200.86119,3560.8462
11701345938736906389,6367,31766045,3606,04816,2441.685814,1981.94045,8600.88734,6160.86125,1680.8545
1360373583391503378419,71612,7331457210,65713,50825,5841.297618,8761.482413,0920.89849,1780.861211,8680.8786
34139833919617041365,6883,69141362,9873,6088,2521.45086,3281.71443,7240.90042,5740.86173,2040.8880
42493138497539251755,6603,88542483,1653,9607,0561.24665,5521.42913,8080.89642,7280.86193,3600.8485
37091957406561101346,8124,60841042,9393,7129,4121.38177,4561.61813,7000.90162,5330.86193,2120.8653
8583109526181108412,6528,87990406,8698,17217,7041.399314,2921.60968,0920.89515,9230.86237,1240.8718
17397333266936589554,1841,97928001,6582,4645,0321.20273,0781.55532,5720.91861,4300.86252,1120.8571
1462898111721888893317,60811,603131049,70512,16821,8681.241916,1511.39211,7680.8988,3720.862610,7000.8794
12209739144472532256,2884,06945283,2263,9769,0001.43137,0561.73414,0840.90192,7830.86273,4520.8682
1151209512049016359210,4887,63977686,1206,89620,4201.94717,8452.3366,9280.89195,2800.86276,0160.8724
1168408367722583277912,6568,90190406,8808,19617,7081.399214,3161.60848,0960.89565,9360.86287,0680.8624
484228212963449881823,24811,797122929,66111,44020,7760.893716,2701.379210,9640.8928,3360.86299,7960.8563
1828236748576443147113,88010,81696808,1879,02022,6521.63219,8661.83678,5600.88437,0660.86317,7280.8568
1379778642489273163712,3768,83088806,8188,13617,4321.408514,2451.61337,9480.8955,8850.86327,0360.8648
444809267789940118313,3329,79598047,8458,99616,6841.251413,5751.38598,7320.89076,7740.86357,7440.8608
843796294465891351811,5929,45788847,5668,14015,8921.370914,0301.48367,8560.88436,5370.86406,9400.8526
1384226139627617006317,42014,7341278011,31711,73621,3201.223918,8941.282311,2400.87959,7790.864110,0920.8599
69779911884446868968,7046,13760364,6395,50011,3761.3079,0841.48025,4080.8964,0110.86464,6680.8487
15782488019254147037,7605,48554884,4705,0169,8081.26397,8071.42334,8840.88993,8660.86494,1880.8349
40852354189133921717,6525,49157164,4815,17610,4441.36498,3021.51195,1120.89433,8780.86544,5400.8771
32126418962404507066,3764,23838682,7513,5009,1321.43227,2421.70883,5000.90492,3810.86552,9840.8526
1309789596781895974422,40818,1511490012,82213,56438,9281.737234,9411.92513,1760.884311,0990.865611,8240.8717
176955103589109603927,9805,55854724,1894,94010,9641.37398,8141.58584,9080.89693,6270.86584,1800.8462
15971117068709297265188,216184,480103344101,07772,216271,6881.4435268,2481.454189,8240.869287,5580.866356,8400.7871
1839640971006793439215,09210,694110248,94110,32421,7201.439218,2941.71079,8280.89157,7480.86668,8760.8597
17766830571182219756,6124,19948163,5064,4209,5161.43927,3761.75664,3520.90373,0440.86823,8400.8688
1085354603655217276911,4929,53689527,8898,44020,7561.806119,07227,9120.88386,8490.86827,1280.8445
1367804535736835497415,64012,7351205610,33211,11619,1521.224616,5141.296710,6960.88728,9710.86839,6080.8643
1290607330303718715812,1808,62986926,6587,93217,3481.424314,1461.63947,8280.90065,7960.87056,9240.8729
68306986381105519545,9123,73243603,1563,9566,3561.07514,4481.19193,9520.90642,7480.87073,4840.8807
175448064661691184039,7763,75458403,0145,26010,8681.11175,6421.50295,4520.93362,6250.87094,6520.8844
1547513629704374483012,3489,69590447,4268,02817,7521.437615,3461.58298,0840.89396,4670.87096,7560.8416
858861364489399874715,22811,906116009,76410,84822,3281.466219,2791.619310,3400.89148,5040.87109,3360.8606
1707501945036608769518,01614,9231401212,27013,07222,4161.244219,6081.313912,4320.887210,6900.871211,3960.8718
1454588785036872768913,99210,714107048,8639,93620,5801.470817,5761.64059,5680.89397,7270.87188,5760.8631
321009593607637374417,11214,1021351611,86312,66826,0961.52523,3671.65712,0000.887810,3470.872210,9160.8617
33811392695243528383,7121,63824361,3272,0764,2041.13252,3781.45182,2680.9311,1580.87261,8120.8728
1023077480542513662114,32411,710104769,2449,85225,8921.807623,5472.01089,3000.88778,0670.87278,5240.8652
145716939640416376077,8605,56556764,5955,31615,6401.989813,8642.49135,0920.89714,0110.87294,5000.8465
810317751388730004912,4648,70788406,7097,99217,6241.41414,2161.63277,9880.90365,8590.87336,9840.8739
9705242963689719163,7761,58823641,2261,9604,5401.20232,5991.63662,2080.9341,0710.87361,7160.8755
1621476468653676680213,8769,08897686,8938,72817,5041.261513,0011.43068,8960.91076,0220.87367,7440.8873
1721032357423222225115,89211,531120409,89811,36424,6841.553221,1481.83410,7920.89638,6490.87389,8200.8641
110639717846762140613,4089,03295327,5539,03618,6601.391715,2561.68918,5800.90016,6030.87427,6680.8486
3668467744449609043,8281,70424441,2952,0484,8201.25912,9411.72592,2840.93451,1330.87491,7960.8770
105593207192805931594,6922,57733602,0632,8765,2841.12623,4131.32443,1040.92381,8050.87492,5280.8790
4880572925958577615150,636146,6538957287,72077,664275,9001.8316272,4291.857678,6000.877576,7450.874961,9000.7970
6525095234041100587427,400418,891248384244,278214,268596,7481.3962589,0891.4063217,9800.8776213,8750.8755180,4000.8419
9682531370812853561326,344216,068182020151,892145,520572,8721.7554472,7202.1878163,1240.8962132,9960.8756127,6400.8771
12974882805194505582327,372216,068182020151,892145,652572,8721.7499472,7202.1878163,1240.8962132,9960.8756127,7680.8772
1663780109769937226518,19213,7071337610,65512,22825,0561.377320,9541.528712,0520.9019,3320.875810,6160.8682
114325843012886107299,9806,75575925,8636,95221,5522.159518,6122.75536,8640.90415,1360.87606,1000.8774
613477096370858071013,6569,38896727,4278,76019,7761.448215,8131.68448,7520.90496,5060.87607,6320.8712
98595319009933497912,4328,65488086,6697,89617,6241.417614,1961.64047,9800.9065,8430.87616,9560.8810
648371684491218876113,6529,779102167,9069,22820,6721.514217,0691.74559,2360.90416,9270.87628,1080.8786
643981060820686436413,0328,67292327,2538,69618,5801.425715,1911.75178,3320.90256,3560.87637,5120.8638
1067326910024760190717,97214,8851398412,25913,13622,1481.232419,3451.299612,4680.891610,7440.876411,4080.8685
12845594702659060546325,060213,900181328150,578144,904576,6801.7741475,6422.2237162,7480.8975131,9980.8766127,4960.8799
3544542843758628827326,088213,900181328150,578145,160576,6801.7685475,6422.2237162,7480.8975131,9980.8766127,1920.8762
1264581018138049852016,02813,3591285611,34612,17622,1761.383619,7791.480611,4640.89179,9540.877310,3560.8505
387872818847425369512,0208,70090887,2298,50015,7401.309512,6861.45828,2040.90276,3480.87817,4280.8739
228366030501040381817,98814,8841397212,23513,08822,2281.235719,4081.30412,5080.895210,7720.880411,4640.8759
109195048956422690257,9965,41058444,2065,2529,9721.24717,6581.41555,3400.91383,7040.88064,6680.8888
1781253829870564149512,64010,21893888,0138,87217,1721.358515,0191.46998,4280.89777,0560.88067,7400.8724
180635461884437936415,8442,70535882,0373,1686,0721.0393,2091.18633,3440.9321,7940.88072,6920.8497
124143141088263275475,2683,68641043,1333,8126,6961.27115,3881.46173,7280.90842,7600.88093,3720.8846
670028892842128024313,87210,248105528,5269,66018,3921.325815,0401.46769,5400.90417,5130.88128,4320.8729
1579738249865554208714,1169,500106087,9999,82819,6801.394215,3321.61399,6600.91067,0520.88168,7240.8877
1275369336081390094018,21213,650113129,39210,04031,5881.734527,5392.017510,2080.90248,2850.88218,8240.8789
1794978237277056403614,1729,847103888,3409,71622,1161.560518,6151.89049,4080.90577,3580.88238,4600.8707
1749526758357930539515,76811,847119849,82310,96019,4801.235415,9041.342410,8320.90398,6690.88259,6720.8825
288238618339834102415,6808,770111047,3639,73220,1561.285513,5461.544610,2400.92226,5000.88288,7080.8948
267425067684135281410,4927,65878006,2197,12415,7241.498713,3681.74567,0760.90725,4940.88346,2640.8793
1767086068136048398410,5127,66778166,2307,17215,7481.498113,3771.74487,0880.90695,5040.88356,3000.8784
102619957047001919169,8327,08070765,6136,48014,0441.428411,5631.63326,4240.90794,9620.88405,7120.8815
1117403316606081194715,2606,69868245,1036,02417,9441.175914,9512.23226,2320.91324,5110.88405,3320.8851
988964551271428065716,3686,69868245,1036,11217,9441.096314,9512.23226,2320.91324,5110.88405,3080.8685
443743345486587808816,3686,69868245,1036,11217,9441.096314,9512.23226,2320.91324,5110.88405,3080.8685
46945012300045906187,5323,64346002,8244,1648,8561.17585,2371.43764,2760.92962,4990.88493,6160.8684
1499779512491861418420,97610,138102326,9959,38423,1401.103216,7661.65389,4280.92146,1900.88498,1880.8725
147446909615838729811,4206,40578525,1637,01212,0561.05577,3871.15337,2600.92464,5710.88536,2120.8859
79421728945665477634,6602,68634642,3013,0884,8441.03953,1431.17013,2000.92382,0380.88572,7440.8886
370796445123064275213,1409,74383366,9857,01627,8602.120224,7302.53827,5400.90456,1890.88606,3920.9111
7258173619046450219329,836220,474182532152,537147,776575,3001.7442475,2772.1557165,1400.9047135,1460.8860127,3680.8619
1221558260882423523313,73611,344101688,8329,53619,2601.402217,1341.51049,1640.90137,8260.88618,3840.8792
236707685073801329912,3889,98093527,9428,86016,9921.371614,8511.48818,4520.90387,0420.88677,7440.8740
11193750507869197003187,316183,84510064498,62270,792270,1321.4421266,9351.45289,5080.889487,4850.887155,2360.7803
151204778380978386094,8563,04532242,2202,9165,2401.07913,7041.21642,9760.92311,9700.88742,5360.8697
1769632898110760642912,3129,55591527,5468,38018,0601.466915,5711.62968,3040.90736,6990.88787,4280.8864
10975665779735082080283,832277,488188344185,549166,160351,6201.2388345,5311.2452167,5440.8896164,7510.8879149,8880.9021
1116785091172919395327,560217,311181620151,026146,508578,8761.7672477,9652.1995164,6880.9068134,0960.8879127,4000.8696
84707816873444570735,2523,57739482,9323,7046,3241.20414,9181.37493,6240.91792,6050.88853,2120.8672
825825819960251386813,1648,80393447,3688,81218,6241.414815,2341.73058,5280.91276,5490.88887,6840.8720
95541526631381361515,07211,841115049,54210,61617,7081.174914,7691.247310,4440.90798,4820.88899,3240.8783
25174090620354467477,4883,60645802,7944,0928,8521.18225,2421.45374,2680.93192,4840.88903,6120.8827
110644853007517618259,3566,98667805,4046,26014,6201.562612,5221.79246,1800.91154,8040.88905,3600.8562
363245815696465425512,3609,62391727,5848,43618,0801.462815,6101.62228,3320.90846,7430.88917,4880.8876
1428004012440882023625,08813,9321370410,27512,68827,6321.101421,3161.5312,5800.9189,1490.890411,0120.8679
1462034026378779669118,34413,854110009,0909,38846,3602.527342,1843.044910,0040.90958,0950.89058,3600.8905
521914528021514957823,05617,3091689213,99516,05231,7801.378426,7001.542615,3600.909312,4630.890513,6560.8507
1075585317532440939410,3727,67276205,9716,86015,4081.485512,9791.69176,9680.91445,3180.89066,1120.8910
603281127515621133929,76017,2381636813,33215,28835,9481.207930,1211.747414,9120.91111,8740.890613,3480.8731
154157804028455484777,5083,35345522,4994,0248,5001.13214,6251.37944,2800.94022,2260.89083,4920.8678
583536603165795024517,24014,5561199210,58911,10834,5802.005832,1642.209710,8360.90369,4330.89089,7760.8801
1070989534377293728914,09210,550104128,2209,45616,5001.170913,2451.25559,5240.91477,3290.89168,4840.8972
31349755419526391815,0522,63732962,0572,8765,9681.18133,8221.44943,0720.9321,8360.89262,5720.8943
819175241583904496810,3447,64775925,9336,84415,1641.46612,7351.66546,9520.91575,2960.89266,0720.8872
32435512466845443856,4044,83249083,8884,5606,6521.03875,3281.10264,4920.91523,4710.89274,0640.8912
8079171232839547849421,924419,775249120247,860185,376501,3441.1882499,4691.1898222,5280.8933221,2680.8927149,8960.8086
13511723222758816051421,927419,775249120247,860185,376501,3441.1882499,4691.1898222,5280.8933221,2680.8927149,8960.8086
1682236408906816281211,7929,06888727,2628,17217,2921.466414,8331.63588,0920.91216,4840.89297,2640.8889
55216557443306133706,6444,55552644,0844,89610,8521.63349,0361.98384,8280.91723,6470.89304,2440.8668
171909436761900072554,3802,64732162,3032,9846,4321.46854,9761.87992,9720.92412,0570.89322,6040.8727
336360302334748489619,10014,527118609,90210,54831,4241.645227,3631.883610,8000.91068,8440.89329,4360.8946
1601671484658319228210,5567,44276405,7356,94413,8241.309611,0001.47817,0280.91995,1240.89356,2240.8963
177064193385499443176,0924,30646803,5984,3487,7481.27186,2301.44684,2960.91793,2150.89363,8360.8822
58008388120309245010,0207,23877166,2407,19216,1601.612813,6481.88567,0520.91395,5760.89366,3680.8854
1170005337255604842013,2925,50278804,4667,12013,7321.03316,2161.12987,4040.93963,9910.89366,5360.9180
174923562718646724986,2004,43348483,7644,4687,8601.26776,3621.43514,4480.91753,3640.89373,9400.8818
1238844645795269272411,8449,13888887,2948,20017,3121.461714,8761.62798,1160.91316,5210.89407,2480.8839
177657608466227300706,1204,35047563,6914,3927,8121.27656,3091.45034,3680.91843,3020.89463,9160.8916
805787570844705087919,64411,5211408010,03513,12823,5001.196316,8981.466713,0240.9258,9770.894611,6800.8897
564083521497703158112,1328,56584126,5577,50417,1401.412814,0801.64397,7240.91825,8710.89546,6760.8897
1382327144231005241810,4245,66666324,4405,92814,6561.40610,1521.79176,1680.933,9760.89555,3840.9082
1685342070197892363213,57210,975108489,40710,20815,9321.173913,6061.23979,8680.90978,4260.89578,9280.8746
81744933644401836375,0882,99036762,4993,2367,4841.47095,6321.88363,4160.92932,2390.89602,9360.9073
94609624712879496694,7482,83933882,2433,0365,4961.15753,8561.35823,1560.93152,0100.89612,6760.8814
1194595619906651136324,70015,7901667612,74915,80031,0041.255223,3021.475715,3600.921111,4340.896913,6600.8646
39254104518468565218,09613,534117409,78210,63230,8001.70226,7511.976610,7320.91418,7750.89719,4280.8868
138216367710643110519,2085,67168484,8966,20017,7721.930114,5272.56166,3480.9274,3930.89735,5360.8929
1339986986132715246241,98823,0452825618,74324,63250,1201.193733,9991.475326,3360.93216,8220.897522,0640.8957
114329643041290465284,9962,12627961,4582,3564,9840.99762,3881.12322,6480.94711,3090.89782,1280.9032
118321847591008493127,4723,58045482,7704,0968,7961.17725,1751.44554,2640.93762,4870.89783,5920.8770
1007580721440984608618,41213,809119689,99310,75231,7921.726727,7012.00610,9480.91488,9760.89829,5920.8921
1494536781847921588213,84011,571109929,69510,20015,8041.141913,8061.193210,0160.91128,7180.89928,8640.8690
183779594759570760248,5686,64557244,5495,24012,0041.40110,3621.55945,2680.92034,0940.90004,5720.8725
1033291157321773068712,0209,29989127,3248,24817,0281.416614,5731.56728,1840.91836,5960.90067,3240.8880
1004806420917989165518,06011,678130329,69211,80821,2601.177215,1501.297312,0720.92638,7290.900610,5560.8940
1356271779916883424618,39213,817118169,85810,55230,9601.683326,8981.946710,8360.91718,8790.90079,5000.9003
18898614984644260618,52813,881118209,84410,65630,9401.669926,8051.931110,8480.91788,8690.90109,5240.8938
22838413169571769905,1923,50739642,9323,6966,3521.22344,9331.40663,6760.92732,6430.90143,2800.8874
49268716459547523655,5882,94537762,4683,3487,7161.38085,3441.81463,5360.93642,2250.90152,9800.8901
188457520294593127015,89612,261121409,94011,28019,0561.198815,7081.281111,1680.91998,9650.901910,1200.8972
1572198551806835281915,89612,261121409,94011,25619,0561.198815,7081.281111,1680.91998,9650.901910,1240.8994
782420363285527500311,5208,84186647,0778,00816,4041.42413,9931.58277,9720.92016,3850.90227,1080.8876
445346767659475488422,76816,8751684013,57215,38431,7961.396526,1831.551615,5160.921412,2450.902213,7960.8968
1634140760877044413115,60813,3211311611,65712,39217,2121.102815,2411.144111,9760.913110,5200.902511,0040.8880
496570366518291386538,98015,0152352412,89719,10039,8361.02217,7901.184822,2640.946411,6390.902517,2800.9047
1153749630041316649420,28817,1931512413,34214,12027,9201.376225,0951.459613,8400.915112,0590.903812,5800.8909
20607625188948142225,0923,42038762,8433,6086,2881.23494,8841.42813,6040.92982,5700.90403,1960.8858
128510864987884195595,8283,47934362,3652,9285,8521.00414,0421.16183,2080.93362,1380.90402,6120.8921
893281145402096454916,64812,210119809,61010,94820,3641.223216,1981.326611,0560.92298,6870.90409,8720.9017
741955001316125883018,26016,4761471613,59113,66419,8481.08718,3351.112813,4120.911412,2860.904011,8400.8665
1505464871662374359518,98816,6741473213,21413,45626,4881.39524,4471.466213,4640.913911,9450.904012,0520.8957
962568228126354934415,46412,058115929,76511,10417,3521.122114,2181.179110,6560.91938,8290.90419,7040.8739
1163533688633166339520,06816,9811497213,19314,09227,6161.376124,8001.460513,7080.915611,9300.904312,5240.8887
169378197930100696485,5843,47934442,3642,9405,8761.05234,0421.16183,2200.9352,1380.90442,6240.8925
143365820309502182729,1967,75360445,1405,60813,6161.480612,4241.60255,5560.91934,6490.90454,9680.8859
515033848512243979918,22413,578119329,95410,72030,8881.694926,7541.970410,9840.92059,0050.90479,6760.9026
1826632877151572099024,39615,9561651212,73615,60431,1881.278423,9551.501315,3000.926611,5220.904713,5960.8713
7009339937767662417343,612332,261227936222,915203,188391,2841.1387380,2071.1443206,7280.907201,7080.9049189,6240.9332
99653441475654596127,6564,88351563,7704,7009,9481.29947,4451.52474,7960.93023,4120.90504,1200.8766
346138194675720347813,1565,43379884,6227,39214,6681.11497,2241.32977,5480.94494,1830.90506,8360.9248
173499283429578173976,8764,99457044,4145,1968,0321.16816,1521.23195,2880.92714,0000.90624,7120.9069
1765592709942154754613,0529,42298727,7489,00818,2961.401815,0241.59469,1480.92677,0210.90628,1920.9094
1171014500551334851713,0529,42298727,7488,94818,2961.401815,0241.59469,1480.92677,0210.90628,1880.9151
1379208408915948115716,53612,110119609,58210,99221,3761.292717,2231.422211,0640.92518,6860.90659,8840.8992
166475027879673445349,2805,08966364,1785,85210,1041.08886,2091.22016,2480.94153,7890.90695,3560.9152
174026549335737767512,7128,96597847,7419,05622,1321.74118,7032.08629,0680.92687,0250.90758,1200.8966
116331526738682857716,6089,596118608,05010,30419,9161.199213,2021.375811,1200.93767,3110.90829,2520.8979
21909712990859690885,5082,20337361,8233,2406,3721.15693,3601.52523,5680.9551,6560.90842,9800.9198
19098494043726705996,0924,25446163,4824,2846,8521.12485,2641.23744,2960.93073,1630.90843,8360.8954
23149718494262756208,2326,39168045,5236,2689,7761.18767,9331.24136,3000.92595,0170.90845,6720.9049
696219059114436949419,11616,1901490413,31413,74027,7281.450525,0761.548913,6840.918112,0960.908512,2440.8911
83040638686249574346,8804,64251523,7794,7407,9921.16166,0251.29794,8080.93323,4340.90874,2560.8979
60953133927624750327,7923,17646522,3693,9209,4081.20745,0891.60234,4360.95362,1530.90883,6120.9214
506974051204994219516,4889,521118368,03610,31619,9041.207213,2401.390611,1080.93857,3050.90909,2240.8941
182721749353201605767,2043,62448562,9634,3368,7601.2165,7151.5774,5880.94482,6940.90923,9040.9004
1712624458869644568022,26015,3891762813,15616,13224,2841.090917,7031.150416,4400.932611,9660.909514,6960.9110
14783379783922060781553,272546,128363216359,119277,688853,5801.5428846,7191.5504330,7040.9105326,6070.9095208,6480.7514
79641147988328656995,0242,07632121,6952,6645,8481.1643,2031.54293,0600.95271,5420.90972,4480.9189
1764951920955890826016,69212,5601293210,49211,98419,2241.151715,4551.230511,9880.9279,5460.909810,8360.9042
46179263242656224835,9242,79438962,0783,1246,7601.14113,9101.39943,7080.95171,8910.91002,8160.9014
165159326659327854538,0285,96057524,5325,19211,5081.43359,7121.62955,3480.92984,1270.91064,7080.9068
12349653663600966797556,804549,631365180361,071280,124857,6401.5403850,7491.5479332,8880.9116328,7800.9106209,9640.7495
70262529864851046236,7042,44338641,9483,3167,4641.11343,4731.42163,6920.95551,7740.91073,0320.9144
942747500007822994229,89617,4951971214,60218,27635,8321.198626,4191.510118,4080.933813,3000.910816,3760.8960
150412277984942953747,1282,99143562,3123,9207,8721.10444,0131.34174,1520.95322,1060.91093,3560.8561
38656100217946469829,9567,58274685,9987,03615,7041.577313,6111.79526,9320.92825,4640.91106,4080.9107
1820519328701118194513,77210,085104768,3669,58416,6161.206513,1971.30869,7320.9297,6220.91118,6960.9073
1649589158243165677811,5648,89686726,8958,07617,6801.528915,3081.72088,0600.92946,2830.91127,2280.8950
561157011375541717329,71617,4521979214,66118,24835,5241.195526,2451.503818,4960.934513,3650.911616,2640.8913
96597367269982120978,7686,34168125,3576,10410,3841.18438,2131.29526,3360.93014,8840.91175,3480.8761
203338117272927956613,13210,722109169,41210,34419,3481.473317,2081.604910,0880.92418,5840.91209,2120.8906
106603708837406584136,5204,69254244,1544,9087,7841.19395,9531.26885,0600.93293,7890.91214,4840.9136
1622678899759377504519,22416,6441566814,02014,45224,2841.263221,9721.320114,4360.921412,7880.912112,7000.8788
59139549458209226438,2605,79560644,6575,56015,8121.914313,6172.34985,6520.93214,2480.91224,9680.8935
980297764539444996016,0646,54193125,4468,53616,9241.05357,6751.17348,8320.94854,9680.91227,8760.9227
105797913310643315178,0124,65057043,8305,1649,7721.21976,6831.43725,3680.94113,4940.91234,6040.8916
30030013950353345514,6041,84227321,6582,2483,6480.79242,1491.16672,5880.94731,5130.91252,0760.9235
65724678821605209006,1924,39451363,8734,6767,2401.16935,4431.23874,7960.93383,5350.91274,2640.9119
847750052214409982117,86014,9601473612,90313,79222,7921.276120,1621.347713,6160.92411,7830.913212,5160.9075
115257384758691526868,6806,16965965,2026,02810,0681.15997,8351.27016,1440.93154,7510.91335,4280.9005
925905673103154428312,4209,69598128,3129,09216,9721.366514,5271.49849,0920.92667,5920.91348,1080.8918
1715757677429892036517,79614,0941396811,82712,99622,9961.292219,5631.38812,9480.92710,8060.913711,7160.9015
1604867356222672825713,7128,02489126,1828,29620,4601.492115,7571.96378,3800.94035,6490.91387,4720.9007
1062324468265636389317,93614,9821480412,93713,83223,2401.295720,5631.372513,6880.924611,8230.913912,5800.9095
1348197999536597241116,94413,9731357211,79912,67220,9841.238418,3041.3112,5600.925410,7860.914111,2480.8876
168160157521026753511,7449,04688287,2368,19216,9001.43914,4721.59988,2080.92986,6160.91437,4160.9053
56558414822071213275,6723,22138842,7463,4888,2481.45426,0461.87713,6480.93922,5110.91443,1680.9083
505964464270143665118,84016,0881510813,51614,06822,9681.219120,4811.273113,9520.923512,3590.914412,5800.8942
1204496915864358974318,84016,0881510813,51614,02022,9681.219120,4811.273113,9520.923512,3590.914412,6120.8996
1723412474400014008017,82413,0631358010,75512,59220,7201.162516,2801.246312,6600.93239,8350.914511,5160.9145
1251209278750968413822,19217,0731700814,20815,64828,3721.278523,7891.393415,8000.92912,9980.914814,1120.9018
1374991370046887015816,42813,7811322811,57311,78817,4161.060115,0261.090312,2440.925610,5900.915110,5360.8938
1384755472998811349018,96416,1641518813,56114,14023,4481.236420,9181.294114,0360.924212,4090.915112,6760.8965
133827303835571965333,5401,64623601,3212,0364,5121.27462,8901.75582,2480.95251,2090.91521,7800.8743
719305562247250949452,32024,0432832021,30726,48054,9281.049834,3031.426726,5200.936419,5080.915623,8280.8998
1663460548233921216652,39624,0432833621,30726,32455,0041.049834,3031.426726,5360.936519,5080.915623,9040.9081
124786280685595811613,94810,36395767,9878,42032,8922.358229,5732.85378,9040.92987,3140.91577,6080.9036
1426725558613734195210,6127,93778966,4447,26413,5401.275911,1391.40347,3560.93165,9040.91626,5360.8998
1319295725270752658815,20812,5521214810,66311,51217,3721.142314,9861.193911,2560.92669,7700.916310,2080.8867
1184157954377774927114,27210,55598768,2148,71633,2362.328829,7852.82199,1920.93077,5290.91667,9200.9087
278640598907866540712,0369,30690167,4018,36817,2201.430714,7621.58638,4000.93176,7850.91687,5760.9054
455077843103527679214,99612,0761263210,54811,58820,6441.376617,7301.468211,7560.93079,6700.916810,7360.9265
130684904966864336219,87614,8251550412,44314,44823,3841.176518,6561.258414,4720.933411,4090.916913,1240.9084
127288790112223720307,2365,03357404,2815,2048,4641.16976,5471.30085,3840.9383,9260.91714,7040.9039
388987218263087895813,9369,751105808,2729,66016,2841.168512,4311.27489,8960.93537,5860.91718,8000.9110
1400489312946788373823,37615,1391727213,08415,70827,6081.18120,1441.330616,1920.937512,0030.917414,3000.9104
110647646990393111607,4085,86258885,0345,6169,0721.22467,7731.3265,4720.92934,6190.91765,0760.9038
526139424887637009012,4289,70795127,8988,66418,2681.469915,8191.62968,8600.93157,2470.91767,9200.9141
508471628429748598714,70010,821113288,87310,50419,0121.293315,4231.425310,6000.93578,1450.91809,5440.9086
757515878664660723417,03210,559118568,45410,42824,5641.442218,6361.764911,1640.94167,7630.91839,4800.9091
652570331389920861620,59615,9341653213,76515,30426,2321.273622,1241.388515,4080.93212,6430.918514,0520.9182
6204153261181498366258,196256,025189292188,043168,560316,9921.2277315,0911.2307173,9880.9192172,7400.9186157,9920.9373
884723825615700537810,4447,81781406,5747,54814,3921.37812,0371.53987,6080.93466,0430.91926,7960.9004
737702028744713176613,5649,657102528,0059,43618,4961.363614,9941.55279,6040.93687,3590.91938,5560.9067
1216648494752085398425,18019,2041896015,85017,60847,0601.868941,4602.158917,6840.932714,5730.919415,8440.8998
66767760193522171886,2484,48752283,9884,7647,2561.16135,4961.22494,9080.93883,6670.91954,3760.9186
121049032607480957777,8884,64456723,8445,1289,4801.20186,5061.40095,3640.94573,5350.91964,6040.8978
11242572920116245556428,332424,669284744282,557250,816479,8761.1203476,4881.122262,0320.9202259,8470.9196236,6320.9434
9358981513083862984,1122,38231242,0492,8004,2641.0372,8051.17762,9600.94751,8850.92002,5280.9029
534994141040377315211,1808,46884286,8127,64415,1361.353812,6901.49867,8840.93556,2670.92006,9360.9074
1159144464729428164113,3289,617101247,9729,35618,2601.3714,9541.5559,4880.93727,3360.92028,6320.9226
392336417724843522250,02423,6552644416,72123,36484,6921.69360,7662.568825,1120.949615,3890.920321,5320.9216
229826864446334656317,19612,5921323210,53512,24019,8481.154215,5971.238612,3960.93689,6970.920511,1920.9144
852935084557048618310,5048,38979966,7597,35215,9521.518714,1091.68187,4600.9336,2220.92066,6680.9070
984420727344453780913,92410,240107168,5879,86816,6921.198813,2761.296510,0360.93657,9050.92068,9680.9088
38624736201228252676,0083,93845483,2914,2367,3201.21845,5231.40254,2880.94283,0300.92073,7760.8914
1226446907723949254623,91219,5561941216,82718,19632,1881.346128,1321.438518,0880.931815,5020.921316,4080.9017
1658606747107225328018,11213,5901476412,18113,66825,1241.387120,6791.521613,8080.935211,2250.921512,7080.9298
1722946365219915629821,14816,8221608413,69314,77227,7361.311523,9541.42415,0080.933112,6200.921613,5040.9142
71608986239492460179,7047,67277966,4157,08015,4281.589913,4001.74667,2960.93595,9130.92176,6120.9339
153268482310161245918,9966,49669845,5786,4529,7801.08717,5521.16266,5480.93765,1420.92185,8720.9101
96117857171439572795,1803,51539842,9533,6966,4201.23945,0211.42843,7520.94182,7230.92213,3520.9069
1054403168863908732310,7888,20788607,1618,35214,4921.343312,1821.48438,3000.93686,6030.92217,5880.9085
1077554331125803983724,57220,1302026017,54519,01631,3041.27427,2991.356118,8920.932516,1800.922217,3960.9148
165612323037320884711,1608,44584246,7937,64415,1441.35712,6981.50367,8960.93736,2660.92246,9720.9121
159445313868050063126,6004,83754924,2604,9847,4921.13525,7321.1855,1640.94033,9300.92254,6320.9294
30135626549625753857,0724,65851883,8074,6088,1521.15276,0081.28984,8920.94293,5120.92254,2040.9123
1721256460192837289121,90417,4421726414,62315,92827,9361.275423,7431.361316,1320.934413,4890.922514,3720.9023
1659046749624986481427,68413,4121854811,51715,29632,4641.172718,5621.38417,6520.951710,6240.922514,3360.9372
25220770560440870507,9606,13566525,3656,0649,9081.24478,0831.31756,2360.93754,9510.92285,6160.9261
1477510239213574617413,2249,718101688,1059,32018,2681.381415,0741.55119,5440.93867,4820.92318,5720.9197
218927035679287670113,2249,718101688,1059,32418,2681.381415,0741.55119,5440.93867,4820.92318,5840.9206
983140673148266894520,84415,8381651613,62515,49226,7761.284622,3321.4115,4680.936512,5780.923214,2640.9207
1490172067686930776227,49625,2332346422,19421,60431,8081.156829,8191.181721,7600.927420,4910.923319,5840.9065
115552906206121308239,3885,63167484,4976,10015,6561.667712,1812.16326,4040.9494,1530.92355,5760.9141
545325686833897417625,29221,0502156419,05220,30836,1281.428432,1601.527820,1120.932717,5990.923718,4920.9106
535786740223063076820,35215,8381590013,27414,62425,8881.27221,6631.367814,8880.936412,2620.923813,3160.9106
501860385708277859721,92416,1601610012,91214,28427,0921.235721,8911.354615,1200.939111,9300.923912,9240.9048
1490926567433728929816,5169,136117567,78910,25219,6961.192512,6131.380611,1640.94967,1970.92409,4400.9208
1747059881758425047430,41618,0282031615,14818,80037,1081.2227,7061.536819,1680.943513,9990.924117,0800.9085
1272234872063344823563,71221,3043706418,90831,40462,8280.986127,8321.306435,6320.961417,4750.924229,4160.9367
91435851109262298712,5729,89496568,0788,81618,5561.47616,1461.63199,0480.9377,4690.92468,0840.9170
1251743849972569882513,67210,095106408,6029,98820,1001.470217,1631.70019,9920.93917,9530.92468,9880.8999
410577810473014020311,0287,23982606,0047,52823,1962.103419,6902.727,8080.94535,5520.92476,9160.9187
457992254324188457728,58816,1751868413,55817,39635,5801.244626,1551.61717,6640.945412,5390.924815,6520.8997
1334310163883508442817,11612,7061302010,49512,10019,6641.148915,7001.235612,2320.93959,7080.925010,9800.9074
1016424032496648563216,10011,670123169,95311,51618,7521.164714,8441.27211,5680.93939,2080.925110,4800.9100
1220793874890812961724,33218,4941953216,90018,21240,1721.65135,8231.93718,2720.935515,6390.925416,4200.9016
1531169795835865212620,08415,3731577212,91214,66423,7721.183619,3751.260314,8120.939111,9510.925613,4360.9163
543714202016331889216,10411,619122089,85611,44818,3321.138414,3661.236411,4800.94049,1260.925910,3640.9053
1464560199903742191123,31618,6381900416,25117,78830,8681.323926,4871.421117,8040.936915,0500.926116,4000.9220
161029904704525379876,1364,33250243,7784,5047,5401.22885,7351.32394,7440.94433,4990.92624,2160.9361
1639953686437270820318,66810,964130569,37412,10421,2361.137615,0911.376412,3640.9478,6830.926311,0760.9151
924367689358025108151,51220,2663007217,14724,61665,0041.261936,5341.802728,8120.958115,8880.926623,0000.9344
106513544947031845449,4807,35276446,2617,16010,5481.11278,6901.1827,1840.93985,8040.92706,5120.9095
298166508562081427410,7888,11480446,5807,48813,5361.254711,1341.37227,5640.94036,1000.92716,7960.9076
1445397294229589334034,70815,4081877213,63417,40031,7640.915218,9041.226917,7800.947212,6420.927215,9840.9186
1070702617929243527634,70815,4081877213,63417,40031,7640.915218,9041.226917,7800.947212,6420.927215,9840.9186
643044106392923776920,15215,1541555212,51114,47623,8041.181219,1451.263414,6440.941611,6010.927313,3280.9207
535326037445207396830,60825,5942484422,05823,14444,0281.438439,5281.544423,2400.935420,4550.927321,1440.9136
29738061633475143093,6041,82125961,4882,2123,5520.98562,0431.12192,4880.95841,3800.92742,0600.9313
1531043164864104481125,31620,0882087217,74819,58030,8801.219826,3391.311219,5840.938316,4600.927418,1120.9250
1641820627582052352630,60425,5892483622,05323,19644,0281.438639,5281.544723,2360.935620,4530.927421,1400.9114
1481668349884193730017,67213,4511412411,73313,24022,3241.263218,3901.367213,2720.939710,8830.927612,1320.9163
681435906826049429624,40821,4492056418,67819,26031,6841.298128,9961.351919,2120.934317,3260.927617,4800.9076
448780454484173077518,32013,5991416011,22012,99220,7441.132316,3211.200213,3520.942910,4090.927711,9240.9178
1120500180845700285919,70415,3181552012,80214,44423,0241.168518,9311.235914,5960.940511,8770.927713,2760.9191
1369999049362140762618,00013,0811390810,93612,99220,4961.138715,9021.215713,1200.943310,1470.927911,9280.9181
339780082780442928649,74421,5412608019,14724,35650,3241.011729,7761.382324,7000.947117,7660.927922,3040.9157
1766217207152460600549,74421,5412608019,14724,35650,3241.011729,7761.382324,7000.947117,7660.927922,3040.9157
905569421266359031412,4889,872103168,7649,58414,0481.124911,7041.18569,6880.93918,1330.92808,7240.9103
35133189904901608524,3562,47335082,1973,0405,7881.32873,9051.57913,3480.95442,0390.92812,8280.9303
179119286224483836663,6001,41222081,1151,8204,2281.17442,3551.66782,1280.96381,0350.92831,6640.9143
838836600579656168113,3209,794101848,7029,56013,8721.041411,6271.18729,5600.93878,0780.92838,5720.8967
44204019107208023816,12012,4361231210,07111,44418,6561.157315,2541.226611,5920.94159,3490.928310,4840.9161
1314075884359666616116,12012,4361231210,07111,39218,6561.157315,2541.226611,5920.94159,3490.928310,4960.9213
526034129303766275928,84011,9651522810,38113,76838,1201.321826,0822.179914,4840.95119,6390.928512,5160.9091
1635145118721332474630,48418,1292053615,39419,10037,6361.234628,2691.559319,4360.946414,2950.928617,2400.9026
390101579801789931419,56015,5571606013,93515,18429,0281.48425,5711.643715,0680.938212,9420.928713,8600.9128
1537318518342133589716,1968,863114767,52310,00019,5761.208712,5431.415210,9400.95336,9870.92889,3040.9304
423737563100051136611,3169,23389647,6448,34013,2081.167211,4001.23478,4240.93987,1020.92917,5920.9103
357226816256944222820,12816,0221638814,09215,34424,1201.198320,3591.270715,3920.939213,0940.929214,1720.9236
1527626699203252810723,11218,6571887616,25317,92035,9561.555731,8241.705717,7280.939215,1060.929416,4960.9205
383418019939776073112,8929,88399128,3559,20420,0761.557217,3331.75389,3240.94077,7670.92968,3520.9074
163494676345620113916,4564,69054164,1654,8927,2721.12645,5081.17445,1240.94613,8730.92994,5800.9362
620963257984565966518,78014,4341490812,38713,90823,5401.253519,5531.354614,0400.941811,5190.929912,7880.9195
70556631125668313046,8243,68942242,7413,73226,8843.939624,2506.57364,0320.95452,5490.93003,3880.9078
1072895631520130152912,4609,70995007,9098,86415,8521.272213,3761.37778,9440.94157,3560.93018,1520.9197
297481433155870645068,91224,2804060420,70333,76869,5001.008532,2451.32839,1560.964319,2560.930131,6160.9363
173426606942880894414,1682,32229041,8492,5446,1161.46744,5441.95692,7720.95451,7200.93022,2440.8821
1063085903395184082516,49612,5981300810,50311,84819,7961.216,1901.285112,2760.94379,7710.930310,9400.9234
1824268852921118613223,87218,1811918816,60017,82839,8441.669135,5711.956518,0360.9415,4460.930516,3360.9163
20425752685287829599,0046,24569725,6126,43611,2081.24488,7241.3976,5840.94435,2230.93075,8760.9130
1502125593199468974517,73613,6611418011,76713,32822,8521.288519,0661.395713,3680.942710,9530.930812,3000.9229
773359014624991755952,74026,0752834018,53924,96085,7121.625261,4762.357727,0600.954817,2570.930823,2560.9317
84561523325566154846,0323,69744363,1114,0008,4961.40856,4331.74014,2200.95132,8960.93093,6440.9110
114357265103144182717,11212,5241330010,58012,13219,8721.161315,5861.244512,5720.94539,8490.930911,2560.9278
232208959119307672622,63618,5171856416,41517,59628,8481.274425,3191.367317,4360.939215,2860.931215,8840.9027
135957521445234474947,74428,9422890823,35226,42042,3360.886732,5831.125827,3040.944521,7460.931223,9120.9051
98255307929800935879,8047,00978286,0307,00410,0081.02087,4611.06457,4120.94695,6160.93136,4720.9240
143590793985057830006,4762,99046002,5223,9646,5001.00373,2921.1014,4280.96262,3490.93143,7120.9364
1389364933807820452311,8209,89598328,6459,20420,1201.702218,4661.86629,2360.93948,0520.93148,2200.8931
1148078224502917252414,35211,8631196810,44511,12816,1401.124613,9241.173711,2480.93989,7280.931410,2920.9249
381457160547713337925,17622,1072141619,41020,21232,6081.295229,8131.348620,0840.937818,0780.931418,4920.9149
150321183004809680317,03612,4791324010,54312,14819,7481.159215,4931.241512,5200.94569,8210.931511,2400.9253
648705082329494462317,03612,4791324010,54312,14419,7481.159215,4931.241512,5200.94569,8210.931511,2440.9259
987423343661112144815,77211,9911281210,58411,90419,2601.221215,7551.313912,0920.94389,8610.931710,9360.9187
906882573070142146916,61610,759123888,99211,26018,8121.132213,5671.26111,7760.95068,3800.931910,3480.9190
1508550894275585752818,84814,50695567,7258,57217,1600.910413,7410.94739,0280.94477,1990.93197,6120.8880
152239722922238952311,2929,10088407,4948,37213,6681.210411,7491.29118,3320.94256,9860.93227,6000.9078
113567878392841043683,84499420129311,5642,7800.72321,1751.18211,9480.96828680.93231,4880.9514
293810736660117127416,26013,2681292811,05011,92419,1561.178116,4291.238212,1840.942510,3050.932611,0240.9245
93779722385817341659,0002,57254242,1704,13210,0401.11563,8911.51285,2760.97272,0240.93273,8800.9390
1259242038341772767317,68414,6981459612,80113,87621,8481.235519,1501.302913,7320.940811,9400.932712,3840.8925
757715080145055065014,3408,800100766,9768,50014,8401.03499,5531.08569,6080.95366,5070.93287,9040.9299
1493320397029581293324,90420,8231987217,56318,44434,4281.382430,6411.471518,7000.94116,3890.933216,9880.9211
817883948075428198737,48819,1212218816,74420,72838,0441.014826,1141.365721,0720.949715,6260.933219,0360.9184
227978386572352566518,57212,537118288,82810,81634,1001.836128,5482.277111,2400.95038,2390.93339,9560.9205
1107789550805267579737,54419,1292220016,75320,61638,1001.014826,1221.365621,0800.949515,6350.933318,9440.9189
477193142403917163122,81618,6861886416,67617,86029,5761.296325,9961.391217,7560.941315,5660.933416,3160.9135
760802517309228448638,77618,9732244016,73620,89639,4481.017325,9711.368821,3280.950415,6210.933419,1400.9160
1529478432823817372923,78019,3511950817,13218,67633,3241.401329,4771.523318,3680.941615,9920.933516,9640.9083
1074958028096566845016,91613,3171364811,44612,81221,3361.261318,0191.353112,8880.944310,6860.933611,8000.9210
9806184599379484963387,528377,612279904273,955250,936444,2121.1463434,5541.1508261,7120.935255,7640.9336236,2200.9414
5242677758875989676387,572377,612279920273,955251,092444,2561.1463434,5541.1508261,7280.935255,7640.9336236,3280.9412
11578498338317499572391,507377,600282440273,943251,136448,1881.1448434,5421.1508264,2440.9356255,7460.9336236,3320.9411
139710159375214424417,04814,2751385212,08712,82820,9441.228518,4431.29213,0520.942211,2860.933711,8040.9202
927509028818608648317,92413,6301442011,87413,63222,7441.268918,7481.375513,6320.945411,0870.933712,4400.9126
1735031090736848939019,10811,318134969,78712,59621,3561.117615,1281.336612,8480.9529,1380.933711,5120.9139
86256983946307845825,6803,57642443,1333,8005,8641.03244,0151.12284,0360.9512,9260.93393,5400.9316
206731713303971038016,64810,712123048,87911,34819,2441.155913,8731.295111,7160.95228,2920.933910,3840.9151
145437894808855815406,6764,95456644,4375,1767,4961.12285,7751.16575,3680.94774,1440.93404,8840.9436
135936268630885898859,7207,29779766,6357,39212,4241.278210,2731.40787,5400.94536,1970.93406,8400.9253
653379817423918047016,3208,998116847,72310,23219,3641.186512,3431.371711,1760.95657,2130.93409,4120.9199
421774212907463270811,7607,89687526,9308,12014,7921.257811,9701.5168,2960.94796,4730.93417,5040.9241
5509643666234706298369,344366,541232068230,183193,072478,4961.2955475,9711.2985216,8920.9346215,0070.9341177,5160.9194
39230148674808919816,94014,2191375612,02612,74820,5281.211818,0761.271312,9640.942411,2360.934311,7480.9216
845392483904794905716,94014,2191375612,02612,72420,5281.211818,0761.271312,9640.942411,2360.934311,7560.9239
1472972255882453852017,59213,5071404011,68113,19222,5121.279718,7211.38613,2720.945310,9160.934512,1320.9196
622782819806758456218,15614,1381456812,17713,61223,2241.279119,4821.37813,7680.945111,3790.934512,5480.9218
1329320695408259831313,14010,10399968,2809,49620,6801.573817,9291.77469,4560.9467,7390.93478,6840.9145
1086796006464301599117,85613,8351441612,03313,61622,9201.283619,1881.386913,6280.945311,2470.934712,5240.9198
1712659606870749658418,69213,6891465211,66013,60021,7041.161117,0521.245713,8920.948110,8990.934712,6800.9324
1266841976519067476614,84011,2451190010,04711,15216,5961.118313,5391.20411,2480.94529,3930.934910,0680.9028
14199504257725658292370,776366,557272144269,530244,204393,6121.0616389,9471.0638254,6040.9355251,9910.9349229,7600.9409
1394428085003293366916,5529,182118687,89110,39220,1721.218713,1021.426911,3560.95697,3800.93529,6160.9253
1831499340495611731218,98814,3771500412,35714,00424,0321.265619,7531.373914,2000.946411,5560.935212,9440.9243
1308669175265011541524,41221,4942052818,66719,47630,1801.236327,5351.281119,3200.941217,4580.935218,0040.9244
1702443584864133191322,04417,9371814016,00117,28828,8001.306525,3001.410517,1040.942914,9670.935415,6880.9075
1179892175849526816228,97623,1482430421,00522,83642,7441.475237,2251.608122,9480.944219,6490.935421,0360.9212
1575257055237703299216,70412,2551281210,39411,86019,0921.14315,1641.237412,1400.94759,7240.935510,9200.9207
835857945925141902021,72815,7311679213,31515,49625,7801.186520,3691.294815,9360.94912,4580.935614,4640.9334
1092516124256288911920,39211,527106168,6979,55216,2480.796813,1451.140410,0560.94728,1380.93578,8920.9309
798491408387677115321,32811,527106168,6979,64816,2480.761813,1451.140410,0560.94728,1380.93578,9200.9245
1736698402638437248621,32811,527106168,6979,64816,2480.761813,1451.140410,0560.94728,1380.93578,9200.9245
60721179019000666522,72818,5701884416,61217,82828,7481.264925,1691.355417,7800.943515,5460.935816,1320.9049
1801444137714351677812,9329,740103208,3449,27614,0761.088511,1011.13979,7880.94847,8090.93598,6320.9306
509945530164196969514,66011,1481191210,06811,12015,8201.079112,8551.153111,2680.94599,4230.935910,0920.9076
1654924835951898221819,46015,6261594813,52314,94423,9681.231720,4071.30615,0800.945612,6560.935913,5960.9098
1045089679551782304622,93217,1371811615,17816,78847,2322.059741,8142.4417,1440.946314,2050.935915,4240.9188
145743724490397741389,7485,61057404,2665,30811,1561.14448,6701.54555,4680.95263,9930.93604,7400.8930
315256121856324384741,55220,6662602418,45423,86044,1201.061828,9301.399924,8440.954717,2730.936022,1640.9289
1766592388461072281812,6729,286100488,2909,45614,2601.125311,5151.249,5160.94717,7600.93618,6120.9107
999507845162405349919,07614,6341509612,49714,05223,5161.232819,4551.329414,2960.94711,6980.936112,9520.9217
530446893440025205539,21220,8222399618,46822,38041,0361.046529,0811.396622,8160.950817,2880.936120,5760.9194
1494776206364052391339,26820,8302400418,47822,27641,0921.046529,0891.396522,8240.950817,2970.936120,6120.9253
341265115554757560010,4607,79179126,4597,42812,7121.215310,3151.3247,5000.94796,0470.93626,6880.9004
360375684102647676514,81211,3191160410,10310,83615,1881.025412,9651.145410,9600.94459,4580.93629,9000.9136
110014810789645735817,28811,745126329,52811,08417,8841.034512,5971.072512,0240.95198,9200.936210,2160.9217
1740832418172228856119,53214,9331522012,44714,20822,5201.15318,2221.220314,4280.94811,6530.936213,1560.9260
53045838936932097968,2606,20366605,3896,2489,1961.11337,4081.19436,3160.94835,0470.93655,8080.9296
73444585551812426289,6366,96959004,3956,8208,5440.88676,1520.88285,6200.95254,1160.93654,9520.7261
1321453709604186433811,6686,53476885,0116,93215,6081.337710,7801.64987,3720.95894,6930.93656,2760.9054
1341402449104281604116,96012,2591336010,30612,44419,7961.167215,3891.255312,7040.95099,6520.936511,4720.9219
28480876926063610517,70813,2381420411,55313,42422,2641.257318,0971.36713,4680.948210,8190.936512,3640.9210
1705521632207879033118,54413,6421421211,25013,18421,5921.164417,0321.248513,4960.949610,5360.936512,2120.9263
109233628403866440615,2643,49041242,9953,7685,3121.00913,7871.08513,9360.95442,8050.93663,5000.9289
1812614408650057619318,08413,5251446411,83413,68022,5281.245718,3101.353813,7120.94811,0840.936612,5760.9193
354769769601952867819,72015,6461622014,07115,39229,3201.486825,7921.648515,3280.94513,1800.936714,0560.9132
704849039667878568422,66018,2691860416,27817,52028,9281.276625,1151.374717,5720.944515,2470.936715,9240.9089
1346628937855376279314,5368,976102327,1268,64014,8121.0199,5061.0599,7800.95586,6760.93698,0920.9366
1254639872502478223830,12817,8542040415,27319,11237,4881.244328,2011.579519,4400.952814,3090.936917,3960.9102
1629465791400031987516,06812,1951283210,65211,87219,6961.225816,1681.325812,1640.94799,9810.937011,0240.9286
1841548200207156368724,97220,5932113618,51419,92439,4481.579735,3611.717119,9680.944717,3480.937018,4120.9241
467022455817347139421,41616,3991696813,82015,72825,0841.171320,6391.258616,1000.948812,9510.937114,6320.9303
671599383454196579510,6007,99978966,4627,34813,3561.2611,0281.37877,4880.94836,0560.93726,6680.9075
1039697247333858193417,61613,5461415211,78013,43222,1401.256818,3681.35613,4120.947711,0400.937212,2720.9136
105085363528794140117,68813,7811427211,95013,50422,2841.259818,6541.353613,5200.947311,2000.937212,4040.9185
89365095837853460529,61223,0792442820,87222,73243,4281.466637,2091.612223,1240.946619,5650.937421,1960.9324
1121661304361461439747,79628,9582892823,38026,37642,2320.883632,4511.120627,4640.949421,9160.937424,1400.9152
879328132884801431253,40015,2882868813,17224,06458,0281.086720,4521.337827,8640.971312,3470.937423,0440.9576
1532271668374021398114,88812,2371175610,02010,96417,1321.150714,7541.205711,1320.94699,3940.937510,0840.9197
271048782850439615640,20819,7792378817,64921,96039,1720.974225,6481.296722,6840.953616,5460.937520,2200.9208
1633817615885856395641,18819,9272386017,65122,17640,4680.982525,7901.294222,7560.953716,5480.937520,5080.9248
1663981384254216268810,4084,55267323,6875,86011,2441.08035,7251.25776,5040.96613,4570.93765,4640.9324
106642567649820240618,61614,1551483612,23513,92423,6041.267919,4351.37314,0720.948511,4720.937612,7920.9187
817364409476833250221,08414,9561572412,18014,27624,1441.145118,4521.233814,9640.951711,4200.937613,2720.9297
1440075542746855144941,25619,9342386817,65722,21240,5360.982525,7971.294122,7640.953716,5550.937620,5240.9240
1065532838217791906618,35214,1241465612,14513,59223,0521.256119,1371.354913,9000.948411,3890.937812,6080.9276
1743435605814558441510,6888,09285647,1668,12412,7641.194210,4911.29658,1200.94826,7210.93797,3840.9089
1628503706994527986615,27211,4891238010,16211,46419,1601.254615,6561.362711,7480.94899,5310.937910,6080.9253
1076543337982830382914,48410,803119329,69811,10420,1201.389116,7211.547811,3320.94979,0970.938010,3080.9283
1706552610942482377216,87212,7131372411,47813,12822,9281.358919,3561.522513,0120.948110,7660.938011,9840.9129
756465087183906392213,65210,634113529,32110,55216,8321.232914,1001.325910,7720.94898,7440.93819,5920.9090
1410084317022100026223,55219,3321958817,31318,42829,3761.247325,7141.330118,5160.945316,2410.938116,9000.9171
1317469444654121403821,68016,6471655213,79915,25228,2201.301723,5461.414415,7000.948512,9480.938314,0840.9234
1109255404526653509316,48810,909129489,47111,80820,3921.236814,9061.366412,3640.95498,8880.938411,2120.9495
1474561350540547960312,0208,85195567,9139,04813,0921.089210,5441.19139,0680.94897,4260.93858,1840.9045
489255038858360502816,52412,0061264810,39211,68820,4041.234817,0491.4212,0120.94979,7530.938510,9720.9387
1734223508361539729418,80013,9261513212,28814,20823,3001.239418,7411.345814,3760.9511,5320.938513,0800.9206
679623402853828111524,67220,7212082418,43419,38833,0641.340129,1161.405119,6880.945417,3000.938518,1760.9375
111622473714287196437,9924,41261563,8795,4888,1561.02054,8381.09665,9200.96173,6410.93865,0960.9286
440861076564695035322,36818,2461846416,27717,67628,9041.292225,3311.388317,4640.945815,2780.938615,9920.9047
1771103816644008574012,7809,707103728,7029,74014,2161.112411,6781.2039,8400.94878,1690.93878,7760.9010
751753675762302161432,01219,1592046017,16719,05633,8681.05827,9561.459219,4080.948616,1140.938717,6560.9265
1811520698874385264835,96017,7672298415,08020,47238,6841.075822,4971.266222,0600.959814,1550.938719,0320.9297
581020358361557147946,75227,8172822422,59426,20841,2280.881831,3251.126126,8400.95121,2120.938823,9080.9122
1580940155410817048611,2088,25290687,2028,42814,4641.290511,7811.42778,6280.95156,7620.93897,7520.9198
1464482309139496449718,89613,8541477611,75013,78821,6841.147516,9891.226314,0560.951311,0320.938912,7840.9272
1462837458867824036424,21218,0771914015,88317,70832,6841.349926,8741.486618,1720.949414,9130.938916,3000.9205
400390160528939718615,87612,1171284410,58511,98819,1281.204815,6451.291212,1960.94959,9390.939010,9360.9122
1788857617152478348916,10012,1851240410,24211,50019,7121.224316,1411.324711,7800.94979,6170.939010,6880.9294
1274902621803604519213,45611,675110809,95710,30818,4161.368616,9071.448110,4720.94519,3510.93919,5200.9236
1842285119182416716018,88814,2131457211,78113,48422,0321.166517,6711.243313,8520.950611,0630.939112,5600.9315
988733791129587283524,36020,2052050018,08219,25637,5481.541433,6831.667119,4000.946316,9810.939117,8720.9281
776605950439594846021,31617,3421765215,35516,72429,6361.390325,9601.496916,7200.947214,4220.939215,4000.9208
1655508235168671264525,84818,4252103616,58819,40835,7201.381928,4941.546520,0280.952115,5800.939218,3000.9429
101684808966183448134,1402,30030641,9272,7284,2961.03772,7011.17432,9480.96211,8100.93932,5080.9194
453959686151563879412,7409,44998527,8179,12017,0881.341314,0821.49039,3760.95177,3430.93948,3960.9206
463725863653725182317,62013,5951402811,70212,94821,9401.245218,2581.34313,3240.949810,9970.939811,9880.9259
83986120026193181123,00020,7892003218,63218,95232,0241.392330,0871.447318,9120.944117,5100.939817,5320.9251
337918907241961020644,18823,0722655620,58324,79244,8841.015830,4061.317925,3160.953319,3430.939822,8920.9234
1793749066853310051444,18823,0722655620,58324,79244,8841.015830,4061.317925,3160.953319,3430.939822,8920.9234
1309722619928701606012,7409,45398487,8189,06017,0841.34114,0831.48989,3760.95217,3480.93998,4120.9285
1767366773576432427818,48813,8371455611,74713,53621,0201.13716,6891.206113,8520.951611,0410.939912,6400.9338
1106821709385324729719,84814,8321536012,26214,20422,5321.135218,0871.219514,6240.952111,5250.939913,2600.9335
709175367724805298815,4045,30988004,5728,08016,9601.1017,2241.36078,5280.96914,2980.94017,7000.9530
171855387026434409437,23618,8292241616,48820,46834,7200.932422,3711.188121,4320.956115,5020.940218,9400.9253
877253576169934466640,21218,9782272816,49921,00437,1640.924222,5141.186321,7400.956515,5120.940219,3600.9217
872659091763873076840,21218,9782272816,49921,00437,1640.924222,5141.186321,7400.956515,5120.940219,3600.9217
89561202793242037760,03222,9243492020,57430,37659,7400.995130,2641.320233,6880.964719,3430.940228,5320.9393
62755151104827816286,9445,26752124,0854,61211,4041.64239,9771.89424,9680.95323,8410.94034,2560.9228
25613367070610697278,2726,01660644,8065,4448,5321.03146,5431.08765,7760.95254,5190.94035,0320.9243
1103245541456698893414,82812,0901176810,23511,07218,6921.260616,2261.342111,1560.9489,6240.940310,0480.9075
1433359066428896556515,60011,5771262010,22211,78421,4281.373618,0001.554812,0080.95159,6120.940310,8800.9233
961136768694068124016,40810,621122008,90111,17618,6921.139213,5151.272511,6680.95648,3700.940310,3240.9238
1724020005702760585716,25613,2021293611,09712,04018,6561.147615,8691.20212,2720.948710,4360.940411,2240.9322
1570997771202225931119,10415,6291564813,64914,80422,3961.172319,1951.228214,8320.947912,8360.940413,5760.9170
1786166760680333910521,76016,9891753215,32116,66027,0161.241523,0451.356516,6160.947814,4080.940415,1640.9102
1253461714848198711022,70818,3461870016,34617,94833,1161.458329,3391.599217,7240.947815,3720.940416,3160.9091
1742245599476031049323,35220,3701939617,51418,03632,5161.392429,8371.464818,3520.946216,4710.940416,7360.9279
1367663027975114045711,1928,59689647,5598,50012,8161.145110,5441.22668,5160.957,1090.94057,7160.9078
345372298125443470313,56810,096108849,03710,18414,9481.101712,0091.189510,3440.95048,4990.94059,3000.9132
135222695262475973115,32012,5491229210,72111,53618,5681.21216,0711.280711,6520.947910,0840.940610,6080.9196
1417898053603407993618,73611,625127929,54811,44821,5641.150915,6311.344612,2280.95598,9810.940610,5880.9249
1185803710388028513613,92410,393103928,4999,77219,3521.389816,1111.55029,8880.95157,9960.94088,9040.9112
102255157959285114516,50412,1031264010,32611,75619,6441.190315,7621.302312,0280.95169,7150.940810,9360.9302
937595222966819030818,29613,6131394011,13712,82020,4321.116716,0611.179813,2800.952710,4780.940811,8120.9214
730407041863218827416,50812,7811316810,91812,33220,0441.214216,5951.298412,5240.951110,2730.940911,3320.9189
1482541766362210677228,38814,1131912812,04515,87632,5961.148218,6931.324518,4160.962811,3330.940915,0560.9483
436398697769020592010,6324,57867563,5445,35211,2521.05835,4721.19536,5480.96923,3350.94105,0560.9447
1381427274570571612717,65213,8261430812,04213,68421,8361.23718,2931.323113,5960.950211,3310.941012,4520.9100
95184503452944462918,4805,63861764,7535,73615,9241.877813,3492.36775,8960.95474,4730.94115,3040.9247
544000805153123982016,33611,9131265210,32611,88418,9561.160415,0551.263712,0440.95199,7180.941110,9440.9209
145310980301818511018,41213,7681450411,68813,60020,9881.139916,6631.210313,8200.952811,0010.941212,6040.9268
1581534018592499857311,1088,50989447,5468,47212,7801.150510,5061.23478,5000.95047,1030.94137,7240.9117
1352278309276097864218,68414,8761514412,71514,10822,0121.178118,5251.245314,4000.950911,9690.941312,9960.9212
70157968425879017706,0524,25544163,3283,9926,2241.02844,6051.08234,2240.95653,1330.94143,6680.9188
577275945274989931812,9568,792100527,4029,10415,7521.215811,6771.32819,6160.95666,9680.94148,6480.9499
487625969095690419114,96413,2121225611,20611,60816,1961.082314,7161.113811,6000.946510,5510.941510,9400.9425
43739708028551862095,0682,21034641,9193,0925,8201.14843,2341.46333,3520.96771,8070.94162,8360.9172
118271923471191411616,12011,7181242410,10611,59619,1001.184915,2181.298711,8320.95249,5160.941610,7520.9272
1227290699730970310147,90419,8603148817,51623,86454,9161.146427,7351.396530,4680.967616,4930.941622,9320.9609
98398831055391827308,7846,36471405,7996,58010,4561.19038,3061.30526,8040.95295,4610.94176,1560.9356
676580990719422547211,2728,38152283,7614,84411,3441.00648,8591.0575,0080.95793,5420.94184,2600.8794
1306447818979785081823,09618,9331928817,01918,15628,9801.254825,3771.340418,2960.948616,0280.941816,6680.9180
510915707090605732550,28829,4333144424,79629,31249,6120.986635,8421.217730,0040.954223,3540.941827,3600.9334
1723766574323042805114,84411,7681189610,12011,09224,2601.634321,4711.824511,3080.95069,5320.941910,2760.9264
640421842781472674915,43211,6361251210,27411,58419,1441.240515,6241.342711,9160.95249,6770.941910,7480.9278
1791561544815082530016,70012,5311352811,25212,94822,6201.354519,0151.517412,8760.951810,5980.941911,7880.9104
35537449605630925194,4362,96233802,5183,1604,7001.05953,4731.17253,2320.95622,3720.94202,8920.9152
775888875428189549022,22817,0411774415,40816,85627,6401.243523,2541.364616,8520.949714,5140.942015,4960.9193
175744115825900859831,28020,1422141218,25320,18035,4881.134529,9581.487320,3520.950517,1950.942018,7680.9300
117912766980964702132,21620,1422141218,25320,43635,4881.101629,9581.487320,3520.950517,1950.942018,7520.9176
154702171605805393111,3447,97989727,1628,34811,8361.04349,0081.1298,5560.95366,7470.94217,6640.9181
1373379767332494717814,58810,864118409,64011,07617,2081.179613,7591.266511,2840.9539,0820.942110,2840.9285
1731935338671912018115,84013,0681273610,99011,92018,2361.151315,7311.203812,1000.950110,3540.942111,1840.9383
909237314050206059519,64815,5131626813,92915,32440,7162.072336,8562.375815,4600.950313,1220.942114,0120.9144
1465810207608447663229,01222,9062416020,82022,74041,3121.42435,5601.552422,9560.950219,6150.942121,1640.9307
108930881318563251426,9763,95550563,2504,4807,8881.13075,1391.29944,8680.96283,0620.94224,0960.9143
92274867372619287119,3167,23373606,0726,77610,1601.09068,3461.15397,0120.95275,7210.94226,3240.9333
1280778140274349966016,14012,3111278010,64811,89218,5641.150215,0791.224812,1680.952110,0330.942211,0360.9280
635322592316396351016,43613,3741298011,13811,99619,0241.157516,2341.213812,3360.950410,4940.942211,1480.9293
1200215474881378487017,41215,0301422812,69413,41220,6161.18418,5041.231113,4960.948611,9620.942312,4360.9272
1447666253792102312321,56419,2341845216,97817,52430,1681.39928,1101.461517,4720.946915,9980.942316,1640.9224
547452083513735441216,03611,625123329,99711,54019,1601.194815,2691.313511,7560.95339,4210.942410,6720.9248
367697782970978569523,36419,2811988817,51518,64035,8041.532432,0121.660318,8800.949316,5060.942417,4520.9363
26050344885041539248,2765,96865565,1866,14410,3601.25188,3201.39416,2560.95424,8880.94255,6560.9206
584225690791438814018,10413,5011416011,18313,06820,8441.151316,5401.225113,5160.954510,5400.942512,1200.9275
365538657379247983539,15217,8612198015,90120,44436,5480.933521,8411.222821,0640.958314,9860.942519,0520.9319
603945004514488797917,46015,0731426812,71613,54420,6361.181918,5201.228713,5400.94911,9860.942612,3760.9138
349498672521584201717,46015,0731426412,71613,55220,6361.181918,5201.228713,5360.94911,9860.942612,4080.9156
1319395330680645868739,08017,8532198015,89020,33236,4760.933421,8331.222921,0680.958514,9780.942619,0080.9349
47141574089994191734,5483,25937362,8293,4244,5040.99033,4001.04333,5720.95612,6670.94273,2160.9393
679365374636796616818,06413,5571399611,28313,08420,6361.142416,4251.211613,3520.95410,6370.942712,2200.9340
726916072250133034330,20818,9142014016,91218,92032,5721.078326,7941.416619,1720.951915,9440.942817,6160.9311
488587964649966464231,23618,9142014016,91218,93232,5721.042826,7941.416619,1720.951915,9440.942817,5160.9252
49777864556329864852,47617,7122967615,88825,64450,3080.958721,6981.22528,7680.969414,9790.942824,2160.9443
1649606130074537375613,7769,256102407,9379,38815,5121.12611,5431.24719,7840.95557,4840.94298,5920.9152
500844995112123701723,86019,6641998817,55418,84435,6801.495431,7811.616218,9840.949816,5520.942917,5200.9297
1783604114026825072624,21219,5891854415,89717,28435,3321.459330,9911.582117,6360.95114,9890.942916,0720.9299
1791991196053044082926,00818,6042122416,76119,39635,3641.359728,1561.513420,2680.95515,8050.943018,5440.9561
929359411333115394645,75226,9452778422,12525,64840,0440.875230,2501.122726,5240.954720,8660.943123,5120.9167
275054427902960587418,82014,3201506412,86014,43623,2321.234419,5201.363114,3360.951712,1300.943213,0680.9052
1091403855634432918818,87214,0211473211,84013,70821,1961.123116,6571.18814,0600.954411,1680.943212,7720.9317
920212469004854379331,92018,6702054016,91019,48435,8881.124328,2661.51419,5800.953315,9490.943218,1680.9325
904884401028315476019,86415,0771568012,97214,78823,0481.160318,6151.234714,9440.953112,2360.943313,7000.9264
901511751093773182019,86415,0771568012,97214,68023,0481.160318,6151.234714,9440.953112,2360.943313,6720.9313
158906116659501034512,3328,92997687,9319,10414,0921.142711,2251.25719,3200.95417,4820.94348,3440.9165
1284858428357878170918,89214,0221474011,83613,73221,2201.123216,6611.188214,0720.954711,1660.943412,8040.9324
33692058126601868438,33225,9562872822,00626,04453,9721.40842,3601.63227,4840.956720,7610.943424,2440.9309
253810803321358974513,54010,245108289,11010,12014,9841.106612,2251.193310,3120.95238,5950.94359,3040.9194
1661434019887236716615,54411,7631268810,44011,78818,0041.158314,4971.232412,1000.95379,8500.943510,9280.9270
1829433954675246295917,70413,2401402011,47613,31622,0481.245417,9881.358613,3720.953810,8280.943512,3120.9246
889394732184383993817,75213,6211411611,74913,28422,4201.26318,5791.36413,4520.95311,0850.943512,3240.9277
1712386792501114032748,45630,1773098025,42228,84044,8120.924835,0271.160729,5440.953623,9860.943526,5800.9216
1765623268621297955312,9249,708104768,5419,82419,0001.470116,0641.65479,9920.95388,0590.94369,0680.9230
526799368072258219719,96815,1171584813,00114,84823,1521.159518,6541.23415,1120.953612,2680.943613,8040.9297
948039110080551779819,96815,1171584813,00114,83623,1521.159518,6541.23415,1120.953612,2680.943613,8080.9307
789937574185804155521,01616,9891745215,13516,50429,8401.419926,1041.536516,6000.951214,2820.943615,4560.9365
61099693358676960817,40410,554116488,49210,38419,1561.100713,4241.271911,1720.95918,0140.94379,6400.9284
395938482897377283624,88820,4652109618,43119,90838,1081.531233,9611.659520,0600.950917,3930.943718,6160.9351
915510228731133336531,36419,8702133617,97720,14834,9121.113129,0261.460820,3200.952416,9640.943718,6080.9236
46192503907950727119,09614,3731538012,54014,41223,8921.251219,4711.354714,6760.954211,8350.943813,2800.9215
90693549954202752529,5365,85170644,8476,3489,7801.02566,3801.09046,7920.96154,5750.94395,9120.9313
1682717538148133728516,94813,3471377211,67512,78427,4641.620524,1351.808313,1160.952411,0200.943911,9080.9315
186058221570638079517,08812,9111372411,34213,00821,2921.24617,4091.348413,0880.953710,7060.943912,0800.9287
619174994717899295615,25211,4721240410,13411,48818,2281.195114,7241.283511,8360.95429,5660.944010,7320.9342
1376380942401722235615,92411,008125449,76011,69619,8401.245915,3821.397312,0000.95669,2130.944010,8680.9292
1086557774944256788715,96812,2441289210,64611,94819,1761.200915,7261.284412,2960.953810,0510.944111,0560.9253
748847290962000109726,66022,2952280420,18921,56838,4601.442634,4231.54421,6720.950419,0600.944119,9320.9241
1447707120241945341212,4208,95998608,0129,26414,1921.142711,2681.25779,4160.9557,5650.94428,4320.9102
384349789745816155015,57612,8091291611,13812,26021,8441.402419,3581.511312,2920.951710,5160.944211,3720.9276
33269466246121195754,8682,41330641,8682,6685,1561.05922,9511.2232,9600.96611,7640.94432,4120.9040
129937006950617149413,28411,68680167,0947,37618,4321.387517,1961.47157,6200.95066,6990.94436,7640.9170
147097076999006489617,62013,3611410411,61313,32022,0321.250418,0911.35413,4560.954110,9660.944312,4040.9312
1405421438173785721222,72419,3501962417,62418,57234,7481.529131,6491.635618,6440.950116,6420.944317,2840.9306
869304563374159304824,49618,6551963216,32918,30430,0201.225524,7101.324618,7200.953515,4190.944316,9840.9279
358085100571976527312,3369,415101568,3589,41218,5681.505215,9131.69029,6920.95437,8930.94448,6560.9197
127595293486965006418,19213,9371438411,75613,53620,8121.14416,8531.209213,7320.954711,1020.944412,6240.9326
660988809497677491539,54827,1133002423,18327,25657,3561.450345,6681.684428,7360.957121,8950.944425,6960.9428
1423768855996009778617,45212,0751339610,05812,45220,4721.17315,3781.273512,8360.95829,5000.944511,6520.9358
134495620382321726547,92829,5633069625,06928,88443,6280.910333,7361.141229,3040.954723,6770.944526,4800.9168
705953869943109051020,82815,8011623613,31314,96022,9801.103318,5771.175715,4960.954412,5760.944613,8880.9283
39899367444840841520,82815,8011623613,31314,94822,9801.103318,5771.175715,4960.954412,5760.944613,9440.9328
72646997992713377076,9923,96350803,2544,4727,9321.13445,1731.30534,9000.96463,0740.94474,1400.9258
1232848668919137368512,2849,973104648,8539,69214,0321.142311,7241.17569,9720.9538,3630.94479,2000.9492
220243927495670625115,73212,9851264410,90711,86818,1441.153315,6651.206412,0400.952210,3040.944711,0800.9336
365276326107158566018,99215,1241540013,12714,34820,5441.081716,9791.122714,6760.95312,4010.944713,3520.9306
1276351329955963394211,1088,51189687,5728,47612,8361.155610,5631.24118,5520.95367,1540.94487,7640.9160
1197388711842140045316,08413,3161283611,09811,92818,6961.162416,1971.216412,2240.952310,4850.944811,1680.9363
168292707041736184916,08413,3161283611,09811,88818,6961.162416,1971.216412,2240.952310,4850.944811,1640.9391
1165267548382702186918,06015,6721496813,41513,88420,9201.158418,8041.199814,2280.950612,6750.944812,8880.9283
1384447631255174104537,21617,1852177615,42319,99235,7480.960622,0871.285220,9240.960914,5720.944818,7240.9366
995292056411844260911,0248,42688447,4448,41213,1841.195910,9121.2958,4360.95397,0340.94497,6960.9149
223833208095159601912,68810,131103968,7439,89216,6281.310514,3461.4169,9160.95388,2610.94499,1840.9284
1119303525765385631319,92413,9251496011,52413,84822,7921.143917,3841.248414,3280.957810,8890.944913,0400.9417
987036849445168405227,88423,4962134418,75019,82044,2161.585740,0971.706520,3120.951617,7170.944918,4640.9316
384493910276852849336,20018,2742341215,54321,10038,8241.072522,8011.247722,5560.963414,6860.944919,5760.9278
429584931034137192638,56417,3342156815,43120,05236,8760.956222,2301.282520,7160.960514,5800.944918,7480.9350
1226356604001407890638,56417,3342156815,43120,05236,8760.956222,2301.282520,7160.960514,5800.944918,7480.9350
820796607213098927341,20832,9783347229,31030,96048,8001.184240,8471.238631,8560.951727,6960.944928,6360.9249
148141899241014635812,9401,15619529451,6603,4761.18231,9381.67651,9000.97348930.94501,4680.8843
616719122647640423222,23617,4511850815,71717,42831,3161.408326,8071.536117,6440.953314,8530.945016,2840.9344
982656878662501860925,37620,3692116418,43319,85234,1681.346529,5621.451320,1480.95217,4200.945018,5320.9335
452762203534510793331,26418,2061946816,18818,34834,5121.103928,3941.559618,5800.954415,2980.945016,9800.9254
834857852976472669016,9607,96083086,6877,60412,4720.735410,0041.25687,9400.95576,3200.94517,0320.9248
1438217449061943828419,32815,0621536012,69614,50422,6441.171618,6751.239914,6640.954711,9990.945113,5000.9308
1238387731105346425323,76418,7551958416,87518,45632,8841.383828,2731.507518,6600.952815,9490.945117,0360.9231
61510019954979312244,5843,05134522,6113,2165,1961.13353,9101.28153,3080.95832,4680.94522,9560.9192
780117373011524544511,6768,21390607,1318,33612,9121.10599,7181.18328,6680.95676,7400.94527,6080.9127
902060049133658589220,73615,9271587213,26014,74026,1281.2621,5991.356115,1480.954412,5330.945213,6400.9254
99942431899869257139,1407,53565405,6536,06411,7801.288810,5781.40386,2280.95235,3440.94535,4840.9044
103291741865534348249,6887,36369645,7966,65621,4402.21319,3872.6336,6480.95465,4790.94536,0440.9081
274878233560978224917,52412,7841332010,51611,81218,2281.040213,7591.076312,7480.95719,9410.945311,0040.9316
900796229284367439151,68431,0293176825,20729,29651,0920.988537,4971.208530,3920.956723,8290.945327,4280.9362
1488536615273696413816,35212,0021275610,07811,95618,8321.151714,7821.231612,2040.95679,5280.945411,1440.9321
347749792564878546016,48012,0501289210,10912,02818,9601.150514,8291.230612,3400.95729,5570.945411,2520.9355
1315865807057785881912,3929,11599648,2099,29613,4201.08310,7291.17719,5160.9557,7620.94558,6240.9277
1390711486620500797351,36033,1283401228,48931,61648,1280.937138,3851.158732,4560.954326,9350.945529,1800.9230
1157691295251712248717,08813,4281430012,06813,24023,5921.380620,2111.505113,6440.954111,4110.945612,4080.9372
1552491687881128721412,6724,31647563,1144,0247,3520.58024,6831.0854,5880.96472,9450.94573,7680.9364
264478526562664910813,6084,31647563,1144,1207,3520.54034,6831.0854,5880.96472,9450.94573,7800.9175
1447916652095239983513,6084,31647563,1144,1207,3520.54034,6831.0854,5880.96472,9450.94573,7800.9175
812240816601752737315,45611,00991327,4157,54440,2042.601236,0303.27288,7280.95587,0120.94577,1200.9438
1063100665379521101617,35613,7091394411,83713,10422,0321.269418,6631.361413,3000.953811,1940.945712,1240.9252
83051546185257409617,4049,308124368,11510,39218,1041.040210,1601.091511,9960.96467,6740.94579,8520.9480
1402279646364856548824,37620,2712062018,22919,40036,0561.479232,2391.590419,6280.951917,2400.945718,2280.9396
268583689698560921615,20812,6751277611,23511,99216,4441.081314,1811.118812,1680.952410,6260.945811,1160.9270
438927361588934698817,26411,993131649,95612,18819,8321.148714,8671.239612,6240.9599,4160.945811,3920.9347
1721870230039455408718,67614,0851480812,08013,95223,4921.257919,1891.362414,1560.95611,4250.945812,8720.9226
11562355643271367508,5246,71068605,6366,2048,8881.04277,0731.05416,5560.95575,3310.94595,8040.9355
1332952647499475327723,84819,3021892416,60917,67637,1121.556233,5431.737818,0240.952415,7110.945916,3400.9244
798034143979654087832,28420,7632168818,38320,32435,9041.112129,9891.444320,6960.954317,3890.945918,9160.9307
1080527550230058354011,4928,44792127,5048,53617,3601.510614,5811.72628,8080.95617,0990.94607,9120.9269
371262130393112305924,00019,8112019617,76818,99635,8201.492531,9181.611119,2360.952516,8080.946017,8000.9370
431140168684284077330,13218,8082026817,02819,12433,3161.105727,5051.462419,3480.954616,1080.946017,8320.9324
1148351571297882908431,16018,8082026817,02819,29233,3161.069227,5051.462419,3480.954616,1080.946017,8960.9276
85845074725575626374,6362,99336762,6363,3444,6721.00783,3011.10293,5360.96192,4940.94613,0840.9222
118262649884082492177,6245,28761684,7705,80415,6242.049313,5572.56425,9120.95854,5140.94635,3680.9249
1657192878469204878533,54822,8652304818,13421,35645,0481.342835,9821.573722,0760.957817,1610.946319,8160.9279
986816385769542940529,00817,8241915215,96418,10032,9921.137327,3221.532918,3000.955515,1090.946416,8080.9286
914092885524237517230,03617,8241915215,96418,16032,9921.098427,3221.532918,3000.955515,1090.946416,8760.9293
41919608196473560849,5205,92869085,3876,34812,0041.26099,6851.63386,6200.95835,0990.94655,9960.9445
53895297042385751812,7929,84199648,1349,12418,1281.417115,4641.57149,5280.95627,6990.94658,5040.9320
619757322501392856225,29619,4762046817,12719,03230,4201.202625,1301.290319,5520.955216,2100.946517,8320.9369
821186109627613551127,22822,6362061218,10219,17239,8521.463635,7751.580419,6440.95317,1330.946517,8960.9334
1217490663541286549116,95614,5251383212,26513,05620,0681.183517,9061.232813,1760.952611,6100.946612,1400.9298
538810264351820651716,95614,5251383212,26513,01220,0681.183517,9061.232813,1760.952611,6100.946612,1240.9318
1363365994201694680217,61613,2281362810,91412,52420,0681.139215,9791.20813,0440.957110,3310.946611,7400.9374
1072965915504528234612,8089,85099688,1369,09218,1441.416615,4721.57089,5360.95677,7020.94678,4840.9331
560005676726495716418,62014,5881482012,43013,89623,5681.265719,8301.359314,1560.955211,7680.946712,8520.9249
845577674064104089432,29220,8532185218,55820,58835,3961.096129,5661.417820,8640.954817,5690.946719,0760.9266
440363605437632844418,54015,2021485212,90513,91233,4401.803730,3571.996914,1640.953712,2200.946913,0880.9408
1107977552222579000524,60818,3932032016,63518,90432,9321.338326,8181.458119,4360.956515,7520.946917,8920.9465
1041252428352031738229,26018,0991939616,22218,34432,8561.122927,2091.503318,5320.955515,3600.946917,1000.9322
881782231410544620630,28818,0991939616,22218,51632,8561.084827,2091.503318,5320.955515,3600.946917,1440.9259
235636665404590929131,48418,4511968416,40918,48434,3921.092428,2991.533718,8120.955715,5370.946917,2600.9338
97172851851434897435,86023,5502682419,92124,22051,2361.428839,8061.690325,7640.960518,8630.946922,7120.9377
370218499366649601925,32419,4822058417,25019,16430,2161.193224,9071.278519,6680.955516,3360.947017,8760.9328
1382630090141296980434,47223,5562374818,83321,93245,5721.32236,5141.550122,7480.957917,8350.947020,4040.9303
1548391165882642737123,04818,9191937216,98518,44435,1241.52431,2841.653618,4720.953516,0870.947117,2440.9349
1698769399477433077624,66418,6241969616,46918,23232,7441.327627,0271.451218,8240.955715,5970.947116,9560.9300
532765022452691072932,00018,3652030816,57019,18435,9041.12227,9041.519419,4320.956915,6940.947118,0720.9420
630066466202959945710,1688,36787367,4937,99611,1201.09369,3171.11358,3400.95477,0970.94727,6200.9530
1578848803126641278024,45619,4312023617,49619,09634,2201.399229,5971.523219,3160.954516,5730.947217,7960.9319
182039102893412908589,4925,39955924,1205,18011,0921.16868,6491.6025,3760.96143,9030.94734,6560.8988
238612154473262161215,18811,4511237610,16811,58818,0561.188814,5961.274611,8400.95679,6320.947310,7520.9279
760054860045182026831,87619,3872065617,38519,46834,1281.070628,3371.461619,7360.955516,4680.947318,0920.9293
112036047943179475229,25223,1542446421,03922,91641,4961.418635,7121.542423,3560.954719,9320.947421,3360.9311
176706057902232782484,1962,45128641,8842,5445,8401.39184,3661.78132,7680.96651,7850.94752,2320.8774
17738205442226810819,9647,14278926,4037,45212,2321.22769,9481.39297,5560.95746,0670.94756,8120.9141
457061862921503083629,40023,3092457221,16523,07641,6561.416935,8791.539323,4600.954720,0530.947521,4320.9288
1619242887310048553813,3846,76597525,9348,77620,3721.522114,2592.10789,4400.9685,6230.94768,3240.9485
1546810328834328078321,19213,6521519611,63013,92023,4081.104616,1451.182614,5880.9611,0210.947612,9320.9290
455686740748537805211,2728,75285927,3278,09612,2761.089110,2951.17638,2080.95536,9440.94777,4920.9254
599378476950411935716,44412,0321266810,34911,83618,9401.151815,0461.250512,1240.95719,8080.947711,0080.9300
1469854613517202149617,77613,3241409611,57913,41621,9921.237218,0001.350913,4920.957210,9730.947712,4840.9305
173796081033464476808,5046,46869325,5516,33212,3601.453410,3241.59626,6440.95855,2610.94786,0840.9608
150165602765968079917,14013,4631432812,08713,32023,6401.379220,2461.503813,6960.955911,4560.947812,4680.9360
266275819020609882817,71614,4951485212,97413,92024,9201.406621,9761.516114,1760.954512,2980.947912,8640.9241
390446150330246396016,44812,8491339611,40212,54421,8401.327818,7751.461212,8040.955810,8090.948011,6560.9292
1222011666059805300617,74014,4851484412,96813,88824,9441.406121,9661.516514,1720.954712,2940.948012,9640.9335
202785291871108747621,72819,3001833616,81517,17227,2121.252425,0551.298217,4600.952215,9400.948016,1080.9380
1574988609110790349631,64018,4261975216,42818,56034,5081.090628,2401.532618,9000.956915,5740.948017,2800.9310
403500822050351145248,46430,2373097625,47128,77244,2240.912534,4971.140929,6520.957324,1460.948026,5200.9217
42649565249549792338,6485,28161484,7785,6528,2400.95286,1651.16745,9000.95974,5300.94815,3200.9413
1174946147870311655316,43212,8601340011,40412,55621,8281.328418,7861.460812,8080.955810,8120.948111,6480.9277
55597682081311099016,63612,2231282810,52912,04419,1521.151215,2591.248412,2800.95739,9830.948111,1520.9259
1163213595907773856118,52813,8451438411,84613,48821,1201.139917,0591.232113,7680.957211,2310.948112,5480.9303
540481481881934479022,17618,4201811615,65916,66424,3241.096920,8521.13217,3040.955214,8470.948115,6120.9369
421359117049032091822,17618,4201811615,65916,65624,3241.096920,8521.13217,3040.955214,8470.948115,6080.9371
40515055489867016346,4284,46149603,8434,7488,4841.31996,7891.52194,7600.95973,6440.94824,3080.9073
134491196974435603348,2125,72762565,0925,7329,7521.18757,5161.31245,9920.95784,8280.94825,3680.9365
111516593854510411848,7845,45863724,3025,6249,2201.04966,1531.12736,1480.96484,0790.94825,2640.9360
473186505826016617717,36413,3781405211,69113,23622,1041.27318,4061.375813,4480.95711,0850.948212,3920.9362
1642548641962927366337,88014,0722392012,55820,70041,2841.089920,7131.471923,2680.972711,9070.948219,8080.9569
750916305571659946615,40811,7341239610,23811,16817,5881.141514,1821.208611,8680.95749,7100.948410,4200.9330
205973827765440557216,46812,2601344411,06912,85222,1801.346918,5161.510312,8720.957510,4980.948411,7040.9107
137207536365935193319,41216,7211607614,29414,90023,4521.208121,0351.25815,3400.954213,5570.948413,9200.9342
18367044208355523829,40418,0561947616,22818,40832,9681.121227,1341.502818,6400.957115,3910.948417,1320.9307
955998635752559728330,43218,0561947616,22818,55232,9681.083327,1341.502818,6400.957115,3910.948417,1920.9267
80134173488878043817,00012,9021363611,27412,92021,5201.265917,7111.372713,0560.957510,6930.948512,0640.9337
143622157785007497223,92418,8861985217,12118,72432,7721.369828,1361.489818,9680.955516,2390.948517,4680.9329
393915530489046395815,41612,9071294811,41012,12016,4241.065414,1851.09912,3600.954610,8230.948611,3120.9333
433281763623769650515,71211,9881268410,44011,80818,9121.203715,4631.289912,1480.95779,9030.948611,0040.9319
1004796622047302220718,15214,1721474012,42313,79222,5081.2418,8231.328214,1040.956911,7850.948612,8120.9289
666404088734359184528,83622,6802401220,64922,45241,3721.434735,5811.568822,9480.955719,5880.948621,0560.9378
1155936717807369385319,40016,6971605614,25914,93623,4161.20720,9881.25715,3240.954413,5270.948713,8840.9296
720570635695651233730,59219,1402064017,29619,44833,2641.087327,4171.432419,7520.95716,4080.948718,1440.9329
75088284072340463331,52819,1402064017,29619,60833,2641.055127,4171.432419,7520.95716,4080.948718,1600.9262
158951785846967324238,2365,93457244,5554,9528,2561.00246,2011.0455,4920.95954,3220.94884,5560.9200
156574859593715151913,58810,958114129,82410,62814,8961.096312,5391.144310,9120.95629,3220.94899,9440.9356
560514210866553745218,31214,2941459212,19913,53222,9321.252319,2091.343913,9680.957211,5760.948912,6760.9367
561987491511171068423,58419,1382000817,38618,82032,9601.397628,8181.505819,1200.955616,4970.948917,7080.9409
11619540998735973559,3247,18671285,8786,64812,9001.383511,0361.53586,8280.95795,5780.94906,1600.9266
1022038334431401355417,02813,0221368011,24212,79622,1641.301618,4471.416613,1080.958210,6690.949011,9240.9319
164787062484415404134,4162,66534682,3783,1284,4801.01453,0011.12613,3480.96542,2570.94912,9440.9412
812925914296308135023,70420,9451984018,21818,64029,1081.22826,6201.270918,9120.953217,2910.949117,4400.9356
659314161942654160423,70420,9451984018,21818,61229,1081.22826,6201.270918,9120.953217,2910.949117,4480.9375
1819710900790707116318,24413,4431432012,06013,71221,5521.181317,5061.302213,7080.957311,4470.949212,5640.9163
1537586390917179231618,29613,8421432411,86313,43220,8881.141717,0561.232213,7200.957811,2600.949212,5720.9360
486283225326962411713,34010,411110929,05310,24416,7121.252813,7911.324710,6320.95858,5940.94939,7680.9535
1699046648008025356017,38413,1161400011,49213,21621,7401.250617,7801.355613,4200.958610,9090.949312,3600.9352
1444427959173846782023,03619,1021969617,33918,59632,4881.410328,8421.509918,8160.955316,4600.949317,4040.9359
169242987606848008904,3042,55733322,2553,0124,3681.01492,8931.13143,2200.96642,1410.94942,8400.9429
151788895115547541813,68010,337108168,75610,10418,3561.341815,3721.487110,3760.95938,3130.94949,4080.9311
66245694930502352514,42010,386116529,01910,69617,7041.227713,7561.324511,1960.96098,5630.949410,1440.9484
1062465607993533151025,29619,4462051617,15818,97630,4761.204825,1581.293719,6480.957716,2900.949417,8800.9422
413187619536346828923,82818,8421961616,91518,49633,1721.392128,5851.517118,7600.956416,0600.949517,2600.9332
499646821895993697724,26820,8962121619,22120,11635,5161.463532,4191.551420,2440.954218,2510.949518,9520.9421
1021577162053519475414,40410,864112609,74510,55614,7121.021412,4431.145310,7680.95639,2540.94969,8440.9326
80249663829982704723,4241,23720409961,6443,9841.16362,1131.70821,9920.97659460.94981,5480.9416
373626540549619429628,88026,4172490023,30423,16835,9921.246333,8021.279623,7320.953122,1340.949821,6800.9358
664960721758813004751,25232,9783391228,38031,66847,5440.927737,7711.145332,4880.95826,9560.949829,2960.9251
538717857812030619317,28013,1751384011,40312,90022,0241.274518,2071.381913,2680.958710,8320.949912,0480.9340
24871429350042412524,89220,6842095618,51319,62437,5441.508333,6221.625520,0280.955717,5850.949918,4720.9413
1226965516558962782827,10422,5252021217,73218,78040,6121.498436,5511.622719,3240.956116,8440.949917,4960.9316
240317816073298739614,0603,99248203,0414,0168,5840.61054,4301.10974,6680.96852,8890.95003,7920.9442
372004270040333469418,27215,6081521213,43514,01626,0161.423823,6191.513314,5400.955812,7630.950013,1800.9404
1725945206531485815618,67613,1081459211,40813,77623,0041.231717,7621.355114,0240.961110,8380.950012,8520.9329
1318507418738916521215,5086,52571565,5306,70011,3200.72998,0351.23146,8800.96145,2540.95016,1920.9242
1088450834766586303117,38413,9231403612,02213,32822,1601.274718,9741.362813,4360.957311,4220.950112,3680.9280
1843498739998177233917,40413,9141397612,01513,32822,1801.274418,9651.36313,3760.957111,4150.950112,3480.9265
493397196655750500129,12024,5352224819,67620,77645,4921.562241,4211.688221,2680.95618,6950.950119,2640.9272
269890641811110443937,18424,7402775621,10725,16853,5921.441341,9361.695126,7040.962120,0530.950123,8440.9474
438534717360034712117,52013,9381408012,03513,27222,2961.272618,9891.362413,4800.957411,4360.950212,4080.9349
67849655405731414329,6566,84976366,1537,20011,8561.22789,5881.39997,3280.95975,8470.95036,7040.9311
1632767974560556015417,76013,3391433211,91713,60420,7601.168916,8901.266213,7400.958711,3250.950312,5720.9241
1108148393560359893823,88419,6332037217,87619,18834,9841.464731,0361.580819,4880.956616,9890.950418,0240.9393
929522157029221718624,61219,5062046017,67019,25634,1521.387629,4351.50919,5840.957216,7940.950418,1560.9429
606216838078399381823,03618,9231955217,15018,46834,9841.518731,1671.64718,7040.956616,3010.950517,3560.9398
1561589518006416497337,62025,1272831221,53725,74053,2641.415841,4821.650927,2440.962320,4710.950524,3400.9456
87704596345187074279,2326,78370485,6946,60415,2681.653813,0851.92916,7680.96035,4130.95066,0600.9176
1621111439939186427729,20015,8592043614,30417,38832,2481.104420,9591.321619,7320.965613,5970.950616,2760.9360
1645459721004376692815,16811,132120169,61511,12017,8041.173814,0641.263411,5440.96079,1410.950710,3720.9327
1405659889300462369017,59213,5841410811,69813,28822,5321.280818,7991.383913,5320.959211,1210.950712,5120.9416
1733018214683435874823,96421,2582013218,53618,88029,4001.226826,9641.268419,2200.954717,6230.950717,6960.9373
237805808636216317721,50017,6131817615,90317,28030,1161.400726,5441.507117,3920.956915,1200.950816,2360.9396
1453339478279152363922,69618,8191936817,01718,34434,4761.51930,8961.641718,5320.956816,1820.950917,2280.9392
370127248373349800313,1884,44483243,8976,63213,8041.04675,4291.22168,1320.97693,7060.95106,3080.9511
900664874761153649823,60419,0621997217,25318,80435,3401.497231,0901.63119,1280.957716,4090.951117,6520.9387
151278413361758028619,0406,78674445,9806,9169,9721.10317,9911.17767,1520.96085,6880.95126,5160.9422
231861544651878576730,58421,6482316419,72421,74038,9561.273731,0671.435122,2040.958618,7610.951220,4720.9417
1758089538287360289815,50811,7121256810,31711,68417,8561.151414,3331.223812,0640.95999,8150.951310,8440.9281
21805288151885497104,7242,93037162,5773,3644,8441.02543,3241.13453,5880.96562,4520.95153,1760.9441
95497291958625871788,1205,15261404,4555,58011,0041.35528,3071.61245,9240.96484,2390.95155,2360.9384
7965110375108016515,91212,5871349611,35612,64018,0241.132714,9701.189312,9480.959410,8050.951511,8080.9342
1066647319844974667718,73614,0681471611,76313,44021,0321.122516,6531.183814,1480.961411,1930.951512,7400.9479
1316013646528303960315,28813,6811196810,98111,08815,6241.02214,2911.044611,4360.955510,4490.951610,4600.9434
1367850022140644963818,52414,4641481612,42913,78423,0281.243119,2421.330314,2120.959211,8280.951612,8640.9333
1395192127316881264442,41229,9562990823,21426,84861,4681.449349,8781.66528,7840.962422,0900.951625,2600.9409
355321293971214247018,00012,4401318010,06711,49218,2601.014412,9561.041512,6960.96339,5810.951710,9240.9506
1301689103720846826713,57610,162110249,21110,32014,4441.063911,6221.143710,5800.95978,7680.95199,6200.9322
892320375766473706716,60412,2941340410,99212,74822,3881.348318,6231.514812,8760.960610,4630.951911,8520.9297
1067601744366108779128,66424,2842207219,48820,47245,5801.590141,4691.707721,1360.957618,5500.951919,2880.9422
620310787584355153316,65613,3481365611,70912,96821,2001.272818,1671.36113,0920.958711,1470.952012,1120.9340
979507392647801936218,82014,1031487212,64414,19222,3761.188918,6051.319214,2680.959412,0370.952013,0280.9180
1368682430917895194723,27219,5672018417,95019,12433,8281.453630,4191.554619,3240.957417,0890.952017,9960.9410
14107188380293551016,42812,4241306410,75512,13618,1521.104914,4911.166412,5520.960810,2410.952211,3560.9357
696320819649192558116,79213,3871370011,73513,08421,3361.270618,2061.3613,1400.959111,1740.952212,1800.9309
560093261555650285717,25613,4181391611,45413,06819,5001.1315,9741.190513,3680.960610,9060.952212,1920.9330
1007519516681297066916,80413,3971375211,74313,18821,3441.270218,2161.359713,1920.959311,1830.952312,2360.9278
513836196794614142216,93613,4121380411,75713,05221,4801.268318,2311.359313,2400.959111,1960.952312,2600.9393
1745961631164990305523,7848,162100644,6139,32824,1601.01588,9041.09099,8440.97814,3930.95238,6480.9271
825759135688528211724,80419,6642043217,46519,12829,6881.196925,0781.275319,5960.959116,6320.952317,9280.9373
159235163273497305625,64821,3282194019,33320,84036,1801.410632,1551.507621,0160.957918,4110.952319,4800.9347
17244284517031756954,3842,63733842,2903,0684,5561.03923,0831.16913,2760.96812,1810.95242,8840.9400
870363809228850324645,32832,5673290025,98230,38459,6961.31747,6991.464631,6640.962424,7460.952428,4520.9364
171919440907562673505,8363,61642843,0343,8087,0641.21045,0951.4094,1400.96642,8900.95253,5880.9422
524678635256084694822,71618,5701922816,82918,16434,4041.514530,5461.644918,4280.958416,0290.952517,1000.9414
1808062101691196144416,43212,1931334410,95712,68022,0161.339818,3231.502712,8240.96110,4380.952611,7680.9281
693553389991160998318,98015,0531546413,18114,42824,4041.285820,8961.388214,8360.959412,5560.952613,5520.9393
710395171788496958222,18416,4741751215,01516,58426,5441.196521,3771.297616,8000.959314,3040.952615,4640.9325
67296808529196662412,1609,11688127,2308,03617,1921.413814,4201.58188,4680.9616,8880.95277,5920.9447
1487124176860260050118,07213,8411485212,42614,19224,1081.33420,4241.475614,2640.960411,8380.952713,0440.9191
99243233047671056527,15618,6742193216,43919,91630,2761.114922,0751.182121,1560.964615,6620.952718,7600.9420
209928640913559376327,15618,6742193216,43919,97630,2761.114922,0751.182121,1560.964615,6620.952718,9240.9473
730131033254465943547,46429,0803049224,86328,67243,2400.91133,3281.146129,3160.961423,6870.952726,6360.9290
123778982351158924494,3962,66434202,3303,0764,3600.99182,8981.08783,3080.96732,2200.95282,9040.9441
649448041447646784317,56012,9261379211,58413,11221,3761.217317,6521.365613,2480.960611,0380.952912,0560.9195
1104366418994949875142,37229,7033018423,27027,40060,2681.422448,3481.627729,0880.963722,1730.952925,7360.9393
765427365748048471951,49633,1043407628,45231,97247,4440.921337,5271.133632,7400.960827,1150.953029,7480.9304
15604607764002151546,1203,68047843,1984,2326,0400.98693,8551.04764,6320.96823,0480.95314,0520.9575
1053977962913163482618,08014,2571450412,30713,72822,2081.228318,7341.31413,9280.960311,7310.953212,7760.9307
435365046965451020617,21214,1831390412,02212,90420,0441.164517,2841.218613,3440.959711,4610.953312,1400.9408
276751901582464108529,13614,5091598812,52314,58423,7880.816415,6021.075315,4040.963511,9380.953313,7360.9419
114794075236778492029,13614,5091598812,52314,58423,7880.816415,6021.075315,4040.963511,9380.953313,7360.9419
1580864970648886968718,51613,9181488012,11314,10823,0281.243718,7521.347314,3120.961811,5480.953413,1280.9305
239531836466233141522,82418,1541872016,36017,71627,8001.21823,7431.307917,9600.959415,5970.953416,3640.9237
7370825735466980468,4726,28869445,4816,35213,5121.594911,3271.80146,6880.96315,2260.95356,1240.9641
778292338861201158812,2968,98199648,0859,36813,0521.061510,2761.14429,5880.96237,7090.95358,6280.9210
634165770066935319410,0047,07575406,0806,81210,2241.0227,5411.06597,2600.96295,7980.95366,4600.9483
566221762158236585913,7845,36257004,0534,9329,2440.67066,5251.21695,5120.9673,8650.95364,6480.9424
1227161951565127673214,7205,36257004,0535,0209,2440.6286,5251.21695,5120.9673,8650.95364,6360.9235
1043372537478275718814,7205,36257004,0535,0209,2440.6286,5251.21695,5120.9673,8650.95364,6360.9235
1690772040062590838726,11223,3592182820,20620,48431,7961.217729,3151.25520,8880.956919,2680.953619,1000.9324
966521150032206283950,48432,0203340427,73031,32846,6560.924236,6671.145132,1160.961426,4420.953629,1400.9302
1814422700967009627613,39210,598112169,31710,36414,7041.09812,1751.148810,7840.96158,8870.95389,7160.9375
705083155823022599225,26420,2242105618,29319,82034,8001.377530,1531.49120,2080.959717,4480.953818,6280.9399
1190558354605924990226,19223,4572189220,28620,79231,9121.218429,4521.255620,9520.957119,3480.953819,2360.9252
1218769504416833553826,19223,4572189620,28620,56031,9121.218429,4521.255620,9560.957119,3480.953819,2360.9356
1289175520435828733417,36013,2541398011,59513,30421,5601.241917,7491.339113,4480.961911,0610.953912,4400.9351
671447852968094996117,70013,4031409611,64413,06018,9361.069814,9651.116513,5600.96211,1070.953912,2000.9342
472850576236413757912,98410,461104088,8179,45213,0401.004310,7381.026510,0000.96088,4110.95408,9240.9441
1182226954858352279615,09212,3721218410,43411,40417,2481.142914,7931.195711,7040.96069,9540.954010,6280.9320
25652069879044387715,21610,159117168,94310,73618,2721.200813,2721.306411,3040.96488,5320.954010,2720.9568
1708707403586258983317,62813,6171419211,81413,38422,4561.273918,7361.375913,6480.961711,2700.954012,6000.9414
1161563211401350935617,88814,6631524013,33514,12424,9761.396222,0221.501914,6280.959812,7220.954013,3360.9442
856089334440877121322,99220,0771976817,87918,62428,8721.255726,2291.306418,9440.958317,0560.954017,5200.9407
222674805608738758628,17619,2652270417,03920,72830,9481.098422,3621.160821,9200.965516,2550.954019,7000.9504
961533017234549050914,34810,799111689,68010,37614,2480.99311,9841.109710,7240.96029,2360.95419,6920.9341
1789571076774826383517,02013,0021376811,40413,02021,1681.243717,4481.341913,2440.961910,8800.954112,1960.9367
1324362027164177014617,96414,6701525213,34214,13625,0521.394622,0291.501614,6400.959912,7290.954113,3320.9431
1167336546747068764325,47219,6442079617,43319,42030,2601.18824,9631.270819,9960.961516,6330.954118,2600.9403
916192738565218145015,70012,2441312811,01612,33218,4281.173815,2411.244812,6240.961610,5110.954211,4960.9322
1589626540135108799820,02016,0761672414,57615,62026,6801.332723,3531.452716,0560.960113,9080.954214,6440.9375
866187358177651791720,08416,0791672414,58015,71626,7401.331423,3561.452616,0560.960113,9120.954214,6120.9298
1415988266768304576920,24016,1341640414,01215,26422,4561.109518,6831.15815,7640.96113,3720.954314,3600.9408
1102387202026357010111,7648,37090407,0208,06023,8682.028920,7552.47978,7200.96466,7000.95447,4800.9280
776546187112686005817,68813,5891430011,99513,34821,3481.206917,5951.294813,7520.961711,4480.954412,5400.9395
769798456655235760512,2888,38895007,4048,77612,4601.0149,0921.08399,1640.96467,0670.95458,1600.9298
187550669812670560219,45215,4101591213,59014,92420,9521.077117,2561.119815,2920.96112,9710.954514,0080.9386
129708701756357867922,86419,1661981617,56718,94832,9041.439129,5041.539419,0160.959616,7680.954517,8120.9400
288872706687505543417,60814,1221454412,58813,48423,5241.33620,4781.450113,9760.960912,0170.954612,7600.9463
703000011121339045425,41617,0071962414,94417,93628,5201.122120,9661.232818,9480.965614,2650.954617,1440.9558
72385520678536901384,2682,53233482,2593,0244,3041.00842,8381.12093,2480.97012,1570.95482,8440.9405
159485989335797489148,2046,29868605,6386,2049,0881.10787,4281.17946,6040.96275,3830.95485,9280.9555
387810767606232901917,62414,1101454012,58513,53223,5401.335720,4661.450513,9680.960712,0160.954812,5760.9294
1631990330418414399523,08818,5921944816,82118,53231,5201.365227,2971.468218,6840.960716,0600.954817,3000.9335
201988513796404867448,19635,3053533227,94632,24463,0881.30950,8991.441734,0680.964226,6830.954830,6000.9490
1637055682424870536015,08412,3641214810,40211,31617,1161.134714,6611.185811,6800.96159,9330.954910,6880.9445
124411969336533619325,9523,71444643,2023,9087,1801.20635,2161.40444,3200.96773,0580.95503,7200.9519
588684919071341373616,44813,3751354411,70012,63619,2801.172216,4741.231713,0200.961311,1740.955011,8800.9402
1374512927531323289117,80813,7391442812,09113,40021,3921.201317,6651.285813,8840.962311,5470.955012,6680.9454
735316050821923311418,15215,4001529213,54814,52422,4241.235319,9451.295114,6840.960212,9400.955113,5600.9336
1497365616678825238919,45214,2581552412,90514,70823,0241.183618,3731.288614,9440.962612,3260.955113,6880.9306
957910671283561120817,80812,2531384810,45912,72419,9761.121714,7021.199913,3800.96629,9900.955212,0320.9456
1398177320916075420617,18813,0471404011,58013,23621,4161.24617,5641.346213,5240.963211,0620.955312,4320.9393
972949942365689540825,40420,0982110017,99519,80830,7121.208925,9381.290620,2960.961917,1910.955318,8560.9519
1634316060380143450332,00420,2942151218,09020,14435,2921.102729,1911.438420,7040.962417,2810.955319,0000.9432
56666855708800929358,7005,70371205,1156,4968,9961.0346,2751.10036,8920.9684,8870.95546,1040.9397
1264717285637534770122,41218,5521906416,78218,17230,9121.379327,3391.473618,3160.960816,0340.955417,0160.9364
245127046986438887030,95215,4151853613,44416,89229,3200.947319,9801.296117,9360.967612,8440.955415,8320.9372
132065888251090181078,7285,37562084,8315,7328,3240.95376,2571.16415,9920.96524,6160.95555,3800.9386
143767739040721257239,2767,08771445,9306,60010,5161.13378,5991.21336,8800.9635,6660.95556,1400.9303
52465882645672485259,5247,08771325,9306,61610,4961.10218,5991.21336,8680.9635,6660.95556,2200.9401
1679241554315368838916,61613,0661360411,50112,91221,1921.275417,9201.371513,0920.962410,9890.955512,1040.9374
923299978816816236428,51619,3022277216,95420,52031,8841.118122,9831.190722,0160.966816,1990.955519,5360.9520
1662986540471552189137,34824,9352818021,41725,67652,9641.418141,2981.656227,2280.966220,4650.955524,0840.9380
1470178203452086572010,7327,38385046,6877,92411,7921.09888,9801.21638,2080.96526,3900.95567,3160.9233
102555799237680803969,9527,41373525,9396,30810,2641.03148,0011.07937,0880.96415,6760.95575,8840.9328
1524333707278518865618,99614,1421516412,60914,31222,9881.210118,7131.323214,6040.963112,0510.955713,3880.9354
1775646727508190634023,92013,9071627611,95014,88024,6561.030817,3711.249115,7480.967611,4210.955714,0040.9411
1100660818162139685160,00029,7523405221,67329,19668,1881.136541,9291.409333,0920.971820,7130.955727,4960.9418
1295918611905534461694,47629,7445130021,66636,444102,6481.086541,9211.409450,3400.981320,7060.955735,0480.9617
184508530818711541411,1528,24391887,2418,44412,4401.11559,8071.18978,8680.96526,9210.95587,9640.9432
355221497849780940416,74013,1071367611,53313,00421,3201.273617,9611.370313,1640.962611,0230.955812,1080.9311
628133826484949277425,79221,7752202019,71520,82836,0881.399232,3601.486121,1480.960418,8430.955819,6680.9443
979105086509965857354,38815,8022918413,58924,57258,4961.075520,4441.293828,5840.979412,9890.955823,9720.9756
890633516256039636717,26413,2351393211,58613,16421,7001.25717,9591.356913,4200.963311,0750.955912,3840.9407
765737496145355799717,44013,4441406811,59613,08422,5761.294518,8541.402413,5600.963911,0850.955912,2800.9386
609435147465716926612,0809,30184647,0757,87212,0760.99979,8391.05788,1520.96316,7640.95607,3960.9395
1552261401167247691716,07212,3491314010,93812,30019,6601.223216,2061.312312,6600.963510,4570.956011,5720.9408
105980604127560518618,06814,1811476412,49013,90422,9641.27119,3631.365414,2120.962611,9400.956013,0360.9376
866620670394094894918,88013,6001472412,09914,09223,0081.218618,4271.354914,1920.963911,5670.956013,0360.9251
1285246955802579296622,85215,3541811213,53416,83228,1961.233920,9671.365617,5160.967112,9390.956015,9360.9468
1670723310020324680144,90841,0108018436,38155,372153,4041.058654,7751.335678,5840.9834,7820.956053,4400.9651
1479887752627758528269,404264,253170344167,230146,900450,6321.6727445,7851.687162,9880.9568159,8750.9560121,8680.8296
86160859140952818549,3847,09472285,8736,70014,1481.507712,1321.71026,9680.9645,6160.95626,2680.9355
113730934174275887719,7087,26779926,4377,40410,6161.09358,4521.16317,7080.96456,1550.95626,9160.9341
651862673202367073716,94012,9431372411,28312,92821,8201.288118,1091.399113,2320.964210,7890.956212,1520.9400
952124031967580948725,64821,5932206419,74820,83635,7201.392731,9551.479921,2000.960818,8830.956219,7280.9468
13621522001369882329,04424,3882191619,31520,32844,8041.542640,6631.667321,0720.961518,4690.956219,1920.9441
69906766654120823998,1165,98465925,1685,98013,4121.652511,2791.88496,3680.9664,9420.95635,8120.9719
903302397577274767018,46414,2951500412,64014,02422,7721.233318,9461.325414,4520.963212,0870.956313,2560.9452
1263403743033601253826,04414,0101613612,46315,10026,0280.999419,6391.401815,5920.966311,9180.956314,1720.9385
442414330930705376311,8608,47993887,6118,76813,9361.17511,0901.30799,0560.96467,2800.95658,2080.9361
282539489160917801114,7689,552112848,51210,38818,0401.221612,8731.347710,9160.96748,1420.95659,9200.9549
49733327302677069925,7523,66443443,2243,9848,3321.44856,6711.82074,2040.96783,0840.95663,7480.9408
671301390824185349711,4928,79994967,6978,92014,6601.275712,2441.39159,1600.96467,3630.95668,3120.9318
116777395405311163606,3324,29147123,4614,2127,0441.11245,2741.22914,5600.96773,3110.95673,9720.9430
1530584056424302574312,8689,471106448,5059,84814,6721.140211,5841.223110,2760.96548,1370.95679,3080.9452
1357542430474835534215,19212,2251243610,74111,79216,3921.07913,9661.142411,9720.962710,2770.956811,0400.9362
1633387606664230048716,14813,7451321211,65512,36018,7081.158516,5741.205812,7080.961911,1520.956811,6600.9434
1758556121536665226217,19213,1181396811,57413,24821,8681.27218,0701.377513,4680.964211,0740.956812,4640.9408
1213806685776162987316,58012,8421359611,25112,88421,4961.296518,0471.405313,1120.964410,7660.956912,1520.9432
199169203559881465120,78417,9821777616,09916,53622,3001.072919,7681.099317,0840.961115,4050.956915,5000.9373
98568032216110513128,0006,27766965,5796,1768,9521.1197,4751.19096,4560.96425,3390.95705,8400.9456
106649958111542803628,4886,66472246,0436,8408,5241.00426,9471.04256,9640.9645,7830.95706,5120.9520
1202051760574445903716,92812,6871361610,96612,52418,0081.063813,7931.087213,1440.965310,4940.957012,0120.9591
101470420128152936714,7321,95528761,7942,4803,7640.79542,2501.15092,8000.97361,7170.95712,3280.9387
1317202773407974326817,08412,7271372811,00012,63618,1641.063213,8331.086913,2560.965610,5280.957112,1200.9592
1436312814745935615918,34413,9641448811,73213,42420,6681.126716,5831.187613,9880.965511,2290.957112,6240.9404
1682765469498793906123,19619,4192006817,79719,06033,5201.445130,0381.546819,3040.961917,0340.957117,9960.9442
719142722966932534723,46819,5052009617,73119,07234,9481.489231,2991.604719,3360.962216,9700.957118,0320.9455
1670507194909912385027,73615,9081985614,37017,14030,8801.113420,8631.311519,2400.96913,7540.957116,2280.9468
1052782881065301591110,3967,55585286,6387,86811,4641.10278,9001.1788,2440.96676,3540.95727,3640.9359
398606552960373578316,38411,4701296810,13812,10820,9641.279516,4491.434112,5320.96649,7040.957211,3960.9412
75451814100049104205,5002,81939602,5063,4765,4400.98913,0201.07133,8520.97272,3990.95733,2200.9264
1645775611318009674711,5602,81939882,5063,4765,4640.47273,0201.07133,8800.97292,3990.95733,2200.9264
598922394489202877312,6282,81939882,5063,4765,4640.43273,0201.07133,8800.97292,3990.95733,2200.9264
456668175747383590112,6282,81939882,5063,4765,4640.43273,0201.07133,8800.97292,3990.95733,2200.9264
1259118458607531380914,8362,81939882,5063,4765,4640.36833,0201.07133,8800.97292,3990.95733,2200.9264
1702720135800499714615,1922,81939882,5063,4765,4640.35973,0201.07133,8800.97292,3990.95733,2200.9264
1075666528635401065215,1922,81939882,5063,4765,4640.35973,0201.07133,8800.97292,3990.95733,2200.9264
1827863975750082461516,66813,2181366411,53512,72419,5761.174516,3981.240613,1720.96411,0430.957311,9200.9368
1237677818915548313017,65213,3581455612,11513,89223,7641.346220,0131.498214,0400.964611,6000.957512,8200.9228
938353182545577030324,11620,1902067218,27719,77236,3241.506232,6931.619319,8960.962517,5010.957518,5960.9405
9942643028363013496214,956212,994115204114,01593,372302,3321.4065300,6471.4115110,3520.9579109,1640.957575,0800.8041
165291668653008468723,9402,43430202,0282,7045,2281.32693,9701.63112,9360.97221,9420.95762,5520.9438
21894244523489705505,1763,40139602,9043,6285,2121.0073,7111.09113,8400.96972,7810.95763,4400.9482
20757957524149254379,0686,77368765,5416,32414,0881.553612,0681.78186,6400.96575,3060.95765,8880.9311
725549900716996825623,92020,1722064018,40019,75634,3081.434330,8531.529519,8600.962217,6190.957618,4880.9358
1052231751658469846912,8889,886110408,96510,13214,4481.12111,7101.184510,6600.96568,5860.95779,6160.9491
1182867528690013719914,6847,808102086,7119,37617,1481.167810,5831.35549,9240.97226,4270.95778,7920.9377
25308536395191971756,8444,34454403,9324,8888,4241.23096,1891.42475,2760.96993,7660.95784,6600.9534
1284865190061763954613,48811,362107449,4529,79213,6881.014811,8301.041210,3480.96319,0540.95799,0880.9281
1466664729154450871318,10414,0671456012,21913,66822,2281.227818,5371.317814,0480.964811,7050.957912,8280.9385
1565905563633596551018,68015,8171580814,01515,05623,5441.260420,9581.32515,2200.962813,4250.957914,1440.9394
930557977030218181916,26013,2761360411,79212,87218,8681.160416,1521.216613,1120.963811,2970.958012,0880.9391
848586870599846437322,56018,8461943217,20318,61632,2401.429128,8211.529318,7120.962916,4810.958017,4960.9398
1013613921446385001525,82821,4702196019,45420,65636,2761.404532,2071.500121,1400.962718,6360.958019,6640.9520
1351881159358899080625,28819,9972091217,81819,74030,5121.206625,7561.28820,1640.964217,0710.958118,7000.9473
479470109422244310645,27632,5633282825,77029,93260,0561.326448,0931.476931,7520.967224,6940.958228,4560.9507
96413096612885908504,0002,35729321,9912,6483,9960.9992,6251.11372,8480.97141,9080.95832,4640.9305
65272088113291648318,7286,76472966,1366,8768,7641.00417,0471.04187,0400.96495,8800.95836,4960.9447
1052358355429002221012,9729,907110928,99010,20814,5001.117811,6971.180710,7160.96618,6150.95839,6720.9475
1491764887865843632516,53612,5341346411,01512,66421,4201.295417,7051.412613,0040.965810,5560.958311,9360.9425
1428837190854524130017,98013,9161453612,07913,48023,1761.28919,4001.394114,0320.965311,5750.958312,7920.9490
988793904678108901618,70416,2491616814,50914,74026,3681.409823,9151.471815,5640.962613,9050.958414,0440.9528
1348693045952035171639,35228,4473193225,68829,08454,8761.394544,2501.555530,8680.966724,6220.958527,3680.9410
1692485086461405833917,61614,6091483213,00614,13222,0721.25319,3441.324114,2960.963912,4690.958713,2040.9343
1390383722341199918418,48813,7331482811,95513,96822,7561.230918,2931.33214,3360.966811,4610.958713,1000.9379
1231638821537148720418,88414,7081554813,15714,68423,7441.257419,8561.3515,0040.96512,6130.958713,7800.9384
660596866499859463119,74013,3111415611,22813,10020,5201.039514,3711.079613,6920.967210,7640.958712,4360.9493
915731525548376225725,06819,8942047617,48719,12829,8921.192425,2511.269319,7520.964616,7640.958718,0400.9431
1377018031189228265512,2329,15690767,4688,36417,3241.416314,5201.58588,7680.96617,1600.95887,8880.9431
1629190854795582402620,05615,6481667214,01115,74022,5761.125618,4391.178416,0960.965513,4340.958814,7080.9344
400420897410444526412,8289,712103728,6589,78816,5801.292513,9971.441210,0160.96578,3030.95909,0840.9281
654116544706529581725,08420,2232087218,09419,60437,7321.504233,4201.652620,1320.964517,3530.959018,6960.9537
168401957026998650886,1884,14143763,0313,8408,1481.31676,3491.53324,2520.97172,9070.95913,6480.9500
805305199544530292119,65216,9491585214,27214,87224,3801.240621,9491.29515,2680.963213,6880.959113,9200.9360
620897796216156396119,65216,9491585214,27214,86024,3801.240621,9491.29515,2680.963213,6880.959113,9120.9362
611124075408988699527,03618,3552135216,23619,40029,6441.096522,0011.198620,6880.968915,5720.959118,5840.9579
1666337625063302565847,43634,5923502027,69431,98463,0641.329550,8971.471433,8880.967726,5640.959230,2800.9467
366347883584402371416,80013,0901394411,93012,91622,0121.310218,8511.440113,4600.965311,4450.959312,2640.9495
579729592698121098416,86813,0951394811,93513,02022,0801.30918,8561.439913,4640.965311,4500.959412,2880.9438
1722342255299953266217,34013,7891427612,40113,68421,9761.267418,9701.375713,7720.964711,8970.959412,6800.9266
516483510371823271517,61213,2831441611,97013,83623,7401.347919,9561.502413,9280.966111,4840.959412,7840.9240
391870800224121813818,47213,9771486012,00413,88419,9001.077315,6941.122814,3760.967411,5170.959413,1640.9481
781595470725541829531,14021,8792355620,09522,41640,1001.287732,1521.469522,7400.965419,2800.959421,2720.9490
97255023115484977963,0361,17519529381,6243,5401.1661,9501.65961,9120.97959000.95951,4240.8768
105128768250588300135,4003,73534562,5213,2285,1360.95113,8701.03613,3520.96992,4190.95952,8960.8971
1067237018436509404715,96412,3471319211,06812,40417,7681.11314,4281.168512,7440.96610,6200.959511,6080.9358
119047914761527461808,1125,61259924,5285,5568,3121.02476,0931.08575,8120.974,3450.95965,1320.9237
1202321625577413867618,03613,9541453212,08913,55223,0841.279919,2881.382314,0400.966111,6000.959612,8160.9457
687671816692224823619,89216,4591685614,89716,11227,1241.363623,9631.455916,2520.964214,2950.959615,1320.9392
135841009879621196615,80412,1921305210,93112,35617,5201.108614,1831.163312,6120.966310,4910.959711,5160.9320
1643410720192421137811,4889,04789527,5708,44812,0601.04989,8871.09288,6480.9667,2660.95987,9200.9375
289164867015027258814,90812,1751211610,35511,39217,1281.148914,6631.204411,7000.96579,9390.959810,7280.9417
896780595932561300325,73617,2272016415,20318,36028,1441.093620,6831.200619,5520.969614,5920.959817,5920.9582
496645178444654239616,50012,1301348010,73212,56017,6321.068613,2771.094613,0520.968210,3020.959912,0800.9618
1544860616505968440012,8449,40697247,8588,93615,7321.224912,5671.33619,4080.96757,5440.96008,4080.9409
648324659778372471819,01616,0931603214,22315,15223,7761.250321,1311.313115,4640.964613,6540.960014,3040.9440
1132375020239618025516,36412,3951328810,83912,51621,3281.303317,6471.423712,8560.967510,4070.960111,7240.9367
1576292513498338559217,10014,0971396012,10113,17619,7121.152716,9801.204513,4760.965311,6180.960112,3400.9366
172968063760510916826,24015,1491630013,14115,27626,0600.993120,4871.352415,7760.967912,6170.960114,3040.9364
159905514311485310234,0562,34631482,0832,8324,0280.99312,5911.10443,0640.97332,0000.96022,6880.9492
264416178075567927910,6168,24590487,3908,32811,9561.12629,5861.16268,7520.96737,0960.96027,9320.9524
1822131480527689064316,64412,1791358410,76712,60417,7761.06813,3261.094213,1560.968510,3390.960212,1320.9626
170868183423734165120,98015,1871562812,72914,01628,3201.349923,0941.520615,1200.967512,2240.960313,2160.9429
59563631304508083129,9647,64583166,8507,66812,3001.234410,2541.34138,0440.96736,5790.96047,2480.9452
702042042645623679417,91613,4381434811,50813,44019,8761.109415,6881.167413,8920.968211,0520.960412,7000.9449
546232171581938533018,00014,2521431211,94513,16819,7601.097816,3511.147313,8360.966711,4720.960412,4240.9435
390121147710871121525,30420,7312144818,87120,38037,1641.468732,8891.586520,7000.965118,1240.960419,2360.9439
163867389640588890237,1364,83857844,3815,3687,6761.07575,6521.16835,6080.96964,2080.96055,0360.9382
34794573886006746613,89610,667113209,55810,64815,2281.095912,5351.175110,9400.96649,1800.96059,9520.9346
957060930546443014022,09618,4211903216,80218,11632,2121.457828,8351.565318,3680.965116,1380.960517,0880.9433
1191357858862643998635,35218,3121432011,17116,94026,0160.735920,0371.094213,8800.969310,7300.960512,4840.7370
145898196428950006929,8407,04177526,2697,28010,2561.04237,7341.09847,5040.9686,0220.96066,7000.9203
1570171400851374703416,76412,6861363211,19012,83620,9401.249117,1521.35213,1920.967710,7490.960612,1360.9455
1747257892117846444117,77613,3861420811,47013,32819,7361.110315,6351.16813,7560.968211,0180.960612,5760.9436
1807200385311915440426,62817,8701932816,05318,24832,3121.213525,0151.399818,6960.967315,4220.960717,1840.9417
1397798025019749586927,83218,2231421210,96914,10425,8720.929619,9251.093413,7800.969610,5380.960712,4480.8826
786937186975887878,8925,97061604,6095,6329,6241.08237,3691.23435,9800.97084,4290.96095,2040.9240
1104958599221955929211,81610,06996968,6668,95611,9321.009810,4571.03859,3560.96498,3280.96108,5600.9558
748737807514499340017,46013,4911396411,68812,94818,3801.052714,8251.098913,5080.967311,2320.961012,1720.9401
1620471511009537819317,82814,7211425212,78213,41638,5762.163835,7452.428213,7560.965212,2850.961112,5280.9338
73958895832042772618,66413,9991498412,25414,07223,2521.245818,8971.349914,5080.968211,7770.961113,2000.9380
1122624072156529073555,62815,4763002413,46725,12059,6321.07220,0231.293829,5000.982512,9430.961124,6720.9822
182663590060478997486,1763,91548203,5884,3846,2241.00784,2201.07794,6840.97183,4490.96134,1000.9352
142988130285567606628,4804,59351723,2594,60411,9961.41468,3841.82545,0480.9763,1330.96134,1680.9053
285521533561714822012,4168,75698407,8129,08012,6081.01559,4871.08359,5400.96957,5100.96138,5680.9436
310827876619895532235,34818,3071428411,14116,78826,0080.735820,0331.094313,8520.969810,7100.961312,5000.7446
1076756662775700367010,2768,51282887,2777,70411,8481.15310,3551.21658,0040.96576,9960.96147,3840.9585
540473624134731189311,3249,66695328,5398,96411,4321.009510,0481.03959,2040.96568,2090.96148,5200.9505
248428547747820564411,5409,08689847,5988,44012,0961.04829,9101.09078,6920.96757,3050.96147,9520.9422
933944331638727680413,1249,275100128,3609,33619,1441.458716,5891.78869,6920.9688,0370.96148,8240.9452
210022055281187044825,50420,9622183219,10420,72836,1121.415931,8511.519521,0960.966318,3660.961419,7160.9512
10656540154012768022394,456335,252230476205,478188,624628,9561.5945580,0361.7301222,5360.9655197,5400.9614172,4720.9144
74981944055017533844,0882,37231522,0782,8124,0840.9992,6401.1133,0720.97461,9980.96152,6520.9431
813765563487500268712,7769,467105088,5269,78414,4241.12911,4091.205110,1800.96888,1980.96159,2360.9440
445464959393475235812,8689,592104968,6769,83613,4641.046310,7241.11810,1640.96848,3420.96159,2040.9357
136260835161752138407,5525,47958244,5825,3207,7321.02385,9321.08275,6480.96984,4060.96165,0560.9504
151356894272641996197,5525,47958244,5825,3087,7321.02385,9321.08275,6480.96984,4060.96165,0720.9555
1037342502797041820222,86420,5271979618,32518,71232,0281.400829,9621.459619,0920.964417,6220.961617,7080.9463
57241811925768891805,3483,55142683,1353,9525,2480.98133,6991.04174,1480.97193,0150.96173,7280.9433
73091552597301682010,9247,97090687,1218,44012,1561.11289,4751.18888,7920.96966,8480.96177,9720.9445
171684264330580188217,00413,6221445212,22313,59219,4561.144216,3431.199813,9840.967611,7550.961712,8400.9447
980960847006210457518,24814,0961515212,78614,33222,3761.226218,5101.313114,6600.967512,2960.961713,5520.9456
149565069625596653864,3322,23030561,9652,7725,4801.2653,8551.72872,9800.97511,8900.96182,5720.9278
181625662241617293977,7765,47958084,5815,4087,7120.99185,9321.08275,6320.96974,4060.96184,9720.9194
1818325638439981541814,1885,85565284,7875,8608,7520.61696,1871.05676,3440.97184,6040.96185,5640.9495
750181452418195013515,1245,85565284,7875,9648,7520.57876,1871.05676,3440.97184,6040.96185,5400.9289
434297279100468366515,1245,85565284,7875,9648,7520.57876,1871.05676,3440.97184,6040.96185,5400.9289
1521411074026541116418,41214,2001475612,30713,72019,8801.079715,9931.126314,2880.968311,8370.961812,9840.9464
138143257528951618898,3844,55252603,3374,63211,5961.38318,0361.76545,1320.97573,2100.96194,3120.9309
699049902710607102418,27614,2061485212,42813,99224,4641.338620,6921.456614,3800.968211,9540.961913,1520.9400
100833976588303519246,2284,63249963,9454,7006,3241.01544,9871.07664,8440.96963,7960.96224,4520.9472
1365964341287826525018,23614,1311488412,55313,99619,3241.059715,5621.101314,4080.96812,0780.962213,2240.9448
1311352125671647161518,51614,2781536012,93814,52822,8081.231818,8591.320814,8720.968212,4490.962213,6360.9386
381427739477589747620,94416,6881732014,73916,25221,6681.034617,7011.060716,7640.967914,1820.962215,3960.9473
327624914796294375423,90820,4422058818,44719,48437,6041.572934,4181.683719,8920.966217,7500.962218,3280.9407
1130301632971452503726,19619,0861988816,86318,44026,2441.001821,1751.109519,2520.96816,2250.962217,4720.9475
130891225394590711325,0643,29340362,8953,7125,8921.16354,3711.32743,9280.97322,7860.96233,4560.9310
477342886816021215310,5087,63384606,9108,00012,7441.212810,4051.36328,2000.96936,6500.96247,4920.9365
800747796915718411718,98415,1501575213,47414,77620,5081.080316,9461.118515,2440.967812,9670.962413,9880.9467
1275510701221717699517,92415,1261512813,37114,33222,0321.229219,5121.2914,6280.966912,8690.962513,5240.9436
13544357957781470621101,75231,0553195226,81829,47645,8360.450536,6841.181330,9440.968525,8120.962527,5960.9362
1547664185732442284923,43217,1801842415,32116,99626,8121.144220,8771.215217,8480.968714,7480.962615,8800.9343
965048199762694238025,45220,8782182819,07520,76836,3761.429232,1021.537621,1160.967418,3620.962619,7120.9492
592414016867548154078,42025,2864482422,45731,02084,3041.07534,0281.345743,9800.981221,6160.962630,2440.9750
891037223488933358110,6566,92583046,0547,58819,5481.834516,0962.32438,0800.9735,8290.96287,1240.9389
1190794137388468249410,7127,74987846,8498,16411,9481.11549,2631.19548,5280.97096,5940.96287,7000.9432
1295907967389050209017,48813,0971432011,67213,50422,0881.26318,0101.375113,8880.969811,2390.962912,8440.9511
1754521984448815931827,35216,5182090414,46519,58431,3041.144520,7381.255520,3640.974213,9280.962918,3000.9344
1566890651084717887614,22410,701116969,61710,97215,5281.091712,2831.147811,3400.96969,2610.963010,3800.9460
1444262561743933385726,01620,7842164818,58620,13238,6561.485933,9841.635120,9600.968217,8990.963019,0800.9477
138943705528751613313,3286,84796365,9538,15613,9481.04657,7371.139,4160.97725,7350.96347,7040.9446
56827146319331581347,9085,70061324,7435,3848,6161.08956,6791.17185,9600.9724,5700.96355,1240.9517
354067882861464825823,06415,4661826813,51016,78428,8401.250421,5161.391217,7760.973113,0170.963515,8880.9466
185156127695804747824,64820,6822124018,85320,26435,3361.433631,6571.530720,5520.967618,1650.963519,2000.9475
151482467532488464018,7805,63369365,1656,2368,7600.99776,0131.06756,7480.97294,9770.96365,8480.9378
872162219405599467023,75816,0331874414,07717,25228,4081.195721,1961.32218,2280.972513,5640.963616,3800.9495
142972221492353025619,96016,1081642814,14115,45220,7281.038517,1981.067715,9120.968613,6280.963714,5520.9418
1380937197650932917121,54015,1091715213,10715,77226,3521.223420,1901.336316,6760.972212,6310.963714,9280.9465
335290958709887038412,4769,532104008,6269,76814,0681.127611,3931.195210,0880.978,3140.96389,2320.9451
481327290991401025319,89616,3501698814,93215,83228,2081.417825,0631.532916,4480.968214,3920.963814,9480.9442
1238903502343340759619,96416,3551700014,93715,89628,2761.416325,0681.532716,4600.968214,3970.963815,0840.9489
11194435699267417585,3923,62442523,1333,9165,2840.983,7641.03864,1360.97273,0200.96393,7080.9469
576909375794631779710,7208,29163845,1225,90413,0121.213811,0521.3336,2000.97124,9370.96395,3760.9106
465534200827476631366,37250,2954969640,86545,17680,7241.216265,3641.299648,2160.970239,3880.963942,7760.9469
87078896197802474648,8965,75170605,2816,3808,9201.00276,1731.07346,8680.97285,0910.96405,9560.9335
1180356181307065947911,0728,12984806,6597,76811,1001.00258,4301.0378,2400.97176,4190.96407,3320.9439
804928207197012377826,24417,6981917615,95218,21631,8041.211924,4731.382818,6040.970215,3780.964017,1880.9436
81287120997185136,5484,70152524,0714,9046,5120.99454,9151.04555,1080.97263,9250.96414,5880.9356
957282928886848305016,38412,2721303610,61012,12019,4001.184115,5821.269712,6560.970810,2290.964111,4160.9419
190897053878898185016,93212,9521355611,17512,64417,9841.062114,2931.103513,1560.970510,7740.964111,8920.9405
978599846063762661017,89214,8301479613,03113,86823,4241.309220,6351.391414,3280.968412,5630.964113,1720.9498
421447155162388461815,2926,95874965,8376,90411,7360.76759,0441.29987,2840.97175,6280.96426,4440.9334
821472730268750497616,4006,95874965,8376,98011,7360.71569,0441.29987,2840.97175,6280.96426,5040.9318
1277151418737807314116,4006,95874965,8376,98011,7360.71569,0441.29987,2840.97175,6280.96426,5040.9318
698511152145685671816,47211,692130369,87911,84418,7641.139114,2621.219812,6840.9739,5260.964311,3120.9551
545543596815549058610,0527,13976366,1796,87610,2641.02117,5991.06447,4160.97125,9590.96446,5600.9540
539849488151126519824,34819,8902076018,14919,53633,3321.36929,2181.46920,1120.968817,5020.964418,8000.9623
13018856189187728109,9328,14884007,2887,91216,0921.620214,5771.7898,1440.96957,0290.96457,3720.9317
1722415098967788588816,64413,6701377611,87012,94819,6881.182916,9851.242513,3560.969511,4490.964512,2880.9490
55697101503056438007,8765,53762924,8315,8288,9001.136,8351.23446,1200.97274,6600.96465,5200.9472
252663113447418597213,2049,900106888,90110,09215,7721.194513,0331.316510,3720.97048,5860.96469,4040.9318
652800595504781332218,91616,5441612014,66915,02423,5641.245721,4631.297315,6000.967714,1500.964614,3080.9523
627556581185300923228,42816,1341814014,09616,82831,8241.119520,7761.287717,6440.972713,5970.964615,9640.9487
113835168113989280998,9325,78870645,2996,3728,9280.99966,1811.06796,8760.97345,1120.96475,9880.9397
76628582836037573379,1647,18275206,2926,9009,5601.04327,8501.0937,3000.97076,0700.96476,5640.9513
1604263662624028703117,00013,9611416812,20613,36820,5441.208517,7781.273413,7360.969511,7750.964712,6880.9491
1736584595158217818517,20413,0641366011,21012,57218,2601.061414,4501.106113,2640.97110,8140.964711,9120.9475
1488999688839284666112,5049,690104128,7029,82415,9561.276113,4231.385210,1040.97048,3960.96489,2800.9446
239475949976233589213,6728,092100807,2099,21621,9641.606516,6552.05829,8240.97466,9550.96488,6440.9379
1759658826840711656615,97213,0741338011,48612,72819,1721.200416,5471.265612,9760.969811,0820.964812,0720.9485
489704134878448986826,72418,4392001616,77218,90031,7001.186224,8171.345919,4280.970616,1820.964817,8520.9446
61230864495866997508,5006,67571725,9946,8728,5281.00336,9511.04136,9600.97045,7840.96506,5240.9494
1462589010388710690517,75614,6371476412,97714,00423,3401.314520,4931.400114,3080.969112,5230.965013,2200.9440
14809870518626389619,24416,9881634414,97815,20423,9121.242621,9281.290815,8200.967914,4540.965014,4960.9534
1566038591856014886525,35218,7491920016,37217,59625,8121.018121,1011.125418,6280.970215,7990.965016,7240.9504
276615177720848978721,86415,3171750013,37616,21226,0561.191719,7791.291317,0360.973512,9090.965115,2960.9435
1261825813008967845423,68819,8022035618,04219,29632,8201.385529,2291.476119,7280.969117,4130.965118,4200.9546
118744925456945331125,7804,00246643,5334,2685,6760.9824,1451.03574,5400.97343,4100.96524,0560.9503
1503868939203372689112,1248,54496127,7208,95213,0561.076910,0091.17159,3440.97217,4510.96528,3560.9334
913282435990443971312,7129,409105128,5069,80814,2001.117111,1881.189110,2160.97188,2100.96529,2520.9433
1522281014622146687017,19214,2311449612,68613,79621,3801.243618,6961.313814,0560.969612,2450.965213,0600.9467
1165490618109864359321,46016,9691786815,18117,04427,8601.298223,7111.397317,3360.970214,6520.965216,0320.9406
1675009219453940339721,79618,1481874416,53317,94031,6361.451528,2831.558518,1680.969315,9570.965216,9120.9427
1053752400851763040223,68017,8621899216,04817,68827,9881.181922,4401.256318,4360.970715,4890.965216,6600.9419
505624351891678631922,12015,2371767613,46816,26825,9961.175219,6271.288117,2120.973713,0010.965315,4240.9481
1499208265314473271623,57215,7891874414,05417,46028,0681.190720,8001.317418,2560.97413,5660.965316,3920.9388
137272565585388561905,8444,04547163,6754,3567,8521.34366,3241.56344,5880.97293,5480.96544,1200.9458
92375299285688337217,1322,96752002,6934,5489,3521.31135,4531.83795,1040.98152,6000.96554,3040.9464
160464747716087545517,03612,2511380011,04012,93220,7121.215816,2251.324413,4200.972510,6590.965512,1680.9409
104501419720668333722,02415,5311747613,40316,26827,0881.229920,8611.343217,0160.973712,9410.965515,2840.9395
21851334271120359928,7925,64869445,1736,2368,8121.00236,0681.07446,7640.97414,9950.96565,8520.9384
845739269665122094718,65614,1351516012,52414,29224,2081.297619,9691.412714,7320.971812,0930.965613,5320.9468
510781119067662932123,52019,1191965617,18318,40024,4921.041320,6451.079819,0640.969916,5920.965617,4440.9480
679925843493575034312,9569,761105248,7599,88816,2081.25113,5511.388310,2240.97158,4590.96579,3000.9405
722269941556324323313,2929,549106608,3329,88417,3041.301813,8401.449410,3760.97348,0460.96579,4120.9522
1801283298014489246915,4087,31676406,0597,05612,4040.8059,9031.35367,4320.97285,8510.96576,6920.9484
303448095304380577316,1407,31676406,0597,11612,4040.76859,9031.35367,4320.97285,8510.96576,6600.9359
1471660533181540536016,5167,31676406,0597,16812,4040.7519,9031.35367,4320.97285,8510.96576,6600.9291
1408717774845119801716,5167,31676406,0597,16812,4040.7519,9031.35367,4320.97285,8510.96576,6600.9291
812428814884400130817,38014,2371434012,63213,22026,5881.529823,9841.684613,9080.969912,1990.965712,7800.9667
1480679584711272626318,02013,5371477212,05613,87622,5601.251918,3801.357814,3600.972111,6420.965713,2240.9530
334903926347374155521,30817,5601773215,54716,48022,3121.047118,8431.073117,2000.9715,0140.965715,7400.9551
1711346009353910896125,52821,5742212819,71820,98836,6001.433732,9431.52721,4520.969519,0420.965720,0360.9546
147745640259579437495,2523,44742163,0453,8206,0921.15994,5331.31514,1120.97532,9410.96583,5800.9372
173530135439056338299,0525,90871925,4166,5249,0681.00186,3241.07047,0080.97445,2310.96586,0400.9258
14324780360241223769,2044,81564844,1525,81211,7641.27817,6451.58776,3440.97844,0100.96585,4480.9374
105609986570506202214,8887,03895405,7708,60017,8961.20211,5271.63789,3440.97955,5740.96608,2040.9540
1597277959907410788926,23621,1872135618,59420,02834,2921.307129,5171.393220,7240.970417,9620.966018,8120.9393
1432330061263318690810,3487,43083126,7537,89612,6721.224610,2911.38518,0800.97216,5240.96617,3920.9362
1172180956512585562510,6648,06688967,3358,26411,8601.11229,5231.18068,6480.97217,0860.96617,8560.9506
59539226385366863213,3329,422101888,5069,52019,5441.465916,9371.79769,9000.97178,2180.96619,0040.9458
992982114727693708923,48420,6392037618,53619,49227,9321.189425,3601.228719,7480.969217,9070.966118,3760.9427
1068901370855699209132,10021,7742358419,82222,12839,9121.243430,2471.389122,9120.971519,1500.966121,1000.9535
1577712526544832400028,28817,0322125214,72019,90431,7161.121220,9711.231320,7560.976714,2230.966218,5680.9329
578337722744678776910,8487,49386086,7968,05211,9201.09889,1041.2158,3800.97356,5670.96637,5560.9384
775001761389708632510,5648,60790807,9138,58411,2361.06369,5511.10978,8120.97057,6470.96648,1320.9473
1681072926527088393512,2688,68698007,8879,11213,3601.08910,3141.18749,5360.97317,6220.96648,5680.9403
1182653815373129298231,92821,3432346019,56822,12840,4881.268130,6601.436522,8040.97218,9110.966421,1080.9539
164516022057180694329,2447,00370966,0366,76411,4521.23899,7261.38886,8960.97185,8340.96656,2600.9255
100164957696163786718,60415,0181431212,59013,28822,8681.229219,9621.329213,8880.970412,1680.966512,6600.9527
1789314147755025105621,25217,3511762415,33216,40822,0361.036918,4271.06217,1120.970914,8190.966515,6320.9527
282493956015401960322,48415,8671802413,84316,70827,1761.208720,8251.312517,5600.974313,3790.966515,8440.9483
179084687660417944422,88819,0221963217,32118,61231,6601.383328,0901.476719,0480.970316,7400.966517,7280.9525
90325269396382365308,9406,99870846,0396,54811,3921.27439,7231.38946,8840.97185,8370.96666,3000.9621
985421703713877625212,1128,66397687,8689,11612,9881.072310,0731.16289,5080.97347,6050.96668,5760.9408
1810203004357939677724,66421,5672152019,42020,20429,8321.209527,0061.252220,8720.969918,7720.966619,1760.9491
1480245311682411526222,83619,0881964817,38018,66031,6481.385928,1931.47719,0720.970716,8010.966717,7600.9518
809751811571590042829,44020,0502193218,33020,72436,3281.23427,6881.380921,3200.972117,7200.966719,7880.9548
7691440264430289791125,01633,7536864830,19444,536131,6601.053144,1761.308867,6400.985329,1880.966743,4640.9759
32852834670239243119,8486,91374646,0266,85210,1241.0287,4331.07527,2640.97325,8260.96686,5560.9568
398583274409171057613,26810,994107329,46610,18814,2481.073912,2461.113910,4160.97069,1520.96689,6640.9486
938826597114120991214,12810,599117409,66411,09215,3521.086612,0961.141211,4200.97279,3430.966810,3960.9373
820308509305012042524,88020,7852136018,96620,21633,9361.36430,1371.449920,7320.970618,3370.966819,3280.9561
1375316749146561830430,76025,9912647623,64025,19242,7241.388938,3021.473725,6920.970422,8560.966823,9600.9511
101793610903610127289,8925,48971404,8046,46012,7961.29368,6661.57886,9840.97824,6450.96696,1000.9443
1456887429185398361215,5446,83474645,7036,80012,0760.77699,1291.33587,2760.97485,5140.96696,5160.9582
561628061413439680816,4806,83474645,7036,94012,0760.73289,1291.33587,2760.97485,5140.96696,4720.9326
1298126737594824157716,4806,83474645,7036,94012,0760.73289,1291.33587,2760.97485,5140.96696,4720.9326
823772894879104262321,32416,9141786815,22116,93228,3081.327524,2501.433717,3640.971814,7170.966916,1280.9525
160897861629076061149,4967,15879046,5187,38416,0641.691713,9931.95497,6880.97276,3030.96707,0080.9491
1534370719178758741724,78819,2662092017,70819,76433,5681.354228,3591.47220,3360.972117,1230.967018,8800.9553
629177952755308293725,23620,8802152418,98720,39634,5321.368430,4601.458820,9000.97118,3610.967019,5160.9569
97234136924145246725,51621,1512185219,32020,69635,2121.3831,1751.473921,2160.970918,6820.967019,7840.9559
110364363195959065936,4124,59551924,0454,8406,3720.99384,8031.04535,0560.97383,9120.96714,5880.9479
181099208015188622388,9645,82070885,3166,3328,9040.99336,1581.05816,9160.97575,1410.96716,0200.9507
69024123527051418669,0045,85971165,3516,4289,0121.00096,2681.06986,9400.97535,1750.96716,0720.9446
57636618506154732919,6606,96479446,1347,3009,8841.02327,4631.07177,7400.97435,9320.96716,9560.9529
273571382463818768313,80010,71977846,2107,02017,2881.252814,6281.36477,5800.97386,0060.96716,5320.9305
674124975779210025813,81210,194114889,28010,60815,7201.138112,4341.219711,1880.97398,9770.967310,1440.9563
1575110330579626886222,22015,7071782013,72316,38426,3281.184920,0821.278517,3720.974913,2740.967315,4600.9436
1115996259696809112631,79222,7722412020,77722,79238,3001.204730,4701.33823,4400.971820,0990.967421,6360.9493
69286094761398337612,6728,898104768,1569,71213,2961.04929,8291.104610,2120.97487,8920.96769,2920.9568
13149761513308282454,0361,65626881,3942,2523,9440.97721,8341.10752,6440.98361,3490.96772,1120.9378
1141735048656910561317,12412,9841366411,23712,73618,1041.057214,2961.10113,3000.973410,8740.967712,0680.9476
1306580052821464479522,57215,7211795613,78816,80026,9921.195820,6561.313917,5120.975313,3430.967715,7880.9398
592574592622187110111,6608,75793807,8368,90014,7161.262112,3491.41029,1280.97317,5840.96788,3120.9339
704196483158552950824,76820,7272129618,94520,11634,3601.387330,6131.47720,6840.971318,3350.967819,2800.9584
1625344135387364556628,79221,1022299619,21721,63238,2601.328831,1491.476122,3760.97318,5990.967820,9080.9665
14108554800195356218,9285,78370685,3026,3848,9921.00726,2471.08026,8960.97575,1320.96796,0040.9405
1296205726861040743813,98010,308113649,18710,66816,3241.167712,9291.254311,0720.97438,8930.968010,0720.9441
1014660132774640969520,27210,969132329,18912,88418,2080.898210,9921.002112,9360.97768,8950.968011,5320.8951
1593052731327692624920,38416,3021672014,32315,58422,7441.115818,9951.165216,2600.972513,8640.968014,8360.9520
167468614485353194988,7285,58468885,1136,1728,6720.99365,9271.06146,7240.97624,9500.96815,8200.9430
730875097198423595023,42815,9081880014,13117,46428,1441.201320,8941.313418,3520.976213,6820.968216,5560.9480
430590559919181128621,74814,9291740813,25516,16425,5521.174919,2471.289216,9880.975912,8350.968315,2480.9433
117610817007165335368,7405,59668885,1246,2128,7921.00596,0451.08026,7280.97684,9620.96845,8720.9453
675871579020772158418,86014,3171531612,66314,29624,0441.274919,7841.381914,9160.973912,2630.968413,5840.9502
979594770667950612510,9247,64181966,4227,47615,9001.455512,8921.68727,9920.97516,2200.96857,0200.9390
42188120406845273338,5044,61053043,3804,76812,1081.42388,4871.8415,2000.98043,2740.96864,3800.9186
1528152689754219728810,7848,39891927,4968,40011,9801.11099,5941.14248,9600.97487,2610.96868,1200.9667
98740441077134925928,1965,96067125,2206,2328,2601.00786,3031.05766,5520.97625,0570.96885,9560.9557
142968887020432582021,36818,5131864016,88517,68037,6161.760435,0341.892418,1120.971716,3590.968816,7960.9500
1371340516851482123922,63615,7051806013,83616,62427,1001.197220,6821.316917,6280.976113,4040.968815,7760.9490
178752591292392868413,3649,953110649,01510,36415,0041.122711,9031.195910,7840.97478,7350.96899,8040.9460
17335813518480788017,84815,5431501213,62114,31620,2681.135618,2351.173214,5880.971813,1980.968913,5800.9486
1117259732961488587817,94815,5521505213,62614,29620,3681.134818,2441.173114,6280.971813,2020.968913,6240.9530
1529780972299447085420,10016,0901677214,44015,64821,4401.066717,7751.104716,3240.973313,9910.968914,8560.9494
127314457904315908716,0164,00244083,1733,9807,8961.31256,1491.53654,3080.97733,0750.96913,7480.9417
124001308865286652288,4886,40665765,4326,06010,6161.25078,8061.37466,4080.97455,2640.96915,7400.9472
130216278875849416118,4886,40665765,4326,03210,6161.25078,8061.37466,4080.97455,2640.96915,7560.9542
117856727487317129809,1606,00372565,4766,5209,16016,4041.06687,0880.97685,3070.96916,1960.9503
677466853060758870511,1167,83384526,6697,70416,5521.48913,5431.7298,2440.97546,4630.96917,2000.9346
13259425436138947218,25613,8941491212,33813,74025,8921.418322,0341.585914,5320.974511,9570.969113,1200.9549
30576094327316219458,7126,40665645,4316,09210,5961.21638,8061.37466,3960.97445,2640.96935,7200.9389
41970391196167916729,66820,2372204418,46120,72836,6401.23527,8521.376321,4760.974217,8940.969319,8800.9591
1520657607842582500624,20822,3872017619,11418,65624,5321.013422,9821.026619,5920.971118,5300.969417,9000.9595
1655104740531230290224,60420,1422129218,55020,31233,7641.372329,6161.470420,7240.973317,9830.969419,5120.9606
589411848917825872910,9168,31489647,3368,33613,9441.277411,6251.39828,7400.9757,1120.96957,9200.9501
1754965975403236941412,7889,483102368,4339,62016,0241.25313,2551.39789,9760.97468,1760.96959,0800.9439
1768955457568628963414,13210,621117169,64410,99215,7401.113812,5011.17711,4240.97519,3500.969510,5000.9552
1422346415673214401218,51214,1431514412,56513,96026,0361.406422,1721.567714,7600.974612,1820.969513,3520.9564
64980523415054957738,8965,75170085,2376,3168,9281.00366,1821.07496,8480.97725,0780.96965,9280.9386
1670659354993216569820,33215,8301709214,30015,98821,7481.069617,2721.091116,6600.974713,8650.969615,5600.9732
923550942569653514018,77614,6911541212,98914,43620,1921.075416,4351.118715,0200.974612,5980.969913,7360.9515
1731451445569836720329,54827,6272436023,21922,49230,2401.023428,5891.034823,6640.971422,5210.969921,7240.9659
749216053518256888621,88817,1381838415,60017,30027,7601.268323,3181.360617,9200.974815,1330.970116,5440.9563
1737498241013826251123,12818,3451963216,82218,40829,5241.276525,0601.36619,1280.974316,3190.970117,6080.9565
77534655836417278209,2966,14073925,6046,6969,3201.00266,5621.06877,2280.97785,4370.97026,3480.9480
15210353501636112069,4006,24274805,7036,7729,3560.99536,5981.0577,3120.97755,5330.97026,4200.9480
1669440689940191566616,92814,9811492813,72313,97618,1321.071116,4581.098614,5200.972713,3140.970213,4880.9651
1224849263104186837718,08813,4891472012,05513,81621,6721.198117,3871.28914,3600.975511,6960.970213,2000.9554
1633271886817902928423,36820,4392057218,63619,46030,5201.306127,8621.363220,0200.973218,0810.970218,6760.9597
136837691243347163818,5966,52266325,5206,17610,5001.22158,7001.33396,4680.97535,3560.97035,8240.9430
62881402809042254328,5966,52266325,5206,16410,5001.22158,7001.33396,4680.97535,3560.97035,8640.9513
139265428849467605769,4926,33675805,7896,8369,5321.00426,7741.06917,4080.97735,6170.97036,4720.9468
1413929084902571692110,1367,32081766,6447,75612,4401.227310,1591.38787,9800.9766,4470.97037,2600.9360
925187325847281812220,18416,1131694414,53615,81221,1841.049517,4571.083416,5160.974714,1050.970315,2160.9623
563276392298108672821,53218,8261850016,72717,14822,6321.051120,1941.072718,0040.973216,2300.970316,4840.9613
1724038351045409431623,26616,3601862014,35717,37627,7721.193721,3761.306618,1920.97713,9300.970316,2160.9332
28252761089060128058,8206,52266165,5196,24410,4801.18828,7001.33396,4520.97525,3560.97055,8440.9359
552325924096423174515,4728,466117967,6199,94415,4080.99598,7721.036111,5720.9817,3950.97069,5200.9574
789131238332771320518,20013,7021505212,39814,25223,4161.286619,2011.401314,6880.975812,0340.970613,5920.9537
155306878565047397358,6685,52368045,0336,1528,6961.00325,9491.07716,6560.97824,8860.97085,7400.9330
13579803219631462202103,81633,1633399228,89531,31645,4480.437836,3371.095733,1480.975228,0510.970830,0720.9603
205119230341067298519,61613,073118208,01710,61619,9561.017314,0031.071111,5840.987,7840.97099,8240.9254
416666679022103537427,06021,4842280419,67621,76436,3561.343531,0771.446522,2320.974919,1040.970920,7640.9541
177419113071342052239,5166,77578686,0597,2609,7161.0217,2481.06987,6920.97765,8830.97106,9080.9515
1677041351287496506815,45612,3561311211,29412,45224,4161.579721,5791.746412,7840.97510,9670.971011,9040.9560
398839629402889120021,41692163527255,56416,9000.78911,0061.09236,3280.99627040.97105,3640.9641
92917363310550453216,04012,9381315611,24512,30021,1321.317518,3021.414612,8280.975110,9200.971111,7120.9522
460425201550682924017,59614,5881447212,81513,46822,5521.281719,8131.358214,1040.974612,4450.971112,8680.9554
358986373843773825667,16043,3913934831,09435,32092,1081.371573,3601.690738,4480.977130,1950.971132,0560.9076
1830125840990562115814,01611,73238202,7924,21217,3681.239215,5921.3293,7400.97912,7120.97133,1600.7502
1345241032062909269122,17217,5161840015,65117,40428,6001.289924,2811.386217,9520.975715,2040.971416,5160.9490
435578002840285395713,12010,246105288,8369,68020,8401.588418,2381.7810,2760.97618,5840.97159,1520.9455
24931220088754620418,1285,11059524,1255,0728,1601.00395,3891.05465,8320.97984,0080.97164,8640.9590
1314067337635919293720,39215,8661722414,40416,08822,0201.079817,5201.104216,8160.976313,9950.971615,6800.9746
815746501294149544323,24015,5681732813,14915,41233,1201.425126,1981.682816,9520.978312,7750.971614,8160.9613
1362895730093710927311,4769,04395248,0268,93613,6161.186511,4541.26669,2960.97617,7990.97178,5520.9570
233262724899260724415,59211,9301289610,80511,88819,3721.242415,9841.339812,5920.976410,5010.971911,4240.9610
177131469116299356639,0965,93772205,4326,4689,1081.00136,3491.06947,0680.97895,2800.97206,2000.9586
1811908077496992201616,33612,9631392811,80912,94817,3641.062914,2671.100613,5960.976211,4780.972012,3960.9574
455637632801199381021,76417,1301816015,42017,31628,3241.301424,0051.401317,7280.976214,9880.972016,4600.9506
499534064906272779322,27617,7191869215,95117,86829,5481.326425,2951.427618,2480.976215,5050.972016,8920.9454
21197636680051519839,1846,02673125,5186,6089,2081.00266,4491.07027,1560.97875,3640.97216,2640.9479
1135753589612822835621,34817,4591792415,66316,86422,0761.034118,4871.058917,4880.975715,2280.972216,0560.9521
272400618891763165,5163,48442763,0763,8365,4200.98263,6161.03794,1920.98042,9910.97243,6880.9614
199514766702723520321,68418,4121887216,89117,83630,9241.426127,9221.516518,4120.975616,4290.972617,0280.9547
30732294616004603028,6404,76553763,4514,76812,3961.43478,7931.84535,2840.98293,3570.97284,4360.9304
184204156143842944409,3526,60476565,8567,0529,5161.01757,0411.06627,5000.97965,6970.97286,8160.9665
477794146459842579810,7328,11370245,4966,65212,1521.13239,9111.22166,8760.97895,3470.97296,1360.9224
836301119843067235212,92010,314106648,93910,02814,6201.131612,3171.194210,4240.97758,6970.97299,5280.9501
773095793357218476625,70016,6321868415,07117,48829,5601.150221,5101.293318,2760.978214,6620.972916,7520.9579
7217095529316308278103,50832,8463438829,29131,58045,1160.435936,0001.09633,5960.97728,4970.972930,1000.9531
99426781265480802103,8722,14119289621,6683,4040.87912,1190.98971,9000.98559360.97301,4400.8633
288811506340336492212,98010,031108249,04410,16014,7641.137412,0851.204810,5840.97788,8020.97329,7160.9563
181894089707002855109,3286,17074045,6216,6929,3521.00266,5941.06877,2520.97955,4710.97336,3120.9432
13386591577230889513,22410,711105769,31310,04413,5281.02311,5551.078810,3240.97629,0640.97339,5360.9494
556318495209785662413,3967,90299447,0879,04421,5081.605616,2872.06119,7560.98116,8980.97338,5880.9496
134882205750631091176,1882,39644282,0273,6326,1720.99742,6481.10524,3760.98831,9730.97343,5120.9670
1076344259622573155829,74424,1122529222,11924,04040,6761.367535,3831.467424,7040.976821,5300.973423,0920.9606
174968609661879590157,4844,47255363,6344,9727,5241.00534,7821.06935,4400.98273,5380.97364,6200.9292
1267170526673205278611,6447,93395327,2628,78011,8761.01998,4781.06879,3400.97997,0700.97368,4120.9581
104047511076506272313,5009,923105048,4389,07615,3321.135712,1201.221410,2800.97878,2150.97368,6040.9480
749061486740289330530,40424,9352590022,62824,39241,0801.351135,9121.440225,3040.97722,0320.973723,6800.9708
6084893042542470169103,29632,6893410429,03931,00845,2600.438236,2021.107533,3400.977628,2740.973729,4600.9501
6868941634801083060103,77233,1073439229,31131,43645,2520.436136,1301.091333,6240.977728,5410.973729,9600.9530
1731480155603544366520,26416,2571691614,56215,77220,8361.028217,1371.054116,5360.977514,1810.973815,2320.9658
870413958574373720130,63627,2792440022,41722,99665,7082.144862,6242.295723,8120.975921,8290.973821,8240.9490
2973235419983774677104,03233,4293492429,86632,06045,2640.435136,2111.083234,1400.977629,0830.973830,4920.9511
786455585351262485513,10410,241106048,9099,84820,0281.528417,4401.70310,3720.97818,6770.97409,2920.9435
38790029152999488412,7329,506102488,4799,58816,1641.269613,4741.417410,0280.97858,2590.97419,0960.9487
1479040372618668937912,7929,878105969,02710,02015,3561.200412,9781.313810,3640.97818,7930.97419,5360.9517
884813340207993829412,97210,707105769,30510,03213,5481.044411,5551.079210,3320.97699,0640.97419,6000.9569
42658587519305742616,61210,663133409,76512,21622,1601.33416,4821.545713,0840.98089,5120.974111,7080.9584
1100588780282313655117,41214,4141455612,88313,74422,0681.267419,3431.34214,2240.977212,5500.974213,1560.9572
70887781204828446611,7008,69994007,8218,82415,1041.290912,6391.45299,1960.97837,6200.97438,4200.9542
147383038968573851320,16815,4761636413,98815,68025,2361.251321,1331.365516,0080.978213,6290.974314,7960.9436
1491550113818539074724,10820,4992071218,48419,27225,6601.064422,3891.092220,2400.977218,0090.974318,4880.9593
225482875368795003528,70823,0632421621,09522,96039,2681.367833,9841.473523,6720.977520,5520.974322,1200.9634
1559993566019990323115,29613,4251321212,05112,35615,4881.012613,8911.034712,9040.976711,7420.974412,0400.9744
1805028975262978791819,21615,9311658014,59315,78019,7841.029616,7741.052916,2040.977314,2190.974415,0880.9561
256238126667490813822,78811,268126649,74211,89216,9520.743912,0811.072212,4160.98049,4930.974411,4440.9623
66006760124183098899,2006,04473125,5236,6129,2281.0036,4701.07057,1720.98095,3820.97456,3040.9534
537250843738544673912,2528,883101408,0729,33213,7121.119210,6311.19689,9360.97997,8660.97458,8440.9477
103195620181501792739,3246,16774245,6186,6809,2840.99576,5281.05857,2800.98065,4760.97476,3280.9473
1388122533891261810213,26810,698113849,62210,73614,8241.117312,2631.146311,1400.97869,3790.974710,4760.9758
1793116222725340609726,61612,1831646411,00015,22027,4481.031313,2951.091316,1880.983210,7220.974714,8240.9740
1119594513062131703337,54833,0432706824,79624,32457,5441.532553,5151.619626,4400.976824,1680.974723,3160.9586
1428155303358023864826,88821,5412286819,78321,76035,3081.313230,2771.405622,3720.978319,2860.974920,7840.9551
44593353954460817189,2006,04173165,5136,6089,1920.99916,4341.06517,1760.98095,3750.97506,2640.9479
305741904153652735513,36811,2261116010,11510,46016,4801.232814,6071.301210,9080.97749,8640.975210,0680.9625
670113650879579914024,54020,5972151219,02520,16832,8681.339429,1971.417521,0400.978118,5540.975219,3480.9593
230024373580741707611,2047,92484526,6767,69616,0681.434113,0591.6488,2880.98066,5110.97537,2880.9470
1239065247773314082412,92010,296107209,00210,08414,4881.121412,1761.182610,5000.97958,7810.97549,6040.9524
1567533435188086131227,55621,8852336820,11222,04035,9921.306130,6381.422,8760.978919,6170.975421,2400.9637
350552572708693906321,46811,083122649,54411,48816,5280.769911,9941.082212,0320.98119,3100.975511,0360.9607
675711536383790876522,40411,083122649,54411,55216,5280.737711,9941.082212,0320.98119,3100.975511,0800.9591
616454365087690315922,40411,083122649,54411,55216,5280.737711,9941.082212,0320.98119,3100.975511,0800.9591
35703427462857514827,6165,03956524,2295,15212,7921.679610,4852.08085,5480.98164,1260.97564,9280.9565
1674371277963173784317,51614,6261464413,03114,00821,9601.253719,3381.322214,3280.978412,7130.975613,2720.9475
36902865195744760565,8684,35737522,8443,5287,3801.25776,1191.40443,6840.98192,7750.97573,3760.9569
93465447753954303179,6326,97580326,2537,5089,8201.01957,4571.06917,8800.98116,1010.97577,2040.9595
21346742238626902132,82030,6392773226,43225,38834,3801.047532,4691.059727,0920.976925,7900.975724,4040.9612
911066263854818455532,87630,6712773626,46325,40834,4401.047632,5071.059927,0960.976925,8220.975824,2960.9562
1170053001181802724521,48416,9121819615,37417,03623,0761.074118,5291.095617,8240.979615,0030.975916,6520.9775
604050694063912092016,47613,670114609,76710,82420,1041.220217,6751.29311,2280.97989,5330.976010,2200.9442
123064303766971952417,51414,6271457212,95514,11621,9561.253619,3351.321914,2600.978612,6440.976013,2920.9416
1725755147244423692011,8488,59197127,9109,12413,2481.118210,5271.22549,5240.98067,7210.97618,6960.9531
536967465545589619618,59215,2361521613,49014,68023,3001.253220,4551.342514,8920.978713,1670.976113,8800.9455
1813212624853435612311,9169,32193768,0748,74013,0441.094710,9901.17919,1840.97957,8820.97628,3920.9602
88987192754034973694,6762,69134762,3253,0564,4800.95812,7591.02533,4200.98392,2700.97632,9400.9620
1788947482397146022024,12419,4082002017,44718,56037,2281.543233,0311.701919,6080.979417,0330.976318,0040.9700
1482614799486465566625,67623,3212251621,01521,00033,7521.314531,6711.35822,0200.97820,5190.976420,3440.9688
1233363141095285477521,57617,0511832015,49817,12422,9961.065818,5001.08517,9560.980115,1340.976516,8040.9813
68951041539431858988,0484,87460804,2305,51212,1241.50659,2171.89115,9800.98364,1310.97665,2280.9485
1442069792940899697818,70016,6911556814,52614,30019,1241.022717,3861.041615,2280.978214,1880.976713,7760.9634
4605405178324808740198,94098,72510765274,21689,748218,4041.0978136,8931.3866105,9240.983972,4880.976784,3000.9393
15486245458815190976,5563,63528721,4652,7006,3000.9613,7521.03222,8360.98751,4310.97682,2920.8489
1065365032880973879417,19214,5121428412,46913,18818,9081.099816,4991.136913,9920.979612,1800.976812,6640.9603
432997088932337579717,20014,2061442012,76813,70821,8281.269119,1031.344714,1240.979512,4720.976813,1480.9591
1100602248679310253517,70814,8391469613,07414,04022,3321.261119,7301.329614,3920.979312,7710.976813,3120.9481
541369299816299017320,18416,6781761215,37016,60026,7521.325423,5191.410217,2600.9815,0170.977015,8360.9540
720759306491712270411,3568,99293847,8998,90013,1401.157111,0431.22819,2040.98087,7180.97718,5160.9569
162880492669320941916,25613,97461964,9805,83218,7761.15516,9131.21036,0840.98194,8660.97715,3520.9177
850361506008615639946,32044,5714093639,62338,44848,2001.040646,4521.042240,0280.977838,7160.977137,1080.9651
1783179714202277957911,5129,32393328,0688,78012,9081.121310,9921.1799,1520.98077,8850.97738,3920.9558
1041952283307050941715,24012,575104928,8639,83616,7001.095814,4171.146510,2920.98098,6620.97739,2760.9431
1296615145827574267215,62412,77573165,7166,63216,0921.0313,6771.07067,1880.98255,5860.97736,2560.9433
1317254896481621506211,6809,20096848,1829,08817,3681.48715,1761.64969,5000.9817,9970.97748,6440.9511
877780923848157922397,92027,2712958824,51927,66445,0840.460435,9821.319429,0360.981323,9650.977426,3400.9521
1667310534928535843717,66814,6571476413,07614,04022,1081.251319,3691.321514,4720.980212,7840.977713,4200.9558
839481437537803237622,87619,5921999617,98718,78032,4601.41929,4481.503119,5960.9817,5860.977718,0680.9621
1611928123591425551320,56818,52886007,38210,48017,8400.867416,1440.87138,4360.98097,2180.97787,3480.7011
570678509402648799022,40419,1461957617,55218,42829,8761.333526,8891.404419,1880.980217,1630.977817,6320.9568
79130602054361179129,5247,11174726,0626,78014,0081.470811,8671.66887,3360.98185,9280.97796,4800.9558
90086525568736227439,4806,43374685,6787,0849,6321.0166,8531.06537,3440.98345,5530.97806,7480.9526
911024233290673062810,8367,55481606,3817,46016,3721.510913,3631.7698,0200.98286,2410.97816,9720.9346
1569191422372021802314,86013,2211259611,56111,81214,7400.991913,3751.011612,3440.9811,3090.978211,4760.9716
1026425966846470474317,57614,6511462012,99414,04022,1161.258319,4571.32814,3360.980612,7110.978213,3400.9501
252894857311485998930,56827,8352699225,23925,35637,6961.233235,2351.265926,4400.979524,6880.978224,4640.9648
1564910762685034993130,56827,8352699625,23925,30837,6961.233235,2351.265926,4440.979624,6880.978224,4640.9667
265862189070234376739,472733,138589628585,469544,816776,3481.0499770,5491.051576,8560.9783572,6980.9782533,1360.9786
741333794547182349611,0287,74784326,6497,78416,3561.483113,3471.72298,2880.98296,5050.97837,2680.9337
345972587113852059830,16821,0332408419,39521,52847,2401.565938,5801.834323,6680.982718,9770.978420,9040.9710
49764364087711004739,4887,08574486,0496,72413,9121.466311,7811.66287,3160.98235,9190.97856,4400.9578
481303521321742248911,2607,62390286,7558,18011,3081.00437,9631.04468,8840.9846,6100.97857,8760.9628
1506993080503659523920,24817,2021730015,42316,40026,0121.284723,2721.352916,9680.980815,0910.978515,7640.9612
435602986335110517930,33626,7472641624,19324,29233,4521.102730,1451.12725,8960.980323,6750.978623,3480.9611
23911088287381090687,6805,91965645,2906,1207,7081.00366,2151.056,4520.98295,1780.97885,9080.9654
200685393002853945827,18025,3712351622,38022,05627,3401.005925,8011.016923,0440.979921,9080.978921,3320.9672
750937878328628686830,760828,283642364640,648580,308866,3721.0429864,1801.0433628,8520.979627,1350.9789570,8240.9837
1362025174287534422670,83647,1004350836,13038,78495,2641.344980,4861.708842,7480.982535,3700.979036,9920.9538
589258064081251703210,1367,30781686,6007,54417,0561.682714,4991.98438,0320.98336,4620.97917,3040.9682
1177737539018045762015,5367,04978365,9307,32010,8200.69647,9701.13077,7120.98425,8060.97916,9480.9492
1733945048843986759816,6447,04978365,9307,43610,8200.65017,9701.13077,7120.98425,8060.97916,9160.9301
263326463639986801616,6447,04978365,9307,43610,8200.65017,9701.13077,7120.98425,8060.97916,9160.9301
151742624461754264407,2804,95048123,3904,3246,8920.94675,0501.02024,7400.9853,3200.97944,0800.9436
99884725583020683116,20843954603395,23614,7240.90844040.92035,4520.99853320.97944,7400.9053
244773244257634318321,07617,0371819215,67817,04028,7161.362524,9521.464617,8680.982215,3560.979516,3840.9615
995529200670315617610,9328,44368125,4416,47211,8361.08279,6971.14856,7000.98365,3300.97965,9680.9221
111795600963161282953,9162,04628281,8202,5043,9721.01432,3751.16082,7920.98731,7830.97972,3560.9409
550081633916691786,6684,23453083,8444,8206,4880.9734,3221.02085,2320.98573,7660.97974,6120.9568
561344198396049367514,76811,16067725,1136,22017,8561.209114,6181.30996,6680.98465,0090.97975,6440.9074
133808471269219677638,8926,63569885,8126,6409,1881.03337,4451.12216,8720.98345,6950.97996,2920.9476
1393164442691939404910,2127,55772685,7306,90012,1161.18649,9101.31147,1520.9845,6150.97996,4880.9403
306712042304162853813,83211,3691192410,41811,11614,4521.044812,2641.078711,7160.982610,2090.979910,6800.9608
433928100362478355727,48417,825125849,32811,29633,8721.232426,7741.50212,4000.98549,1430.980210,4320.9235
108264130057170348697,2564,24553483,4534,7767,1920.99124,4541.04925,2800.98733,3850.98034,4200.9255
1747890146198066591810,5368,29457684,6355,36811,3481.07719,5321.14935,6800.98474,5450.98064,9400.9203
87696383867965425088,5806,62369645,7986,4769,1201.06297,4331.12236,8520.98395,6860.98076,2840.9704
1797834688368641895825,80021,9382262420,20621,19235,1761.363431,5871.439822,2360.982919,8170.980720,5280.9687
1670319091599364190514,09612,1351246811,23711,76814,5481.032112,8601.059712,2520.982711,0210.980811,4200.9704
1505882376997689186617,47215,7151448413,46513,40418,0641.033916,5781.054914,2240.98213,2060.980813,0200.9714
211682516218050196317,73613,2571275210,49011,08438,8042.187934,6112.610812,5520.984310,2890.980810,7800.9726
1475032240704178855618,47215,4181519613,50514,12023,0321.246920,2521.313514,9360.982913,2470.980913,6240.9649
1020317695573717978614,58012,5421238011,26711,64414,7961.014813,0281.038712,1680.982911,0550.981211,2720.9681
130625510434511519095,5163,47345523,1594,0205,4240.98333,6251.04384,4920.98683,1000.98133,9200.9751
1452156283515136366823,07218,6221603613,55814,68824,8761.078220,9701.126115,7840.984313,3060.981413,9960.9529
113680220475447919816,3563,78248923,4034,3726,2080.97673,9081.03334,8280.98693,3400.98154,2640.9753
62086744620280618638,9166,60872406,0366,6529,0361.01357,2651.09947,1320.98515,9250.98166,4520.9699
1460120610603145169413,2525,56054642,7194,98413,3441.00696,2361.12165,4160.99122,6690.98164,8040.9639
1333736477708186898513,7284,63388123,8007,30817,0761.24398,2591.78268,7440.99233,7310.98187,1360.9765
649103278780198626114,04011,51592087,7528,79616,1961.153614,0371.2199,0720.98527,6130.98218,2840.9418
658159915211997273618,16013,238120849,41911,30019,8441.092715,6031.178711,9160.98619,2510.982210,6720.9444
356197621646513374118,16013,238120849,41911,22819,8441.092715,6031.178711,9160.98619,2510.982210,6640.9498
938131248859851611224,90422,3052119619,68319,91626,7321.073424,4051.094120,8480.983619,3350.982319,2840.9683
974886014934578340615,24812,73092608,0338,89617,5601.151615,4141.21089,1160.98447,8920.98248,2680.9294
108500650964373383014,1761,39023841,3122,0123,0800.73751,5631.12452,3640.99161,2890.98251,9200.9543
87189585377687441064,1761,39023841,3122,0123,0800.73751,5631.12452,3640.99161,2890.98251,9240.9563
760607393428346281315,77612,8321358411,96312,81221,7681.379819,0891.487613,3760.984711,7540.982512,3400.9632
1642733797941549180417,51214,5251471612,87013,77623,9081.365221,1941.459114,4920.984812,6460.982613,4040.9730
745071307433933813566,55645,2454089234,12036,54891,2241.370677,7611.718740,3040.985633,5310.982734,4960.9439
1274617812362876032610,6088,35385327,3788,00010,3800.97858,6431.03478,4040.9857,2510.98287,7000.9625
1815044364299850459813,99210,10686566,7917,85613,4000.957710,1921.00858,5400.98666,6740.98287,3040.9297
1651419752538393569228,29223,8291939216,88717,88434,8641.232330,9611.299319,1040.985116,6000.983017,2480.9644
5606614172662096063198,500151,448140948125,604122,928290,2321.4621244,4681.6142138,8160.9849123,4690.9830114,0880.9281
5.71391E+1610,3128,35185207,3777,92010,3321.00198,6411.03478,3920.9857,2520.98317,7160.9742
1345408178081240145146,24043,5362795226,48620,35248,8041.055446,7001.072727,5040.98426,0380.983119,9440.9800
3101638218703963086,4123,84048963,4134,3326,2720.97823,9701.03394,8360.98773,3560.98334,2120.9723
8025392057027446120,23215,7931655614,04415,33626,7801.323622,6231.432516,3240.98613,8090.983314,8880.9708
1619084571742224897328,37618,8031764413,23816,05630,6321.079522,7111.207817,4240.987513,0170.983315,4520.9624
1802235786931141539020,85613,535110087,3499,62023,7281.137716,8301.243410,8840.98877,2270.98349,0800.9439
1321872935506476047120,85613,535110087,3499,53223,7281.137716,8301.243410,8840.98877,2270.98349,0760.9522
1612260447934957343220,85613,535110087,3499,50423,7281.137716,8301.243410,8840.98877,2270.98349,0680.9541
132969298768032106474,9842,40432921,9992,9766,9401.39254,6331.92723,2600.99031,9660.98352,7920.9382
864203226692858733017,82414,9471151210,06510,84421,2921.194619,0651.275511,3440.98549,9000.983610,4040.9594
1463123492166001381119,07612,96592166,2638,34823,0481.208217,5921.35699,1120.98876,1600.98367,9000.9463
764299294093587761221,30416,0051389211,52612,88823,7961.11719,0521.190413,7040.986511,3370.983612,3240.9562
104884333932986724811,4929,40852364,0374,92411,4240.99419,7111.03225,1680.9873,9710.98374,5680.9277
1577733590333568686315,63614,0011314012,13612,30030,8601.973729,4722.10512,9440.985111,9390.983811,8920.9668
859709083568356500128,90824,3772075618,21219,30436,3721.258232,3971.32920,4640.985917,9180.983918,6680.9671
68572310662533935266,1403,91150443,5634,5047,1321.16165,1921.32754,9880.98893,5060.98404,2920.9529
1087652234496514950515,96811,04597727,5139,08817,4281.091412,9571.17319,6520.98777,3930.98408,5840.9445
56453951696027264927,56818,0061763213,23816,15629,2041.059321,2931.182617,4240.988213,0290.984215,5760.9641
1489457513774477587914,30012,0811231610,85211,48415,8721.109913,6721.131712,1480.986410,6820.984311,1600.9718
231416961759828094414,35212,6811243611,39811,58814,4041.003613,0051.025612,2560.985511,2190.984311,2280.9689
817846118606447892715,84813,3341398012,30513,25623,4961.482621,2601.594413,7840.98612,1120.984312,9920.9801
1812637295862113970618,81615,9211213210,67611,40822,8201.212820,5841.292911,9640.986210,5080.984310,9520.9600
668194534891820461044,98829,0633125226,67029,34449,1161.091839,9621.37530,8320.986626,2510.984328,3680.9667
562811360041741359544,98829,0633125226,67029,34449,1161.091839,9621.37530,8320.986626,2510.984328,3680.9667
1495566680688508092216,71611,031106567,8779,84017,7721.063212,6551.147210,5320.98847,7540.98449,3360.9488
1655917936945313389618,82815,9371220810,77111,48021,7401.154719,5041.223812,0400.986210,6030.984410,9120.9505
183911561989797263648,8964,59264484,0645,9009,0241.01445,0421.0986,3880.99074,0010.98455,6680.9607
55314773032046181616,7924,35853523,8924,7526,6080.97294,4421.01935,2960.98953,8330.98484,5680.9613
115986146651640545718,93216,0491199610,60411,30822,2841.177120,0561.249711,8360.986710,4430.984810,8600.9604
119704559410292617466,5364,25153083,8994,9049,6321.47377,5951.78665,2480.98873,8400.98494,7400.9666
11596000167633429538,8486,95972646,1606,79614,2801.613912,6611.81947,1720.98736,0670.98496,5280.9606
1267254514138727386919,57613,57783205,8097,52819,1960.980614,2441.04918,2320.98945,7210.98496,9000.9166
413564274683452382010,1164,20359683,5305,3249,9160.98024,2561.01265,9160.99133,4770.98505,2440.9850
72598089644224749618,60415,7791211610,55311,47223,3681.256120,9711.32911,9560.986810,3950.985010,8840.9487
1223394410074519429719,91616,3401338811,43012,52024,7441.242421,5301.317613,2160.987211,2590.985011,8800.9489
1494432912853092930110,6568,36883847,1767,61610,5240.98768,4861.01418,2800.98767,0690.98517,4560.9790
214472315324120183816,44414,1341428812,72813,30818,2201.10815,9091.125614,1000.986812,5380.985112,9600.9739
146069448549013317117,98815,1111159610,14910,93620,6801.149718,4551.221311,4440.98699,9980.985110,3840.9495
1536110812593903190017,38014,514110369,66510,42820,0241.152117,8061.226810,8920.9879,5220.98529,9480.9540
160716038424053684818,79215,6701402012,13113,29221,5001.144118,8771.204713,8400.987211,9510.985212,7400.9585
30023793655558609566,6044,18352043,7444,6366,3840.96674,2311.01155,1520.993,6890.98534,4760.9655
651374626149541020230,88823,8992316419,52920,66038,2321.237831,7751.329622,8760.987619,2410.985320,2280.9791
1197457274433142107018,76415,8371222810,76911,48822,2841.187620,0221.264312,0680.986910,6120.985411,0280.9600
420674592580348707441,51239,3863684835,57534,64042,6641.027840,8061.036136,3320.98635,0570.985433,7520.9744
128557738274202982656,2603,69848043,3174,2486,0680.96933,7771.02144,7560.993,2690.98554,1240.9708
291451415872191691717,40814,8891292411,35512,18419,5921.125517,4241.170312,7600.987311,1920.985611,6560.9567
465163439011078186321,65618,5211886816,89417,74022,2441.027219,4001.047518,6240.987116,6510.985617,3440.9777
904481862478188511621,70418,5211889616,89417,76022,2921.027119,4001.047518,6520.987116,6510.985617,3360.9761
1231809090484203370141,49239,3563683235,54034,31642,6441.027840,7761.036136,3200.986135,0270.985633,6480.9805
731449229590283342245,59642,4343580034,35433,46473,8081.618770,9141.671235,3040.986133,8580.985632,1320.9602
123128347728534458517,59215,0931330811,75312,51620,7001.176718,5481.228913,1400.987411,5850.985712,0120.9597
1248005223173807253610,5767,76885526,8427,94011,3121.06968,7731.12948,4560.98886,7450.98587,6800.9673
1783262909370150083418,00815,4381366012,07412,90820,6281.145518,4041.192113,4880.987411,9020.985812,4280.9628
1740357398599617077426,98017,8252118816,57019,48437,0001.371428,1441.578920,9520.988916,3340.985819,0400.9772
420909333922474835528,02418,4631761613,20916,02830,2121.078122,3031.20817,4280.989313,0210.985815,3520.9578
1258030071964007378068,16846,1314176434,77537,24492,1041.351178,1641.694441,2720.988234,2820.985835,3080.9480
1417421363295023929626,97222,5721228810,17111,43635,1321.302531,4121.391612,1440.988310,0280.985910,8000.9444
570832504613233974732,10426,7651842015,99416,82839,9681.24535,1301.312518,1920.987615,7680.985916,2120.9634
1167494417699266822818,49215,4321360411,77512,94021,1721.144918,6401.207913,4440.988211,6130.986212,3720.9561
111797185641825084366,1364,21643643,2864,1566,0360.98374,6071.09274,3200.98993,2410.98633,8840.9346
183063618373523364486,7204,28653323,8724,8286,5000.96734,3341.01125,2800.99023,8190.98634,6400.9611
95040278746079072878,7007,04575646,4327,1649,3081.06997,9281.12537,4760.98846,3440.98636,9280.9671
932331363399543436916,65213,9751426012,58613,34021,3441.281818,9471.355814,0880.987912,4130.986312,9640.9718
192577443248409593318,36415,2111334411,52312,41621,8721.19119,2271.26413,1880.988311,3650.986311,8600.9552
946752649804580222725,62414,565138848,54911,24028,8481.125818,3821.262113,7680.99168,4340.986510,6600.9484
212548453804607704018,68815,7691198810,54911,33222,3001.193320,0421.27111,8440.98810,4080.986610,8560.9580
51025425116074292928,94820,4592100416,19418,54035,6801.232627,7451.356120,7880.989715,9770.986618,2040.9819
113486143763685232134,6881,86028161,7352,4163,6320.77472,0771.11672,7920.99151,7120.98672,3400.9685
123077035238943925068,9566,54774686,0486,88812,1281.35429,9661.52227,3880.98935,9680.98686,6720.9686
1158155365247443212214,78411,9301195210,35310,72815,1681.02612,5881.055211,8120.988310,2160.986810,4520.9743
178672916249445978479,8208,38539563,1943,7569,3720.95448,3520.99613,9120.98893,1520.98693,4160.9095
1194355354389542047317,36414,6631460012,79413,67218,2881.053215,8581.081514,4320.988512,6270.986913,2680.9705
1079568576170735921424,97614,655137168,61811,03628,4161.137718,4851.261313,6040.99188,5050.986910,5200.9532
109770060060677288884,3801,58825361,4642,1443,2440.74061,7191.08252,5200.99371,4450.98702,0640.9627
1189976668030619525216,39610,755104887,7349,83217,5561.070712,4831.160710,3880.99057,6340.98719,3080.9467
1042688420059225260718,76015,7701160010,21910,93221,8481.164619,5381.238911,4680.988610,0870.987110,4640.9572
442983804716596835272,53632,9383784824,96533,10487,4921.206254,2701.647637,5240.991424,6440.987131,8840.9631
1672554664770670447212,7167,19086205,9167,47612,4440.97867,4261.03288,5440.99125,8400.98727,1520.9567
1523761370404296794516,32410,716105527,7999,86417,4561.069312,4131.158410,4520.99057,6990.98729,3560.9485
237823431541083267616,52010,805104327,7109,77617,6281.067112,4841.155410,3320.99047,6110.98729,2080.9419
862928409062408844429,03625,1811964417,51818,54834,9841.204831,6951.258719,4200.988617,2930.987217,8480.9623
95539856055009663244,08428,7782075215,40519,01266,3161.504351,3931.785820,5520.990415,2080.987218,1400.9541
180850304486371288435,5523,54344883,2294,0565,3680.96693,6391.02714,4440.99023,1880.98733,9960.9852
1440483369049254929421,64018,7891224810,82610,88023,3801.080420,9051.112612,1120.988910,6890.987310,5080.9658
53873089726183645211,4963,70057282,8705,26411,5201.00214,3051.16355,6920.99372,8340.98755,0480.9590
783685636119838293917,57214,4281234810,96611,51617,7961.012715,3791.065912,2120.98910,8290.987510,8920.9458
897647246996183115520,40816,9781416412,13813,28824,0001.17620,9721.235214,0120.989311,9860.987512,7160.9570
1088808525740305095831,96026,7861771615,46616,32040,0841.254235,3791.320817,5240.989215,2730.987515,6480.9588
691856290703789260729,73225,8901981617,68918,64036,2961.220833,0201.275419,5960.988917,4700.987618,0160.9665
793960428643355016410,6168,73591647,9828,52810,7041.00839,0771.03929,0640.98917,8840.98778,3680.9812
828926110934463037116,09210,514101887,4609,35616,7921.043511,7841.120810,1000.99147,3690.98788,9360.9551
1300298924059663837116,65213,7491400812,42513,15632,8321.971730,2082.197113,8560.989112,2740.987812,5480.9538
925172031017243802223,57621,1101993218,63018,18423,5240.997821,3281.010319,7040.988618,4020.987817,5320.9641
162064661133242684794,9403,52723041,4862,1124,6640.94413,6071.02272,2840.99131,4680.98791,9120.9053
119422941861472144018,47615,5641187210,46011,18021,1241.143318,8691.212311,7480.989610,3330.987910,6440.9521
1373638795081105484120,26060,8946719244,72559,036133,9801.114183,6521.373766,6520.99244,1850.987956,1720.9515
27825582099853950257,0924,90055644,2655,1488,1601.15066,2571.27695,5120.99074,2140.98805,0600.9829
1350136634943719061013,65210,32896727,7319,15614,7721.08211,9351.15569,5800.99057,6380.98808,7360.9541
1360342022217849038116,65210,905105607,8279,82417,7001.062912,5191.14810,4680.99137,7350.98829,3480.9515
133924019867222794297,1124,26956083,8304,9446,9800.98144,4081.03265,5640.99223,7850.98834,8360.9782
877684035025888959021,28415,2281643213,04815,20427,4401.289221,8571.435316,2840.99112,8970.988414,9120.9808
147810817602997635516,3083,73348203,3404,2686,1080.96833,8081.02014,7840.99253,3020.98864,1200.9653
11504600921149411317,0324,88755244,2175,1088,1041.15246,2311.2755,4760.99134,1690.98864,9720.9734
1233220325191563563011,9167,71781125,9927,70811,2120.94097,8841.02168,0480.99215,9250.98887,3360.9517
504286808959614963814,06010,74698087,8559,19615,3241.089912,4961.16299,7200.9917,7670.98888,7680.9535
1676224783149687305915,63612,2031277610,74212,03218,3161.171415,1541.241812,6560.990610,6230.988911,6160.9654
1821447758576014490816,60010,927107007,94510,00817,5601.057812,4541.139710,6120.99187,8570.98899,5160.9508
224931292230818479122,97618,5951374011,45412,23229,2201.271825,4621.369313,6120.990711,3270.988911,7480.9604
1741138952380392228514,22410,802100528,0329,34815,5841.095612,6661.17269,9640.99127,9440.98908,9160.9538
544198843082552188815,5449,98799727,2679,30016,2801.047311,3531.13689,8920.9927,1870.98908,8160.9480
1397967778534630472322,08819,2621916817,52518,12822,3281.010919,7721.026518,9760.9917,3330.989017,7360.9784
66099376940165157466,3083,74548683,3854,2966,1000.9673,8111.01764,8280.99183,3480.98914,2200.9823
398424046542556188718,50415,1891357611,58112,90821,2361.147618,4711.216113,4480.990611,4560.989212,3720.9585
1069597486361329928217,1449,888107967,85410,13617,9561.047411,1841.131110,7120.99227,7700.98939,6920.9562
1193779905986237593712,06410,255108249,64310,41212,0040.99510,4661.020610,7240.99089,5420.989510,0560.9658
543233141995306851115,86810,415102527,6549,57616,1161.015611,3801.092710,1720.99227,5740.98959,0920.9495
1838471671093664901617,12415,0421239611,03111,84817,0840.997715,3911.023212,2800.990610,9150.989511,4480.9662
1719842122985226814922,46815,5531728413,92316,45222,6321.007315,9891.02817,1400.991713,7770.989515,9000.9664
1644716248076175071229,78427,9262717626,09225,95230,4281.021628,8421.032826,9040.9925,8190.989525,4160.9793
102898847006480330832,20426,8091854816,11316,81639,5961.229534,7081.294618,3760.990715,9440.989516,3120.9700
38999931639542078958,1483,78858683,2804,9127,9680.97793,8801.02435,8360.99453,2460.98964,8480.9870
1220179576411376433111,5163,45955922,6975,16811,0560.96013,7251.07695,5640.9952,6690.98964,9880.9652
1296406115806405187432,51229,6932259220,70621,21640,1601.235237,7521.271422,3760.990420,4910.989620,6520.9734
771943370901382562816,23210,739103487,7339,61216,7081.029311,8611.104510,2680.99237,6530.98979,1400.9509
1669090416067138071626,84419,5431506812,06713,66432,4521.208926,0951.335314,9440.991811,9430.989713,0320.9537
1032645268254896721315,03211,064122609,91410,85623,0361.532519,3761.751312,1600.99189,8130.989810,8040.9952
352091600837545153415,5369,96499687,2719,33216,2681.047111,3271.13689,8960.99287,1970.98988,8520.9486
1500944776667332953925,64022,1601775615,78016,71631,1281.21428,1891.272117,5960.99115,6190.989816,0840.9622
1669686590295602206713,85610,54298967,9339,38414,7521.064711,9231.1319,8160.99197,8530.98998,9720.9561
190769362410062191914,17610,83999728,0239,39215,1481.068612,3031.13519,8920.9927,9420.98998,9680.9549
323411441333785090716,18814,26468965,8626,22424,2321.496922,7231.5936,8360.99135,8030.98995,8520.9402
2480756160559157216,7844,61552923,9954,8927,7281.13925,8441.26635,2520.99243,9550.99004,7320.9673
77663228863837761927,0525,17660404,8215,6527,6801.08916,0521.16925,9920.99214,7730.99005,5160.9759
91662673110335099668,2805,82666365,2866,14812,2921.484510,1111.73556,5840.99225,2330.99005,9800.9727
163056710484117456768,2485,38755444,0855,1129,0761.10046,6941.24265,5040.99284,0450.99024,8680.9523
422980974223879232710,0047,60782407,0467,7009,6520.96487,7611.02028,1720.99176,9790.99057,4720.9704
138698102193233865623,71219,3401384011,55612,34029,9761.264226,2281.356213,7320.992211,4460.990511,8440.9598
10057240767089087424218,632209,672160276155,091138,060329,6121.5076320,9681.5308158,8040.9908153,6170.9905124,2280.8998
264136527884530889315,91210,275100527,3689,34016,6401.045811,5671.12579,9840.99327,2990.99068,8880.9516
80474185760745390974,6841,85528001,7172,3643,6240.77372,0691.11542,7840.99431,7010.99072,3040.9746
27927679873953037904,9522,15030281,9282,6563,7960.76662,2581.05023,0120.99471,9100.99072,5720.9684
454570804187039497316,16812,945117809,90911,04019,4281.201616,8471.301411,6880.99229,8170.990710,6520.9649
1035203147068300848415,62810,037101127,4159,42016,2681.04111,3151.127310,0440.99337,3470.99088,9480.9499
1561508434333613019631,28426,1431790815,64916,44039,0521.248334,3781.31517,7640.99215,5070.990915,7960.9608
1723523248840973659714,03610,657101568,1479,54415,0761.074112,1881.143710,0840.99298,0740.99109,1440.9581
493176943947007382915,19611,919111609,29310,46817,7881.170614,8891.249211,0760.99259,2090.991010,0600.9610
427222255190208999915,73610,10899487,2959,27216,3961.041911,3941.12729,8840.99367,2290.99108,7920.9482
1418160018697082856917,81210,407111088,11710,38418,5961.04411,6751.121811,0320.99328,0440.99109,8880.9522
1411335685929891890217,79212,6191430411,30312,72822,7841.280617,8711.416214,2040.99311,2020.991112,3480.9701
858522588717138641232,82427,4192307619,85421,18442,5761.297137,8921.38222,9000.992419,6780.991120,7440.9792
238779373129441409119,97617,7511756816,21016,61623,8921.19621,9211.234917,4240.991816,0670.991216,2160.9759
132488623370843243437,2165,21557244,5015,2247,0040.97065,2501.00675,6840.9934,4620.99135,0960.9755
1242072212619324387514,9366,60180124,9507,42414,5960.97726,9921.05927,9680.99454,9070.99137,0880.9547
1634804677535775873223,92014,9311679613,40815,74424,0521.005515,3311.026816,6800.993113,2920.991315,5120.9853
9818616990883192215194,160191,394162692160,952152,188207,9521.071205,4591.0735161,3000.9914159,5570.9913150,1520.9866
10133724365063225677,4165,07357724,3715,1807,2000.97095,1081.00695,7360.99384,3340.99155,0440.9737
768599148303555003511,9243,52643642,6943,6646,2400.52333,5050.9944,3400.99452,6710.99153,5040.9563
1369322096461670047312,8603,52643642,6943,7606,2400.48523,5050.9944,3400.99452,6710.99153,5640.9479
1017787248803282905812,8603,52643642,6943,7606,2400.48523,5050.9944,3400.99452,6710.99153,5640.9479
1063872401264818552912,8805,21755562,8145,06812,8200.99535,7441.1015,5320.99572,7900.99154,9440.9755
1838949014188426255318,05610,435109727,99110,26818,8841.045911,7491.125910,9040.99387,9230.99159,7920.9536
438865580775440202329,89624,8291705214,79115,60439,6801.327335,0841.41316,9280.992714,6660.991515,0600.9651
1828391654637930252646,18033,8962828422,47726,15655,7001.206144,6371.316928,0920.993222,2850.991525,0200.9566
1256994159403213010210,2048,34857604,8405,60425,6962.518224,1892.89765,7200.99314,8000.99175,0480.9008
591290531712463421717,76410,085109728,05710,39218,4961.041211,3041.120910,9040.99387,9900.99179,8640.9492
320472834895098685419,09615,9321466412,83013,66423,1361.211620,4831.285714,5560.992612,7240.991713,1440.9619
877958659331787759557,02455,1565033249,11448,06857,9041.015456,3071.020949,9280.99248,7120.991847,4240.9866
174614131760553714324,1241,33623161,2381,9282,9600.71771,4401.07782,3040.99481,2280.99191,8640.9668
1644367753435024830110,7248,88181367,0317,56811,2721.05119,9161.11658,0800.99316,9740.99197,2320.9556
1585719854930567562422,25619,2241522813,46714,40828,5401.282425,9471.349715,1200.992913,3580.991914,0040.9720
295885811574701766630,26825,2031736815,09216,00839,1801.294434,5811.372117,2480.993114,9710.992015,3480.9588
1120753876079598370917,48014,9591261211,03111,74421,3001.218519,1281.278712,5240.99310,9440.992111,2480.9578
160042450362922441778,8046,47370885,8646,56411,5961.31719,5391.47377,0440.99385,8180.99226,4040.9756
1583459906053157024013,73210,29398367,8199,30415,0921.09912,1641.18189,7760.99397,7590.99238,8360.9497
1455497695354160406429,94424,8801710014,82415,67239,0681.304734,4711.385516,9880.993514,7100.992315,0360.9594
1059434362537487063039,53636,7532766025,76725,42044,4361.123942,0531.144227,4640.992925,5690.992324,8000.9756
111120205383661119647,04834,5152966423,70427,44857,9801.232446,6721.352229,4840.993923,5220.992326,3680.9607
285136228779563297446,14033,4302834022,54926,24455,7241.207744,4311.329128,1680.993922,3780.992425,2160.9608
1055525103722213010473,44832,6383830425,55933,39687,3361.189152,8931.620638,1120.99525,3650.992432,5800.9756
29576115683360594737,6164,75650483,5994,6327,8841.03525,5011.15665,0200.99453,5720.99254,4240.9551
140918622823654443729,48814,298106565,3359,85237,5201.272422,7491.591110,6160.99625,2950.99259,4080.9549
140699860952641857275,93688630368142,5925,7200.96368991.01473,0280.99748080.99262,5440.9815
121587280986081581866,7565,09238602,8433,4167,4561.10366,1651.21073,8400.99482,8220.99263,2000.9368
1121823161659058687339,01237,2873568434,45334,00039,3321.008237,6081.008635,4280.992834,1970.992633,6720.9904
1090637362260879041149,18435,5602301219,40422,92056,5641.1549,5931.394622,8680.993719,2600.992620,5240.8955
876758471533378946513,7805,86266245,0606,1528,4080.61026,0421.03076,5880.99465,0230.99275,8720.9545
1279067206283679328713,8245,86266245,0606,1528,4080.60826,0421.03076,5880.99465,0230.99275,8720.9545
991840385726543127314,8885,86266245,0606,2368,4080.56486,0421.03076,5880.99465,0230.99275,9120.9480
805033529068599726214,8885,86266245,0606,2368,4080.56486,0421.03076,5880.99465,0230.99275,9120.9480
778736580803648216623,85621,8171680015,69315,50029,5601.239127,9531.281216,6840.993115,5800.992814,9560.9649
973017983077489063849,22046,3063355631,87931,34451,2041.040348,7681.053233,3280.993231,6510.992830,8400.9839
108774807028223728696,3364,12451203,7934,7209,5081.50067,5431.8295,0920.99453,7670.99314,5720.9686
1473733763657000694313,4645,78456002,8805,10413,5481.00626,4501.11515,5800.99642,8600.99314,9640.9726
1300254288055588075914,36810,916102408,2139,54815,4281.073812,4881.14410,1800.99418,1560.99319,1600.9594
1020673120306773015516,9521,95568761,5946,29216,5800.97811,9761.01076,8640.99831,5830.99316,0800.9663
1154256547466497219720,00015,7901486012,53013,43620,2361.011816,4591.042414,7720.994112,4440.993113,0800.9735
172062816901602386336,7403,90046723,5224,2685,6120.83264,0291.03314,6480.99493,4980.99324,1200.9653
135026967126601418207,3965,55760925,0315,6967,4561.00815,8921.06036,0600.99474,9970.99325,5920.9817
85149007752253548689,0885,85166365,0366,05612,6081.38739,6411.64786,6040.99525,0020.99325,7320.9465
1067378931621748188811,4803,44155402,6575,09611,0280.96063,7191.08085,5200.99642,6390.99324,8840.9584
1589013396330889212911,4883,44855242,6375,14811,1040.96663,7911.09955,5040.99642,6190.99324,9160.9549
1288204789194862858921,67617,0391481612,28912,84424,3921.125320,4931.202714,7320.994312,2050.993212,2400.9530
515070529043299225637,39220,6521904813,04018,12051,4561.376135,1151.700318,9600.995412,9510.993217,4680.9640
650267906645304974123,84421,8061661215,50715,25229,5801.240627,9761.282916,5080.993715,4040.993414,7000.9638
177751462326021622930,69225,6371738815,12915,83240,0521.30535,4661.383417,2880.994215,0290.993415,3720.9709
434091019239987615631,24427,8402033618,36919,16440,1601.285437,2951.339620,2160.994118,2500.993518,5080.9658
32271430536212767329,2821,51239841,2473,5608,8120.94941,6891.11713,9760.9981,2390.99363,4480.9685
181735735850122862012,4288,547104808,0289,92413,4281.08059,9431.163310,4320.99547,9770.99369,6520.9726
316763941223644889126,39624,5332237221,27421,04826,2840.995824,6941.006622,2400.994121,1410.993720,7680.9867
1046076115727040829712,87610,147111889,33010,40812,8640.999110,4041.025311,1280.99469,2720.993810,1880.9789
316534333861541905751,04430,6943096821,36427,47278,2161.532358,7741.914830,8360.995721,2310.993826,0320.9476
1780053805631110153111,9807,85881246,0587,69611,1680.93228,0111.01958,0880.99566,0210.99397,3120.9501
1269542361271722329881,11278,3237443272,70970,91685,9361.059583,1531.061773,9880.99472,2670.993970,4400.9933
183525019805305145999,4527,71181287,0277,6449,4881.00388,0201.04018,0880.99516,9850.99407,5000.9812
1436186125525205171326,41224,5632238021,30421,12426,3000.995824,7241.006622,2520.994321,1760.994020,7960.9845
786033532286190542813,38011,911100529,0069,46013,1560.983311,9341.001910,0000.99488,9530.99419,3160.9848
248149871394746837050,95646,3182691624,35623,85253,8161.056149,5731.070326,7720.994724,2120.994123,4280.9822
1636531534894016152036,51228,6642395220,07822,06853,6441.469246,5921.625523,8360.995219,9620.994221,3320.9666
1761137430048235474022,7807,39297924,2849,14022,4040.98357,4111.00269,7680.99754,2600.99448,7560.9580
206973100117930704725,82823,0342288821,28721,69226,5721.028824,0521.044222,7680.994821,1680.994421,3680.9851
165536163635383056834,3562,62134242,3473,1084,1000.94122,6391.00693,4120.99652,3340.99453,0000.9653
1441236141876213626132,06822,6472084816,03718,87238,5081.200829,6071.307320,7600.995815,9490.994518,4520.9777
1622384724382825519718,90014,9081372411,51512,66026,3041.391722,9721.540913,6640.995611,4530.994612,2680.9690
737135674850166459125,24421,6131647614,37015,19629,6281.173726,5931.230416,4000.995414,2930.994614,8200.9753
1777495940810637775723,40020,0901391612,37813,16830,7401.313728,0641.396913,8480.995112,3120.994712,6640.9617
171345356914412564614,5321,87828601,5362,5724,0800.90031,9071.01542,8520.99721,5280.99482,3920.9300
1718168386451156895614,27611,67284927,0507,92013,8560.970611,6811.00088,4560.99587,0130.99487,6040.9601
1541160277030183649623,74820,0961419212,38113,27631,0481.307428,0701.396814,1240.995212,3160.994812,7920.9635
3595549391817127545,9323,75548483,3634,2965,8160.98043,8811.03364,8320.99673,3460.99494,1840.9739
445757553082371203718,03213,4551551212,62613,80018,4161.021314,1111.048815,4480.995912,5610.994913,6360.9881
1391401377543080957425,30022,8961936417,90117,86826,0161.028324,1471.054619,2720.995217,8100.994917,4680.9776
576552390089911195257,70848,0933978436,03735,99659,9001.03850,8721.057839,6000.995435,8530.994935,7680.9937
1539381277732705366129,71620,4451968814,98017,96034,6601.166425,8861.266119,6160.996314,9070.995117,3880.9682
100365583456210055573,1441,54924641,4932,1522,8960.92111,5551.00392,4560.99681,4860.99532,0880.9703
181072473159617540213,1441,54924521,4932,1442,8800.9161,5551.00392,4440.99671,4860.99532,1000.9795
38901917374104935124,1961,39223481,2721,9523,0560.72831,5231.09412,3440.99831,2660.99531,9040.9754
341497712463700942424,47621,3531786016,04116,24024,1680.987421,5891.011117,7840.995715,9650.995315,7800.9717
871340442644909324030,04420,7771998015,26918,24834,9881.164626,2191.261919,9080.996415,1970.995317,7200.9711
121732326389320207653,5881,81127601,7502,4083,3280.92751,8181.00392,7520.99711,7420.99542,3640.9817
107242501036993392533,5881,81127681,7502,4163,3440.9321,8181.00392,7600.99711,7420.99542,4120.9983
1132355363259953040412,3887,12684005,8627,38812,0920.97617,3501.03148,3720.99675,8350.99547,0480.9540
1231643054686934083122,90420,4591969618,22718,52027,2441.189525,0661.225219,6120.995718,1430.995418,1720.9812
1147224721105952022922,50019,5741790816,11016,66022,3160.991819,8211.012617,8360.99616,0370.995516,2960.9782
1180477158932997465913,0485,33954642,7134,95213,1761.00986,0501.13325,4520.99782,7010.99564,8320.9758
653439991017999431035,04032,4392782026,17526,03647,0161.341844,8181.381627,7040.995826,0590.995625,3520.9737
1373299671582210433335,04432,4412783226,18325,97247,0161.341644,8201.381627,7160.995826,0680.995625,4040.9781
422224556836377784735,04732,4412783226,18325,97247,0161.341544,8201.381627,7160.995826,0680.995625,4040.9781
991630685443216586215,1486,92084605,6468,12812,0040.79246,7900.98128,4360.99725,6220.99577,4560.9173
1557946172309416220736,23628,2162376419,84521,92453,2121.468546,0621.632523,6760.996319,7590.995721,1800.9661
14857599394775316719312,352229,051233516196,745206,744344,5121.103272,5561.1899232,6680.9964195,9000.9957199,4440.9647
165809679430824387144,2242,46429241,9332,6843,7160.87972,4510.99472,9160.99731,9250.99592,5040.9329
481093893853875984210,5768,18490367,5818,47210,3920.98268,2751.01119,0040.99657,5500.99598,2480.9736
1119635457061866995114,53212,6531299611,77312,43214,5481.001112,9431.022912,9480.996311,7250.995912,2600.9862
1394780181725862658436,12428,2322374019,84221,87653,1761.47246,0781.632123,6600.996619,7610.995921,1440.9665
1717736260208733255736,15228,2202371219,83621,78853,1281.469646,0661.632423,6320.996619,7540.995921,1640.9714
1139225852880495162237,31620,5381918413,19518,04051,1241.3734,7561.692319,1320.997313,1410.995917,6080.9761
1532564278922959939257,96049,6984749243,29045,04065,4961.1357,5121.157247,3120.996243,1110.995944,4040.9859
278968373876968145716,64413,4621246810,81411,90016,4520.988513,7651.022512,4240.996510,7710.996011,4800.9647
277260878912306443521,57618,2431299211,35812,28428,5201.321825,8281.415812,9480.996611,3130.996011,7600.9573
62773157233922398613,10010,090107489,24210,09614,1641.081211,4241.132210,7120.99679,2060.99619,8440.9750
1341212707993341635835,03231,2672202819,94820,91244,4761.269641,2691.319921,9520.996519,8710.996120,0800.9602
720068641680844856118,83217,0691512414,01614,38418,6880.992417,1111.002515,0720.996613,9630.996214,1720.9853
90078721490826387558,0886,30066605,6076,1327,8640.97236,3461.00736,6400.9975,5860.99636,0160.9811
46326432750516596629,9647,55176806,1797,3489,5480.95827,6151.00857,6560.99696,1560.99637,0520.9597
1659019169990480483118,03215,6151582014,45314,88417,9840.997315,8401.014415,7640.996514,3990.996314,7040.9879
323175393552159977818,03515,6151582014,45314,88417,9840.997215,8401.014415,7640.996514,3990.996314,7040.9879
51311981218116622836,9882,93842722,2483,64813,3601.91189,5843.26214,2640.99812,2400.99643,4640.9496
132833929872437731399,8726,70470565,3036,7329,1120.9236,5410.97577,0360.99725,2840.99646,3880.9489
1281816206082429079229,94426,8061958418,20518,28433,5601.120831,4571.173519,5160.996518,1400.996417,5600.9604
1707521836383945288232,66828,8902096818,87119,80841,6561.275138,4391.330520,9000.996818,8040.996419,0760.9630
3648054350383965283,6882,17025481,6992,3203,0600.82972,0150.92862,5440.99841,6930.99652,1720.9362
666309550492283004824,46420,4601756415,32415,99234,1161.394530,7531.503117,5120.99715,2710.996515,5040.9695
124798716563628028216,02014,0401432813,08613,61215,9480.995514,2381.014114,2840.996913,0410.996613,3560.9812
1256141283246918244124,88022,7852246821,22420,65625,2881.016423,4661.029922,4000.99721,1540.996720,5480.9948
351745971357367893336,63631,5292318419,90520,13242,3721.156637,6681.194723,1200.997219,8410.996819,6400.9756
920920864295061874747,56027,8652910019,94425,73272,7921.530553,9801.937229,0360.997819,8800.996824,8520.9658
60356262778399199224,12420,9581773215,92816,28423,6920.982121,0711.005417,6840.997315,8790.996915,7920.9698
889421575352679261524,6649,677127367,47311,89225,7321.043311,1331.150512,7120.99817,4500.996911,4320.9613
1573402210388842573536,49220,1891843612,66517,45249,7961.364633,9211.680218,3960.997812,6260.996916,9440.9709
1744342922055499592111,6964,61961003,8335,79610,3560.88544,5070.97586,0880.9983,8220.99715,4400.9386
232607686940139998215,92412,7261223210,59011,54815,5400.975912,8451.009412,2040.997710,5610.997311,1680.9671
1135072733579870193729,25627,2052075619,44819,00435,6761.219433,9981.249720,7040.997519,3950.997318,4240.9695
838920470202336939462,56040,2872368420,37026,48456,7520.907250,2081.246323,6280.997620,3160.997321,2800.8035
68635124537552432193,2081,58625081,5302,1962,9640.92391,5931.00442,5040.99841,5260.99742,1200.9654
121465284295472491833,2081,58624961,5302,1682,9480.9191,5931.00442,4920.99841,5260.99742,1320.9834
159893254172829868948,9207,08569165,8116,5728,3640.93776,9750.98456,9000.99775,7960.99746,2640.9531
1027477338002519101221,32818,78778566,6547,39627,2801.279125,2281.34287,8400.9986,6370.99747,0600.9546
136933023665093653221,90418,3091538413,32614,10829,9001.36526,9261.470615,3480.997713,2910.997413,7080.9716
94683832496262190446,8444,68556044,4105,2046,6000.96434,7151.00645,5920.99794,3990.99755,1360.9869
149693549076505262337,0205,09239122,8383,4886,4200.91455,0380.98943,9040.9982,8310.99753,2880.9427
135082518443468614617,1484,56734002,4103,1726,4720.90544,5140.98843,3920.99762,4040.99752,7280.8600
163498440276731242518,1806,47067845,7116,2768,1881.0016,6631.02986,7720.99825,6970.99756,2280.9924
137255091390102189329,0446,85470005,6506,5008,4920.9396,7730.98826,9840.99775,6360.99756,2800.9662
115395824280487494279,0806,89270125,6616,5248,5320.93966,8140.98876,9960.99775,6470.99756,2400.9565
50100458210835567649,0806,89270125,6616,5168,5320.93966,8140.98876,9960.99775,6470.99756,2360.9570
56081981624576763479,0806,89270125,6616,5208,5320.93966,8140.98876,9960.99775,6470.99756,2560.9595
303880484828630407555,24835,5733550025,89231,86479,5081.439160,7151.706835,4360.998225,8280.997530,1560.9464
1468434646078701146411,6129,96594608,3528,78019,4641.676218,0721.81359,4400.99798,3320.99768,6440.9845
1551963911101614009731,05626,7072007617,85318,87643,8041.410540,1371.502920,0320.997817,8100.997618,2480.9667
836618696629303388234,86831,7022543223,96423,34833,9120.972631,4650.992525,3760.997823,9070.997622,8280.9777
704720235602691452734,87231,7022543223,96423,27233,9160.972631,4650.992525,3760.997823,9070.997622,8360.9813
33337747424515056403,4721,75427281,7102,3923,2240.92861,7601.00342,7240.99851,7060.99772,3480.9816
53398547944806038513,4721,75427201,7102,3683,2080.9241,7601.00342,7160.99851,7060.99772,3360.9865
172595836685599028912,78810,700108049,45810,32412,6200.986910,8041.009710,7800.99789,4360.997710,2040.9884
569648935486461938913,21610,07770805,2686,22413,1760.99710,4601.0387,0680.99835,2560.99775,8840.9454
331115713285181967214,11210,915106248,99210,14013,6560.967710,9641.004510,6040.99818,9710.99779,7920.9657
47214108908279212526,9444,15045363,1274,1126,5640.94534,2491.02394,5280.99823,1200.99783,9160.9523
98100996810771690059,4087,23372125,8956,7608,8000.93547,0950.98097,2000.99835,8820.99786,4960.9609
498435746517944931132,29229,2832135219,99619,91231,2440.967529,3061.000821,3120.998119,9530.997819,3080.9697
29526023825981033967,6044,84052443,8474,9168,3761.10156,0911.25855,2360.99853,8390.99794,6120.9382
820029848612685804713,0325,32756722,9115,17213,1561.00956,0351.13295,6680.99932,9050.99795,0600.9783
1672950470274099198233,79630,0192155219,45120,42042,5881.260139,3691.311521,5120.998119,4100.997919,6560.9626
932274422196556236746,87244,0664179640,21539,91652,9201.12950,1231.137541,7120.99840,1320.997939,7720.9964
570776258285984008713,1123,41144643,0654,0125,6840.43353,3790.99064,4560.99823,0590.99803,8920.9701
1122386105396993254413,1123,41144683,0654,0125,6840.43353,3790.99064,4600.99823,0590.99803,8960.9711
1811779077163063934315,65613,6301381612,61313,22815,3720.981913,6190.999213,7880.99812,5880.998012,9960.9825
414731067711006494256,23239,9552783620,46225,18464,5441.147849,9891.251127,7960.998620,4210.998024,4680.9716
146764865455065931413,3521,65925521,5622,2363,0880.92121,6631.00242,5480.99841,5590.99812,1760.9732
171830719762760495603,3521,65925601,5622,2403,1040.9261,6631.00242,5560.99841,5590.99812,1840.9750
21464494015799979987,0962,59641842,0683,5806,1360.86472,5570.9854,1800.9992,0640.99813,3000.9218
83220563313212317469,5881,85643481,5693,9249,4720.98792,3241.25224,3440.99911,5660.99813,7840.9643
1798570026997104648955,29252,8592745625,98625,82455,4921.003653,4361.010927,4080.998325,9370.998125,4720.9864
164880446719244516735,8084,24147843,8794,4847,7801.33956,4881.52984,7760.99833,8720.99824,4160.9848
1519657079666513267910,1808,23172886,1346,8289,9680.97928,4021.02087,2760.99846,1230.99826,6560.9748
1765333054116046003817,33612,7911438411,65113,12417,0400.982912,8281.002914,3640.998611,6300.998213,1000.9982
119844467811241982750,68030,5983212422,61828,65673,1121.442653,9121.761932,0840.998822,5780.998227,6600.9652
59589684801839595876,6164,60956164,1995,0166,3840.96494,6251.00355,6080.99864,1920.99835,0120.9992
538334892353352117511,90010,32691968,2308,40811,8120.992610,6571.03219,1800.99838,2160.99838,1720.9719
764410952421693782113,91612,56585127,7067,80413,5840.976112,6021.00298,5000.99867,6930.99837,6520.9805
69890961405973727224,8249,292102204,6417,39624,2920.97869,1650.986310,2120.99924,6330.99837,0920.9589
1121654289738661826033,56829,6892208019,90720,72441,7561.243938,4441.294922,0480.998619,8740.998319,9840.9643
781567881692003497612,5849,85694527,6658,84012,7001.009210,3271.04789,4400.99877,6530.99848,5560.9679
527595330190769351378,48475,7107152869,85768,00882,6201.052779,8551.054771,4200.998569,7510.998567,9440.9991
791805076292047251618,30416,1621514414,09713,99630,2401.652128,3651.75515,1240.998714,0770.998613,8040.9863
88103287885530113347,9246,37762045,2555,76432,8564.146431,5604.9496,1960.99875,2480.99875,4600.9473
370013200573480313312,5128,94589887,0618,20012,0120.968,8220.98628,9760.99877,0520.99877,8760.9605
1083822898894857018512,85610,742105369,2999,50412,3240.958610,6470.991210,5240.99899,2870.99879,2680.9752
901262861641638650326,18010,666133127,81212,36025,6680.980410,5300.987213,3040.99947,8020.998711,9320.9654
661934460136915207650,23630,5973194022,59828,48472,7081.447353,9511.763331,9080.99922,5680.998727,5000.9655
48900623327635992403,5961,80627641,7332,4083,3480.9311,8101.00222,7600.99861,7310.99882,3840.9900
161548966953727799413,5961,80627561,7332,3883,3320.92661,8101.00222,7520.99851,7310.99882,3680.9916
12245504740130297717,3644,57049123,5004,5767,0600.95874,7461.03854,9080.99923,4960.99894,2800.9353
1834645038940597270512,8847,86088607,0548,16412,7240.98767,9611.01288,8520.99917,0460.99898,0160.9819
1625310795547084578855,68035,5633561625,85831,87279,9521.435960,7151.707335,5880.999225,8300.998930,2960.9506
108955543795775993255,0243,39441123,1493,7484,7600.94753,4011.00214,1080.9993,1460.99903,6920.9851
841313134390005062625,68022,2041659614,58515,14033,6041.308630,5271.374816,5800.99914,5710.999014,8440.9804
12410982331545080716,0764,36243883,3754,1525,7880.95264,4581.0224,3840.99913,3720.99913,9840.9595
330347217354152219112,1049,75887807,4388,27211,7000.96669,7641.00068,7720.99917,4310.99917,8480.9487
1687283408917848320827,75625,5401644415,11614,96035,8001.289834,0241.332216,4320.999315,1030.999114,5400.9719
730276832020151556012,4369,01892087,3328,59611,8080.94958,8360.97989,2040.99967,3260.99928,1280.9456
120740577600559877618,1406,42455444,6015,2367,7120.94746,3630.99055,5400.99934,5980.99935,0640.9672
1060652965803183425910,6648,49187367,4758,15610,0920.94648,3620.98488,7320.99957,4700.99937,9640.9765
459925393944856088218,05216,1201296011,73212,08817,6160.975816,0560.99612,9520.999411,7240.999311,8160.9775
1174114697489301023523,00418,4421580413,59714,79621,6520.941218,2780.991115,7920.999213,5870.999314,2840.9654
360583981943946952165,92463,1785777656,29455,44870,9481.076268,4741.083857,7360.999356,2560.999354,9320.9907
1471052551644595577087,57256,1055046830,41342,32890,3481.031759,3241.057450,4440.999530,3910.999341,8880.9896
1787865639972886355910,4648,98374366,5106,8569,9280.94888,8440.98457,4320.99956,5060.99946,5960.9621
536417352069423199512,23210,681105329,57510,05611,9640.978110,6861.000510,5280.99969,5690.99949,9920.9936
1244413002943179842870,16067,3866333261,61359,80474,8681.067172,1031.0763,2920.999461,5730.999459,7080.9984
1145930611659873244311,0968,90791687,9198,64410,5600.95178,8000.9889,1640.99967,9150.99958,4440.9769
1540930959411516072018,47216,5531330412,07212,34818,0600.977716,4900.996213,3000.999712,0660.999512,0920.9793
933351369360574069734,46832,3871398812,93712,21235,6761.03534,2101.056313,9800.999412,9310.999511,8840.9731
1053122507607705064255,92853,1255016048,58548,00862,1601.111459,3671.117550,1360.999548,5610.999547,8760.9973
1103352490493808771810,6528,97196448,4839,16010,6320.99819,2431.03039,6400.99968,4800.99969,0160.9843
1275711743814737008515,09612,959108689,7469,95214,5800.965812,7880.986810,8640.99969,7420.99969,7480.9795
1013353572112416497719,38815,8251478413,24913,04869,2923.57466,0014.170714,7760.999513,2440.999612,8160.9822
632485833507983697119,75217,0111610014,28615,11219,2840.976316,9560.996816,0920.999514,2800.999614,8560.9831
352661036839549509423,68015,896125129,51711,24823,7521.00316,3741.030112,5080.99979,5130.999610,8960.9687
16527511887924143440457,348454,886282852281,569260,876457,6401.0006455,6331.0016282,7400.9996281,4570.9996260,1440.9972
176579336375152575323,87221,6831541214,13413,87230,1041.261128,3631.308115,4080.999714,1300.999713,5440.9764
1231605634053494715844,98442,9062036819,23718,53656,2761.25154,6221.273120,3600.999619,2320.999717,9920.9707
18225787688888013153115,86485,5168252076,28376,460117,6081.0151102,5711.199482,4960.999776,2570.999775,2960.9848
1449060295707388135927,42825,2141798016,69715,99635,5161.294933,7521.338617,9760.999816,6930.999815,6160.9762
433499062463216449444,01242,3083192430,79229,76043,4520.987342,1010.995131,9200.999930,7870.999829,4160.9884
1140859163760355669411,5367,60096847,0619,15211,2680.97687,6061.00089,6800.99967,0600.99998,9720.9803
1593030799437382789427,71225,5701876417,50116,68435,0441.264633,3231.303218,7600.999817,5000.999916,2080.9715
187546613360581433442,25239,5892986828,16325,72841,3760.979339,2900.992429,8640.999928,1600.999925,3720.9862
1825978210861996281260,87658,7973987638,66634,82460,3000.990558,6220.99739,8720.999938,6630.999934,3960.9877
381226327305141076923,93621,308111289,76510,00038,7561.619236,6821.721511,1321.00049,7691.00049,5560.9556
945548762655420806552,97248,5212924826,78425,97661,5001.16157,4431.183929,2601.000426,7961.000425,5000.9817
557227105963195062015,12012,3781265611,13712,08815,1961.00512,7211.027712,6601.000311,1431.000511,9080.9851
1811003951889954521625,59223,3911651215,23014,87232,9761.288531,2211.334716,5241.000715,2411.000714,5000.9750
546843379302536604283,41673,3086820865,98763,60095,1321.140591,1211.24368,2641.000866,0411.000861,3480.9646
25994795050411090023,8441,04720529801,6562,6920.70031,1651.11272,0561.00199811.00101,6080.9710
617543120355646710920,62016,8271352411,63813,00419,2920.935616,2300.964513,5361.000911,6501.001012,0800.9289
12591907920701512504313,444299,516223876220,171194,564406,8721.2981398,4371.3303224,0961.001220,3911.0010177,5040.9123
290281382461788870113,5845,88955322,8065,05213,8241.01776,7151.14035,5361.00072,8091.00114,9640.9826
546965143547019096327,20025,0391742416,11415,62035,6321.3133,8871.353417,4401.000916,1321.001115,1840.9721
1338592822741274851528,47626,3071882017,53717,12036,0081.264534,2711.302718,8361.000917,5561.001116,5160.9647
900406150103549854834,66830,7322271620,52721,22443,1281.24439,7531.293522,7401.001120,5501.001120,5800.9697
1597911655998959871650,02830,3913195622,61128,34871,8921.43753,1351.748431,9801.000822,6361.001127,6800.9764
427462471346435529313,1245,40156962,9185,22013,2881.01256,1501.13875,7001.00072,9221.00145,0720.9716
1673486242900769232812,7725,09055762,8295,09212,9361.01285,8391.14725,5801.00072,8341.00184,9560.9733
1446943162355341403350,44830,3683208822,58628,63272,3361.433953,1351.749732,1321.001422,6301.001927,7960.9708
1500192688962441476039,18835,3852468422,53923,24850,1721.280346,9291.326224,7361.002122,5901.002322,4600.9661
254063681984315151655,94035,8233553625,77931,72080,6361.441561,3981.713935,5961.001725,8391.002330,2040.9522
1800192622604845758551,73231,3763172022,10228,07280,2801.551860,8321.938831,7761.001822,1581.002526,6880.9507
137177176908494853855,52835,8543538025,77531,67680,1881.444161,3931.712335,4481.001925,8411.002630,0840.9497
132875152012076310822,01655211963721,0121,8560.92067811.41491,2001.00333731.00278760.8656
49416290613424396873,57273617806991,3722,3960.67088381.13861,7841.00227011.00291,3160.9592
76452209124293863323,58072817566801,4002,3960.66938261.13461,7601.00236821.00291,3160.9400
175221986420343092714,7122,05730401,7062,7444,3240.91772,1491.04473,0441.00131,7111.00292,5800.9402
88929499146528193908,8286,05572405,5936,67613,4721.526111,0401.82337,2561.00225,6091.00296,5160.9760
828222872142086336370,87668,1674410842,35340,42876,5521.080174,2141.088744,2361.002942,4841.003139,9840.9890
405476139570180004269,93267,2214348441,74439,70075,6041.081173,2681.0943,6201.003141,8781.003239,3280.9906
1803111221113387578128,34446,0004830440,82045,35672,8920.567952,7621.14748,4361.002740,9521.003243,3920.9567
16195859291743106753128,80846,4594865241,14845,37673,4640.570353,3291.147948,7881.002841,2841.003343,7240.9636
9999956329164814909336,484333,326254000252,060215,124636,6721.8921633,8121.9015254,8321.0033252,8901.0033203,5440.9462
313786073280721519540,28836,4252524823,07723,77652,0081.290948,7081.337225,3281.003223,1571.003523,1000.9716
1044864106849843662950,06029,9793108021,60627,45274,1921.482154,9921.834431,1601.002621,6851.003726,6360.9703
72174257148006125468,8444,43758883,6495,22418,4082.081414,2923.22115,9041.00273,6651.00445,0120.9594
130178128293084141058,4326,45572006,0316,72414,0001.660312,2671.90047,2321.00446,0611.00506,6320.9863
1556789203295717777816,43214,23745203,4224,22826,0481.585224,2871.70594,5361.00353,4391.00503,8880.9196
1069367293112244179818,98817,25465885,5975,86825,3481.334923,9871.39026,6161.00435,6271.00545,5640.9482
1368931257671830224036,89231,3011360811,17612,540154,5684.1897150,0174.792713,6681.004411,2361.005410,7080.8539
740858870258274709165,48062,8024055638,86536,92871,1361.086468,8481.096340,7721.005339,0831.005636,4080.9859
1666811893296371462849,62829,9903088021,56827,36473,7601.486355,0031.83431,0121.004321,6971.006026,4000.9648
536934237244258434126,78444,3964608838,57442,83672,8760.574852,7021.187146,3401.005538,8271.006641,1400.9604
163261745481277729447,0163,27537041,9393,9045,8760.83752,8830.88033,7201.00431,9531.00723,0440.7797
1193147071723754577049,50429,8673085621,58227,48473,4001.482754,6411.829531,0121.005121,7371.007226,6000.9678
13847127221317447005,2803,54640363,0103,6367,0721.33945,6111.58234,0561.0053,0321.00733,6080.9923
708216081816693352849,93229,8493101221,57927,63273,8401.478854,6401.830531,1721.005221,7371.007326,7040.9664
29993177007721144888,9564,53160363,7515,39618,5482.07114,4103.18036,0641.00463,7791.00755,1680.9577
9468814905510410813519,120464,384417380396,594373,860572,7201.1033527,4941.1359420,4841.0074399,6971.0078364,9760.9762
12120159836994826509390,560189,675164512109,169131,084826,4722.1161681,9183.5952165,4201.0055110,0801.0083125,3600.9563
988446059927433624952,78432,4393301623,34929,37677,7441.472958,3051.797433,2201.006223,5561.008928,0640.9553
520431349650211980446,64044,7792601224,83123,09254,6081.170853,1551.187126,2361.008625,0551.009022,8160.9880
68142150092570384799,1564,73461163,8825,50818,6922.041514,5573.0756,1561.00653,9211.01005,2360.9506
62690440735852399855,32035,2033457224,80930,78881,4041.471562,1671.76634,8201.007225,0591.010129,2480.9500
147397578897124405143,42061116325761,2242,2720.66437371.20621,6401.00495821.01041,2040.9837
1232997288066375023732,45628,7772256820,47620,16846,2921.426343,2331.502322,7801.009420,6881.010419,8600.9847
3940680871884052675127,50045,1424883641,03345,46871,2640.558950,9731.129249,2601.008741,4601.010443,9640.9669
15895064593979629989127,49645,1504686439,38943,66073,6320.577553,5011.18547,2801.008939,8081.010641,9240.9602
559743113932978708754,82035,1483451224,92930,72081,3041.483162,5111.778534,7841.007925,2021.011029,2520.9522
4797159279353468647127,41644,8054824040,52945,08471,1800.558650,7601.132948,6921.009440,9841.011243,4600.9640
11044785119282379525128,01645,6204922441,39545,83271,7880.560851,4571.127949,6921.009541,8621.011344,1800.9640
837235354051345892154,90835,2353439224,77630,74480,9601.474562,1681.764434,6801.008425,0611.011529,1400.9478
434040243828642603755,27635,1593466024,91831,06081,7681.479362,5291.778534,9481.008325,2061.011629,1680.9391
1588853947615747764652,55632,1923275223,09129,01277,9001.482258,4421.815433,0241.008323,3621.011727,8320.9593
235802720366466246291,248275,071224688214,964193,104398,0601.3667382,4881.3905227,2481.0114217,5231.0119178,3000.9233
47338473168199007139,2044,74561203,8755,52818,7122.03314,5373.06366,1681.00783,9221.01215,2840.9559
181611731552391661814,49212,39245683,6134,10425,5881.765723,9511.93284,6121.00963,6571.01223,8080.9279
11151553384495587597124,57661,7686524037,68347,792144,5441.160383,6151.353765,7081.007238,1511.012445,9840.9622
1887737076858385531127,04044,6824786440,07344,64872,5360.57152,2451.169348,3601.010440,5691.012443,0800.9649
16461400588565743527499,724446,472327168307,426281,188560,3401.1213519,6071.1638331,3761.0129311,6351.0137273,4000.9723
11871675494241623473502,860449,127328288308,525281,816563,7041.121522,8101.1641332,5201.0129312,7591.0137273,8400.9717
6505461025467735483390,796190,217165152110,019131,492825,8122.1132681,5893.5832166,6641.0092111,5321.0138125,9320.9577
18417920221397209235506,168451,534330444310,214283,912566,9361.1201525,2271.1632334,7881.0131314,5591.0140275,6400.9709
16172000948679448812513,348458,842329040308,913285,856565,7121.102524,2011.1424333,3521.0131313,2261.0140274,2640.9594
11972432852059529591505,276450,671329964309,753283,600565,8881.12524,2061.1632334,3361.0132314,1251.0141275,1040.9700
12300084977247369201513,688458,978330008309,801287,084565,9681.1018524,2801.1423334,3881.0133314,1831.0141275,0600.9581
13341164624521208180513,692458,978330016309,801287,108565,9721.1018524,2801.1423334,3961.0133314,1841.0141275,0640.9581
7660580981267925964513,692458,978330016309,801286,576565,9721.1018524,2801.1423334,3961.0133314,1841.0141275,6800.9620
5669188744201095166125,25642,6614554837,83242,22070,6080.563750,2011.176746,1001.012138,3841.014640,9320.9695
10544413192519240848389,692189,382164032109,077132,076824,9242.1169680,8143.5949165,7081.0102110,7541.0154125,3480.9491
576430967674708214169,82843,9904091633,21337,46092,1641.319977,0321.751141,4361.012733,7341.015735,3880.9447
6459716046798773456391,424190,995165512110,608132,072826,6162.1118682,4503.5731167,2841.0107112,3801.0160126,4480.9574
1711215430454197822721,87218,2001706015,41115,30077,3803.537973,9794.064817,3201.015215,6711.016914,7880.9665
12129931892966163853388,968186,526161984106,504128,604823,9882.1184677,8533.6341163,8321.0114108,3511.0173123,0680.9570
139657940580456047798,7804,34657763,5425,21218,4722.103914,3263.29645,8361.01043,6041.01754,9520.9501
909339999944927601471,24044,9064239234,45338,93693,6481.314578,1971.741342,9961.014235,0601.017636,8080.9453
32615244193492779658,6964,29158203,5475,18418,3922.11514,2743.32655,8841.0113,6111.01804,9640.9576
767147742828571050356,98036,5793478824,85330,78087,8441.541768,3501.868635,2361.012925,3021.018128,9560.9407
493390452381808189452,83233,1053270823,14029,03280,1841.517761,3391.852933,1441.013323,5751.018827,6680.9530
7317730684809045491415,268312,585280844230,727234,848528,0801.2717426,0421.363285,2121.0156235,0961.0189221,2000.9419
1781677759526459450722,18420,55784167,5497,83240,5041.825839,3041.9128,5601.01717,6931.01917,5200.9602
17778426915956364227385,368184,398158564104,358128,504822,8042.1351678,1753.6778160,5761.0127106,3721.0193122,0520.9498
15571569743672673247123,14459,6246338835,48445,824140,2841.139278,6301.318864,0801.010936,1761.019544,1520.9635
851048562189484890337,17632,0732598823,68023,32851,3961.382546,9351.463426,4601.018224,1511.019922,6120.9693
1254798093417448171274,828137,557144376100,411115,928590,3042.1479459,5393.3407146,3841.0139102,4181.0200112,0320.9664
145566017370168701689,0604,64561163,8335,50818,5882.051714,4623.11356,1921.01243,9101.02015,2800.9586
175086903005843667498,8964,49759483,6835,32818,5202.081814,4113.20466,0241.01283,7581.02045,2120.9782
1244218615995572164410,9569,25347963,8133,94021,8281.992320,5022.21574,8761.01673,8931.02103,7080.9411
1276647703139567243881,98071,3484588040,77541,460103,7041.26593,8041.314746,7561.019141,6511.021540,0840.9668
452300498018655083248,436111,46412238878,52397,228558,8002.2493428,3313.8428124,2321.015180,3651.023594,1960.9688
7576995816902225770248,436111,46412236078,52397,288558,8002.2493428,3313.8428124,2041.015180,3651.023594,6200.9726
5609100457517601671248,436111,46412238878,52396,956558,8002.2493428,3313.8428124,2321.015180,3651.023594,4040.9737
852309377590000659757,62037,2093568425,73031,54489,5841.554770,0811.883436,2921.01726,3391.023729,9240.9486
6548743617244189211249,540112,33112333679,27198,668559,8602.2436429,1553.8205125,2241.015381,1591.023894,5680.9584
16557326302260368666249,540112,33112330879,27198,580559,8602.2436429,1553.8205125,1961.015381,1591.023894,7360.9610
3492981699418223971251,464113,87512420080,40398,444563,6882.2416432,6013.7989126,1441.015782,3481.024294,6760.9617
892271748067946050251,464113,87512420480,40398,788563,6882.2416432,6013.7989126,1481.015782,3481.024295,4240.9659
5919581672503719868250,916113,63412382879,74798,104561,6682.2385430,8913.7919125,8401.016281,7591.025295,2200.9706
16281678725216029938249,024112,04612230478,44097,592560,1602.2494429,6873.8349124,2881.016280,4211.025394,1680.9649
12113126804183428987249,024112,04612227678,44096,904560,1602.2494429,6873.8349124,2601.016280,4211.025393,7280.9672
1983947557966714085249,024112,04612230078,44096,868560,1602.2494429,6873.8349124,2841.016280,4211.025393,8320.9687
15898576987782538717251,216114,27212397280,14798,088562,1802.2378431,7373.7782126,0961.017182,2691.026594,5760.9642
12790719060832926049251,216114,27212399680,14797,968562,1802.2378431,7373.7782126,1201.017182,2691.026594,4680.9643
13908372758225469649249,672111,94212264078,56897,596560,4802.2449429,2563.8346124,8201.017880,7451.027794,4360.9676
1317418231296854513249,672111,94212264478,56897,712560,4802.2449429,2563.8346124,8241.017880,7451.027794,7280.9695
1276704980672370962034,24828,3911913216,66217,69668,5122.000563,6012.240219,5961.024317,1281.028017,0320.9625
11457601429316476884250,604113,35212324079,11397,256562,5722.2449431,8213.8096125,4561.01881,3301.028093,5960.9624
270596577599276725258,59238,1893706027,09632,84887,2761.489667,7831.774937,8241.020627,8601.028230,9080.9409
568742187034115924247,968110,95112162477,84196,648558,5082.2523427,9943.8575123,8161.01880,0361.028293,2520.9649
8085376480096368355247,968110,95112160077,84196,816558,5082.2523427,9943.8575123,7921.01880,0361.028293,4960.9657
13956388239189805717247,968110,95112162877,84196,700558,5082.2523427,9943.8575123,8201.01880,0361.028293,4040.9659
1969797183083617233287,644266,983210840199,850168,472555,6641.9318535,5202.0058216,7401.028205,7491.0295145,7720.8653
374142407664925416168,41242,2204122033,46837,93295,6801.398680,4921.906542,2201.024334,4661.029836,0560.9505
6566475453974502025249,756112,82112291679,41197,832563,3562.2556432,9253.8373125,3201.019681,8141.030393,7880.9587
910308791977442167248,956111,51812237278,28497,388560,0122.2494429,0783.8476124,7521.019480,6641.030493,7000.9621
12945449698100230090248,956111,51812240078,28497,404560,0122.2494429,0783.8476124,7801.019480,6641.030494,0680.9658
14082206663069986457822,744730,318539544501,569462,132921,2201.1197855,2631.1711554,9681.0286516,9941.0308448,1720.9698
7232466910254261608274,996138,102146592102,732119,132597,3282.1721466,9393.3811149,8881.0225106,0271.0321115,5320.9698
9897790026522509703249,540112,01012184877,91096,416562,7162.255431,6913.854124,3961.020980,4601.032793,4240.9690
14722977028764752771249,040110,77412140477,19496,724560,1242.2491428,3633.867123,9521.02179,7441.033093,5120.9668
1697389050197780994250,420113,13712343679,36297,776561,7522.2432430,9763.8093126,0801.021482,0071.033394,5480.9670
1471092280844708935394,73289,6164090838,52333,268143,7001.5169138,9011.5542,2201.032139,8331.034032,6520.9815
12076392102233038517251,440114,65312476480,80398,884564,2442.2441433,9633.785127,5241.022183,5641.034294,3920.9546
12974391103648148573251,440114,65312479280,80398,652564,2442.2441433,9633.785127,5521.022183,5641.034295,1560.9646
1040529256651102135164,91261,8703113229,45727,064120,1321.8507117,5231.899532,1481.032630,4731.034526,8320.9914
178578016860323534529,6645,55368764,6996,25230,6803.174726,8444.83417,0401.02394,8621.03476,1160.9782
510418008650329555225,012201,160155988143,792125,140456,1322.0271432,8052.1515161,0841.0327148,8871.0354105,9600.8467
7759768834202445416224,960201,144155960143,781125,076456,0802.0274432,7892.1516161,0601.0327148,8811.0355106,1520.8487
1242279184362659149934,97631,6151255210,83111,47650,0881.432147,3361.497312,9441.031211,2221.036110,8720.9474
24928173620298783876,1763,01824401,1752,1726,7481.09264,0091.32842,4841.0181,2181.03661,8120.8343
10872206101587613876627,240308,118296896240,186236,728848,5401.3528546,0571.7722305,6801.0296248,9701.0366218,8720.9246
3553707624211877972249,088111,64512249278,35197,692560,2682.2493429,3303.8455125,4601.024281,3201.037994,2720.9650
3254888140847341004250,668113,33512285678,92497,360563,5362.2481432,7053.8179125,8521.024481,9201.038093,5000.9604
15230067599932116210250,668113,33512288478,92497,588563,5362.2481432,7053.8179125,8801.024481,9201.038094,0640.9639
7803725812033210245250,668113,33512289278,92497,476563,5362.2481432,7053.8179125,8881.024481,9201.038094,1360.9657
13882494344615463398276,944191,216174704147,691146,992373,1521.3474309,4631.6184180,3601.0324153,3461.0383129,5080.8811
1391362890009469568153,48846,2863895235,13535,52887,7521.640681,2021.754440,3281.035336,5111.039232,4120.9123
107617933240238400104,92852,0714978838,26145,396129,8801.237882,1591.577851,3441.031339,8171.040741,8440.9218
14060394740103919219185,020162,192127640116,005103,052383,4922.0727361,2092.227132,3881.0372120,7531.040988,7520.8612
187299644273181358757,93237,5153664026,65532,55687,9201.517668,4091.823537,7761.03127,7911.042630,8920.9489
341881955918211619129,2645,675149284,7949,11665,6762.244344,3437.813715,1401.01425,0061.04429,1641.0053
8875788186834242822250,092113,09112362079,50498,212563,2362.2521432,7373.8264127,1441.028583,0251.044393,9760.9569
15197621927963553584250,092113,09112362479,50498,044563,2362.2521432,7373.8264127,1481.028583,0251.044393,9840.9586
457963253384398538149,40829,7002997620,82726,61678,9841.598660,1542.025430,9241.031621,7741.045525,6160.9624
10245434754542551894142,832137,5805888855,86356,596145,5841.0193140,8031.023461,4481.043558,4211.045848,4840.8567
713578874880675303327,800209,006194712149,577155,120505,5321.5422411,3731.9682201,7121.036156,5791.0468139,9600.9023
354253161700756720928,7045,321145124,4558,75264,9802.263843,8548.241714,7281.01494,6711.04858,8561.0119
12187056242389272201292,156125,46113086895,157113,404375,3721.2848244,7471.9508135,6361.036499,9261.0501105,3360.9289
17759675451973837255249,656136,64412801295,428108,684351,5961.4083245,8771.7994132,8561.0378100,2691.0507103,4280.9516
16954017178896002230249,984136,64412801695,428108,496351,6081.4065245,8771.7994132,8601.0378100,2691.0507103,3960.9530
15561584718605287478291,852125,36913077695,065113,368375,3361.286244,7101.9519135,5961.036999,8871.0507105,3320.9291
1562517379498885265059,76038,3553784427,43433,74491,9521.538771,4251.862239,2681.037628,8571.051932,0000.9483
7231617489623483473167,604162,654120328117,595107,020184,4801.1007180,6331.1105126,5081.0514123,7751.0526104,2160.9738
446072298356685153327,6884,065133483,2287,68463,3762.288942,01210.335113,5201.01293,3991.05307,6720.9984
5638790737377452395198,668174,789137104124,887110,600426,9562.1491403,6812.3095143,7961.0488131,5771.053696,9200.8763
642360571572265842327,4603,811131643,0207,33663,2442.303141,84910.981113,3281.01253,1831.05407,4121.0104
51626764764392180760,77239,3743849628,10834,61292,8961.528672,3771.838240,0401.040129,6511.054932,7880.9473
1598789506282380470259,88854,6604763244,57043,74893,0801.554288,5001.619150,1241.052347,0641.056042,1720.9640
967171896792214483372,11653,6744072031,72736,440123,7761.7163106,2611.979742,5241.044333,5321.056933,6160.9225
792444995246323903026,42824,36141163,2843,75241,1081.555539,7271.63084,3081.04663,4731.05763,5160.9371
255000649499709685451,07248,6852915627,73626,04470,2201.374968,2211.401330,7561.054929,3361.057725,7720.9896
15728617540820365303194,340189,270137616134,848121,428213,5481.0988209,6471.1077145,6081.0581142,8391.0593117,7480.9697
13335766659899730084105,08086,6215878849,51050,516180,8841.7214163,3231.885561,7561.050552,4801.060047,3520.9374
1218560964926549345060,20038,7933830427,89534,23292,8761.542872,3501.86540,0321.045129,6241.062032,5760.9516
1206171992154801701659,37637,9723749627,09333,47691,7921.545971,2681.876939,1921.045228,7891.062631,8160.9504
14803875145406560813151,448146,414103064100,37690,220186,8281.2336182,9591.2496109,4201.0617106,7291.063386,1160.9545
1811259248779250258754,71633,2813381223,67830,18887,6361.601767,0822.015635,3161.044525,1841.063629,0800.9633
1395383355756119137251,24844,0393846434,63335,17686,0121.678379,4541.804240,7001.058136,8721.064632,6920.9294
396752230396484555355,92434,4893500424,82631,28888,8761.589268,3211.98136,6441.046926,4661.066130,0680.9610
1006335606257460322027,5483,987132003,0877,44863,2962.297741,99210.532213,4041.01553,2921.06647,5001.0070
4408590274989084452156,476151,416105052102,37792,004201,6641.2888197,8041.3064111,9201.0654109,2481.067187,9840.9563
17340324434915359790382,732374,548290776287,213236,240485,3201.268477,4221.2747310,3321.0673306,7691.0681213,2240.9026
631949481831099596056,35634,9293512024,93731,36888,8641.576868,3181.955936,8281.048626,6451.068530,2440.9642
1448873169103016595054,81633,3813424024,10030,63287,8481.602667,2962.01635,8961.048425,7541.068629,4560.9616
492830939844436147934,70830,1682539622,95423,46462,8001.809459,0591.957726,9721.062124,5311.068722,9400.9777
9994156748713136164209,116185,175143012130,778114,912457,2362.1865433,8882.3431152,1281.0637139,8961.0697101,4400.8828
6569998227837323714376,028281,595210536171,643165,392508,9401.3535437,1181.5523222,6241.0574183,7321.0704154,0680.9315
1063226848889651275647,75640,6293481231,05031,90883,4961.748477,0221.895737,0041.06333,2431.070629,8360.9351
572449322951001425749,60842,4663709233,32233,56082,2441.657975,7541.783939,5161.065435,7471.072831,6360.9427
9340291074335237637311,956295,459226628222,219196,788478,0121.5323467,9491.5838242,9841.0722238,5741.0736179,1720.9105
17859913602726492779311,956295,459226628222,219196,788478,0121.5323467,9491.5838242,9841.0722238,5741.0736179,1720.9105
1816268230191532049666,77645,6594512434,28940,432101,6681.522581,4421.783747,7001.057136,8651.075138,8360.9605
1297854103406830433245,052235,025150780145,064128,732297,8601.2155288,3811.227161,6881.0723155,9701.0752125,7960.9772
4855183999007619930254,860234,188182668172,322148,532535,3122.1004515,1552.1997195,8121.072185,4681.0763130,8720.8811
1544628114883339881454,50434,6073339223,79229,80485,9841.577666,9671.935135,2161.054625,6151.076628,2160.9467
5054172900305566056239,692102,73711935275,71997,364562,4282.3465431,9774.2047125,1961.04981,5631.077293,9040.9645
524298428411035859067,85646,7214562834,77740,808102,4881.510482,2481.760448,3161.058937,4661.077339,0680.9574
948246523579217412248,912111,88811834074,51196,444562,0402.258431,5193.8567124,1001.048780,2721.077392,6160.9603
65433254884823403248,912111,88811834074,51196,352562,0402.258431,5193.8567124,1001.048780,2721.077392,6480.9616
615486995606542253346,76827,7502815619,38524,92484,9321.81666,7932.40729,7041.05520,9341.079923,7760.9539
3953678372253188165234,24097,15711318069,17891,628553,3042.3621422,7264.351118,7201.048974,7171.080187,9920.9603
11628669603288737332234,24097,15711318469,17891,596553,3042.3621422,7264.351118,7241.048974,7171.080188,7040.9684
16469408501436287568235,02897,74111320469,15791,272555,6362.3641424,8534.3467118,7641.049174,7171.080488,2240.9666
3933156263657763515200,260187,254142296138,87883,744363,8961.8171351,1381.8752153,5441.079150,1271.081072,5600.8665
2123830365787616882235,26498,00611358469,53391,476555,8642.3627425,1094.3376119,2201.049675,1701.081187,5720.9573
11843199666582106600237,416100,13811518871,09493,216559,7162.3575428,9434.2835120,9641.050176,8691.081289,3240.9582
14211611801640154223237,936100,69911561671,55793,316560,4202.3553429,6854.267121,4641.050677,4061.081789,9720.9642
16814327514373585200237,01299,85811489270,82692,684559,2362.3595428,5864.292120,7041.050676,6371.082089,4800.9654
10090280691084653273237,01299,85811486070,82693,028559,2362.3595428,5864.292120,6721.050676,6371.082090,0680.9682
1994231801787020284235,56898,35611386869,80392,212556,2042.3611425,4964.3261119,6121.050475,5481.082388,4760.9595
2053329723075823139235,56898,35611387269,80391,504556,2042.3611425,4964.3261119,6161.050475,5481.082388,2200.9641
17927744536071463669237,704100,34911544871,30692,888560,2362.3569429,3884.2789121,3161.050877,1741.082390,0000.9689
1100736886452849222270,95249,7814726036,24142,128112,2241.581791,9451.84750,2441.063139,2271.082439,8720.9464
477286033572546094765,06843,9514277632,00038,480102,3961.573782,1711.869645,4201.061834,6411.082536,7360.9547
156927334013626931684,7121,85824161,1652,1128,4561.79465,8743.16152,5161.04141,2651.08581,9640.9299
1492613329846253168232,26094,70411154867,38990,000552,2042.3775421,1524.447117,3321.051973,1741.085886,4040.9600
17206985243261835739232,26094,70411154867,38990,208552,2042.3775421,1524.447117,3321.051973,1741.085886,6480.9605
10716327367623446258233,86896,53111290468,80691,296555,6602.376424,8274.4009118,8241.052474,7261.086088,0760.9647
9729788920781840058235,66498,63011405270,11492,360557,3082.3648426,7794.3271120,1281.053376,1921.086788,7520.9609
9586255917133147038235,66498,63011408470,11492,460557,3082.3648426,7794.3271120,1601.053376,1921.086788,8840.9613
4217550804550523252233,01695,65811246868,30691,532552,2002.3698421,3454.4047118,4241.05374,2621.087287,8000.9592
492537923287837004233,01695,65811246068,30691,024552,2002.3698421,3454.4047118,4161.05374,2621.087287,9880.9666
13253691622707866342161,820126,571116736105,318105,368209,8281.2967180,6311.4271125,9481.0789114,5291.0875102,1280.9693
2108648416726613110259,376238,680184172173,788148,580552,9842.132532,8032.2323199,5561.0835189,1691.0885129,3880.8708
10853384747241388296238,324101,27711851274,36896,936563,0282.3624432,4884.2703125,1681.056281,0231.089593,3880.9634
15988088608396535162238,324101,27711851274,36896,684563,0282.3624432,4884.2703125,1681.056281,0231.089593,6000.9681
853968429981239112234,25297,13911337669,38392,216555,9002.3731425,2924.3782119,5921.054875,5981.089689,0480.9656
14137581465833891883234,25297,13911334469,38392,124555,9002.3731425,2924.3782119,5601.054875,5981.089689,1320.9675
1261416071093855328227,744117,61510888478,46792,020333,6161.4649230,4981.9598116,0241.065685,6061.091089,3480.9710
14055383240203807252228,076117,61510888478,46792,260333,6321.4628230,4981.9598116,0241.065685,6061.091089,5800.9710
699254311679517186573,57653,2964872838,89343,992119,3681.622499,9671.875752,3721.074842,5381.093740,6120.9232
15425674838892735009269,012105,43411138877,89996,400357,2121.3279229,3592.1754118,7281.065985,2371.094290,8080.9420
13245964447250393184269,112105,53411129277,79896,308357,2401.3275229,3862.1736118,7401.066985,2451.095790,9720.9446
13580541293121418061237,532100,12911598071,79494,196562,3802.3676431,4844.3093122,9001.059778,7161.096490,9000.9650
1353934972244692963237,532100,12911601271,79493,792562,3802.3676431,4844.3093122,9321.059678,7161.096490,8080.9682
919926476730679828236,82499,58111532871,20493,632561,6602.3716430,9224.3274122,3001.060578,1751.097989,8280.9594
283821303698016368236,82499,58111536471,20494,060561,6602.3716430,9224.3274122,3361.060478,1751.097990,4880.9620
483866389360037241575,94473,4253481633,26027,85696,6561.272794,4221.28638,0761.093636,5201.098027,3080.9803
751618577694228366250,46032,4593021221,52526,808104,5282.071587,4502.694232,3241.069923,6391.098225,2680.9426
7371606583157649301247,140226,401175892165,699142,556540,6122.1875520,3902.2985192,1881.0926181,9961.0984126,9400.8905
1248832188535121772263,27641,0864008033,24336,86494,9201.500181,4401.982243,3601.081836,5211.098635,8440.9723
6527414973336969051237,08099,65411564071,41393,428562,1842.3713431,2634.3276122,7001.061178,4751.098990,3040.9666
19098910987827990422,217,5002,182,414993932975,420703,5922,918,3761.31612,884,9981.32191,090,5921.09731,072,0771.0991697,7920.9918
13333650318812598064209,608204,2437991677,03970,016240,9961.1497236,2981.156987,5641.095784,6861.099361,7920.8825
8435113791511775541199,34483,0208896850,13371,076251,4081.2612143,1021.723793,9841.056455,1511.100169,0360.9713
4062250504263391078235,39298,09711458870,44093,060559,7682.378428,9784.373121,6641.061877,5131.100489,7600.9645
4241729047313007001235,39298,09711461670,44092,888559,7682.378428,9784.373121,6921.061777,5131.100490,2160.9712
141738759944677493102,201,9482,167,401985744971,596698,6722,843,9961.29162,818,4831.30041,083,4721.09911,069,3221.1006689,1520.9864
99771905377929255912,219,5082,184,945998404979,766704,1122,877,7321.29662,844,8141.3021,097,4161.09921,078,7791.1011697,3720.9904
129869929947348619535,95231,4182596823,52324,12476,8042.136373,1422.32828,3641.092325,9171.101823,6120.9788
1317206560010419600680,02050,8375211642,18546,592108,1161.351184,7701.667556,4681.083546,5371.103244,6560.9584
13387064088556271622234,48896,93011419669,86893,056558,8162.3831427,7624.4131121,4961.063977,1661.104590,9880.9778
5609249603884572741260,596239,853185496175,323149,848565,3042.1693545,0762.2725204,0161.0998193,8441.1056132,1720.8820
9269310977437370971233,24095,99911304068,92792,196558,1722.3931427,4354.4525120,3481.064676,2331.106088,2640.9574
106236429044875256072,199,2322,164,100986112967,564700,3882,915,5441.32572,882,1791.33181,088,9881.10431,070,4381.1063693,4520.9901
43839361893091999782,182,2962,147,179973460959,435695,5162,882,2401.32072,856,3231.33031,075,5401.10491,061,5131.1064685,0880.9850
145298434281593574836,2444,13826561,5312,56823,3163.734121,6225.22522,8241.06331,6971.10842,3600.9190
1297839152471190575061,26040,1493869628,47434,676102,2241.668781,9932.042241,8001.080231,5781.109032,3640.9333
16768432871152709864264,472190,815171136142,688132,776419,1801.585346,7891.8174186,7201.0911158,2711.1092116,3960.8766
696881686717481544157,84036,3233692826,73033,13695,5561.652174,9182.062539,8561.079329,6581.109531,2480.9430
1233966880674316818572,71253,1824830438,42043,372134,6441.8517116,0022.181252,5281.087442,6441.109940,0280.9229
495995780333499539757,51635,9983664026,43732,89695,4921.660374,8552.079439,5721.0829,3691.110930,9600.9411
823000182749864750061,80841,6403866830,80535,480107,6601.741888,1572.117142,1241.089434,2641.112333,8520.9541
51646546934664392222,526,1642,491,56310977961,079,062743,2963,330,1521.31833,297,1951.32331,219,0521.11051,200,3201.1124738,2720.9932
12055878531790601508447,284410,527258104239,218207,368679,5721.5193645,5071.5724285,0121.1043266,1251.1125204,6360.9868
8569799109258472684429,672401,643262404251,701216,852734,5921.7097707,4531.7614290,8001.1082280,0991.1128215,0600.9917
16829119242149504624678,588643,069552212538,140306,964794,1801.1703768,5221.1951612,9801.11598,9081.1129300,0320.9774
153374790362994951542,428,5722,394,19810710961,057,111751,7443,227,0881.32883,201,9721.33741,190,5281.11151,176,5411.1130742,2680.9874
14840491724781166852,450,0162,415,64710850521,066,581758,4323,265,1721.33273,232,6371.33821,206,0801.11151,187,6121.1135751,3880.9907
486810996057551969056,24434,7273517225,05031,32494,9241.687774,2862.139138,0241.081127,9031.113929,6400.9462
15800062614033497939562,460524,169268624253,961211,7001,057,0081.87931,021,2661.9484297,5441.1077282,8841.1139209,4160.9892
54625436126363847222,449,0402,414,64910843601,065,889758,5323,264,4481.3333,231,9041.33851,205,8561.1121,187,3871.1140751,5280.9908
7470144431254465750177,18075,1627770843,99663,180230,0721.2985133,7411.779482,7401.064849,0281.114461,7560.9775
6827466402591103133443,752407,014252100237,411206,068670,7121.5115643,6521.5814279,4601.1085264,7721.1152200,4920.9729
363215338109029657248,92030,3302891619,88925,400104,0642.127286,3982.848631,2241.079822,1991.116124,0960.9487
403618381822224976429,292398,043247812235,391202,480641,4361.4942618,3971.5536275,2081.1106262,7881.1164197,0280.9731
541467313755990265256,50434,9873567625,51232,16495,1161.683374,4792.128838,6561.083528,4891.116730,2080.9392
347106568022507216062,69641,5884012829,87936,144103,0001.642882,7721.990343,6161.086933,3651.116733,7680.9343
1487652407196827758862,36041,2503982429,58735,844102,8281.648982,5982.002443,3481.088533,1101.119133,5920.9372
5577946606482408438175,11648,5237024831,74445,856173,1440.988781,8271.686474,0281.053835,5241.119143,2040.9422
1021707580772057867861,40440,2963908428,85635,272102,6041.67182,3732.044242,5401.088432,3111.119733,0240.9363
9599653584083093900141,252138,065108892107,07397,976238,4201.6879235,5061.7058122,1801.122120,3611.124192,6400.9455
11518063064262346769422,520391,100247476230,695201,648659,7201.5614629,5411.6097276,2841.1164259,5041.1249199,0040.9869
2809735882871272256209,424135,732128944104,947108,104313,2041.4955258,0901.9015142,5801.1058118,5821.1299105,1680.9728
15135567664324403826168,78469,9287492841,73261,344227,9241.3504134,5191.923780,3561.072447,1601.130159,4440.9690
852332878441340782258,58437,1073663626,43332,82496,7841.652176,1882.053240,0801.09429,8771.130331,1320.9485
1161151236528389998162,72841,7394012029,90136,096105,2241.677585,1162.039244,1441.100333,9281.134733,6240.9315
551060596093727595344,45632,7042298018,10521,260109,7282.4682101,2853.09725,4961.109520,6241.139119,7120.9272
3667214599301476005285,608256,176140412129,207111,884556,9761.9501535,6742.091158,9801.1322147,7731.1437110,3480.9863
92898814539995319791,233,3561,198,865765812747,233552,3761,923,6561.55971,890,7971.5772873,4601.1406854,8841.1441549,0080.9939
1795926385576971810864,08443,0744144431,20737,368108,3041.6988,1752.047146,0081.110135,7691.146235,1560.9408
85561343822230555331,245,3881,210,296771276752,789555,0801,958,5241.57261,925,1441.5906881,7321.1432863,2471.1467553,0520.9963
29165239232870074681,205,1721,170,619749752735,594547,6401,883,1561.56261,857,6311.5869860,2121.1473846,0561.1502541,1360.9881
8984173651566190331,641,8321,607,449987048968,586708,0762,528,3561.542,495,8131.55271,134,9961.14991,116,5331.1527703,4080.9934
13211835800489589421740,772697,689355804333,524267,6241,187,1681.60261,147,3041.6444407,0641.1441384,7821.1537266,4600.9957
7802166615144197106687,516655,994326456313,716249,9401,092,5281.58911,069,2341.6299374,7321.1479361,9921.1539245,2480.9812
16603083507339564057702,000665,124335228316,133252,8001,119,3321.59451,085,1421.6315384,0921.1458365,0001.1546251,2680.9939
8303576554868103499313,932304,482239708234,531200,472468,9801.4939460,5511.5126276,0401.1516270,8631.1549180,4840.9003
2237336294186306908693,432661,893333132316,160251,8321,106,9601.59631,076,6651.6266382,1241.1471365,1521.1550250,1040.9931
432665636087468742464,08844,6164070431,19737,012129,4802.0203110,8962.485645,5521.119136,0461.155434,7120.9379
27799798244427159991,626,5681,592,186971864957,888700,0202,503,4001.53912,478,2731.55651,120,7041.15311,106,7281.1554694,5640.9922
1266941140807351369269,28049,8294405634,32239,684136,8881.9759118,3252.374649,4041.121439,6691.155836,9960.9323
130696944676515361622,04837412082629762,5921.26561,1623.1071,2481.03313031.15659280.9508
1120083310158196529564,30444,8184066831,13236,944129,6722.0165111,0732.478345,6401.122336,1021.159634,9360.9456
73751781269549932461,222,1161,186,992749244735,234546,9281,934,9041.58321,908,9791.6082866,8761.157852,8651.1600540,9800.9891
5523184221877589866664,616661,612533880532,317354,452866,8121.3042864,0881.306619,5761.1605618,0161.1610338,6960.9555
9321179854843564674395,584374,916183228175,444142,588564,2561.4264544,3281.4519211,8721.1563204,0871.1633141,0720.9894
6472576310457858987395,584374,916183228175,444142,612564,2561.4264544,3281.4519211,8721.1563204,0871.1633141,1680.9899
581274188360221435516,72811,7071285210,15611,900273,24016.3343268,49422.934514,5161.129511,8201.163811,4560.9627
448767766744991269458,79640,2163753228,39034,092112,6921.916794,9962.362142,2121.124733,0721.164932,6920.9589
1182150942909944899472,30052,0654447234,81440,048171,6282.3738152,2772.924750,2401.129740,5811.165737,4480.9351
1316558367345857270265,31245,8623996030,48336,320129,4961.9827110,9362.418945,0641.127735,5861.167434,1680.9407
862006813977076190863,50444,0663971230,26435,896129,3682.0372110,8182.514844,8481.129335,3991.169733,9800.9466
113141385122216391841,557,2961,522,423936672917,874690,1802,433,8161.56282,400,6091.57681,095,6681.16971,076,8721.1732682,3800.9887
172588937607340362821,666,3481,631,157985244966,597683,8282,670,7561.60282,637,3001.61681,152,6081.16991,133,9641.1732681,7000.9969
12888277140395886873578,568549,078285180269,203222,144967,5721.6724939,3051.7107331,8641.1637315,8861.1734221,0880.9952
67249773246545176831,662,3201,627,712987064968,336683,6442,633,3561.58412,600,3901.59761,155,6601.17081,136,9291.1741680,3360.9952
114957679452127479465,8643,49326201,6411,96835,2126.004833,3829.55682,9201.11451,9411.18281,8800.9553
142065397278675614601,485,5241,450,093889108870,491657,4162,421,9401.63042,388,5101.64711,051,5081.18271,032,8891.1866649,1320.9874
57877331355778682041,484,8521,449,246888492874,156663,8042,418,8241.6292,392,5031.65091,052,2801.18431,037,9441.1874652,8960.9836
23958501203863767361,509,3841,474,986923012904,550675,1522,525,9561.67352,493,4021.69051,092,8961.18411,074,4331.1878673,1960.9971
12036286197524996014395,852386,876193372189,162139,704542,9041.3715535,5281.3842229,2321.1854225,0211.1896136,3000.9756
12144762672495132214542,208435,249247368210,400193,948911,5681.6812840,2421.9305287,3881.1618250,4191.1902189,8920.9791
931716499839646042398,380389,400194088189,872140,100546,7121.3723539,3311.385230,3081.1866226,0891.1907136,9680.9776
6694730892547397593386,412372,290180300172,987141,640699,5361.8103686,1501.8431213,3561.1833206,0441.1911139,8600.9874
139587923690840102781,462,4201,428,269881224862,977646,5042,384,5001.63052,352,1591.64691,046,1721.18721,027,9251.1911638,9400.9883
5950765890271131505357,212353,298210976209,046144,096740,1522.072737,1712.0865251,3641.1914249,4341.1932143,4040.9952
14399131234414689233452,444450,655195364194,260170,256541,6681.1972540,2861.1989233,1441.1934232,0401.1945167,4200.9833
184140049243220189412,056,8282,022,37112092281,190,808890,8283,246,4881.57843,213,9421.58921,444,1001.19421,425,6781.1972881,2920.9893
6656750754849200481209,40451,1343108424,82353,064117,3320.560398,8941.93436,1441.162829,8811.203827,3480.5154
14816178371224477498388,572374,670181724174,476141,628731,1481.8816717,9811.9163217,3761.1962210,1271.2043140,6960.9934
2055160241108853156293,608272,954200652190,281158,080788,4762.6855768,3382.8149239,5361.1938229,1671.2044139,3840.8817
16226426603104053848207,97651,1323097224,82452,716117,2480.563898,9021.934236,0841.165129,9341.205827,1840.5157
6514504275957642222544,660540,394262612260,403229,228761,8801.3988758,4191.4035317,9321.2107315,7211.2124228,9240.9987
1361828289226261019388,912379,936180496176,281132,812546,0201.404538,6481.4177218,1881.2088213,9751.2138129,3160.9737
2821790571103759091,090,2081,055,635704404685,766535,5041,903,3721.74591,870,4451.7719851,3481.2086832,7091.2143534,2800.9977
1599652425329451713472,74470,3544069239,24735,80092,4841.271490,6591.288649,6041.21948,1591.227135,1520.9819
1782433152117565695366,48443,2883964432,63336,024123,2921.8545105,6132.439847,0561.18740,0461.227233,5400.9310
5552157396115446990443,980416,854196684185,418150,644804,4361.8119783,6541.8799240,0201.2203228,7551.2337147,9600.9822
12054005213987732787220,836155,536133048107,337112,696422,8361.9147365,8452.3522159,2281.1968133,5181.2439102,0200.9053
8722607592711705401470,948307,811300092234,362235,116952,4522.0224811,6902.637357,5641.1915291,8331.2452225,3640.9585
3005942009405137730471,696307,811300056234,362235,708952,5202.0194811,6902.637357,5281.1915291,8331.2452225,2000.9554
4617870265681283795471,696307,811300056234,362235,156952,5202.0194811,6902.637357,5281.1915291,8331.2452224,8960.9564
5290540869870722015507,012396,061240656194,771243,092837,5081.6519735,9391.8581288,4281.1985242,5421.2453179,6400.7390
13891300633312371884507,012396,061240652194,771243,256837,5081.6519735,9391.8581288,4241.1985242,5421.2453179,9720.7398
2201421271682391613463,952304,933288256225,615224,780953,2082.0545815,9652.6759343,8001.1927281,1581.2462213,5960.9502
14856349135497565921464,700304,933288220225,615224,348953,2762.0514815,9652.6759343,7641.1927281,1581.2462213,9200.9535
13389258704740096501464,700304,933288220225,616224,604953,2042.0512815,8962.6757343,7881.1928281,1831.2463214,0360.9529
14609405385941470015465,336304,379298296233,498234,484953,5122.0491815,0012.6776356,3041.1945291,5081.2484223,8800.9548
5393684229215043062465,336304,379298296233,498234,244953,5122.0491815,0012.6776356,3041.1945291,5081.2484223,8560.9557
17704797859449956716417,504313,645156192129,201110,520740,5921.7739646,1482.0601188,3081.2056161,3171.2486109,2400.9884
7741351154469140048462,676300,308290728227,582227,056952,8842.0595813,5732.7091347,3361.1947284,1911.2487215,9800.9512
772790232192035815475,292313,949302328236,575237,724959,2202.0182820,2932.6128361,4361.1955295,6841.2499226,9600.9547
15217875013857175539586,392449,116286132229,280282,512935,4001.5952807,9471.799343,5121.2005286,6591.2503214,3000.7586
16404298714213610401391,704260,795244540194,254193,072845,6562.1589735,5722.8205293,2761.1993242,9901.2509182,4920.9452
8519242879024019558392,292260,795244508194,254192,744845,6442.1556735,5722.8205293,2441.1993242,9901.2509182,6320.9475
17542974303055330955587,396451,770284764228,356283,896935,6041.5928809,8021.7925342,1961.2017285,7861.2515214,6360.7560
4431027089859363226516,944398,970243288195,723246,536844,7241.6341736,1311.8451292,9761.2042245,4111.2539182,4960.7402
11399215200642537995578,448443,948275772220,818270,684936,8841.6197812,2051.8295332,0081.2039277,0561.2547205,2560.7583
12971215137465184548388,560257,172237188187,133186,488850,1162.1879739,5582.8757284,9401.2013234,8851.2552176,0320.9439
68484307449786703692,43252314444151,0767,3163.00825,67810.85661,5521.07485211.25541,0761.0000
12480945366634041350573,104435,583287476230,207274,336945,8721.6504818,1761.8783346,4481.2051289,1771.2562213,7880.7793
17382129249876292984570,444435,420276928222,181271,408935,5441.64810,3441.8611334,0321.2062279,2881.2570206,0000.7590
15830673263459563694465,880302,831298992233,766235,604957,6642.0556817,0462.698359,1401.2012293,9151.2573224,8960.9546
17853113891535635717466,628302,831298952233,766235,588957,7322.0525817,0462.698359,1001.2012293,9151.2573225,2400.9561
10038980982936697337466,628302,831298952233,766235,352957,7322.0525817,0462.698359,1001.2012293,9151.2573225,0440.9562
7374593953838412775586,704448,246290344232,278284,720945,9801.6124817,3451.8234350,1041.2058292,0391.2573218,7560.7683
10304762275394030513586,704448,246290348232,278284,732945,9801.6124817,3451.8234350,1081.2058292,0391.2573218,7800.7684
7818896632915939217514,972397,039244884197,211246,300852,8281.6561744,2741.8746295,6721.2074247,9981.2575183,1440.7436
3072205327707311722514,972397,039244884197,211246,304852,8281.6561744,2741.8746295,6721.2074247,9981.2575183,2520.7440
1188476403322550597510,708393,481240496193,439242,576850,4321.6652742,5851.8872290,3801.2074243,3241.2579180,6280.7446
16260859889851724143510,708393,481240496193,439242,340850,4321.6652742,5851.8872290,3801.2074243,3241.2579180,5960.7452
6188445240447260231515,904397,955242784195,461247,292848,4321.6446739,8621.8592293,2641.2079245,9431.2583182,0360.7361
18377812677562480875515,904397,955242792195,462247,052848,4321.6446739,8621.8592293,2761.2079245,9461.2583182,1960.7375
2718678915542206761580,600443,467285772229,097277,844942,1641.6227814,8531.8375344,9441.2071288,2691.2583214,2520.7711
6075372060392716750580,600443,467285776229,101277,300942,1561.6227814,8481.8374344,9441.207288,2711.2583214,3680.7731
13976925546652499434575,120437,945283632226,982278,428935,1881.6261807,8391.8446342,3601.2071285,7111.2587213,4760.7667
9374538327817082591474,664311,957302100236,603238,284961,6602.026821,4072.6331363,4641.2031297,9661.2594228,2360.9578
11149584633201912161475,412311,957302064236,603238,172961,7282.0229821,4072.6331363,4281.2031297,9661.2594228,1680.9580
1554736897271201548496,116385,534232800187,530232,896840,3201.6938739,1191.9171281,4881.2091236,2201.2596173,5720.7453
17456442889592153347512,972395,462244920197,565245,784852,1601.6612744,0311.8814296,3401.2099248,9861.2603183,6680.7473
6821842549099386495512,972395,462244928197,565246,032852,1601.6612744,0311.8814296,3481.2099248,9861.2603184,1160.7483
8957504403181831070468,512305,743298668233,677234,232958,1802.0452817,8852.6751359,5201.2037294,5301.2604224,0160.9564
8897794622273875485469,260305,743298632233,677233,684958,2482.042817,8852.6751359,4841.2038294,5301.2604224,0760.9589
803494457617152102401,276261,375244616193,034193,580855,8642.1329737,5172.8217294,9641.2058243,3811.2608184,1720.9514
7140092247626866987501,260383,738240852193,874236,020850,7921.6973742,6501.9353291,4401.21244,4611.2609180,3840.7643
11203376532565846630571,120434,678286280229,641275,532941,1641.6479814,5451.8739346,2081.2093289,5711.2610214,4840.7784
10283547857661580641496,300385,803232296187,113234,628834,1521.6807733,0351.9281,1881.2105236,0081.2613173,4040.7391
14769043502092723676469,912307,054300588235,051237,616960,8922.0448820,4502.672362,1721.2049296,6341.2620226,6000.9536
2639934280920015818470,660307,054300552235,051237,324960,9602.0417820,4502.672362,1361.2049296,6341.2620226,9360.9562
5466128238817510608474,992311,840299080233,997235,584961,3002.0238820,6242.6316360,5001.2054295,4181.2625225,4960.9572
17806800660827373553475,740311,840299044233,999235,424961,3322.0207820,5872.6314360,4721.2054295,4261.2625225,5960.9583
5987674630631942453520,700402,833244572197,163244,632854,9881.642746,5021.8531296,4121.212249,0011.2629184,3000.7534
586284271289033224577,700439,801286060228,764283,168938,5241.6246810,4491.8428346,2121.2103288,9131.2629216,7160.7653
3864329465684077357577,700439,801286056228,762282,600938,5241.6246810,4491.8428346,2041.2103288,9121.2629217,0720.7681
2269635613204418296512,816394,474243600195,788243,296852,9081.6632743,9471.8859295,2561.2121247,4421.2638183,1280.7527
11428660014117129634512,816394,474243600195,788243,104852,9081.6632743,9471.8859295,2561.2121247,4421.2638183,2360.7537
7758266134721883930459,496301,149286868225,849223,604956,6322.0819820,6872.7252346,5201.2079285,5011.2641212,3200.9495
17454744308000922644460,244301,149286832225,849223,508956,7002.0787820,6872.7252346,4841.208285,5011.2641212,2320.9495
17003254225883495090460,244301,149286840225,856222,948956,6482.0786820,6332.725346,4921.208285,5051.2641212,0280.9510
7749673598357952445397,660259,409242652191,157192,048860,9962.1652743,1132.8646293,3481.2089241,8551.2652183,1360.9536
8874890837479424495398,248259,409242620191,157192,600860,9842.1619743,1132.8646293,3161.209241,8561.2652183,0400.9504
17671483582934768804469,280305,812300204234,345238,028958,4562.0424817,3962.6729362,4681.2074296,6111.2657227,1360.9542
495511296148000223470,028305,812300164234,345237,896958,5242.0393817,3962.6729362,4281.2074296,6111.2657227,4000.9559
9786961394053695157354,844241,696216944170,990173,304737,7042.079639,0202.6439262,4961.21216,5431.2664164,2640.9478
11529551907241885205568,880430,776283728225,541273,124942,8721.6574814,5921.891343,8601.2119285,6741.2666212,5960.7784
6919335685282989020403,036263,539245216193,794194,572863,9682.1436745,8682.8302296,9081.2108245,4881.2667185,2920.9523
13421750130385522227408,688269,389247080195,539196,312866,3442.1198747,9182.7763299,2561.2112247,7151.2668186,5480.9503
3656779394675088621467,560304,688300436234,957236,984961,0842.0555821,3192.6956363,3481.2094297,8721.2678227,1360.9584
9446229773305074926467,560304,688300432234,957237,116961,0842.0555821,3192.6956363,3441.2094297,8721.2678227,3640.9589
4189571908828384585500,200382,252240448192,691238,712850,3721.7001741,8021.9406292,0601.2146244,3021.2678180,3560.7555
4372906964641251394489,632373,199232932186,800224,808849,4521.7349742,3981.9893283,0921.2153236,9601.2685173,3080.7709
18068542598252582842469,920307,144296716232,617233,276961,6762.0465822,0642.6765359,2161.2106295,1181.2687222,9200.9556
4189579704688660265471,892445,224198520187,295145,876864,5641.8321844,1681.8961248,8561.2536237,6301.2687143,5840.9843
5380085051286899133404,480265,038245672193,930194,280863,1282.1339744,6232.8095297,8281.2123246,0871.2689185,0680.9526
4534477702668734503472,748309,691301224235,259239,152959,6322.0299819,0012.6446364,4921.21298,5271.2689229,1120.9580
11251243162854780234473,496309,691301188235,259239,104959,7002.0268819,0012.6446364,4561.2101298,5281.2689228,8320.9570
15008698696452097498500,200382,252240452192,696238,448850,5081.7003741,9391.941292,2881.2156244,5301.2690180,9040.7587
1079552449187687477503,984386,794240616193,498241,424851,9481.6904744,1371.9239292,8081.2169245,6901.2697182,0280.7540
16352618452296020301247,532223,719155268145,384123,584415,2521.6776394,0021.7611194,4921.2526184,6081.2698120,0080.9711
12012075112668097055470,496307,416294804230,269232,184960,4042.0413820,3952.6687356,9321.2107292,4001.2698223,1160.9609
5813575542533407923407,448276,358253596198,007197,772863,9402.1204746,6942.7019307,0561.2108251,4681.2700189,2120.9567
13746967000884055545399,932259,957242652191,200191,768861,4882.1541743,0422.8583294,8761.2152243,4211.2731182,9800.9542
8868230477660796547550,788417,580274188220,153261,600940,9521.7084817,5681.9579334,4521.2198280,4191.2737204,8280.7830
16809810973205832764287,104250,256198872181,873160,676652,6842.2733619,5282.4756248,7361.2507231,7391.2742144,3960.8987
13906475414291741799238,924231,985101608100,49679,248794,7563.3264788,3693.3984129,2841.2724128,1701.275480,4721.0154
9105841710533832679308,336294,318120956114,63188,196706,0842.29692,8482.3541152,6441.262146,3181.276487,7960.9955
4996947960609974699538,480512,424234820223,941168,0721,042,4521.93591,022,6531.9957297,3441.2663286,4681.2792165,7720.9863
7026909942531903471323,432305,470139268134,288105,156653,5602.0207642,2592.1025176,8721.27171,8911.2800104,9080.9976
13031492012216728909357,288320,341137592124,00493,772586,1081.6404561,0191.7513172,6241.2546159,0341.282592,2680.9840
3210281700284595012339,632321,666145928140,941109,968673,9401.9843662,7432.0603185,7841.2731180,8001.2828108,9960.9912
9753172060506842576410,948276,382258180201,488201,128905,3242.203784,8922.8399315,2001.2209258,5051.2830192,8400.9588
6907308695057050191420,412326,092152224130,192104,540774,2881.8417689,6442.1149189,3161.2437167,2821.2849103,2520.9877
16045236654301824280389,096266,125230148182,203178,648898,8282.31792,9122.9795282,7281.2285234,7841.2886168,4920.9432
3482284276421320224377,204256,989228300181,057177,476847,4362.2466742,2142.8881281,4841.233234,2441.2938169,8360.9570
1718225259420933554525,784106,38420887642,83858,148713,1001.3563294,3992.7673221,5801.060855,5441.296658,2881.0024
16260613182415244436525,787106,38420887642,83858,148713,1001.3563294,3992.7673221,5801.060855,5441.296658,2881.0024
18150410606325081561416,628326,757158312133,346107,292787,2281.8895706,8112.1631197,9441.2503172,9801.2972106,5880.9934
666161245780153792439,932416,772199692189,146155,836900,3042.0465878,9522.109256,0241.2821245,4771.2978154,8960.9940
9735463849775343495441,932418,771200840190,295156,372902,9282.0431881,5752.1051257,6081.2827247,0611.2983155,4680.9942
12900925905009785429301,584287,455119880113,59987,920720,8122.3901707,4712.4612153,9001.2838147,6201.299587,5120.9954
6827631515253789569366,772348,676154484149,182116,948718,7921.9598707,3862.0288202,5241.311197,2241.3220116,2520.9940
3942306632345492365370,680352,636157412152,234118,452739,1441.994727,7542.0638207,6201.319202,4411.3298117,5080.9920
9654324144017031219138,584115,6625877251,57845,608286,0322.064266,3362.302775,9001.291468,7081.332144,9760.9861
11767876539539251484276,492251,910132728121,936107,660580,1602.0983557,3582.2125174,3121.3133163,5171.3410106,5080.9893
3602721864414727718273,704249,942129072118,487105,732582,2282.1272560,1792.2412171,3081.3272160,7241.3565104,5560.9889
14010579843162439941387,372384,680285452283,887237,232724,4201.8701722,0381.877390,0121.3663388,4481.3683221,3720.9331
817247768728885304473,85252,8253827633,40235,652165,9602.2472155,0692.935550,6081.322245,7341.369233,8720.9501
5869860067327051806351,128327,159143004132,821105,796690,8361.9675667,5462.0404193,6641.3543183,4841.3814104,8640.9912
3653645479889856469354,276330,269148732138,516110,564703,7241.9864680,3632.06203,2401.3665193,0231.3935109,6800.9920
1398155409146650177378,04470,9653066827,59326,424274,2803.5144267,5813.770641,7241.360538,6521.400828,0481.0615
17687859441390567651394,284366,964167104156,452123,660788,2441.9992761,5652.0753230,6601.3803220,0081.4062122,8320.9933
1551177211461756524157,944155,4939456493,18382,612248,1521.5711246,1871.5833135,1881.4296133,8051.435980,3080.9721
1071453464884924494194,036172,2689045282,14377,696411,5842.1212395,0512.2932128,0801.416119,7721.458177,9441.0032
10947714806179280245533,524455,313218032208,739171,3921,118,1922.09591,099,4292.4147314,4761.4423305,1821.4620162,3400.9472
1886463808858915655360,044354,494125852123,02386,092769,6282.1376764,9752.1579184,9521.4696182,1241.480484,9040.9862
14917298470569513434397,988394,861316128314,550273,244666,2081.6739663,3621.68467,5081.4789465,9311.4813261,2880.9562
2375779472083807266330,288318,329133440128,185100,948919,9402.7853908,8692.8551195,3281.4638190,0741.482899,3440.9841
14153600397548220688218,648216,283164948163,598145,464371,3841.6985369,2671.7073244,8681.4845243,5181.4885137,6600.9464
3086574367328616443240,652237,9948968488,30274,720407,0001.6912404,8051.7009135,9281.5156134,5461.523772,4840.9701
17927899467750654018317,788306,192131696126,510101,096927,3602.9182916,6822.9938200,3841.5216195,1981.542999,6600.9858
554291492572003135978,31272,7035034047,26242,156241,6003.0851236,3723.251276,1681.513173,0911.546529,6080.7023
11640829453973669867362,208350,162149284143,815112,1041,052,1722.90491,041,0892.9732229,9241.5402224,4551.5607111,1400.9914
255665399451989980672,520247,14426716498,55299,9521,221,9521.817797,2583.2259322,4681.207153,8541.561196,8800.9693
9056242728299588451672,523247,14426716498,55299,9521,221,9521.817797,2583.2259322,4681.207153,8541.561196,8800.9693
5830056251214928351346,544334,212145540140,042110,7961,023,2202.95261,011,7883.0274224,7001.5439219,2021.5653110,0440.9932
10757374006058250267318,448305,456134480128,535101,228926,8202.9104915,2092.9962207,9681.5465202,0231.5717100,2600.9904
308877151067401632229,608222,598119428116,979104,012340,3241.4822335,0211.505186,3401.5603183,8891.572099,0960.9527
6925525709750861603169,084165,094126332123,847106,936360,1802.1302356,4612.1591197,4561.563194,9721.574395,1600.8899
5258370141086255510214,432212,4159702895,85185,344342,0041.5949340,3321.6022153,8881.586152,7111.593283,2320.9753
5546011380840669984570,084565,789348160345,896277,7721,330,5242.33391,326,8362.3451564,5801.6216562,3151.6257278,0961.0012
10356737472380678000359,628356,978129764128,407109,096671,4681.8671669,2841.8749210,5961.6229209,2391.6295105,6400.9683
5276987998774976285171,776147,9665914450,55344,908442,5082.5761426,1202.879991,8281.552683,2381.646543,4360.9672
6144311432436308956164,908141,1395655648,14344,112446,3202.7065430,2283.048390,1561.594181,7411.697942,1760.9561
7493373085251021900355,988343,303121376114,12884,996854,1002.3992842,1262.453201,3801.6591194,1301.701083,8280.9863
16088813532539734883336,048248,71313072496,09987,440893,4642.6587807,2783.2458198,4961.5184163,8691.705287,4280.9999
12631255398088552325254,872242,2318841281,12866,260672,4562.6384660,5792.7271151,2281.7105143,9411.774264,9840.9807
10652285129221839347353,500348,802129944127,79488,6161,033,8122.92451,029,9852.9529308,1402.3713305,9922.394479,8840.9015
mean





1.3395
1.5939
0.9874
0.9821
0.9282
std. dev.





0.5245
0.9004
0.0977
0.1153
0.0508

Appendix F: Horizontal metrics (hmtx) optimization

The effect of optimising the hmtx table prior to entropy coding was studied on two corpi: the Google Fonts collection and the Dalton Maag library.

For Google Fonts, 1754 fonts were examined. Of those, 1411 (80.4%) had gains in compression efficiency. 288 (16.4%) had no gains, while 55 fonts (3.1%) got bigger. The mean reduction in compressed filesize was 368 bytes (0.86%) for all fonts, or 466 bytes (1.08%) for fonts which had gains of one byte or more.

gains from hmtx processing

Similar results were obtained for the Dalton Maag library. 164 fonts were examined, with an average of 732 glyphs per font. Total size without hmtx preprocessing was 8,767,928 bytes, an average of 53,462 per font; while with hmtx processing, total size was 8,857,900 bytes (1.02% smaller), an average of 53,462 per font (1.01% smaller).

In view of these positive results, a transformed hmtx table type was added to the WOFF 2.0 specification. The original, untransformed table type is also available, for use where an individual font happens to become slightly larger with this type of preprocessing.

filesizebr11_sizewoff2_nohmtx_sizewoff2_hmtx_sizebytes_saved%saved
NotoSansLisu-Regular.ttf52723261256424401244.8%
UnicaOne-Regular.ttf399241499311444110523923.4%
LaoMuangKhong-Regular.ttf1796010114455244001523.3%
NotoSansGothic-Regular.ttf5672345129162824923.2%
Quantico-BoldItalic.ttf2066011098820079562443.0%
Poly-Italic.ttf742362798521544209366082.8%
Bitter-Bold.ttf258961440811540112163242.8%
NotoSansSundanese-Regular.ttf101406200506849281402.8%
Asap-Bold.ttf303521465211328110163122.8%
PassionOne-Bold.ttf2478812897987696042722.8%
Gudea-Bold.ttf22560131191023699562802.7%
PirataOne-Regular.ttf563161799513504131443602.7%
Homenaje-Regular.ttf2219211481872884962322.7%
MontserratAlternates-Regular.ttf270561436611268109722962.6%
Orbitron-Black.ttf375841484512156118403162.6%
Quantico-Bold.ttf2089610459772875282002.6%
Voces-Regular.ttf676963187823604229966082.6%
Nunito-Bold.ttf495442682224096234926042.5%
Economica-Bold.ttf271961463911836115402962.5%
Gudea-Regular.ttf22932131091010098482522.5%
Quantico-Regular.ttf2094010545771675241922.5%
PoiretOne-Regular.ttf477081986515440150563842.5%
Orbitron-Regular.ttf394841502412160118603002.5%
Ruda-Regular.ttf249441364610752104882642.5%
Acme-Regular.ttf2346012315961693802362.5%
Karla-Regular.ttf168169210734071601802.5%
OpenSansHebrewCondensed-Regular.ttf323641716613564132323322.4%
Gudea-Italic.ttf270281492611464111882762.4%
NotoSansInscriptionalPahlavi-Regular.ttf5288324528282760682.4%
Cambo-Regular.ttf291041434211184109162682.4%
Cousine-BoldItalic.ttf27340813726111558811286027282.4%
Belleza-Regular.ttf278201474711720114442762.4%
Ruda-Black.ttf247481356710640103922482.3%
WendyOne-Regular.ttf2277211837916489522122.3%
Viga-Regular.ttf284361472311324110642602.3%
NotoSansCanadianAboriginal-Regular.ttf459762152216240158683722.3%
Voltaire-Regular.ttf288241377911048107962522.3%
OpenSans-Regular.ttf21736070895600405867213682.3%
GeostarFill-Regular.ttf388241302311096108442522.3%
NotoSansKannada-Bold.ttf777242984124484239325522.3%
Montserrat-Regular.ttf290161511312080118082722.3%
Enriqueta-Regular.ttf534802069615512151643482.2%
BubblerOne-Regular.ttf309921336410912106682442.2%
NotoSansTifinagh-Regular.ttf131287183591657841322.2%
Cousine-Bold.ttf29736814262412198811928027082.2%
SquadaOne-Regular.ttf190728577630861681402.2%
Geostar-Regular.ttf412881405212084118162682.2%
NotoSansMandaic-Regular.ttf148807250595258201322.2%
Cousine-Italic.ttf27057213486211299211050024922.2%
KottaOne-Regular.ttf366241605612540122642762.2%
Boogaloo-Regular.ttf339281665613472131762962.2%
Antic-Regular.ttf393201705614588142683202.2%
Imprima-Regular.ttf24912129271022099962242.2%
Asap-Regular.ttf307401489911528112762522.2%
Quantico-Italic.ttf2214411347824080601802.2%
Unlock-Regular.ttf270801356410644104122322.2%
Bitter-Italic.ttf394201878714320140083122.2%
NotoSansLimbu-Regular.ttf107047151607259401322.2%
PassionOne-Black.ttf2432012602962094122082.2%
LovedbytheKing.ttf282521690214456141443122.2%
RobotoMono-Italic.ttf12083262879550805389211882.2%
Magra-Bold.ttf445002276617268168963722.2%
RobotoMono-Regular.ttf11462457539503844930010842.2%
RobotoMono-Medium.ttf11469657530505084942410842.1%
KeaniaOne-Regular.ttf388121590012548122802682.1%
PathwayGothicOne-Regular.ttf261121304710308100882202.1%
RobotoMono-ThinItalic.ttf12145662463547605359211682.1%
RobotoMono-Light.ttf11897659130520805097611042.1%
RobotoMono-BoldItalic.ttf12280863550555005432411762.1%
ChangaOne-Regular.ttf2271612631982496162082.1%
Almendra-BoldItalic.ttf354961661713236129562802.1%
RobotoMono-Thin.ttf11813259477527565164011162.1%
CherrySwash-Bold.ttf300321330210232100162162.1%
RobotoMono-LightItalic.ttf12756865311561685498411842.1%
Cousine-Regular.ttf30904014556912518012254426362.1%
AlmendraDisplay-Regular.ttf393321556512164119082562.1%
Magra-Regular.ttf455362144115892155603322.1%
Prociono-Regular.ttf311361728314984146723122.1%
Wellfleet-Regular.ttf820162880122692222204722.1%
ChangaOne-Italic.ttf267281394310792105682242.1%
Trochut-Bold.ttf2541211751926090681922.1%
Arapey-Italic.ttf295681522912376121202562.1%
RobotoMono-Bold.ttf11475257489503124927610362.1%
Overlock-BoldItalic.ttf458362197818068176963722.1%
AlegreyaSans-BoldItalic.ttf963284128436356356087482.1%
JotiOne-Regular.ttf455841933114788144843042.1%
Offside-Regular.ttf308401459711292110602322.1%
PassionOne-Regular.ttf25104130361002498202042.0%
Felipa-Regular.ttf400002051716240159123282.0%
AlegreyaSansSC-BlackItalic.ttf868723664232116314686482.0%
Enriqueta-Bold.ttf452401904314492142002922.0%
Kreon-Bold.ttf382201705314496142042922.0%
Buenard-Regular.ttf601882152716504161723322.0%
BreeSerif-Regular.ttf466602017715920156003202.0%
AverageSans-Regular.ttf440121821813972136922802.0%
CroissantOne-Regular.ttf547442073515880155643162.0%
Karla-Bold.ttf178689709784476881562.0%
TitilliumWeb-Black.ttf493562188217308169643442.0%
FiraMono-Regular.ttf1402125149843876430048722.0%
Allerta-Regular.ttf1959611457968094881922.0%
NotoSansPhagsPa-Regular.ttf284841268010496102882082.0%
Fasthand-Regular.ttf1248283359229328287485802.0%
Rufina-Regular.ttf400401713214204139242802.0%
DeliusUnicase-Bold.ttf361201485011972117362362.0%
ElsieSwashCaps-Regular.ttf380441741613612133442682.0%
Trochut-Italic.ttf279081316310364101602042.0%
Quicksand-Light.ttf2100411519938091961842.0%
PollerOne.ttf315881511012260120202402.0%
Play-Bold.ttf1702324810040276394887882.0%
Chivo-Italic.ttf308641587412920126682522.0%
Sintony-Bold.ttf260161332710460102562042.0%
ShareTechMono-Regular.ttf432721997116624163003241.9%
RobotoDraft-Bold.ttf16249271962617926058812041.9%
TitilliumWeb-ExtraLightItalic.ttf677882878423488230324561.9%
ElsieSwashCaps-Black.ttf394121985915892155843081.9%
NotoSansCoptic-Regular.ttf228081330210960107482121.9%
CherrySwash-Regular.ttf305961337310376101762001.9%
TitilliumWeb-Regular.ttf637522715922212217844281.9%
MeriendaOne-Regular.ttf305481661513496132362601.9%
AlegreyaSansSC-ThinItalic.ttf853563538630748301565921.9%
TitilliumWeb-Italic.ttf724163056525196247124841.9%
Graduate-Regular.ttf2273210016770875601481.9%
TitilliumWeb-SemiBoldItalic.ttf718123053925260247764841.9%
Jura-Light.ttf2667445572048272473489241.9%
EmblemaOne-Regular.ttf618322486419656192803761.9%
Rambla-Bold.ttf346881539312588123482401.9%
FiraMono-Bold.ttf1345125133344284434408441.9%
Kreon-Regular.ttf374321685014316140442721.9%
Playball-Regular.ttf428202054016848165283201.9%
OpenSans-CondLightItalic.ttf21080467060569685588810801.9%
ShareTech-Regular.ttf295361317310556103562001.9%
RobotoMono-MediumItalic.ttf12364063480556285457610521.9%
NotoSansMongolian-Regular.ttf1139044060032580319646161.9%
Candal.ttf328161789615248149602881.9%
Montserrat-Bold.ttf295601504012112118842281.9%
AlegreyaSansSC-Bold.ttf1101404253536988362926961.9%
LemonOne-Regular.ttf314361680613620133642561.9%
Elsie-Regular.ttf410441851814476142042721.9%
Snippet.ttf392841539113012127682441.9%
LaoSansPro-Regular.ttf206521078551245028961.9%
NotoSansTagbanwa-Regular.ttf5172337829922936561.9%
NotoSansCarian-Regular.ttf5780371230042948561.9%
AlegreyaSC-Black.ttf711402676420816204283881.9%
Abel-Regular.ttf364001440912036118122241.9%
Ledger-Regular.ttf623202480620052196803721.9%
Elsie-Black.ttf424242110516832165203121.9%
MontserratSubrayada-Bold.ttf2436410373842082641561.9%
Neuton-ExtraLight.ttf495402280317720173923281.9%
AdventPro-Light.ttf467882051316208159083001.9%
SourceSansPro-SemiboldItalic.ttf1164244845637888371887001.8%
OpenSans-SemiboldItalic.ttf21282070097593605826410961.8%
Merienda-Bold.ttf350321710013672134202521.8%
Orbitron-Medium.ttf398161464811772115562161.8%
Cantarell-Oblique.ttf500682538320280199083721.8%
Average-Regular.ttf378361746414184139242601.8%
AlegreyaSansSC-BoldItalic.ttf864563676232084314965881.8%
JosefinSansStd-Light.ttf455641820514000137442561.8%
Rosario-Bold.ttf421962085117940176123281.8%
Play-Regular.ttf1710844897241132403807521.8%
AlegreyaSans-ExtraBoldItalic.ttf972484148636544358766681.8%
PortLligatSans-Regular.ttf343881715413576133282481.8%
Lekton-Bold.ttf1136844232733332327246081.8%
Neuton-Light.ttf497922253117564172443201.8%
FaunaOne-Regular.ttf302441507112076118562201.8%
Galdeano-Regular.ttf248681337710332101441881.8%
Fenix-Regular.ttf451441946016276159802961.8%
RobotoCondensed-Regular.ttf16152471683620406091211281.8%
Petrona-Regular.ttf807602476521348209603881.8%
Overlock-BlackItalic.ttf440882124817424171083161.8%
FasterOne-Regular.ttf443961840014560142962641.8%
NotoSansLepcha-Regular.ttf1156483150925836253684681.8%
Ruda-Bold.ttf248481373210824106281961.8%
Lekton-Regular.ttf1143204176532764321725921.8%
AlmendraSC-Regular.ttf360561630513068128322361.8%
Exo-ExtraLight.ttf934443757629708291725361.8%
Sintony-Regular.ttf257121357010652104601921.8%
Cantarell-Regular.ttf475042242917784174643201.8%
JockeyOne-Regular.ttf486081911715360150842761.8%
Exo-BlackItalic.ttf1011324011132072314965761.8%
AllertaStencil-Regular.ttf202601207210264100801841.8%
Roboto-BoldItalic.ttf16364476577656406446411761.8%
MontserratSubrayada-Regular.ttf2433210418852883761521.8%
Ruluko-Regular.ttf274361430510784105921921.8%
SourceSansPro-Italic.ttf1173284856938000373246761.8%
Marcellus-Regular.ttf460042196919440190963441.8%
Rubik-MediumItalic.ttf1930525470848876480128641.8%
NotoSansSamaritan-Regular.ttf9576596449804892881.8%
Cantarell-BoldOblique.ttf522002760422428220323961.8%
Slabo27px-Regular.ttf560882374020408200483601.8%
Andada-Regular.ttf1086202844021204208323721.8%
TulpenOne-Regular.ttf352441520913000127722281.8%
Inika-Bold.ttf387361990315984157042801.8%
AlegreyaSans-ThinItalic.ttf937483926033900333085921.7%
AdventPro-Regular.ttf473082014715812155362761.7%
Chango-Regular.ttf407321981615868155922761.7%
Battambang-Bold.ttf726802436320944205803641.7%
HindVadodara-Light.ttf1196524730236380357486321.7%
SourceCodePro-ExtraLight.ttf1215684727436160355326281.7%
Macondo-Regular.ttf487762033716584162962881.7%
Slabo13px-Regular.ttf557962250719376190403361.7%
AbrilFatface-Regular.ttf673642509520776204163601.7%
SourceSansPro-Semibold.ttf1496365755446188453888001.7%
SourceCodePro-Semibold.ttf1202524747236332357046281.7%
Orbitron-Bold.ttf385801487312068118602081.7%
SourceSansPro-BlackItalic.ttf1163604738636904362686361.7%
NoticiaText-Italic.ttf873923940933324327525721.7%
Megrim.ttf578722312918656183363201.7%
SourceCodePro-Light.ttf1212844788736720360926281.7%
Almendra-Regular.ttf687442544719896195563401.7%
StardosStencil-Regular.ttf468922347819252189243281.7%
NotoSansSyriacEstrangela-Regular.ttf499002165519108187843241.7%
Lemon-Regular.ttf346481715613688134562321.7%
TitilliumWeb-LightItalic.ttf717203022925024246004241.7%
NotoSansUI-BoldItalic.ttf29045214666012702012487621441.7%
Lato-BlackItalic.ttf1116163624933220326605601.7%
KiteOne-Regular.ttf376081827814532142882441.7%
Gabriela-Regular.ttf368561699313348131242241.7%
Roboto-Thin.ttf16313270141601005909210081.7%
RobotoDraft-Regular.ttf16289671955618126077610361.7%
NotoSansUI-Italic.ttf27928414059412140411937620281.7%
Arapey-Regular.ttf267641375811020108361841.7%
CrimsonText-Roman.ttf18960481627680406690411361.7%
OpenSans-ExtraBoldItalic.ttf2134206944357756567929641.7%
Roboto-Bold.ttf16246471890616286060010281.7%
ContrailOne-Regular.ttf311841533512000118002001.7%
Chivo-BlackItalic.ttf323241652513492132682241.7%
AlfaSlabOne-Regular.ttf365041759315196149442521.7%
HindVadodara-Medium.ttf1184765061839816391566601.7%
MateSC-Regular.ttf298561441911592114001921.7%
Merienda-Regular.ttf410761946016200159322681.7%
Muli-Light.ttf606602685623272228883841.7%
RammettoOne-Regular.ttf304201690014068138362321.6%
OxygenMono-Regular.ttf689403015425724253004241.6%
RobotoDraft-MediumItalic.ttf16567676921663766528410921.6%
OverlockSC-Regular.ttf366401759414348141122361.6%
RobotoDraft-Thin.ttf1631647009060028590449841.6%
Caudex-Regular.ttf46632413908011010410830018041.6%
SourceCodePro-Black.ttf1203564696135892353045881.6%
Jura-DemiBold.ttf32614080889715527038011721.6%
AlegreyaSC-Regular.ttf733882701121016206723441.6%
Righteous-Regular.ttf431041922716864165882761.6%
HindVadodara-SemiBold.ttf1175245081339708390606481.6%
HindVadodara-Regular.ttf1186485023539244386046401.6%
StalinistOne-Regular.ttf499602014616936166602761.6%
RussoOne-Regular.ttf391241657013500132802201.6%
Neuton-Bold.ttf500802303718216179202961.6%
FiraSans-Regular.ttf1585845664849812490048081.6%
NotoSansOldPersian-Regular.ttf120167312616860681001.6%
Quicksand-Regular.ttf23824128951012099561641.6%
Caudex-Italic.ttf55944015711112416012214820121.6%
SourceCodePro-Medium.ttf1202444760236296357085881.6%
Marvel-Bold.ttf369681441212600123962041.6%
HindVadodara-Bold.ttf1170524802137148365486001.6%
CreteRound-Regular.ttf593122256217376170962801.6%
AlegreyaSC-Bold.ttf724602815822096217403561.6%
NotoSansTelugu-Bold.ttf1114243927632548320245241.6%
Sail-Regular.ttf326561743714676144402361.6%
Unna-Regular.ttf264241437011940117481921.6%
JuliusSansOne-Regular.ttf422882026517192169162761.6%
Inika-Regular.ttf397001982915704154522521.6%
MrsSheppards-Regular.ttf423842174417988177002881.6%
TitilliumWeb-Light.ttf640322718922236218803561.6%
RobotoDraft-BoldItalic.ttf16367276531657246467210521.6%
NotoSans-BoldItalic.ttf29043614628512692412489620281.6%
SourceSansPro-ExtraLightItalic.ttf1171404728636628360445841.6%
Kantumruy-Bold.ttf450561963717068167962721.6%
Almendra-Bold.ttf367321650313088128802081.6%
Roboto2-BlackItalic.ttf16488077068687806768810921.6%
Salsa-Regular.ttf566802305118652183562961.6%
GermaniaOne-Regular.ttf332401492311596114121841.6%
ExpletusSans-SemiBoldItalic.ttf485082020317184169122721.6%
Catamaran-SemiBold.ttf682803458629348288844641.6%
Geo-Oblique.ttf500361774715200149602401.6%
Nunito-Light.ttf485762451521552212123401.6%
JejuHallasan-Regular.ttf6678596920292659180648784103961.6%
Metrophobic.ttf689282495122624222683561.6%
MaterialIcons-Regular.ttf1058364456336652360765761.6%
Cuprum-BoldItalic.ttf961883288328764283124521.6%
Roboto-Medium.ttf1625887247762172611969761.6%
AlegreyaSans-Medium.ttf1192724710441024403806441.6%
Cantarell-Bold.ttf492762475720132198163161.6%
Oxygen-Bold.ttf488122562221920215763441.6%
AnticSlab-Regular.ttf369721541613004128002041.6%
SourceSansPro-BoldItalic.ttf1161924832437792372005921.6%
Poly-Regular.ttf768002934322492221403521.6%
SourceSansPro-Bold.ttf1489325734945760450447161.6%
jsMath-cmex10.ttf341641648314572143442281.6%
TitanOne-Regular.ttf557122287718192179082841.6%
MacondoSwashCaps-Regular.ttf330161673113852136362161.6%
CutiveMono-Regular.ttf691803204727448270204281.6%
Oldenburg-Regular.ttf462482526121556212203361.6%
Roboto-MediumItalic.ttf16563677087662246519210321.6%
MontserratAlternates-Bold.ttf286401497711840116561841.6%
SourceSansPro-Regular.ttf1499725773546352456327201.6%
Ultra.ttf532082185219332190323001.6%
Kreon-Light.ttf374081620113668134562121.6%
LuckiestGuy.ttf737282989727188267684201.5%
HerrVonMuellerhoff-Regular.ttf466242385819696193923041.5%
AlegreyaSans-BlackItalic.ttf992364145036312357525601.5%
Asul-Regular.ttf335161759714052138362161.5%
WorkSans-Thin.ttf1350445353747132464087241.5%
Rambla-Regular.ttf343321517612244120561881.5%
Asul-Bold.ttf335481763114080138642161.5%
NotoSans-Italic.ttf27926814084112136811950818601.5%
Exo2-Regular.ttf1063804272337600370245761.5%
Yantramanav-Bold.ttf1576926601455896550408561.5%
AnonymousPro-Italic.ttf1445165302647552468247281.5%
Quicksand-Bold.ttf234081266010192100361561.5%
Overlock-Regular.ttf496562393119108188162921.5%
Montaga-Regular.ttf339561619213376131722041.5%
SearchIcons-Regular.ttf8040412734123360521.5%
NoticiaText-BoldItalic.ttf860443936033400328925081.5%
Roboto2-Thin.ttf1437446694459724588169081.5%
Overlock-Bold.ttf423682072116844165882561.5%
TitilliumWeb-ExtraLight.ttf631242655421600212723281.5%
DeliusUnicase-Regular.ttf329041569512920127241961.5%
Convergence-Regular.ttf302201474511868116881801.5%
Fascinate-Regular.ttf519002309920312200043081.5%
GoblinOne.ttf367361732614792145682241.5%
KdamThmor-Regular.ttf594362021517200169402601.5%
SignikaNegative-Light.ttf550322495419624193282961.5%
BigshotOne.ttf451921740414852146282241.5%
ChelaOne-Regular.ttf357241875215412151802321.5%
OpenSans-BoldItalic.ttf2132926893757988571168721.5%
GildaDisplay-Regular.ttf368041742614100138882121.5%
Economica-Regular.ttf267561445711460112881721.5%
NotoSansOldTurkic-Regular.ttf7372472937483692561.5%
ExpletusSans-BoldItalic.ttf490441962316380161362441.5%
Neuton-Regular.ttf566882726821760214363241.5%
SourceSansPro-LightItalic.ttf1169604856237880373165641.5%
NotoSansImperialAramaic-Regular.ttf5148348229562912441.5%
RobotoDraft-Medium.ttf1626207245762244613209241.5%
EricaOne-Regular.ttf262441372110796106361601.5%
Rosarivo-Regular.ttf413442036216788165402481.5%
Prata-Regular.ttf333921636914088138802081.5%
RobotoCondensed-Light.ttf1607487097161096601969001.5%
Mate-Italic.ttf277081488311952117761761.5%
Roboto-Regular.ttf1628767176861668607609081.5%
AlegreyaSansSC-LightItalic.ttf853203651931796313284681.5%
AdventPro-Thin.ttf468002094216596163522441.5%
Roboto2-BoldItalic.ttf1533247519166980659969841.5%
Chivo-Black.ttf551282221419340190562841.5%
Caudex-BoldItalic.ttf55515616526212995212804419081.5%
Almendra-Italic.ttf353241625812840126521881.5%
SourceCodePro-Bold.ttf1205044758636340358085321.5%
AlegreyaSansSC-ExtraBoldItalic.ttf873963702632268317964721.5%
Nokora-Bold.ttf423441847415904156722321.5%
Lekton-Italic.ttf342121503512624124401841.5%
JosefinSlab-BoldItalic.ttf428481939917068168202481.5%
SourceSansPro-Black.ttf1483685592744364437206441.5%
SourceCodePro-Regular.ttf1205484781936472359445281.4%
RobotoDraft-LightItalic.ttf1665327828067252662809721.4%
Buenard-Bold.ttf589922170516336161002361.4%
NotoSansOldItalic-Regular.ttf4592298924922456361.4%
StalinOne-Regular.ttf499122026916936166922441.4%
AlegreyaSansSC-Italic.ttf859243676831972315124601.4%
Roboto2-Medium.ttf1428006876461448605648841.4%
RobotoCondensed-LightItalic.ttf1674327773767288663209681.4%
AlegreyaSans-MediumItalic.ttf965684140436252357325201.4%
Tinos-Italic.ttf45615621241218414418150426401.4%
Roboto2-Bold.ttf1432646838761104602288761.4%
AlegreyaSans-Light.ttf1178484637940200396245761.4%
AlegreyaSansSC-Medium.ttf1078844184036312357925201.4%
Paprika-Regular.ttf423402097117048168042441.4%
Puritan-Regular.ttf547482519022092217763161.4%
RobotoCondensed-BoldItalic.ttf1672127911067992670209721.4%
AnticDidone-Regular.ttf396881615913468132761921.4%
Catamaran-Bold.ttf691403427429220288044161.4%
Tinos-BoldItalic.ttf45732021017518442418180426201.4%
VarelaRound-Regular.ttf840282195319428191522761.4%
Roboto2-Regular.ttf1452566879361788609128761.4%
NotoSansBalinese-Regular.ttf318241509812424122481761.4%
Roboto2-LightItalic.ttf1526647438666676657329441.4%
PurplePurse-Regular.ttf628683036927816274243921.4%
Strait-Regular.ttf330881493511948117801681.4%
DroidTV-Regular.ttf372721905016500162682321.4%
Kantumruy-Regular.ttf455721939216812165762361.4%
Overlock-Italic.ttf441602115717124168842401.4%
Freehand.ttf4620126054650056493567001.4%
NotoSansDeseret-Regular.ttf10028664354365360761.4%
AguafinaScript-Regular.ttf472282118017512172682441.4%
Exo2-ExtraBoldItalic.ttf1134684560041056404845721.4%
RuslanDisplay.ttf572881824014432142322001.4%
NotoSansKhmer-Bold.ttf470202138518192179402521.4%
NoticiaText-Regular.ttf1152885210245948453126361.4%
NotoSansKhmerUI-Bold.ttf502842235819088188242641.4%
Siemreap.ttf2853204623839044385045401.4%
Siemreap.ttf2853204623839044385045401.4%
Catamaran-ExtraLight.ttf674963373428636282403961.4%
AlegreyaSans-Italic.ttf955244113735872353764961.4%
SourceSerifPro-Bold.ttf1131884249834144336724721.4%
Galindo-Regular.ttf581042958626628262603681.4%
NotoSerif-Italic.ttf32318816470714269614072419721.4%
DawningofaNewDay.ttf653442743323448231243241.4%
Fruktur-Regular.ttf668523729333304328444601.4%
WorkSans-Regular.ttf1358285439648108474446641.4%
Overlock-Black.ttf432242057216812165802321.4%
PortLligatSlab-Regular.ttf381601802314496142962001.4%
AlegreyaSansSC-Light.ttf1047004134535696352044921.4%
OpenSans-CondLight.ttf2211087111759992591688241.4%
ModernAntiqua-Regular.ttf701082358118644183882561.4%
NotoSansKharoshthi-Regular.ttf216561288210800106521481.4%
StintUltraExpanded-Regular.ttf427882039517580173402401.4%
Catamaran-Light.ttf682403391428728283363921.4%
NotoSansRunic-Regular.ttf8120475238163764521.4%
Numans-Regular.ttf393681767714972147682041.4%
HindSiliguri-Light.ttf1229685406242004414325721.4%
Roboto-Italic.ttf1614847628765576646848921.4%
Catamaran-Regular.ttf691923455129436290364001.4%
NotoSansKannada-Regular.ttf789282927923852235283241.4%
Arimo-Italic.ttf44148420171917861217619624161.4%
Hanuman-Bold.ttf1219483681232244318084361.4%
NotoSansShavian-Regular.ttf5612359529602920401.4%
DroidSansMono.ttf1170726669059524587208041.4%
Aladin-Regular.ttf421601966316288160682201.4%
AlegreyaSansSC-MediumItalic.ttf863043685331996315644321.4%
SignikaNegative-Regular.ttf537962466620156198842721.3%
Kantumruy-Light.ttf465881913716604163802241.3%
Mate-Regular.ttf282161438911572114161561.3%
NotoSansMalayalam-Regular.ttf559802510421080207962841.3%
TitilliumWeb-SemiBold.ttf630442689621980216842961.3%
MrDafoe-Regular.ttf479762343419320190602601.3%
DroidSerifThai-Regular.ttf291561527113392132121801.3%
TitilliumWeb-Bold.ttf599082577020836205562801.3%
Anaheim-Regular.ttf434362313919952196842681.3%
Ewert-Regular.ttf707521849214896146962001.3%
NotoSansCham-Regular.ttf279681321311340111881521.3%
ExpletusSans-SemiBold.ttf673682668623584232683161.3%
Julee-Regular.ttf308761626113444132641801.3%
AveriaSansLibre-Light.ttf1077524330539460389325281.3%
Souliyo-Regular.ttf224161252610768106241441.3%
nobile.ttf651403585931432310124201.3%
Risque-Regular.ttf593922897326060257123481.3%
FjordOne-Regular.ttf541562492721276209922841.3%
ShadowsIntoLight.ttf543042605423456231443121.3%
Catamaran-Thin.ttf676363323227980276083721.3%
NotoSerif-BoldItalic.ttf33365617487515061614862419921.3%
NotoSansJavanese-Regular.ttf330961660713932137481841.3%
StardosStencil-Bold.ttf348202051817572173402321.3%
AdventPro-SemiBold.ttf512002325318792185442481.3%
RobotoDraft-Italic.ttf1615127640365616647528641.3%
GenBkBasBI.ttf2450967626270832699009321.3%
NotoSansYi-Regular.ttf1209366534952372516846881.3%
Smokum-Regular.ttf639482578822844225443001.3%
Rosario-Italic.ttf604522365121352210722801.3%
Vollkorn-BoldItalic.ttf552082436821672213882841.3%
MouseMemoirs-Regular.ttf559322814925368250363321.3%
OdorMeanChey.ttf3108244735740356398285281.3%
SonsieOne-Regular.ttf759922935023856235443121.3%
Trochut-Regular.ttf2530011614919690761201.3%
Baumans-Regular.ttf534082327320956206842721.3%
SueEllenFrancisco.ttf609602462321276210002761.3%
Scada-Italic.ttf865243514831144307404041.3%
NotoSerifLao-Regular.ttf412241791815728155242041.3%
Mako-Regular.ttf877843156928400280323681.3%
AlegreyaSansSC-Thin.ttf1024083899733664332284361.3%
Muli-Italic.ttf511842498721956216722841.3%
NotoSansOsmanya-Regular.ttf7212465740283976521.3%
Fondamento-Italic.ttf787603435930676302803961.3%
NotoSans-Regular.ttf41482018559716148015939620841.3%
BenchNine-Bold.ttf592722954526060257243361.3%
Kanit-ExtraBoldItalic.ttf1751486345152432517566761.3%
NotoSansMergeTest-Regular.ttf153132457833749000448369663081.3%
HoltwoodOneSC.ttf367441771015228150321961.3%
NotoSerifKhmer-Regular.ttf1266563573231100307004001.3%
Taprom.ttf3318764976542056415165401.3%
Khmer.ttf776842487621524212482761.3%
NotoSansInscriptionalParthian-Regular.ttf7188439437443696481.3%
Iceberg-Regular.ttf428081746815292150961961.3%
NotoSansHebrew-Regular.ttf263721265711268111241441.3%
PressStart2P-Regular.ttf6974812592970895841241.3%
FjallaOne-Regular.ttf365722129918804185642401.3%
Exo2-ThinItalic.ttf1112844247637612371324801.3%
Arimo-Regular.ttf43687619466817290817070822001.3%
TestFont-Light.ttf43687619466817290817070822001.3%
TestFont.ttf43687619466817290817070822001.3%
Dorsa-Regular.ttf208449997786077601001.3%
RobotoSlab-Bold.ttf1706167681467424665688561.3%
Roboto-BlackItalic.ttf1654447809367116662648521.3%
Romanesco-Regular.ttf525282631923016227242921.3%
Tinos-Bold.ttf45228420358717992817764822801.3%
Alef-Regular.ttf913604150335712352604521.3%
NotoSansMeeteiMayek-Regular.ttf142409205790478041001.3%
DiplomataSC-Regular.ttf424442033716444162362081.3%
Qwigley-Regular.ttf404522119417712174882241.3%
MarckScript-Regular.ttf836643288727208268643441.3%
ExpletusSans-Italic.ttf388721765514880146921881.3%
NotoKufiArabic-Bold.ttf800803508930748303603881.3%
JollyLodger-Regular.ttf398002217819692194442481.3%
DroidSansTamil-Bold.ttf364481761014612144281841.3%
AlegreyaSans-LightItalic.ttf945764086735616351684481.3%
NotoSerifLao-Bold.ttf404721650814312141321801.3%
Coda-Heavy.ttf904763388129944295683761.3%
NotoSansAvestan-Regular.ttf11184686457405668721.3%
MaidenOrange.ttf609282625223648233522961.3%
RobotoDraft-BlackItalic.ttf1654847813467124662848401.3%
Kanit-ThinItalic.ttf1578845887748268476646041.3%
NotoSansKayahLi-Regular.ttf7612454438443796481.2%
Roboto2-Italic.ttf1634247585867656668128441.2%
Dynalight-Regular.ttf531482548322452221722801.2%
Rubik-LightItalic.ttf2080686302056136554367001.2%
GFSNeohellenicBold.ttf3447087001959028582927361.2%
Diplomata-Regular.ttf433202111717012168002121.2%
NotoSansKufiArabic-Bold.ttf801203510730852304683841.2%
NotoSans-Bold.ttf41513218415816020815821619921.2%
Cagliostro-Regular.ttf378201963716424162202041.2%
Share-BoldItalic.ttf758362959625816254963201.2%
NotoSansSyriacWestern-Regular.ttf563202373521012207522601.2%
Oxygen-Regular.ttf480922530621700214322681.2%
Iceland-Regular.ttf476321713414904147201841.2%
HindSiliguri-Medium.ttf1223925988747672470845881.2%
NovaMono.ttf302380117661999609872812321.2%
BubblegumSans-Regular.ttf388201942815932157361961.2%
OpenSans-LightItalic.ttf2131286852157244565407041.2%
Schoolbell.ttf491522567422792225122801.2%
OleoScriptSwashCaps-Regular.ttf400882039416616164122041.2%
MonsieurLaDoulaise-Regular.ttf542882480420528202762521.2%
NotoSansLydian-Regular.ttf3864240519561932241.2%
NotoSerifGeorgian-Regular.ttf342241980217292170802121.2%
Nunito-Regular.ttf497922496822204219322721.2%
NotoSansBuhid-Regular.ttf4508240019601936241.2%
BenchNine-Regular.ttf576562906825808254923161.2%
NotoSansUI-Bold.ttf31149614932013059212899615961.2%
Asset.ttf520282416921048207922561.2%
NotoSansPhoenician-Regular.ttf5000345929602924361.2%
NotoSansKhmer-Regular.ttf482042177218772185442281.2%
Moulpali.ttf3086684856341232407325001.2%
Monoton-Regular.ttf516042404420136198922441.2%
VesperLibre-Heavy.ttf1657247400264372635927801.2%
Content-Bold.ttf3062924795540416399284881.2%
Rokkitt-Bold.ttf626962737124204239122921.2%
Yantramanav-Thin.ttf1603886478954480538246561.2%
NanumBrushScript-Regular.ttf374537688399072276871408086881.2%
WorkSans-Medium.ttf1430365824951592509726201.2%
NotoSansTamil-Regular.ttf571122982425736254283081.2%
NotoSansUI-Regular.ttf30680414855512977212822015521.2%
AlegreyaSansSC-Regular.ttf1075524176336204357724321.2%
CarroisGothic-Regular.ttf416802001617432172242081.2%
Delius-Regular.ttf774883044426832265123201.2%
Chonburi-Regular.ttf1704925988749000484165841.2%
NotoSansMergeTest-Bold.ttf150524857139348132847559257361.2%
Trocchi-Regular.ttf1438804200137600371524481.2%
Roboto-LightItalic.ttf1664927830367220664208001.2%
TitilliumWeb-BoldItalic.ttf697962947324200239122881.2%
AlegreyaSansSC-Black.ttf1103164186835964355364281.2%
GrandHotel-Regular.ttf650122713024552242602921.2%
Exo2-Light.ttf1041484171536668362324361.2%
WorkSans-ExtraLight.ttf1355005539548844482645801.2%
DroidKufi-Regular.ttf812243486430680303163641.2%
GenBkBasR.ttf2676047583570512696768361.2%
Italiana-Regular.ttf318281335610828107001281.2%
Kanit-BoldItalic.ttf1703726173350780501806001.2%
NotoSansVai-Regular.ttf638082471221012207642481.2%
NotoSansBrahmi-Regular.ttf233801260510512103881241.2%
DroidTV-Bold.ttf370161890116288160961921.2%
Tinos-Regular.ttf47599620962918500018282021801.2%
NotoSansTamilUI-Regular.ttf572482984925816255123041.2%
Caudex-Bold.ttf47170814502911492411357213521.2%
Chenla.ttf2935884645539456389924641.2%
NoticiaText-Bold.ttf1132445159845580450445361.2%
Basic-Regular.ttf585203225427940276123281.2%
VesperLibre-Regular.ttf1661247330664088633367521.2%
Exo2-Bold.ttf1091364400338548380964521.2%
NanumMyeongjo-Regular.ttf380000883555573383672525685801.2%
AlegreyaSans-Thin.ttf1126244368137680372404401.2%
SourceSansPro-Light.ttf1502445775446332457925401.2%
Yantramanav-Light.ttf1604606596355600549526481.2%
DancingScript-Regular.ttf1165804778644320438045161.2%
NotoSerif-Regular.ttf35066818543216072015885618641.2%
ABeeZee-Italic.ttf477642233019660194322281.2%
SeymourOne-Regular.ttf744403844133156327723841.2%
NotoSansHebrew-Bold.ttf266241288011400112681321.2%
Catamaran-Black.ttf684123363028336280083281.2%
NotoSansThaiUI-Bold.ttf278401520313480133241561.2%
GenBasR.ttf2642167242367056662807761.2%
Merriweather-BoldItalic.ttf593163277629144288083361.2%
MavenPro-Regular.ttf992522734024296240162801.2%
YanoneKaffeesatz-Bold.ttf730003064727780274603201.2%
jsMath-cmti10.ttf476162467421888216362521.2%
Varela-Regular.ttf1882406488652568519646041.1%
AnonymousPro-Regular.ttf1580805737951884512885961.1%
Gafata-Regular.ttf374321580212892127441481.1%
DroidSansTamil-Regular.ttf363081770414640144721681.1%
Kanit-SemiBoldItalic.ttf1689526120050552499725801.1%
AlegreyaSans-ExtraBold.ttf1209524784841516410404761.1%
DroidKufi-Bold.ttf812203546331076307203561.1%
Scada-BoldItalic.ttf880563587931776314123641.1%
Rubik-Bold.ttf2128406337657732570726601.1%
PTM55FT.ttf1859128542972580717528281.1%
LilitaOne-Regular.ttf280921453411924117881361.1%
Roboto2-MediumItalic.ttf1533527524067024662607641.1%
Yantramanav-Regular.ttf1534686439854044534286161.1%
AlegreyaSans-Bold.ttf1212044762041504410324721.1%
Damion-Regular.ttf519962800525332250442881.1%
GFSNeohellenicItalic.ttf3690607594264064633367281.1%
NotoSansLaoUI-Bold.ttf392121635014108139481601.1%
OleoScript-Regular.ttf349801772814148139881601.1%
GFSDidot-Regular.ttf1911686858754624540086161.1%
FontdinerSwanky.ttf455242040718104179002041.1%
OpenSans-CondBold.ttf2643727840873848730168321.1%
JustMeAgainDownHere.ttf720603247126628263283001.1%
Clara-Regular.ttf1682566982559376587086681.1%
Rufina-Bold.ttf400561715614224140641601.1%
ExpletusSans-MediumItalic.ttf734922632723472232082641.1%
Vollkorn-Regular.ttf620042786324948246682801.1%
NotoSansSyriacEastern-Regular.ttf538282241619680194602201.1%
Exo2-Medium.ttf1071964291237724373044201.1%
Yantramanav-Black.ttf1588366612655724551046201.1%
Lato-Light.ttf1225243504932376320163601.1%
Slackey.ttf384002221419824196042201.1%
GravitasOne.ttf414481857715516153441721.1%
SourceSansPro-ExtraLight.ttf1505285653545144446445001.1%
Cuprum-Regular.ttf1006083365430016296843321.1%
Lohit-Devanagari.ttf723283580931116307723441.1%
NotoNaskhArabicUI-Bold.ttf239868102791942089316810401.1%
Lato-LightItalic.ttf916002812025396251162801.1%
DroidSerif-Italic.ttf404162442821468212322361.1%
Kanit-LightItalic.ttf1687006114750296497445521.1%
Exo2-ExtraLight.ttf1068564243737376369684081.1%
BenchNine-Light.ttf552482854625360250842761.1%
NotoSansArmenian-Bold.ttf227081309511404112801241.1%
Kanit-ExtraLight.ttf1521645574846404459005041.1%
NotoSansTaiTham-Regular.ttf462962425521368211362321.1%
AveriaSansLibre-LightItalic.ttf1342004864345024445364881.1%
AdventPro-Bold.ttf564482400019576193642121.1%
NotoSansSylotiNagri-Regular.ttf14556943581328044881.1%
NotoSerifKhmer-Bold.ttf1200203531630700303683321.1%
IndicTestMysuru-Bold.ttf1352005896451076505245521.1%
Metal.ttf4096605380344788443044841.1%
Arvo-BoldItalic.ttf424242599723048228002481.1%
Devonshire-Regular.ttf672402784923420231682521.1%
SourceSerifPro-Regular.ttf1136404370235320349403801.1%
StintUltraCondensed-Regular.ttf402721924516732165521801.1%
Lohit-Tamil.ttf661842462520824206002241.1%
Astloch-Regular.ttf510122203418640184402001.1%
Kanit-Thin.ttf1483925401744756442764801.1%
Geo-Regular.ttf386801439912316121841321.1%
DonegalOne-Regular.ttf569443258028812285043081.1%
MysteryQuest-Regular.ttf421242561223220229722481.1%
MrDeHaviland-Regular.ttf446722278418736185362001.1%
Kanit-Medium.ttf1625685748947644471365081.1%
Kanit-Regular.ttf1597125766848108475965121.1%
Raleway-ExtraLight.ttf1224004429738724383124121.1%
RumRaisin-Regular.ttf618123067727860275642961.1%
NotoSansLao-Bold.ttf393761651014308141561521.1%
HindSiliguri-Regular.ttf1226565968347496469925041.1%
Suwannaphum.ttf813442651122624223842401.1%
SignikaNegative-Semibold.ttf534042461519992197802121.1%
DidactGothic.ttf2462447293563176625086681.1%
Exo2-SemiBold.ttf1088684382838356379524041.1%
UncialAntiqua-Regular.ttf634042889726204259282761.1%
Rancho-Regular.ttf448402431221664214362281.1%
IrishGrowler.ttf527362713224720244602601.1%
OpenSans-ExtraBold.ttf2225847307160956603166401.0%
Preahvihear.ttf2539684158634300339403601.0%
Cambay-BoldItalic.ttf2415327877666372656766961.0%
Sura-Regular.ttf1404446172954336537685681.0%
Arbutus-Regular.ttf818163693634844344803641.0%
Lato-HairlineItalic.ttf914602773024940246802601.0%
NotoSansCham-Bold.ttf280121334311512113921201.0%
Chicle-Regular.ttf410121985716528163561721.0%
Angkor.ttf2660964136634224338683561.0%
NotoSerifThai-Regular.ttf288441541213460133201401.0%
Catamaran-Medium.ttf683403405928844285443001.0%
Cutive-Regular.ttf981843838633076327323441.0%
JosefinSans-Light.ttf933683507930772304523201.0%
Lora-Italic.ttf2262008133177348765448041.0%
Parisienne-Regular.ttf612483125028092278002921.0%
AnonymousPro-Bold.ttf1537085539650100495805201.0%
NotoSerif-Bold.ttf37088419947617424417243618081.0%
NotoSansOlChiki-Regular.ttf7144500842444200441.0%
MrsSaintDelafield-Regular.ttf493962502920860206442161.0%
Raleway-Thin.ttf1239404393338648382484001.0%
Catamaran-ExtraBold.ttf676363448729436291323041.0%
FascinateInline-Regular.ttf596042665423632233882441.0%
Bokor.ttf3492405047343036425924441.0%
AveriaLibre-Light.ttf1081924354439956395444121.0%
ScheherazadeRegOT.ttf2617929282185736848528841.0%
Exo2-Thin.ttf1017763924734152338003521.0%
Kanit-MediumItalic.ttf1673006070149924494125121.0%
ShortStack-Regular.ttf681523205128884285882961.0%
RobotoSlab-Light.ttf1790967764967960672646961.0%
OriginalSurfer-Regular.ttf577922932626560262882721.0%
TenorSans-Regular.ttf1318964170136752363763761.0%
Kanit-Italic.ttf1696726182350856503365201.0%
Marvel-Italic.ttf406681504213312131761361.0%
SortsMillGoudy-Italic.ttf1056843864635248348883601.0%
Kanit-ExtraBold.ttf1653405899749348488445041.0%
Kanit-Black.ttf1629765737847812473244881.0%
Nokora-Regular.ttf508042280120004198002041.0%
Questrial-Regular.ttf645521849116104159401641.0%
NotoSerifArmenian-Regular.ttf237921394012184120601241.0%
AlegreyaSans-Black.ttf1262404756941280408604201.0%
IndicTestColombo-Regular.ttf1556724142832672323403321.0%
IndicTestJalandhar-Bold.ttf509602678623692234522401.0%
LindenHill-Italic.ttf945404512239528391284001.0%
Lato-Hairline.ttf1153163382630836305243121.0%
AveriaSerifLibre-Light.ttf1099724471241164407484161.0%
KellySlab-Regular.ttf778162719722584223562281.0%
Tauri-Regular.ttf351401989817436172601761.0%
Lato-BoldItalic.ttf1203123677433752334123401.0%
CevicheOne-Regular.ttf369201993917076169041721.0%
JosefinSlab-ThinItalic.ttf1974044023436976366043721.0%
AveriaLibre-Regular.ttf1084684358039816394164001.0%
Raleway-Bold.ttf1282484568240284398804041.0%
NotoSansSinhala-Regular.ttf1587804272733504331683361.0%
LateefRegOT.ttf2462248458676988762167721.0%
Cuprum-Italic.ttf964003296828740284522881.0%
Belgrano-Regular.ttf290761540812776126481281.0%
Balthazar-Regular.ttf282241472711584114681161.0%
BowlbyOneSC-Regular.ttf552003548331312310003121.0%
Molengo-Regular.ttf654642908725296250442521.0%
SortsMillGoudy-Regular.ttf1213724209838176377963801.0%
Sarpanch-Black.ttf2998249778081460806528081.0%
DenkOne-Regular.ttf458922324320584203802041.0%
NotoSansMalayalamUI-Regular.ttf922244551340096397003961.0%
RacingSansOne-Regular.ttf1457964823642220418044161.0%
Raleway-Heavy.ttf1295204671041424410164081.0%
Rokkitt-Regular.ttf569922443221640214282121.0%
AlegreyaSans-Regular.ttf1190164722740892404924001.0%
Raleway-Regular.ttf1301284617740564401683961.0%
Actor-Regular.ttf649442677924184239482361.0%
Exo2-ExtraBold.ttf1100684369638544381683761.0%
ArchivoBlack-Regular.ttf1298484208836912365523601.0%
Arvo-Regular.ttf403402534822596223762201.0%
NotoSansKannadaUI-Bold.ttf1344725881450960504644961.0%
NATS-Regular.ttf2190205113342348419364121.0%
SourceSerifPro-Semibold.ttf1143524421735808354603481.0%
Lato-Bold.ttf1217883495932140318283121.0%
Rochester-Regular.ttf378482298721028208242041.0%
Puritan-Italic.ttf595962750024340241042361.0%
EkMukta-SemiBold.ttf99293620899119071218886418481.0%
AveriaSerifLibre-BoldItalic.ttf1382084907345420449804401.0%
Kanit-ExtraLightItalic.ttf1617406004649236487604761.0%
Oregano-Italic.ttf870004252439740393563841.0%
Telex-Regular.ttf688042372820284200881961.0%
Bilbo-Regular.ttf429122210518248180721761.0%
Redressed.ttf792203341530712304162961.0%
NotoSerifArmenian-Bold.ttf245841449012872127481241.0%
FrancoisOne.ttf1131123967138644382723721.0%
Handlee-Regular.ttf391322006517456172881681.0%
NotoSansKufiArabic-Regular.ttf800763461730356300642921.0%
NanumGothic-Bold.ttf230038880458270333269656867641.0%
Ovo-Regular.ttf508642235918728185481801.0%
Share-Italic.ttf766082945325840255922481.0%
Tangerine_Bold.ttf658243083127096268362601.0%
QuattrocentoSans-BoldItalic.ttf1007483409530496302042921.0%
Bentham-Regular.ttf554962760424672244362361.0%
Scada-Bold.ttf857123304929748294642841.0%
PT_Sans-Web-BoldItalic.ttf37520411635110480410380410001.0%
Smythe-Regular.ttf906524054937788374283601.0%
Dosis-Medium.ttf1364445068145396449644321.0%
Dosis-Medium.ttf1364445068145396449644321.0%
TerminalDosis-Medium.ttf1364445068145396449644321.0%
JosefinSans-Bold.ttf948963578431956316523041.0%
CoveredByYourGrace.ttf570402589422740225242160.9%
JosefinSans-Regular.ttf948163566131176308802960.9%
CodaCaption-Heavy.ttf740443422431188308922960.9%
Rubik-Italic.ttf2117686206455824552965280.9%
Chivo-Regular.ttf508442480321604214002040.9%
Kanit-Bold.ttf1623125748147884474324520.9%
Federant-Regular.ttf781283131727972277082640.9%
OldStandard-Italic.ttf658523128028408281402680.9%
Ubuntu-BoldItalic.ttf35698013930212649612530411920.9%
Dosis-SemiBold.ttf1355205069745472450444280.9%
Dosis-SemiBold.ttf1355205069745472450444280.9%
TerminalDosis-SemiBold.ttf1355205069745472450444280.9%
AnnieUseYourTelescope.ttf511242469722112219042080.9%
Kanit-SemiBold.ttf1616605807348208477564520.9%
DancingScript-Bold.ttf1155684924445668452404280.9%
RibeyeMarrow-Regular.ttf848964000135852355163360.9%
IrishGrover.ttf526882712624764245322320.9%
BerkshireSwash-Regular.ttf583642599723484232642200.9%
Federo-Regular.ttf1450564188938880385163640.9%
Englebert-Regular.ttf530482684023944237202240.9%
NotoKufiArabic-Regular.ttf800483469330368300842840.9%
GenBasI.ttf2586807599070160695046560.9%
Exo2-ExtraLightItalic.ttf1102084403739372390043680.9%
Rosario-Regular.ttf615082450221840216362040.9%
LibreBaskerville-Regular.ttf1603645111644624442084160.9%
Volkhov-Regular.ttf1122763603533056327483080.9%
Kanit-Light.ttf1571485746747768473244440.9%
MarcellusSC-Regular.ttf478882212819368191881800.9%
Signika-Bold.ttf1611165625851224507484760.9%
IndicTestMadurai-Regular.ttf530562864824564243362280.9%
ArchivoNarrow-Bold.ttf1267044224636236359003360.9%
NewRocker-Regular.ttf1732245205544940445244160.9%
Syncopate-Bold.ttf654322600822944227322120.9%
NotoSansThaana-Bold.ttf229361443812988128681200.9%
JosefinSlab-Thin.ttf2000124129138532381763560.9%
Electrolize-Regular.ttf557122141018200180321680.9%
Rationale-Regular.ttf571562246719936197521840.9%
NotoSansBengali-Bold.ttf1043764632039020386603600.9%
AlegreyaSansSC-ExtraBold.ttf1118284265236864365243400.9%
Hind-Light.ttf28134410746790488896568320.9%
Amaranth-Bold.ttf737563015027408271562520.9%
DroidNaskh-Bold.ttf946204565540464400923720.9%
Underdog-Regular.ttf1014803995235704353763280.9%
Domine-Regular.ttf1378804529339652392883640.9%
nobile_italic.ttf920324773042748423563920.9%
Muli-LightItalic.ttf506882429220948207561920.9%
BigelowRules-Regular.ttf594442898926204259642400.9%
Lora-Bold.ttf2300927934074288736086800.9%
Muli-Regular.ttf562602633222768225602080.9%
VastShadow-Regular.ttf623642934325460252282320.9%
LeckerliOne-Regular.ttf432122056717564174041600.9%
Raleway-ExtraBold.ttf1251364509539688393283600.9%
Aclonica.ttf687842846525580253482320.9%
IMFeENit28P.ttf20236810082097512966288840.9%
NotoSansBatak-Regular.ttf12968703361846128560.9%
Engagement-Regular.ttf764083546932264319722920.9%
Rosarivo-Italic.ttf392441967315916157721440.9%
ExpletusSans-Medium.ttf684962677523488232762120.9%
JosefinSans-LightItalic.ttf933083569631524312402840.9%
JosefinSans-ThinItalic.ttf951163458330640303642760.9%
Arvo-Bold.ttf374002357720872206841880.9%
NotoSansMalayalam-Bold.ttf559322495920916207281880.9%
LindenHill-Regular.ttf1248444778741464410923720.9%
NanumGothic-Regular.ttf236969676978367366066762060400.9%
Carme-Regular.ttf780282245719668194921760.9%
MyanmarSansPro-Regular.ttf345681435911640115361040.9%
NotoSansLinearB-Regular.ttf574523367928208279562520.9%
Ribeye-Regular.ttf784923768934932346203120.9%
Scada-Regular.ttf864723293129608293442640.9%
Satisfy-Regular.ttf479282629423792235802120.9%
Kanit-BlackItalic.ttf1932246435554848543604880.9%
Vollkorn-Bold.ttf686083037827436271922440.9%
ComingSoon.ttf591363226328868286122560.9%
MartelSans-Light.ttf1525326715457956574445120.9%
Exo2-Black.ttf1097764254937172368443280.9%
AnonymousPro-BoldItalic.ttf1420165184246264458564080.9%
EkMukta-Bold.ttf101119620992519335619165217040.9%
Podkova-Bold.ttf505642848524580243642160.9%
LibreBaskerville-Bold.ttf1611045254345528451284000.9%
Radley-Regular.ttf903284022535996356803160.9%
Lato-Black.ttf1145883485431980317002800.9%
FanwoodText-Italic.ttf963644658440684403283560.9%
Rubik-Black.ttf2116966483659084585685160.9%
Hind-Regular.ttf30290811491697156963088480.9%
Inconsolata-Regular.ttf804564275139032386923400.9%
JosefinSans-Thin.ttf960843367729396291402560.9%
NanumGothicCoding-Regular.ttf231592476870267148066563658440.9%
Bayon.ttf2482084291136772364523200.9%
JosefinSans-SemiBold.ttf972643602231732314562760.9%
NotoNaskhArabic-Bold.ttf2269329799189804890247800.9%
PT_Serif-Web-BoldItalic.ttf33758010390092152913528000.9%
DeliusSwashCaps-Regular.ttf630522607223080228802000.9%
Dangrek.ttf2696204548838792384563360.9%
NotoSansArmenian-Regular.ttf229721316211548114481000.9%
nobile_bold_italic.ttf861724634441584412243600.9%
Marvel-Regular.ttf382201417612480123721080.9%
NanumMyeongjo-Bold.ttf414421698088287742886985675720.9%
Exo2-SemiBoldItalic.ttf1112044478240424400763480.9%
Dhyana-Regular.ttf723483728032552322722800.9%
Rubik-BlackItalic.ttf1920045556949908494804280.9%
NanumGothicCoding-Bold.ttf224624080351769975669377259840.9%
Inconsolata-Bold.ttf646282922225288250722160.9%
NotoSansBengali-Regular.ttf1073124618838980386483320.9%
MavenPro-Black.ttf991162719524012238082040.8%
Kavoon-Regular.ttf580123242529240289922480.8%
Alegreya-Regular.ttf2021687445068936683525840.8%
NotoSerifGeorgian-Bold.ttf318521840816072159361360.8%
RopaSans-Italic.ttf423962115818440182841560.8%
Oranienbaum-Regular.ttf1412204580242128417723560.8%
Amita-Regular.ttf2149688561277708770526560.8%
Quintessential-Regular.ttf738923686134144338562880.8%
OldStandard-Regular.ttf647842694924268240642040.8%
YanoneKaffeesatz-Light.ttf772963253629572293242480.8%
IndicTestVadodara-Regular.ttf1805407139563000624725280.8%
MissFajardose-Regular.ttf588722828223884236842000.8%
Martel-ExtraBold.ttf1709008200071316707205960.8%
Ubuntu-Bold.ttf3336121292701163721154009720.8%
NotoSansTelugu-Regular.ttf1120683829031612313482640.8%
Rubik-Light.ttf2168126709460864603565080.8%
Coustard-Regular.ttf795563462230672304162560.8%
VesperLibre-Medium.ttf1683687795268592680205720.8%
PT_Serif-Web-Bold.ttf33999610464093064922887760.8%
MartelSans-ExtraLight.ttf1529926516256128556604680.8%
FanwoodText-Regular.ttf1192165561348456480524040.8%
IndicTestMysuru-Regular.ttf1358885901350892504684240.8%
Kurale-Regular.ttf2188648997077128764886400.8%
NotoSansDevanagariUI-Bold.ttf1701566278556452559844680.8%
Battambang-Regular.ttf896443207728000277682320.8%
NotoSansThaana-Regular.ttf219281394512560124561040.8%
Domine-Bold.ttf1462004752142036416883480.8%
Corben-Bold.ttf1395885968055092546364560.8%
JosefinSans-SemiBoldItalic.ttf964003694432940326682720.8%
nobile_bold.ttf615963532830584303322520.8%
Shanti-Regular.ttf913523224528668284322360.8%
Sacramento-Regular.ttf796963526132152318882640.8%
NotoSansTeluguUI-Regular.ttf1822886973361892613845080.8%
Marmelad-Regular.ttf1173965041845824454483760.8%
Miniver-Regular.ttf458242709324884246802040.8%
YanoneKaffeesatz-ExtraLight.ttf770243223229296290562400.8%
DroidNaskh-Regular.ttf913404371438592382763160.8%
Alice-Regular.ttf1505124640842996426443520.8%
NotoSansKhmerUI-Regular.ttf520002304720064199001640.8%
Forum-Regular.ttf3033168547276956763286280.8%
IndicTestColombo-Bold.ttf1484484172133356330842720.8%
Vollkorn-Italic.ttf575522505022104219241800.8%
Phetsarath-Regular.ttf405441825515744156161280.8%
Aubrey-Regular.ttf1124163543132992327242680.8%
JosefinSans-Italic.ttf940843627932060318002600.8%
Tillana-Bold.ttf3062041241131037601029208400.8%
ArchivoNarrow-BoldItalic.ttf1302684559739248389323160.8%
Scheherazade-Bold.ttf54777214140213136013030410560.8%
Karma-Bold.ttf3469561274551093721084968760.8%
EkMukta-Regular.ttf102288420557618531618383214840.8%
NotoSansOriya-Bold.ttf1605567573667996674525440.8%
QuattrocentoSans-Italic.ttf1087003701833540332722680.8%
NotoSansGurmukhi-Regular.ttf514162609823028228441840.8%
Aldrich-Regular.ttf570202268519544193881560.8%
NotoSansCherokee-Regular.ttf341881451913048129441040.8%
Sarpanch-Regular.ttf2905809729581852812006520.8%
Chewy.ttf411922322521092209241680.8%
Lato-Regular.ttf1201963539832744324842600.8%
OpenSans-Italic.ttf2128966921157940574804600.8%
Spirax-Regular.ttf490641986517152170161360.8%
NotoSansGujaratiUI-Bold.ttf1867807259264092635845080.8%
Orienta-Regular.ttf639242530022712225321800.8%
TerminalDosis-Light.ttf1095004136537420371242960.8%
HappyMonkey-Regular.ttf763443181228824285962280.8%
Podkova-Regular.ttf601723247729336291042320.8%
RobotoSlab-Thin.ttf1811567578566280657565240.8%
Khula-SemiBold.ttf1770526587856676562284480.8%
Calligraffitti-Regular.ttf598523467431444311962480.8%
NotoSansBengaliUI-Bold.ttf1929289597785204845326720.8%
Judson-Bold.ttf1955046814958852583884640.8%
NotoSansGeorgian-Bold.ttf306841765515248151281200.8%
Raleway-Light.ttf1322004576640180398643160.8%
NovaSlim.ttf939563211226968267562120.8%
Michroma.ttf649402893626488262802080.8%
PT_Sans-Caption-Web-Bold.ttf3987801191021074961066528440.8%
CarroisGothicSC-Regular.ttf403081878516324161961280.8%
Amethysta-Regular.ttf670443037027052268402120.8%
ABeeZee-Regular.ttf461242151718888187401480.8%
Koulen.ttf2460284550038800384963040.8%
Wallpoet-Regular.ttf399041681514304141921120.8%
MartelSans-SemiBold.ttf1520726745558248577924560.8%
Poppins-Regular.ttf25692010446588936882406960.8%
OpenSans-Semibold.ttf2213287296961484610044800.8%
Rubik-BoldItalic.ttf1911325413447856474843720.8%
GenBkBasI.ttf2613287822472388718285600.8%
Fondamento-Regular.ttf871603746433668334082600.8%
Lora-Regular.ttf2277008090275116745365800.8%
NotoSansMyanmarUI-Bold.ttf1783128655578840782326080.8%
Hanuman-Regular.ttf1283763842433732334722600.8%
AveriaGruesaLibre-Regular.ttf1115444432440532402203120.8%
NotoSansKaithi-Regular.ttf634202467620276201201560.8%
DroidSerif.ttf436482573623420232401800.8%
Revalia-Regular.ttf614362719723952237681840.8%
Padauk-Bold.ttf4432689830691676909727040.8%
Pacifico.ttf436322675824484242961880.8%
ExpletusSans-Bold.ttf626162456121360211961640.8%
Teko-Light.ttf3018249493479720791086120.8%
JejuGothic-Regular.ttf247924449963035402435131227120.8%
Simonetta-BlackItalic.ttf1230365088947604472403640.8%
Khula-Light.ttf1891806510755984555564280.8%
Sniglet-ExtraBold.ttf742283115727764275522120.8%
Syncopate-Regular.ttf1749324860445060447163440.8%
Rosario-BoldItalic.ttf615482384821484213201640.8%
Ubuntu-Medium.ttf3413241322711196441187329120.8%
Butcherman-Regular.ttf663443995136232359562760.8%
CherryCreamSoda.ttf501562867225768255721960.8%
Sarpanch-ExtraBold.ttf29943210201784868842246440.8%
Exo2-LightItalic.ttf1085444325738496382042920.8%
Alef-Bold.ttf926604027534304340442600.8%
Biryani-ExtraBold.ttf1783606910259140586924480.8%
ClickerScript-Regular.ttf640123152029044288242200.8%
NotoSansMyanmarUI-Regular.ttf1616767854971336707965400.8%
ArchivoNarrow-Italic.ttf1265044456638088378002880.8%
WaitingfortheSunrise.ttf592402821024896247081880.8%
NovaSquare.ttf879682959724436242521840.8%
NotoNaskhArabic-Regular.ttf25471210064892704920086960.8%
Amita-Bold.ttf2204488926578876782845920.8%
Poppins-SemiBold.ttf27916410805092368916766920.7%
Signika-Regular.ttf1411325667751896515083880.7%
Poppins-Medium.ttf27504410820792292916046880.7%
Lancelot-Regular.ttf489402870525756255641920.7%
NotoSansSaurashtra-Regular.ttf18356123341074410664800.7%
Cuprum-Bold.ttf1001723355929636294162200.7%
NotoSansTaiViet-Regular.ttf15440954980928032600.7%
Martel-Regular.ttf1701968020069620691045160.7%
Dosis-ExtraBold.ttf1372005123046416460723440.7%
Dosis-ExtraBold.ttf1372005123046416460723440.7%
TerminalDosis-ExtraBold.ttf1372005123046416460723440.7%
Judson-Regular.ttf2208447814967168666724960.7%
Amaranth-BoldItalic.ttf1075363602833044328002440.7%
IndicTestMadurai-Bold.ttf529402793123852236761760.7%
MartelSans-Regular.ttf1527086721158176577484280.7%
Khula-Regular.ttf1772766267253892534963960.7%
NotoSansKannadaUI-Regular.ttf1344685921151216508403760.7%
Cabin-Italic.ttf1670965814955604551964080.7%
Combo-Regular.ttf1328483802234432341802520.7%
Martel-Light.ttf1705408077970184696725120.7%
GFSNeohellenic.ttf4600729483980060794765840.7%
Eczar-Bold.ttf3182841187101065081057327760.7%
Kameron-Bold.ttf647963136628052278482040.7%
Martel-DemiBold.ttf1701007783067704672124920.7%
DroidSansThai-Bold.ttf28124150451321613120960.7%
Biryani-Regular.ttf1793126905759036586084280.7%
MartelSans-Bold.ttf1517366715057984575644200.7%
NotoSansMalayalamUI-Bold.ttf940364565140368400762920.7%
Sniglet-Regular.ttf752123037927104269081960.7%
Kalam-Bold.ttf4608961575171362881353049840.7%
Philosopher-Bold.ttf2113806364259316588884280.7%
Peralta-Regular.ttf596003001527172269761960.7%
NTR-Regular.ttf3749321190341038681031207480.7%
RopaSans-Regular.ttf417961926016664165441200.7%
GenBasB.ttf2668407656070936704285080.7%
Dosis-ExtraLight.ttf1351404877543664433523120.7%
Dosis-ExtraLight.ttf1351404877543664433523120.7%
TerminalDosis-ExtraLight.ttf1351404877543664433523120.7%
PragatiNarrow-Bold.ttf4197921331701154361146128240.7%
Hind-Medium.ttf30753611536898312976127000.7%
RobotoSlab-Regular.ttf1690647600066308658364720.7%
NotoSansUgaritic-Regular.ttf6292336428122792200.7%
Alegreya-BlackItalic.ttf1732326530960196597684280.7%
OpenSans-Light.ttf2224127228060780603484320.7%
PragatiNarrow-Regular.ttf3777841274281097681089887800.7%
McLaren-Regular.ttf545042754224772245961760.7%
Moul.ttf3869685473447872475323400.7%
Khand-Bold.ttf3495201209931036521029167360.7%
NotoNaskhArabicUI-Regular.ttf25488810223594080934126680.7%
Amaranth-Italic.ttf976203888735580353282520.7%
Simonetta-Black.ttf1247005180548656483123440.7%
Simonetta-Italic.ttf1223565020046556462283280.7%
Radley-Italic.ttf907444062435312350642480.7%
Copse-Regular.ttf722523087027340271481920.7%
NotoSansMyanmar-Bold.ttf1549887161064548640964520.7%
NotoSansGujarati-Bold.ttf1925407501166480660164640.7%
NotoSansGurmukhiUI-Bold.ttf545762810624700245281720.7%
Raleway-Medium.ttf1293084568940216399362800.7%
EkMukta-Light.ttf97948420163318334018206412760.7%
SpicyRice-Regular.ttf672443268830000297922080.7%
Tillana-ExtraBold.ttf30373611504895316946566600.7%
NotoSansThai-Bold.ttf27756151541331213220920.7%
Khula-ExtraBold.ttf1838486823658632582284040.7%
Kalam-Light.ttf4375121527861324841315769080.7%
AveriaSansLibre-Italic.ttf1288964744343200429042960.7%
Hind-Semibold.ttf31460811709199448987686800.7%
AdventPro-ExtraLight.ttf468402086016384162721120.7%
AutourOne-Regular.ttf878884813143360430642960.7%
LibreBaskerville-Italic.ttf1754805813551644512923520.7%
Montez-Regular.ttf771923254429960297562040.7%
OFLGoudyStMTT.ttf1735206819662908624804280.7%
Alegreya-BoldItalic.ttf1707566550660120597124080.7%
IMFeFCrm28P.ttf1458327195569552690804720.7%
LobsterTwo-Regular.ttf2543326317157932575403920.7%
Adamina-Regular.ttf1173403920635584353442400.7%
Bitter-Regular.ttf906283750433916336882280.7%
OldStandard-Bold.ttf659242754425008248401680.7%
CabinCondensed-SemiBold.ttf1687324850045316450123040.7%
MiltonianTattoo-Regular.ttf1894606354160328599244040.7%
QuattrocentoSans-Bold.ttf1005603261829304291081960.7%
SeaweedScript-Regular.ttf1170724859745520452163040.7%
QuattrocentoSans-Regular.ttf983403272229396292001960.7%
Khula-Bold.ttf1785926760158212578243880.7%
IMFeGPit28P.ttf2493241164871123481116007480.7%
Oregano-Regular.ttf803203979036656364122440.7%
LaoMuangDon-Regular.ttf17396928736083584240.7%
EkMukta-ExtraBold.ttf106556420248918122418002012040.7%
MavenPro-Medium.ttf1000642717624100239401600.7%
Shojumaru-Regular.ttf716723552332580323642160.7%
NotoSansGurmukhiUI-Regular.ttf522562679723596234401560.7%
Kenia-Regular.ttf651562581021820216761440.7%
Volkhov-BoldItalic.ttf1027283375830940307362040.7%
Teko-Bold.ttf3061329682682052815125400.7%
AveriaLibre-LightItalic.ttf1335444818244492442002920.7%
Biryani-Heavy.ttf1774766678557296569203760.7%
Amaranth-Regular.ttf797963344230496302962000.7%
Alegreya-Italic.ttf1997447376568340678924480.7%
NovaOval.ttf966563334828084279001840.7%
Dosis-Bold.ttf1364125135946456461523040.7%
Dosis-Bold.ttf1364125135946456461523040.7%
TerminalDosis-Bold.ttf1364125135946456461523040.7%
IndicTestKochi-Bold.ttf901684581740360400962640.7%
Andika-R.ttf146977638233034983234754422880.7%
Biryani-Bold.ttf1784246927659436590483880.7%
NovaRound.ttf932123348728212280281840.7%
NotoSansRejang-Regular.ttf6088365330843064200.6%
Ubuntu-MediumItalic.ttf3669921464311330241321648600.6%
CraftyGirls.ttf752564233939108388562520.6%
KarlaTamilUpright-Regular.ttf1444405465847800474923080.6%
GlassAntiqua-Regular.ttf630122301218632185121200.6%
Warnes-Regular.ttf990123107226716265441720.6%
PetitFormalScript-Regular.ttf1750685171244172438882840.6%
PT_Serif-Caption-Web-Italic.ttf4066121309211182721175127600.6%
JimNightshade-Regular.ttf1536806410860432600443880.6%
DroidSerifThai-Bold.ttf28624154491372013632880.6%
DroidSans-Bold.ttf424802532023092229441480.6%
Volkhov-Bold.ttf1122203563632532323242080.6%
NotoSansBamum-Regular.ttf1332808993878264777645000.6%
AveriaSansLibre-Regular.ttf1083604331839468392162520.6%
IndicTestKochi-Regular.ttf882684562940120398642560.6%
Buda-Light.ttf1059883337331368311682000.6%
NotoSansTamilUI-Bold.ttf571802925525108249481600.6%
NotoSansTeluguUI-Bold.ttf1860287250064176637684080.6%
DrSugiyama-Regular.ttf399282050816996168881080.6%
Quattrocento-Bold.ttf1649484769742860425882720.6%
Arvo-Italic.ttf431082627023328231801480.6%
NotoSansThai-Regular.ttf32788166651514015044960.6%
MartelSans-Black.ttf1515166536456192558363560.6%
NotoSansDevanagariUI-Regular.ttf1761726679360020596403800.6%
YesevaOne-Regular.ttf985363844934128339122160.6%
Crushed.ttf578562123018972188521200.6%
Ubuntu-LightItalic.ttf4096081584971442201433089120.6%
CarterOne.ttf665323385231644314442000.6%
UbuntuCondensed-Regular.ttf3504441312961190521183007520.6%
Stalemate-Regular.ttf753563477832384321802040.6%
NotoSansLao-Regular.ttf411281830315888157881000.6%
Ubuntu-Light.ttf4155521578781440161431129040.6%
ReenieBeanie.ttf1470364578540824405682560.6%
jsMath-cmr10.ttf503122425521692215561360.6%
Neucha.ttf1414325137147900476003000.6%
Stoke-Regular.ttf1333404925544112438362760.6%
GloriaHallelujah.ttf598122948826288261241640.6%
HanaleiFill-Regular.ttf921083336630324301361880.6%
NovaCut.ttf944883217727124269561680.6%
DroidSansEthiopic-Bold.ttf2225927254563936635403960.6%
AveriaLibre-Bold.ttf1122284427940096398482480.6%
MartelSans-ExtraBold.ttf1520926738958212578523600.6%
Gruppo-Regular.ttf847163062527860276881720.6%
NotoSansTaiLe-Regular.ttf8340533445524524280.6%
IndicTestJalandhar-Regular.ttf498162599322780226401400.6%
Marvel-BoldItalic.ttf40080152961367213588840.6%
OpenSans-Bold.ttf2245927297561264608883760.6%
Meddon.ttf1282647354767176667644120.6%
CantoraOne-Regular.ttf1631165160345736454562800.6%
AveriaSerifLibre-Regular.ttf1099884438440576403282480.6%
Alegreya-Black.ttf1724686479459664593003640.6%
Ubuntu-Regular.ttf3538241410021279001271207800.6%
JacquesFrancoisShadow-Regular.ttf824924880843492432282640.6%
NotoSansOriyaUI-Bold.ttf1483927309964584641963880.6%
Ranchers-Regular.ttf1674205394846872465922800.6%
Biryani-UltraLight.ttf1766606496455692553603320.6%
DaysOne-Regular.ttf655802531821532214041280.6%
Neuton-ExtraBold.ttf503242208517504174001040.6%
Teko-Regular.ttf3119449967284416839165000.6%
Content-Regular.ttf3130924791640568403282400.6%
NotoSansMyanmar-Regular.ttf1536047083364272638923800.6%
IMFePIrm28P.ttf21696810230698464978845800.6%
JosefinSans-BoldItalic.ttf975963747033312331161960.6%
Sarpanch-SemiBold.ttf29324010173184304838084960.6%
Philosopher-BoldItalic.ttf2200806746362552621843680.6%
Signika-Semibold.ttf1662445688151844515403040.6%
ExpletusSans-Regular.ttf568562352120520204001200.6%
Griffy-Regular.ttf2087767916375516750764400.6%
Khand-Semibold.ttf3435641230211057281051126160.6%
TradeWinds-Regular.ttf857444073237788375682200.6%
NotoSansOriyaUI-Regular.ttf1530687434465340649603800.6%
Margarine-Regular.ttf1488206558962756623923640.6%
Neuton-Italic.ttf742043022825536253881480.6%
Lohit-Bengali.ttf1394606042452548522443040.6%
KaushanScript-Regular.ttf2106726450558080577443360.6%
Poppins-Bold.ttf27775610410788632881205120.6%
Piedra-Regular.ttf759843238229168290001680.6%
Dosis-Regular.ttf1369405049245232449722600.6%
Dosis-Regular.ttf1369405049245232449722600.6%
TerminalDosis-Regular.ttf1369405049245232449722600.6%
Share-Regular.ttf919403632432776325881880.6%
Lato-Italic.ttf1183523666733552333601920.6%
GoudyBookletter1911.ttf734963757734272340761960.6%
BM-HANNA.ttf5934921429211163521156886640.6%
IndicTestVadodara-Bold.ttf1841807424765928655523760.6%
Bevan.ttf906523989935816356122040.6%
Lobster-Regular.ttf4297161176691011281005525760.6%
RhodiumLibre-Regular.ttf2337929027580188797324560.6%
Tangerine_Regular.ttf608162910125384252401440.6%
OFLGoudyStMTT-Italic.ttf1612286538060764604203440.6%
Junge-Regular.ttf714003240428976288121640.6%
NotoSansGujaratiUI-Regular.ttf1856486976061536611883480.6%
IMFeFCit28P.ttf1581848075478084776484360.6%
Sarpanch-Bold.ttf29226410120984024835564680.6%
JacquesFrancois-Regular.ttf604483325229572294081640.6%
KarlaTamilInclined-Regular.ttf1097004323636992367882040.6%
Ubuntu-Italic.ttf3864401520971381121373527600.6%
Cabin-Regular.ttf1630685722154528542283000.6%
ProstoOne-Regular.ttf968683607532976327961800.5%
LeagueScript.ttf692163268630080299161640.5%
Philosopher-Regular.ttf2575407311968260678883720.5%
PermanentMarker.ttf747523343330864306961680.5%
Palanquin-Thin.ttf4297321509431291881284887000.5%
FreckleFace-Regular.ttf1210885319350288500162720.5%
Codystar-Light.ttf1015364212537736375322040.5%
NotoSansOgham-Regular.ttf405618121480147280.5%
Vidaloka-Regular.ttf1357044496041724415002240.5%
NotoSansSinhala-Bold.ttf1512484311934360341761840.5%
YanoneKaffeesatz-Regular.ttf765883231429420292641560.5%
Bonbon-Regular.ttf828923754734780345961840.5%
AveriaSerifLibre-Bold.ttf1139564485840864406482160.5%
Alegreya-Bold.ttf1775766677661504611803240.5%
LobsterTwo-BoldItalic.ttf2356326199756192558962960.5%
KarlaTamilInclined-Bold.ttf1088044296636480362881920.5%
HennyPenny-Regular.ttf925964989548712484562560.5%
Yesteryear-Regular.ttf648563296029740295841560.5%
JosefinSlab-Light.ttf1138444140238444382442000.5%
PT_Sans-Web-Italic.ttf4364521397931269281262686600.5%
NanumMyeongjo-ExtraBold.ttf473971611876001062424105690055240.5%
ArchivoNarrow-Regular.ttf1456924604139372391682040.5%
Skranji-Bold.ttf2072927757874284739003840.5%
Eczar-Regular.ttf309100112384100156996405160.5%
LakkiReddy-Regular.ttf5830321553991405961398727240.5%
Skranji-Regular.ttf2079247758873956735803760.5%
LifeSavers-Regular.ttf1982086122654388541122760.5%
LobsterTwo-Italic.ttf2498966192056148558642840.5%
jsMath-cmmi10.ttf461482477322228221161120.5%
NotoSansGujarati-Regular.ttf1907447191563548632283200.5%
Raleway-SemiBold.ttf1308804631140648404442040.5%
CaesarDressing-Regular.ttf896283392531912317521600.5%
AveriaLibre-Italic.ttf1288484695743124429082160.5%
Cabin-Medium.ttf1536204966846352461202320.5%
KarlaTamilUpright-Bold.ttf1432245395347184469482360.5%
PT_Serif-Web-Regular.ttf3590481154131037121032005120.5%
PT_Sans-Web-Bold.ttf4702401504651380801374006800.5%
PT_Sans-Narrow-Web-Bold.ttf4877201588941454281447127160.5%
LobsterTwo-Bold.ttf2411046366358432581482840.5%
NotoSansDevanagari-Bold.ttf1717246351556944566682760.5%
IMFeGPrm28P.ttf21655210136097768972964720.5%
Comfortaa-Regular.ttf984083594131512313601520.5%
JosefinSlab-SemiBoldItalic.ttf1432204999546520462962240.5%
Tharlon-Regular.ttf3532289688885240848324080.5%
Palanquin-ExtraLight.ttf4406521684881467121460166960.5%
MedievalSharp.ttf1487126039255116548562600.5%
Dosis-Light.ttf1363764989944968447562120.5%
Dosis-Light.ttf1363764989944968447562120.5%
TerminalDosis-Light.ttf1363764989944968447562120.5%
NotoSansGurmukhi-Bold.ttf526482708423812237001120.5%
AveriaSerifLibre-Italic.ttf1309564822544252440442080.5%
NotoSansDevanagari-Regular.ttf1776726760860652603682840.5%
Gurajada-Regular.ttf4427561341111163481158045440.5%
NotoSerifThai-Bold.ttf28320156121376013696640.5%
Eczar-ExtraBold.ttf3194881166141042201037364840.5%
MetalMania-Regular.ttf2545688996084560841683920.5%
NotoSansBengaliUI-Regular.ttf1854489022079668793003680.5%
LifeSavers-Bold.ttf1798166316857292570282640.5%
WalterTurncoat.ttf1541126440861776614922840.5%
IndicTestHowrah-Bold.ttf1935889614985220848323880.5%
AveriaSansLibre-Bold.ttf1130164459740420402361840.5%
JosefinSlab-Italic.ttf1154924303039564393841800.5%
LondrinaOutline-Regular.ttf799243992234564344081560.5%
IndicTestHowrah-Regular.ttf1861289078580208798483600.4%
NotoSansGeorgian-Regular.ttf30516175281522015152680.4%
Gorditas-Regular.ttf1103364802244784445842000.4%
PT_Sans-Caption-Web-Regular.ttf3871921250551129801124805000.4%
DroidSerif-BoldItalic.ttf456522732524476243681080.4%
IMFePIit28P.ttf2445841131091090601085804800.4%
Teko-Medium.ttf3103289997584600842283720.4%
Kameron-Regular.ttf766883151428216280921240.4%
Cabin-MediumItalic.ttf1582685290149468492522160.4%
Miltonian-Regular.ttf1240924862945904457042000.4%
Hind-Bold.ttf32497211771999488990564320.4%
NotoSansTamil-Bold.ttf569922908225016249081080.4%
NotoSansLaoUI-Regular.ttf40320180201581615748680.4%
IMFeFCsc28P.ttf1361886597263496632242720.4%
JejuMyeongjo-Regular.ttf960635614436981142676113779648800.4%
Cabin-Bold.ttf1512564788844624444361880.4%
Codystar-Regular.ttf1065004676242028418521760.4%
Cabin-SemiBoldItalic.ttf1571245215748832486282040.4%
Unkempt-Regular.ttf1925127526072480721803000.4%
PaytoneOne.ttf1934724101639728395641640.4%
Lora-BoldItalic.ttf2324728161576584762683160.4%
Thabit.ttf1240845080442668424921760.4%
NotoSansOldSouthArabian-Regular.ttf431623101940193280.4%
Akronim-Regular.ttf1095405873854544543202240.4%
JosefinSlab-Regular.ttf1107404109138108379521560.4%
LondrinaShadow-Regular.ttf855124074535388352441440.4%
MountainsofChristmas-Regular.ttf1225446312659240590002400.4%
Gidugu-Regular.ttf4354121332321155961151284680.4%
Phetsarath-Bold.ttf1568402895326696265881080.4%
Milonga-Regular.ttf2099486007452748525362120.4%
PT_Serif-Web-Italic.ttf3753561226171106201101764440.4%
Dhurjati-Regular.ttf9900482237891962721954887840.4%
AlikeAngular-Regular.ttf1232803855835076349361400.4%
Gorditas-Bold.ttf1098004664443224430521720.4%
Jaldi-Bold.ttf4683001544931344001338685320.4%
NotoSansThaiUI-Regular.ttf32952168071529615236600.4%
Ramabhadra-Regular.ttf7333081701251470401464685720.4%
LondrinaSketch-Regular.ttf1724406777363132628882440.4%
Coustard-Black.ttf826523602932168320441240.4%
IMFeENrm28P.ttf1949929649893404930443600.4%
Padauk-Regular.ttf4724889627789328889843440.4%
Modak-Regular.ttf6501882196151891441884167280.4%
IMFeDPsc28P.ttf1970129018086564862323320.4%
LoveYaLikeASister.ttf2719249177681564812523120.4%
ChelseaMarket-Regular.ttf1729246639963896636522440.4%
SpecialElite.ttf1662246803665608653602480.4%
Jura-Regular.ttf3389408121772004717322720.4%
IMFeDPrm28P.ttf2109169905095476951203560.4%
RockSalt.ttf1251366460561216609922240.4%
EagleLake-Regular.ttf780003896536260361281320.4%
Kranky.ttf1996808215078132778482840.4%
GFSNeohellenicBoldItalic.ttf3620807151460172599562160.4%
IMFeENsc28P.ttf1839328890085820855123080.4%
SirinStencil-Regular.ttf693323465531232311201120.4%
HomemadeApple.ttf1100805399250372501921800.4%
DroidSansEthiopic-Regular.ttf2279287635567204669642400.4%
DroidSerif-Bold.ttf48880296262693626840960.4%
SofadiOne-Regular.ttf52732242202160021524760.4%
DroidSansThai-Regular.ttf35584176111599615940560.4%
Eczar-SemiBold.ttf3206601179581057881054203680.3%
NotoSansEthiopic-Regular.ttf2278847624567148669162320.3%
Flavors-Regular.ttf1866407402669404691682360.3%
Rubik-Regular.ttf2206006615359912597122000.3%
FingerPaint-Regular.ttf1074045911656420562321880.3%
NotoSansSymbols-Regular.ttf23807610839791112908123000.3%
NotoSansOriya-Regular.ttf1662207692169012687882240.3%
NotoSansTibetan-Regular.ttf7167282954632653682645448240.3%
Astloch-Bold.ttf75684338632989629804920.3%
cwTeXYen-zhonly.ttf7685808467134341610684148392126760.3%
Signika-Light.ttf1860366302957904577281760.3%
Thabit-Oblique.ttf1355525278144940448041360.3%
NotoSansNewTaiLue-Regular.ttf14392781566326612200.3%
CrimsonText-Semibold.ttf77636353362958429496880.3%
Suravaram-Regular.ttf27004410057484920846682520.3%
Sunshiney.ttf1602566610262912627281840.3%
PalanquinDark-Regular.ttf4996521744461551161546644520.3%
Hanalei-Regular.ttf1841766162057788576201680.3%
IMFeDPit28P.ttf2550921174671129081125843240.3%
Rubik-Medium.ttf2162446519258888587201680.3%
Alike-Regular.ttf1079323888235264351641000.3%
NovaFlat.ttf93844320332689226816760.3%
Volkhov-Italic.ttf102360315302849228412800.3%
NotoSansTagalog-Regular.ttf522433742928292080.3%
Rajdhani-Regular.ttf3779561195371025121022322800.3%
GenBasBI.ttf2458527744371536713441920.3%
NotoSansEthiopic-Bold.ttf2225487249363864637001640.3%
Cambay-Bold.ttf2307047272861560614041560.3%
JosefinSlab-LightItalic.ttf1601445439350804506761280.3%
ButterflyKids-Regular.ttf2028247710573776735921840.2%
Arimo-BoldItalic.ttf4357442037721764361759964400.2%
DoppioOne-Regular.ttf55704282412471224652600.2%
cwTeXFangSong-zhonly.ttf9166588567403751874605174912125480.2%
Unkempt-Bold.ttf1910967792475112749361760.2%
EmilysCandy-Regular.ttf2372169035787752875482040.2%
PT_Sans-Narrow-Web-Regular.ttf3962121219751104801102242560.2%
CabinSketch-Bold.ttf2828641444491376601373443160.2%
Audiowide-Regular.ttf70900257662291622864520.2%
Mandali-Regular.ttf6192121712111489121485763360.2%
IMFePIsc28P.ttf1980129158187520873241960.2%
JosefinSlab-SemiBold.ttf101328373383459634520760.2%
Cabin-BoldItalic.ttf1541005093747560474561040.2%
Eczar-Medium.ttf3169401172221044801042602200.2%
RalewayDots-Regular.ttf4651366894562888627601280.2%
NotoSansCypriot-Regular.ttf749648133952394480.2%
PlayfairDisplaySC-BoldItalic.ttf1539966701859760596401200.2%
Exo-ExtraBold.ttf95732400703413234064680.2%
Quattrocento-Regular.ttf158200472654252842444840.2%
Frijole-Regular.ttf22786010024794356941721840.2%
CabinCondensed-Bold.ttf166912481574469244608840.2%
Sanchez-Italic.ttf75212257762132421284400.2%
EkMukta-Medium.ttf10069122097441905041901563480.2%
jsMath-cmsy10.ttf43456226142011620080360.2%
Martel-UltraLight.ttf1687007554565312651961160.2%
Monofett.ttf58132187051663616608280.2%
Scheherazade-Regular.ttf5003961311731215201213162040.2%
MaterialIconsExtended-Regular.ttf151036632245262452536880.2%
UbuntuMono-Italic.ttf2102169961184252841121400.2%
Vibur-Regular.ttf173604599855617256080920.2%
Thabit-BoldOblique.ttf130392527274446444392720.2%
Biryani-Light.ttf180132689645931659224920.2%
JustAnotherHand.ttf192544601765693256844880.2%
Artifika-Regular.ttf131788482854475244684680.2%
Judson-Italic.ttf212008752306504464948960.1%
PrincessSofia-Regular.ttf27262810086498328981841440.1%
DroidSans.ttf41028242872200021968320.1%
CabinCondensed-Regular.ttf153128510954760847540680.1%
jsMath-cmbx10.ttf51860244132243622404320.1%
CabinSketch-Regular.ttf1944368173375896757881080.1%
CabinCondensed-Medium.ttf167004478454453244472600.1%
Palanquin-Medium.ttf5264481910401671841669682160.1%
Simonetta-Regular.ttf132084544045074450680640.1%
GenBkBasB.ttf267024755646982469736880.1%
Exo-SemiBold.ttf96740407603496034916440.1%
Share-Bold.ttf91048361923267232632400.1%
Dhyana-Bold.ttf61304346212988829852360.1%
PontanoSans-Regular.ttf126596388273376433724400.1%
Brawler-Regular.ttf106044436304054840500480.1%
PT_Serif-Caption-Web-Regular.ttf3998401328951203361201961400.1%
Cambay-Italic.ttf236124825916906468984800.1%
Exo-Light.ttf98124415393540435364400.1%
FrederickatheGreat-Regular.ttf4862162218672097682095362320.1%
IMFeGPsc28P.ttf203776927408899688900960.1%
Italianno-Regular.ttf137364505414287642832440.1%
EkMukta-ExtraLight.ttf9694281935231725841724081760.1%
Tienne-Regular.ttf73908361623210832076320.1%
Thabit-Bold.ttf120168508464219242152400.1%
Palanquin-Light.ttf4444361647561442241440881360.1%
cwTeXHei-zhonly.ttf527068834801453021688301894827400.1%
NanumPenScript-Regular.ttf37897529687588119288112247040.1%
Sumana-Bold.ttf223880861597534075276640.1%
MavenPro-Bold.ttf99544273502421224192200.1%
Rajdhani-Bold.ttf401028123089105152105068840.1%
UbuntuMono-Regular.ttf205748946518237682312640.1%
NotoSansEgyptianHieroglyphs-Regular.ttf5049522783022479042477121920.1%
HeadlandOne-Regular.ttf149692463553905639028280.1%
Martel-Bold.ttf170240808887046870420480.1%
Arimo-Bold.ttf4392721950691732241731121120.1%
NotoSansCuneiform-Regular.ttf5008362605442265882264481400.1%
cwTeXKai-zhonly.ttf991749260690075533160553006031000.1%
Exo-Medium.ttf98136419183597235956160.0%
Sevillana-Regular.ttf162872618165843258412200.0%
PlayfairDisplaySC-Bold.ttf157092627285649656480160.0%
Rajdhani-Light.ttf3842361173699962499600240.0%
Cabin-SemiBold.ttf15057248876454004539280.0%
Exo-Regular.ttf9384837264293842938040.0%
Exo-Bold.ttf9626841472354123540840.0%
Jura-Medium.ttf34582482258722847227680.0%
MaterialIcons-Regular.ttf12645252499436604365640.0%
PlayfairDisplaySC-Italic.ttf14971264050569685696440.0%
Palanquin-SemiBold.ttf52252019170916866016865640.0%
AdventPro-Medium.ttf5142423137186521865200.0%
Alef-Bold.ttf9214840180342403424000.0%
Alef-Regular.ttf9082041333353643536400.0%
AlegreyaSC-BlackItalic.ttf7232027545215882158800.0%
AlegreyaSC-BoldItalic.ttf7309628583225162251600.0%
AlegreyaSC-Italic.ttf7372028167220402204000.0%
AlexBrush-Regular.ttf4902023965204402044000.0%
Allan-Bold.ttf11532841864386523865200.0%
Allan-Regular.ttf5646028607241002410000.0%
Allura-Regular.ttf8808434481296682966800.0%
Amarante-Regular.ttf14811644379371123711200.0%
AmaticSC-Bold.ttf3649222731193441934400.0%
AmaticSC-Regular.ttf3874423142200042000400.0%
Anton.ttf4237620561176881768800.0%
ArchitectsDaughter.ttf4338021441191521915200.0%
Arizonia-Regular.ttf5073625322223002230000.0%
Armata-Regular.ttf9059634713282282822800.0%
Arya-Bold.ttf18578475545656046560400.0%
Arya-Regular.ttf18147675031656646566400.0%
Asap-BoldItalic.ttf3222015646121441214400.0%
Asap-Italic.ttf3203215785122121221200.0%
Asar-Regular.ttf66834822823919884019884000.0%
AtomicAge-Regular.ttf3104816353131681316800.0%
BadScript-Regular.ttf5442035734305403054000.0%
Bangers.ttf3967618162162761627600.0%
BilboSwashCaps-Regular.ttf5814827837247002470000.0%
BlackOpsOne-Regular.ttf7611627953229802298000.0%
BowlbyOne-Regular.ttf6162034285287522875200.0%
ButchermanCaps-Regular.ttf6645639798361923619200.0%
CantataOne-Regular.ttf9682836514297522975200.0%
Capriola-Regular.ttf10663239904332563325600.0%
Cardo-Bold.ttf34832015753413446813446800.0%
Cardo-Italic.ttf26286812801610727210727200.0%
Cardo-Regular.ttf40046817734114794014794000.0%
Cedarville-Cursive.ttf6943634458315363153600.0%
ChauPhilomeneOne-Italic.ttf4427220566159401594000.0%
ChauPhilomeneOne-Regular.ttf4005619154150841508400.0%
Cinzel-Black.ttf5861624003209562095600.0%
Cinzel-Bold.ttf5774024509214842148400.0%
Cinzel-Regular.ttf5622823043199321993200.0%
CinzelDecorative-Black.ttf6282424284213082130800.0%
CinzelDecorative-Bold.ttf6244825563225802258000.0%
CinzelDecorative-Regular.ttf6054024146210682106800.0%
Comfortaa-Bold.ttf10522042380382283822800.0%
Comfortaa-Light.ttf12753248197446484464800.0%
ConcertOne-Regular.ttf7107230323261082610800.0%
Condiment-Regular.ttf4339222305183881838800.0%
Cookie-Regular.ttf4380020316169081690800.0%
Corben-Regular.ttf3600021921187721877200.0%
Courgette-Regular.ttf12207244548372723727200.0%
Creepster-Regular.ttf6272432468297642976400.0%
CreepsterCaps-Regular.ttf5818432032294202942000.0%
CreteRound-Italic.ttf6726425086194961949600.0%
CrimsonText-Bold.ttf9384838804320923209200.0%
CrimsonText-BoldItalic.ttf7576435345298282982800.0%
CrimsonText-Italic.ttf9988049849427164271600.0%
CrimsonText-SemiboldItalic.ttf7558836118306723067200.0%
cwTeXMing-zhonly.ttf1011730863295945783552578355200.0%
Dekko-Regular.ttf21518495037828448284400.0%
DellaRespira-Regular.ttf5120824721215442154400.0%
DuruSans-Regular.ttf8808833658280002800000.0%
Eater-Regular.ttf8392850101463124631200.0%
EaterCaps-Regular.ttf8411650097463404634000.0%
EBGaramond-Regular.ttf23190495283798607986000.0%
Economica-BoldItalic.ttf2702415173121441214400.0%
Economica-Italic.ttf2769215092121281212800.0%
Esteban-Regular.ttf4650421103178681786800.0%
EuphoriaScript-Regular.ttf3842419918172041720400.0%
Exo-BoldItalic.ttf10514046616397123971200.0%
Exo-ExtraBoldItalic.ttf10455245434386763867600.0%
Exo-ExtraLightItalic.ttf10693646359390203902000.0%
Exo-Italic.ttf10418841480332443324400.0%
Exo-LightItalic.ttf10704046497391883918800.0%
Exo-MediumItalic.ttf10674446872401004010000.0%
Exo-SemiBoldItalic.ttf10655246641397603976000.0%
Exo-ThinItalic.ttf10444441892335843358400.0%
Exo2-BlackItalic.ttf11149243903391563915600.0%
Exo2-BoldItalic.ttf11105645150403284032800.0%
Exo2-Italic.ttf11113644373397083970800.0%
Exo2-MediumItalic.ttf11138044396396923969200.0%
FiraSans-Bold.ttf15844458092514525145200.0%
FiraSans-BoldItalic.ttf16191262296544925449200.0%
FiraSans-Italic.ttf16224860601528525285200.0%
FiraSans-Light.ttf15852057835510245102400.0%
FiraSans-LightItalic.ttf16214061421541765417600.0%
FiraSans-Medium.ttf15855258293514405144000.0%
FiraSans-MediumItalic.ttf16231262151549525495200.0%
Flamenco-Light.ttf3473616864142281422800.0%
Flamenco-Regular.ttf3670017072141561415600.0%
FredokaOne-Regular.ttf4350019841168001680000.0%
Fresca-Regular.ttf3264417128133561335600.0%
FruityGirl-Regular.ttf72600069697569701269701200.0%
FugazOne-Regular.ttf2786815044126121261200.0%
GiveYouGlory.ttf4301224352222202222000.0%
Glegoo-Bold.ttf27106898530893128931200.0%
Glegoo-Regular.ttf27136896135869488694800.0%
GochiHand-Regular.ttf3735223417214202142000.0%
GreatVibes-Regular.ttf10600440827351523515200.0%
Habibi-Regular.ttf3626020176170361703600.0%
Halant-Bold.ttf30668411759610056010056000.0%
Halant-Light.ttf335056116620993809938000.0%
Halant-Medium.ttf268192111634951889518800.0%
Halant-Regular.ttf289600116185988649886400.0%
Halant-Semibold.ttf276576113112967169671600.0%
HammersmithOne-Regular.ttf10342837441309523095200.0%
HindSiliguri-Bold.ttf12081255026431244312400.0%
HindSiliguri-SemiBold.ttf12199659236472484724800.0%
Inder-Regular.ttf3413218317151881518800.0%
IndieFlower.ttf6155629872272442724400.0%
InknutAntiqua-Black.ttf27003697656842888428800.0%
InknutAntiqua-Bold.ttf275936101405874608746000.0%
InknutAntiqua-ExtraBold.ttf275344101231875208752000.0%
InknutAntiqua-Light.ttf280040101179873648736400.0%
InknutAntiqua-Medium.ttf278312100157868168681600.0%
InknutAntiqua-Regular.ttf27575695210815728157200.0%
InknutAntiqua-SemiBold.ttf278044100864868488684800.0%
IstokWeb-Bold.ttf22444068672612726127200.0%
IstokWeb-BoldItalic.ttf21816468274606046060400.0%
IstokWeb-Italic.ttf21812468256606526065200.0%
IstokWeb-Regular.ttf31539292665821648216400.0%
Itim-Regular.ttf37138411912710498810498800.0%
Kadwa-Bold.ttf23989279044695966959600.0%
Kadwa-Regular.ttf25142079131695086950800.0%
Kalam-Regular.ttf42736015824213756013756000.0%
Karla-BoldItalic.ttf18672108718856885600.0%
Karla-Italic.ttf18548100098028802800.0%
Karma-Medium.ttf33626013524711480411480400.0%
Khand-Light.ttf302284110252936649366400.0%
Khand-Medium.ttf31963612021810254410254400.0%
Khand-Regular.ttf31002811821510106410106400.0%
Knewave-Regular.ttf3246020595188561885600.0%
KoPubBatang-Bold.ttf665850822069511886564188656400.0%
KoPubBatang-Light.ttf660500421022781814824181482400.0%
KoPubBatang-Regular.ttf653631221217461796064179606400.0%
Kristi.ttf4747629950265762657600.0%
KronaOne-Regular.ttf3516818646156401564000.0%
LaBelleAurore.ttf5936428288254082540800.0%
Laila-Bold.ttf36978812894111249611249600.0%
Laila-Light.ttf33790811937310196410196400.0%
Laila-Medium.ttf34172412879411152811152800.0%
Laila-Regular.ttf34901613006211168011168000.0%
Laila-Semibold.ttf35264813114911366011366000.0%
LilyScriptOne-Regular.ttf3757219277160161601600.0%
Limelight-Regular.ttf13229243824368843688400.0%
LondrinaSolid-Regular.ttf5202822867204842048400.0%
LoversQuarrel-Regular.ttf6187228639251282512800.0%
Lusitana-Bold.ttf2928415423124481244800.0%
Lusitana-Regular.ttf3018815944128041280400.0%
Lustria-Regular.ttf3740017240140081400800.0%
Mallanna-Regular.ttf72291215747913625213625200.0%
MarkoOne-Regular.ttf3448420601172041720400.0%
MeieScript-Regular.ttf12842846608418644186400.0%
Merriweather-Black.ttf4681622145184801848000.0%
Merriweather-Bold.ttf4679623477193761937600.0%
Merriweather-HeavyItalic.ttf5243229804260042600400.0%
Merriweather-Italic.ttf5314030189263802638000.0%
Merriweather-Light.ttf4690023280191441914400.0%
Merriweather-LightItalic.ttf5349230594267722677200.0%
Merriweather-Regular.ttf4657621692176961769600.0%
MerriweatherSans-Bold.ttf5106827662240522405200.0%
MerriweatherSans-BoldItalic.ttf4757227260236122361200.0%
MerriweatherSans-ExtraBold.ttf5096827850240882408800.0%
MerriweatherSans-ExtraBoldItalic.ttf4766826994233082330800.0%
MerriweatherSans-Italic.ttf4756026545228602286000.0%
MerriweatherSans-Light.ttf4711226913230882308800.0%
MerriweatherSans-LightItalic.ttf4788827577238642386400.0%
MerriweatherSans-Regular.ttf4852827327237602376000.0%
Metamorphous-Regular.ttf13574043964370403704000.0%
Monda-Bold.ttf4875223970204002040000.0%
Monda-Regular.ttf4360422150190481904800.0%
MountainsofChristmas-Bold.ttf12340462740585525855200.0%
MrBedfort-Regular.ttf3725220837175521755200.0%
MrBedfort-Regular.ttf3748820939176401764000.0%
MrsSaintDelafield-Regular.ttf4914024889207162071600.0%
NewsCycle-Bold.ttf6051627258241002410000.0%
NewsCycle-Regular.ttf17960069264599205992000.0%
Niconne-Regular.ttf4561622936191321913200.0%
NixieOne-Regular.ttf5258020040169401694000.0%
Norican-Regular.ttf4686025630220522205200.0%
Nosifer-Regular.ttf4327221062178841788400.0%
NosiferCaps-Regular.ttf4365221190180241802400.0%
NothingYouCouldDo.ttf3492020449185961859600.0%
NotoEmojiTest-Regular.ttf231780021012692100208210020800.0%
NotoNastaliqUrduDraft.ttf28942499705884208842000.0%
NovaScript.ttf11737638210322283222800.0%
OleoScript-Bold.ttf3462818328148001480000.0%
OleoScriptSwashCaps-Bold.ttf3978420863169841698400.0%
OpenSansHebrew-Bold.ttf3423617386139561395600.0%
OpenSansHebrew-BoldItalic.ttf3690418414146041460400.0%
OpenSansHebrew-ExtraBold.ttf3509218026143081430800.0%
OpenSansHebrew-ExtraBoldItalic.ttf3725218767150521505200.0%
OpenSansHebrew-Italic.ttf3724018574149041490400.0%
OpenSansHebrew-Light.ttf3374017344137801378000.0%
OpenSansHebrew-LightItalic.ttf3773618871150761507600.0%
OpenSansHebrew-Regular.ttf3402017586140321403200.0%
OpenSansHebrewCondensed-Bold.ttf3388017037133641336400.0%
OpenSansHebrewCondensed-BoldItalic.ttf3896820192160321603200.0%
OpenSansHebrewCondensed-ExtraBold.ttf3420817615137881378800.0%
OpenSansHebrewCondensed-ExtraBoldItalic.ttf3885220505162241622400.0%
OpenSansHebrewCondensed-Italic.ttf3871220534165401654000.0%
OpenSansHebrewCondensed-Light.ttf3286816664131761317600.0%
OpenSansHebrewCondensed-LightItalic.ttf3635217978144281442800.0%
Oswald-Bold.ttf5305625610222002220000.0%
Oswald-Light.ttf4474022411195481954800.0%
Oswald-Regular.ttf5094424190211962119600.0%
OvertheRainbow.ttf4750825917231602316000.0%
Oxygen-Light.ttf4385223277201962019600.0%
PasseroOne-Regular.ttf3362418485154001540000.0%
PatrickHand-Regular.ttf21477274074627686276800.0%
PatrickHandSC-Regular.ttf15260856956484404844000.0%
PatuaOne-Regular.ttf3562417457145721457200.0%
Peddana-Regular.ttf71479621151118368818368800.0%
Plaster-Regular.ttf3285216536135241352400.0%
PlayfairDisplay-Black.ttf18951673658646206462000.0%
PlayfairDisplay-BlackItalic.ttf17740076377658006580000.0%
PlayfairDisplay-Bold.ttf19258876359672326723200.0%
PlayfairDisplay-BoldItalic.ttf18208480125694606946000.0%
PlayfairDisplay-Italic.ttf17485675605652126521200.0%
PlayfairDisplay-Regular.ttf18685670664616726167200.0%
Pompiere-Regular.ttf3674023705213042130400.0%
Ponnala-Regular.ttf47379212971811438411438400.0%
Puritan-Bold.ttf5456425623224122241200.0%
Puritan-BoldItalic.ttf5923627798244722447200.0%
Ramaraja-Regular.ttf70425619468416723616723600.0%
Rambla-BoldItalic.ttf3737216769140601406000.0%
Ranga-Bold.ttf12734859089509445094400.0%
Ranga-Regular.ttf11918857136490644906400.0%
RaviPrakash-Regular.ttf313012106763915289152800.0%
Roboto-Black.ttf16348872317622086220800.0%
Roboto-Light.ttf16242071957613726137200.0%
Roboto-ThinItalic.ttf16827676538655326553200.0%
Roboto2-Black.ttf14408068409610686106800.0%
Roboto2-Light.ttf14792068681611966119600.0%
RobotoCondensed-Bold.ttf16174872009620566205600.0%
RobotoCondensed-Italic.ttf16613678284676806768000.0%
RobotoDraft-Black.ttf16351672341622166221600.0%
RobotoDraft-Light.ttf16244871571615166151600.0%
RobotoDraft-ThinItalic.ttf16831676994654886548800.0%
RougeScript-Regular.ttf4675220902175841758400.0%
RozhaOne-Regular.ttf32292011770710040010040000.0%
RubikOne-Regular.ttf15308448901407124071200.0%
RugeBoogie-Regular.ttf6353632876296402964000.0%
Ruthie-Regular.ttf5720827623235882358800.0%
Rye-Regular.ttf18324453545472724727200.0%
Sahitya-Bold.ttf267140107056941089410800.0%
Sahitya-Regular.ttf261652102734899208992000.0%
Sanchez-Regular.ttf7255223010193321933200.0%
Sancreek-Regular.ttf4967230183261602616000.0%
Sarabun-Bold.ttf244956106270973329733200.0%
Sarabun-BoldItalic.ttf9956843360358723587200.0%
Sarabun-Italic.ttf9884842572352003520000.0%
Sarabun-Regular.ttf30010813136312187612187600.0%
Sarala-Bold.ttf23907276484667446674400.0%
Sarala-Regular.ttf24159275744660406604000.0%
Sarina-Regular.ttf9610434910288882888800.0%
ShadowsIntoLightTwo-Regular.ttf3939622361198681986800.0%
SigmarOne.ttf6650435281331723317200.0%
SnowburstOne-Regular.ttf6836043527392203922000.0%
Sofia-Regular.ttf2979616193130601306000.0%
Spinnaker-Regular.ttf2498814583121641216400.0%
SreeKrushnadevaraya-Regular.ttf61263613887311482411482400.0%
Stoke-Light.ttf5082025135212722127200.0%
SupermercadoOne-Regular.ttf14318041656343363433600.0%
Sura-Bold.ttf14880063897564285642800.0%
Suranna-Regular.ttf62485218749116548416548400.0%
SwankyandMooMoo.ttf5889227978254042540400.0%
Teko-SemiBold.ttf317176101959862048620400.0%
TenaliRamakrishna-Regular.ttf71022020123517292817292800.0%
TextMeOne-Regular.ttf3735216413129801298000.0%
TheGirlNextDoor.ttf5336430412266642666400.0%
Tienne-Bold.ttf6937236595323563235600.0%
Tienne-Heavy.ttf7706034328298602986000.0%
Tillana-Medium.ttf32749212644910592410592400.0%
Tillana-Regular.ttf328592116637970969709600.0%
Tillana-SemiBold.ttf29926412223310196810196800.0%
Timmana-Regular.ttf76069621351918516818516800.0%
Trykker-Regular.ttf3814021571181401814000.0%
UnifrakturCook-Bold.ttf4268826592226882268800.0%
UnifrakturMaguntia-Book.ttf8850839569357443574400.0%
VesperLibre-Bold.ttf16817278137686406864000.0%
WorkSans-Black.ttf13964456836498724987200.0%
WorkSans-Bold.ttf14392059292524205242000.0%
WorkSans-ExtraBold.ttf14624460183533405334000.0%
WorkSans-Light.ttf13698056152497684976800.0%
WorkSans-SemiBold.ttf14254858491518245182400.0%
Yantramanav-Medium.ttf15398864735547285472800.0%
Yellowtail-Regular.ttf6242429095238962389600.0%
Zeyada.ttf6306429873271002710000.0%
UbuntuMono-Bold.ttf191400927528026880272-40.0%
UbuntuMono-BoldItalic.ttf2162081138429846098468-80.0%
WireOne.ttf106444422633903639040-40.0%
Caveat-Bold.ttf202508779026664066652-120.0%
PlayfairDisplaySC-Regular.ttf153236588045291652928-120.0%
Philosopher-Italic.ttf240984728806790067916-160.0%
Martel-Heavy.ttf164364764866596865988-200.0%
VT323-Regular.ttf86576159161201612020-40.0%
Caveat-Regular.ttf196984721396141261436-240.0%
Biryani-DemiBold.ttf178620683425850058524-240.0%
Rajdhani-SemiBold.ttf390512125612107276107328-520.0%
Rajdhani-Medium.ttf384660121727104116104168-520.0%
CaveatBrush-Regular.ttf2955681006208939689444-48-0.1%
PT_Sans-Web-Regular.ttf442960145580132932133008-76-0.1%
Palanquin-Bold.ttf509300176464157568157660-92-0.1%
Exo-Thin.ttf93100357602910029120-20-0.1%
Molle-Regular.ttf52204320382793627956-20-0.1%
Rambla-Italic.ttf37144164621385613868-12-0.1%
Jaldi-Regular.ttf460664149986130408130544-136-0.1%
Palanquin-Regular.ttf479472185602162620162808-188-0.1%
AveriaLibre-BoldItalic.ttf135664482814404844104-56-0.1%
Coda-Regular.ttf86992339703034830388-40-0.1%
AveriaSansLibre-BoldItalic.ttf135852484054417244236-64-0.1%
Sumana-Regular.ttf211548834827233672448-112-0.2%
SignikaNegative-Bold.ttf53644247462016820200-32-0.2%
Amiri-Slanted.ttf357384146091129208129416-208-0.2%
PlayfairDisplaySC-Black.ttf155088614955544455536-92-0.2%
Cambay-Regular.ttf224212745486255662660-104-0.2%
JosefinSlab-Bold.ttf88308338633110831160-52-0.2%
Amiri-BoldSlanted.ttf355368145399128204128424-220-0.2%
ArbutusSlab-Regular.ttf70004354483003630092-56-0.2%
Amiri-Regular.ttf370540148771132248132496-248-0.2%
SansitaOne.ttf47440217351899219028-36-0.2%
MedulaOne-Regular.ttf33684147041208812112-24-0.2%
VampiroOne-Regular.ttf27920171961490814940-32-0.2%
PinyonScript-Regular.ttf62124307602646426524-60-0.2%
RubikMonoOne-Regular.ttf121204324312702027084-64-0.2%
Amiri-Bold.ttf351796139577123740124064-324-0.3%
Quando-Regular.ttf119688449913928039396-116-0.3%
SixCaps.ttf46388228562025220312-60-0.3%
PlayfairDisplaySC-BlackItalic.ttf155484655315818858364-176-0.3%
Poppins-Light.ttf249292990608266082920-260-0.3%
AveriaSerifLibre-LightItalic.ttf135976497214557245720-148-0.3%
Roboto2-ThinItalic.ttf149380724346427664556-280-0.4%
Karma-Regular.ttf339976133070112656113160-504-0.4%
Karma-Light.ttf3154121184079950899996-488-0.5%
NotoSansBuginese-Regular.ttf7060384933003320-20-0.6%
Exo-Black.ttf91504350862834428524-180-0.6%
Karma-SemiBold.ttf336084135630114476115240-764-0.7%
NotoSansHanunoo-Regular.ttf6412372730963120-24-0.8%
NotoSansLycian-Regular.ttf3904242920122028-16-0.8%
PalanquinDark-Medium.ttf512684187676165224166652-1428-0.9%
Sarpanch-Medium.ttf2927801008278380484596-792-0.9%
PalanquinDark-SemiBold.ttf521908188450165848167892-2044-1.2%
PalanquinDark-Bold.ttf511052169404146452148476-2024-1.4%

[8]ページ先頭

©2009-2025 Movatter.jp