diff --git a/classes/output/report_download.php b/classes/output/report_download.php index c0847c4..61dc9f1 100644 --- a/classes/output/report_download.php +++ b/classes/output/report_download.php @@ -26,6 +26,7 @@ use mod_verbalfeedback\api; use mod_verbalfeedback\model\report as ModelReport; use mod_verbalfeedback\output\model\report_view_model; +use mod_verbalfeedback\utils\font; use renderable; use renderer_base; use stdClass; @@ -60,6 +61,9 @@ class report_download implements renderable, templatable { /** @var object Moodle user object of the assessed user. */ protected $touser; + /** @var font The font object. */ + protected $font; + /** * The report constructor. * @@ -68,15 +72,17 @@ class report_download implements renderable, templatable { * @param int $coursestart The course start date * @param int $courseend The course end date * @param string $instancename The verbal feedback instance name. + * @param font $font The font object. * @param int $touser The user this report is being generated for. */ - public function __construct(ModelReport $report, $coursename, $coursestart, $courseend, $instancename, $touser) { + public function __construct(ModelReport $report, $coursename, $coursestart, $courseend, $instancename, $touser, font $font) { $this->report = $report; $this->coursename = $coursename; $this->coursestart = $coursestart; $this->courseend = $courseend; $this->instancename = $instancename; $this->touser = $touser; + $this->font = $font; } /** @@ -94,6 +100,9 @@ public function export_for_template(renderer_base $output) { $data->scales = api::get_scales(); $data->report = new report_view_model($this->report); $data->lang = current_language(); + $data->font_base = $this->font->get_font_base(); + $data->font_student = $this->font->get_font_student(); + $data->font_teacher = $this->font->get_font_teacher(); // Iterate and drop criteria with weight 0. // First, let's filter our set of criteria inside the categories. diff --git a/classes/utils/font.php b/classes/utils/font.php new file mode 100644 index 0000000..8f5b5bf --- /dev/null +++ b/classes/utils/font.php @@ -0,0 +1,200 @@ +. + +/** + * Class for creating graphs. For example, to display on the report. + * + * @package mod_verbalfeedback + * @copyright 2020 Kevin Tippenhauer + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +namespace mod_verbalfeedback\utils; + + + +/** + * Class for handling the font in the PDF. That may vary depending on the teacher, + * student name and the content of the course. + * + * @package mod_verbalfeedback + * @copyright 2024 Stephan Robotta + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ +class font { + + /** @var string Base font name. */ + public const FONT_BASE = 'Noto_Sans'; + /** @var string Font name for Arabic. */ + public const FONT_ARABIC = 'Noto_Naskh_Arabic'; + /** @var string Font name for Hebrew. */ + public const FONT_HEBREW = 'Noto_Sans_Hebrew'; + /** @var string Font name for Japanese. */ + public const FONT_JAPANESE = 'Noto_Sans_JP'; + /** @var string Font name for Chinese. */ + public const FONT_CHINESE = 'Noto_Sans_TC'; + + /** @var object The report object. */ + protected $report; + /** @var object The user object where the report is printed for. */ + protected $touser; + + /** @var string The selected font for the entire document. */ + protected $font_base; + /** @var string The selected font for the students name. */ + protected $font_student; + /** @var string The selected font for the teachers name. */ + protected $font_teacher; + + /** + * Constructor. + * + * @param object $course The report object. + * @param object $touser The user object where the report is printed for. + */ + public function __construct($report, $touser) { + $this->report = $report; + $this->touser = $touser; + } + + /** + * Get the base font for the PDF. + */ + public function get_font_base() { + if (!$this->font_base) { + $lang = substr(current_language(), 0, 2); + if ($lang === 'ar') { + $this->font_base = static::FONT_ARABIC; + } else if ($lang === 'he') { + $this->font_base = static::FONT_HEBREW; + } else if ($lang === 'ja') { + $this->font_base = static::FONT_JAPANESE; + } else if ($lang === 'zh') { + $this->font_base = static::FONT_CHINESE; + } else { + $this->font_base = static::FONT_BASE; + } + } + return $this->font_base; + } + + /** + * Get the font for the student name. + * + * @return string The font name (one of the class constants) + */ + public function get_font_student() { + if (!$this->font_student) { + $font = $this->eval_string(fullname($this->touser)); + $this->font_student = $font === static::FONT_BASE ? 'inherit' : $font; + } + return $this->font_student; + } + + /** + * Get the font for the teachers name. Check the first teacher only. + * + * @return string The font name (one of the class constants) + */ + public function get_font_teacher() { + if (!$this->font_teacher) { + $this->font_teacher = 'inherit'; + foreach ($this->report->get_from_user_ids() as $fromuserid) { + $fromuser = \core_user::get_user($fromuserid); + $font = $this->eval_string(fullname($fromuser)); + $this->font_teacher = $font === static::FONT_BASE ? 'inherit' : $font; + break; + } + } + return $this->font_teacher; + } + + /** + * Evaluate the font based on the input string. + * + * @param string $input The input string. + * @return string The font name (one of the class constants) + */ + protected function eval_string(string $input): string { + + $n = mb_ord(mb_substr($input, 0, 1)); + if ($n >= 0x600 && $n <= 0x6ff) { + return static::FONT_ARABIC; + } + if ($n >= 0x0590 && $n <= 0x05ff) { + return static::FONT_HEBREW; + } + if ($n >= 0x3040 && $n <= 0x30ff) { + return static::FONT_JAPANESE; + } + if ($n >= 0x4e00 && $n <= 0x9fff) { + return static::FONT_CHINESE; + } + return static::FONT_BASE; + } + + /** + * Set the required fonts for the PDF. + * + * @param \pdf $pdf The pdf object. + */ + public function set_font_for_pdf(\pdf $pdf) { + global $CFG; + + $toload = [$this->get_font_base()]; + if ($this->get_font_student() !== 'inherit' && $this->get_font_student() !== $this->get_font_base()) { + $toload[] = $this->get_font_student(); + } + if ($this->get_font_teacher() !== 'inherit' && $this->get_font_teacher() !== $this->get_font_base()) { + $toload[] = $this->get_font_teacher(); + } + foreach ($toload as $font) { + if ($font === static::FONT_BASE) { + $file = $CFG->dirroot . '/mod/verbalfeedback/fonts/Noto_Sans/notosans'; + $pdf->AddFont($font, '', $file . '.php'); + $pdf->AddFont($font, 'B', $file . 'b.php'); + $pdf->AddFont($font, 'I', $file . 'i.php'); + $pdf->AddFont($font, 'BI', $file . 'bi.php'); + $pdf->SetFont($font, '', 12); + } elseif ($font === static::FONT_ARABIC) { + $this->set_font_two($pdf, $font, 'notonaskharabic'); + } else if ($font === static::FONT_HEBREW) { + $this->set_font_two($pdf, $font, 'notosanshebrew'); + } else if ($font === static::FONT_JAPANESE) { + $this->set_font_two($pdf, $font, 'notosansjp'); + } else if ($font === static::FONT_CHINESE) { + $this->set_font_two($pdf, $font, 'notosanstc'); + } + } + } + + /** + * Helper function to set the font for the PDF that only has regular and bold. + * + * @param \pdf $pdf The pdf object. + * @param string $name The name of the font. + * @param string $file The file name prefix of the font. + */ + protected function set_font_two(\pdf $pdf, $name, $file) { + global $CFG; + $fontdir = "{$CFG->dirroot}/mod/verbalfeedback/fonts/{$name}/{$file}"; + $pdf->AddFont($name, '', $fontdir . '.php'); + $pdf->AddFont($name, 'B', $fontdir . 'b.php'); + $pdf->AddFont($name, 'I', $fontdir . '.php'); + $pdf->AddFont($name, 'BI', $fontdir . 'b.php'); + $pdf->SetFont($name, '', 12); + } +} \ No newline at end of file diff --git a/fonts/Noto_Naskh_Arabic/LICENSE.txt b/fonts/Noto_Naskh_Arabic/LICENSE.txt new file mode 100644 index 0000000..8dd72cd --- /dev/null +++ b/fonts/Noto_Naskh_Arabic/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2022 The Noto Project Authors (https://github.com/notofonts/arabic) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/fonts/Noto_Naskh_Arabic/NotoNaskhArabic-Bold.ttf b/fonts/Noto_Naskh_Arabic/NotoNaskhArabic-Bold.ttf new file mode 100644 index 0000000..c54d24b Binary files /dev/null and b/fonts/Noto_Naskh_Arabic/NotoNaskhArabic-Bold.ttf differ diff --git a/fonts/Noto_Naskh_Arabic/NotoNaskhArabic-Regular.ttf b/fonts/Noto_Naskh_Arabic/NotoNaskhArabic-Regular.ttf new file mode 100644 index 0000000..eb625b9 Binary files /dev/null and b/fonts/Noto_Naskh_Arabic/NotoNaskhArabic-Regular.ttf differ diff --git a/fonts/Noto_Naskh_Arabic/notonaskharabic.ctg.z b/fonts/Noto_Naskh_Arabic/notonaskharabic.ctg.z new file mode 100644 index 0000000..48816e5 Binary files /dev/null and b/fonts/Noto_Naskh_Arabic/notonaskharabic.ctg.z differ diff --git a/fonts/Noto_Naskh_Arabic/notonaskharabic.php b/fonts/Noto_Naskh_Arabic/notonaskharabic.php new file mode 100644 index 0000000..9edcb4e --- /dev/null +++ b/fonts/Noto_Naskh_Arabic/notonaskharabic.php @@ -0,0 +1,15 @@ +32,'FontBBox'=>'[-496 -590 12160 1405]','ItalicAngle'=>0,'Ascent'=>1069,'Descent'=>-634,'Leading'=>0,'CapHeight'=>714,'XHeight'=>536,'StemV'=>70,'StemH'=>30,'AvgWidth'=>795,'MaxWidth'=>12229,'MissingWidth'=>646); +$cw=array(0=>0,13=>221,32=>221,33=>206,34=>408,35=>559,36=>559,37=>896,38=>742,39=>220,40=>346,41=>346,42=>500,43=>559,44=>250,45=>310,46=>206,47=>288,48=>559,49=>559,50=>559,51=>559,52=>559,53=>559,54=>559,55=>559,56=>559,57=>559,58=>206,59=>286,60=>559,61=>559,62=>559,63=>474,64=>921,65=>705,66=>654,67=>614,68=>727,69=>623,70=>590,71=>714,72=>793,73=>367,74=>357,75=>700,76=>623,77=>938,78=>763,79=>742,80=>604,81=>742,82=>656,83=>544,84=>613,85=>717,86=>675,87=>1047,88=>660,89=>625,90=>592,91=>360,92=>288,93=>360,94=>559,95=>459,96=>274,97=>563,98=>614,99=>492,100=>614,101=>535,102=>369,103=>538,104=>635,105=>320,106=>300,107=>585,108=>310,109=>945,110=>645,111=>577,112=>614,113=>614,114=>471,115=>451,116=>352,117=>635,118=>579,119=>862,120=>578,121=>565,122=>511,123=>428,124=>559,125=>428,126=>559,160=>221,161=>332,162=>559,163=>559,165=>559,167=>544,168=>577,169=>845,170=>382,171=>414,174=>845,175=>459,176=>400,180=>274,182=>617,183=>250,184=>333,186=>397,187=>414,191=>474,192=>705,193=>705,194=>705,195=>705,196=>705,197=>705,198=>951,199=>614,200=>623,201=>623,202=>623,203=>623,204=>367,205=>367,206=>367,207=>367,208=>727,209=>763,210=>742,211=>742,212=>742,213=>742,214=>742,215=>559,216=>742,217=>717,218=>717,219=>717,220=>717,221=>625,222=>604,223=>647,224=>563,225=>563,226=>563,227=>563,228=>563,229=>563,230=>841,231=>492,232=>535,233=>535,234=>535,235=>535,236=>320,237=>320,238=>320,239=>320,240=>577,241=>645,242=>577,243=>577,244=>577,245=>577,246=>577,247=>559,248=>577,249=>635,250=>635,251=>635,252=>635,253=>565,254=>614,255=>565,256=>705,257=>563,258=>705,259=>563,260=>705,261=>563,262=>614,263=>492,266=>614,267=>492,268=>614,269=>492,270=>727,271=>614,272=>727,273=>614,274=>623,275=>535,278=>623,279=>535,280=>623,281=>535,282=>623,283=>535,286=>714,287=>538,288=>714,289=>538,290=>714,291=>538,294=>793,295=>635,298=>367,299=>320,302=>367,303=>320,304=>367,305=>320,310=>700,311=>585,313=>623,314=>310,315=>623,316=>310,317=>623,318=>310,321=>623,322=>324,323=>763,324=>645,325=>763,326=>645,327=>763,328=>645,330=>763,331=>635,332=>742,333=>577,336=>742,337=>577,338=>959,339=>905,340=>656,341=>471,342=>656,343=>471,344=>656,345=>471,346=>544,347=>451,350=>544,351=>451,352=>544,353=>451,356=>613,357=>352,362=>717,363=>635,364=>717,365=>635,366=>717,367=>635,368=>717,369=>635,370=>725,371=>635,372=>1047,373=>862,374=>625,375=>565,376=>625,377=>592,378=>511,379=>592,380=>511,381=>592,382=>511,536=>544,537=>451,538=>613,539=>352,567=>300,710=>375,711=>375,713=>370,728=>360,729=>194,730=>333,731=>500,732=>436,733=>452,768=>0,769=>0,770=>0,771=>0,772=>0,774=>0,775=>0,776=>0,778=>0,779=>0,780=>0,786=>0,806=>0,807=>0,808=>0,1536=>1138,1537=>1644,1538=>1233,1539=>1082,1540=>2322,1541=>1000,1542=>538,1543=>538,1544=>993,1545=>553,1546=>723,1547=>420,1548=>212,1549=>300,1550=>854,1551=>648,1552=>0,1553=>0,1554=>0,1555=>0,1556=>0,1557=>0,1558=>0,1559=>0,1560=>0,1561=>0,1562=>0,1563=>212,1564=>0,1565=>432,1566=>356,1567=>425,1568=>618,1569=>437,1570=>238,1571=>238,1572=>468,1573=>238,1574=>618,1575=>238,1576=>772,1577=>408,1578=>772,1579=>772,1580=>636,1581=>636,1582=>636,1583=>414,1584=>414,1585=>386,1586=>386,1587=>1013,1588=>1013,1589=>1096,1590=>1096,1591=>769,1592=>769,1593=>604,1594=>604,1595=>722,1596=>722,1597=>618,1598=>618,1599=>618,1600=>210,1601=>848,1602=>647,1603=>558,1604=>595,1605=>489,1606=>586,1607=>631,1608=>468,1609=>618,1610=>618,1611=>0,1612=>0,1613=>0,1614=>0,1615=>0,1616=>0,1617=>0,1618=>0,1619=>0,1620=>0,1621=>0,1622=>0,1623=>0,1624=>0,1625=>0,1626=>0,1627=>0,1628=>0,1629=>0,1630=>0,1631=>0,1632=>449,1633=>449,1634=>449,1635=>449,1636=>449,1637=>449,1638=>449,1639=>449,1640=>449,1641=>449,1642=>401,1643=>222,1644=>222,1645=>400,1646=>772,1647=>647,1648=>0,1649=>238,1650=>238,1651=>238,1652=>437,1653=>675,1654=>905,1655=>905,1656=>1055,1657=>772,1658=>772,1659=>772,1660=>772,1661=>772,1662=>772,1663=>772,1664=>772,1665=>636,1666=>636,1667=>636,1668=>636,1669=>636,1670=>636,1671=>636,1672=>414,1673=>414,1674=>414,1675=>414,1676=>414,1677=>414,1678=>414,1679=>414,1680=>414,1681=>386,1682=>386,1683=>386,1684=>386,1685=>386,1686=>386,1687=>386,1688=>386,1689=>386,1690=>1013,1691=>1013,1692=>1013,1693=>1096,1694=>1096,1695=>769,1696=>604,1697=>848,1698=>848,1699=>848,1700=>848,1701=>848,1702=>848,1703=>647,1704=>647,1705=>722,1706=>1015,1707=>722,1708=>558,1709=>558,1710=>558,1711=>722,1712=>722,1713=>722,1714=>722,1715=>722,1716=>722,1717=>595,1718=>595,1719=>595,1720=>595,1721=>586,1722=>586,1723=>586,1724=>586,1725=>586,1726=>631,1727=>636,1728=>408,1729=>408,1730=>408,1731=>408,1732=>468,1733=>468,1734=>468,1735=>468,1736=>468,1737=>468,1738=>468,1739=>468,1740=>618,1741=>618,1742=>618,1743=>468,1744=>618,1745=>618,1746=>773,1747=>773,1748=>243,1749=>408,1750=>0,1751=>0,1752=>0,1753=>0,1754=>0,1755=>0,1756=>0,1757=>1260,1758=>921,1759=>0,1760=>0,1761=>0,1762=>0,1763=>0,1764=>0,1765=>205,1766=>294,1767=>0,1768=>0,1769=>510,1770=>0,1771=>0,1772=>0,1773=>0,1774=>414,1775=>386,1776=>449,1777=>449,1778=>449,1779=>449,1780=>449,1781=>449,1782=>449,1783=>449,1784=>449,1785=>449,1786=>1013,1787=>1096,1788=>604,1789=>437,1790=>489,1791=>631,1872=>772,1873=>772,1874=>772,1875=>772,1876=>772,1877=>772,1878=>772,1879=>636,1880=>636,1881=>414,1882=>414,1883=>386,1884=>1013,1885=>604,1886=>604,1887=>604,1888=>848,1889=>848,1890=>722,1891=>722,1892=>722,1893=>489,1894=>489,1895=>586,1896=>586,1897=>586,1898=>595,1899=>386,1900=>386,1901=>1013,1902=>636,1903=>636,1904=>1013,1905=>386,1906=>636,1907=>238,1908=>238,1909=>618,1910=>618,1911=>618,1912=>468,1913=>468,1914=>773,1915=>773,1916=>636,1917=>1013,1918=>1013,1919=>558,2160=>238,2161=>238,2162=>238,2163=>238,2164=>238,2165=>238,2166=>238,2167=>238,2168=>238,2169=>238,2170=>238,2171=>238,2172=>238,2173=>238,2174=>238,2175=>238,2176=>238,2177=>238,2178=>238,2179=>400,2180=>400,2181=>210,2182=>343,2183=>254,2184=>254,2185=>586,2186=>636,2187=>769,2188=>769,2189=>722,2190=>242,2192=>1650,2193=>1650,2200=>0,2201=>0,2202=>0,2203=>0,2204=>0,2205=>0,2206=>0,2207=>0,2208=>772,2209=>772,2210=>636,2211=>769,2212=>848,2213=>647,2214=>595,2215=>489,2216=>618,2217=>618,2218=>424,2219=>468,2220=>642,2221=>166,2222=>414,2223=>1096,2224=>722,2225=>468,2226=>386,2227=>604,2228=>558,2229=>647,2230=>772,2231=>772,2232=>772,2233=>386,2234=>618,2235=>848,2236=>647,2237=>586,2238=>772,2239=>772,2240=>772,2241=>636,2242=>722,2243=>604,2244=>647,2245=>636,2246=>636,2247=>595,2248=>722,2249=>235,2250=>0,2251=>0,2252=>0,2253=>0,2254=>0,2255=>0,2256=>0,2257=>0,2258=>0,2259=>0,2260=>0,2261=>0,2262=>0,2263=>0,2264=>0,2265=>0,2266=>0,2267=>0,2268=>0,2269=>0,2270=>0,2271=>0,2272=>0,2273=>0,2274=>449,2275=>0,2276=>0,2277=>0,2278=>0,2279=>0,2280=>0,2281=>0,2282=>0,2283=>0,2284=>0,2285=>0,2286=>0,2287=>0,2288=>0,2289=>0,2290=>0,2291=>0,2292=>0,2293=>0,2294=>0,2295=>0,2296=>0,2297=>0,2298=>0,2299=>0,2300=>0,2301=>0,2302=>0,2303=>0,7808=>1047,7809=>862,7810=>1047,7811=>862,7812=>1047,7813=>862,7838=>682,7922=>625,7923=>565,8201=>111,8203=>0,8204=>0,8205=>0,8206=>0,8207=>0,8208=>322,8209=>322,8211=>500,8212=>1000,8216=>250,8217=>250,8218=>250,8220=>450,8221=>450,8222=>450,8226=>362,8230=>858,8239=>111,8249=>333,8250=>333,8271=>212,8364=>559,8482=>835,8722=>310,8730=>538,9676=>603,11841=>212,64336=>238,64337=>253,64338=>772,64339=>817,64340=>275,64341=>292,64342=>772,64343=>817,64344=>343,64345=>360,64346=>772,64347=>817,64348=>343,64349=>360,64350=>772,64351=>817,64352=>343,64353=>360,64354=>772,64355=>817,64356=>343,64357=>360,64358=>772,64359=>817,64360=>275,64361=>360,64362=>848,64363=>817,64364=>420,64365=>387,64366=>848,64367=>817,64368=>420,64369=>387,64370=>636,64371=>666,64372=>636,64373=>666,64374=>636,64375=>666,64376=>636,64377=>666,64378=>636,64379=>666,64380=>636,64381=>666,64382=>636,64383=>666,64384=>636,64385=>666,64386=>414,64387=>474,64388=>414,64389=>474,64390=>414,64391=>474,64392=>414,64393=>474,64394=>386,64395=>404,64396=>386,64397=>404,64398=>722,64399=>776,64400=>415,64401=>459,64402=>722,64403=>776,64404=>415,64405=>459,64406=>722,64407=>776,64408=>415,64409=>459,64410=>722,64411=>776,64412=>415,64413=>459,64414=>586,64415=>585,64416=>586,64417=>585,64418=>275,64419=>360,64420=>408,64421=>452,64422=>408,64423=>464,64424=>275,64425=>395,64426=>631,64427=>490,64428=>508,64429=>381,64430=>773,64431=>560,64432=>773,64433=>560,64434=>221,64435=>221,64436=>221,64437=>221,64438=>221,64439=>221,64440=>221,64441=>221,64442=>221,64443=>221,64444=>221,64445=>221,64446=>221,64447=>221,64448=>221,64449=>221,64450=>221,64467=>558,64468=>736,64469=>415,64470=>459,64471=>468,64472=>468,64473=>468,64474=>468,64475=>468,64476=>468,64477=>905,64478=>468,64479=>468,64480=>468,64481=>468,64482=>468,64483=>468,64484=>618,64485=>687,64486=>343,64487=>360,64488=>275,64489=>292,64490=>528,64491=>545,64492=>739,64493=>756,64494=>743,64495=>760,64496=>743,64497=>760,64498=>743,64499=>760,64500=>743,64501=>760,64502=>962,64503=>979,64504=>635,64505=>962,64506=>979,64507=>567,64508=>618,64509=>687,64510=>343,64511=>360,64512=>941,64513=>941,64514=>803,64515=>962,64516=>962,64517=>941,64518=>941,64519=>941,64520=>803,64521=>962,64522=>962,64523=>941,64524=>941,64525=>941,64526=>803,64527=>962,64528=>962,64529=>941,64530=>803,64531=>962,64532=>962,64533=>1302,64534=>1164,64535=>1302,64536=>1164,64537=>1302,64538=>1302,64539=>1164,64540=>1324,64541=>1324,64542=>1324,64543=>1186,64544=>1452,64545=>1314,64546=>1452,64547=>1452,64548=>1452,64549=>1314,64550=>1326,64551=>1188,64552=>1188,64553=>1171,64554=>1033,64555=>1171,64556=>1033,64557=>1086,64558=>1086,64559=>1086,64560=>948,64561=>1107,64562=>1107,64563=>1086,64564=>948,64565=>1107,64566=>1107,64567=>668,64568=>1081,64569=>1081,64570=>1081,64571=>1006,64572=>943,64573=>1102,64574=>1102,64575=>878,64576=>878,64577=>878,64578=>740,64579=>899,64580=>899,64581=>1122,64582=>1122,64583=>1122,64584=>984,64585=>1143,64586=>1143,64587=>941,64588=>941,64589=>941,64590=>803,64591=>962,64592=>962,64593=>1174,64594=>1036,64595=>1195,64596=>1195,64597=>1009,64598=>1009,64599=>1009,64600=>871,64601=>1030,64602=>1030,64603=>414,64604=>386,64605=>618,64606=>221,64607=>221,64608=>221,64609=>221,64610=>221,64611=>221,64612=>696,64613=>696,64614=>820,64615=>877,64616=>979,64617=>979,64618=>696,64619=>696,64620=>820,64621=>877,64622=>979,64623=>979,64624=>764,64625=>764,64626=>888,64627=>945,64628=>1047,64629=>1047,64630=>764,64631=>764,64632=>888,64633=>945,64634=>1047,64635=>1047,64636=>1074,64637=>1074,64638=>1074,64639=>1074,64640=>712,64641=>1050,64642=>987,64643=>1146,64644=>1146,64645=>773,64646=>932,64647=>932,64648=>666,64649=>941,64650=>696,64651=>696,64652=>820,64653=>877,64654=>979,64655=>979,64656=>687,64657=>764,64658=>764,64659=>888,64660=>945,64661=>1047,64662=>1047,64663=>941,64664=>941,64665=>941,64666=>688,64667=>656,64668=>941,64669=>941,64670=>941,64671=>688,64672=>656,64673=>941,64674=>941,64675=>941,64676=>688,64677=>656,64678=>688,64679=>1302,64680=>1049,64681=>1302,64682=>1049,64683=>1302,64684=>1049,64685=>1324,64686=>1324,64687=>1324,64688=>1071,64689=>1452,64690=>1452,64691=>1199,64692=>1452,64693=>1452,64694=>1452,64695=>1199,64696=>1326,64697=>1073,64698=>1171,64699=>918,64700=>1171,64701=>918,64702=>1086,64703=>1086,64704=>1086,64705=>833,64706=>1086,64707=>833,64708=>1081,64709=>1081,64710=>1081,64711=>660,64712=>828,64713=>878,64714=>878,64715=>878,64716=>625,64717=>593,64718=>1122,64719=>1122,64720=>1122,64721=>869,64722=>941,64723=>941,64724=>941,64725=>688,64726=>656,64727=>1174,64728=>921,64729=>508,64730=>1009,64731=>1009,64732=>1009,64733=>756,64734=>724,64735=>705,64736=>673,64737=>705,64738=>673,64739=>773,64740=>741,64741=>773,64742=>741,64743=>1076,64744=>1044,64745=>1076,64746=>1044,64747=>704,64748=>872,64749=>658,64750=>705,64751=>673,64752=>773,64753=>741,64754=>210,64755=>210,64756=>210,64757=>1347,64758=>1347,64759=>1192,64760=>1192,64761=>1192,64762=>1192,64763=>1345,64764=>1345,64765=>1345,64766=>1345,64767=>1323,64768=>1323,64769=>1323,64770=>1323,64771=>1323,64772=>1323,64773=>1473,64774=>1473,64775=>1473,64776=>1473,64777=>1324,64778=>1324,64779=>1324,64780=>1186,64781=>1062,64782=>1062,64783=>1190,64784=>1190,64785=>1316,64786=>1316,64787=>1101,64788=>1101,64789=>1101,64790=>1101,64791=>1350,64792=>1350,64793=>1350,64794=>1350,64795=>1353,64796=>1353,64797=>1353,64798=>1353,64799=>1353,64800=>1353,64801=>1465,64802=>1465,64803=>1465,64804=>1465,64805=>1329,64806=>1329,64807=>1329,64808=>1191,64809=>1067,64810=>1067,64811=>1182,64812=>1182,64813=>1324,64814=>1324,64815=>1324,64816=>1071,64817=>1039,64818=>1039,64819=>1073,64820=>1329,64821=>1329,64822=>1329,64823=>1329,64824=>1329,64825=>1329,64826=>1042,64827=>1042,64828=>253,64829=>238,64830=>500,64831=>500,64832=>1166,64833=>1312,64834=>1337,64835=>1492,64836=>1563,64837=>1525,64838=>1217,64839=>1655,64840=>1785,64841=>1518,64842=>1384,64843=>981,64844=>1507,64845=>1528,64846=>987,64847=>1337,64848=>1354,64849=>1692,64850=>1607,64851=>1354,64852=>1354,64853=>1354,64854=>1354,64855=>1354,64856=>1745,64857=>1715,64858=>1766,64859=>1766,64860=>1990,64861=>1990,64862=>2016,64863=>1742,64864=>1737,64865=>1737,64866=>1604,64867=>1484,64868=>2110,64869=>2118,64870=>1719,64871=>1857,64872=>1737,64873=>2016,64874=>1742,64875=>1737,64876=>1604,64877=>1484,64878=>2131,64879=>1972,64880=>1865,64881=>1708,64882=>1739,64883=>1486,64884=>1729,64885=>1608,64886=>1355,64887=>1331,64888=>1514,64889=>1355,64890=>1514,64891=>1514,64892=>1581,64893=>1499,64894=>1466,64895=>1328,64896=>1439,64897=>1598,64898=>1598,64899=>1544,64900=>1577,64901=>1439,64902=>1291,64903=>1324,64904=>1291,64905=>1788,64906=>1535,64907=>1766,64908=>1788,64909=>1535,64910=>1788,64911=>1535,64914=>1788,64915=>1587,64916=>1334,64917=>1354,64918=>1645,64919=>1486,64920=>1354,64921=>1645,64922=>1392,64923=>1392,64924=>1301,64925=>1169,64926=>1645,64927=>1713,64928=>1713,64929=>1713,64930=>1713,64931=>1460,64932=>1460,64933=>1766,64934=>1989,64935=>1766,64936=>2016,64937=>2131,64938=>2016,64939=>2131,64940=>1598,64941=>1345,64942=>1713,64943=>1713,64944=>1460,64945=>1513,64946=>1487,64947=>1645,64948=>1499,64949=>1291,64950=>1514,64951=>1559,64952=>1607,64953=>1766,64954=>1291,64955=>1400,64956=>1439,64957=>1624,64958=>2019,64959=>2019,64960=>1766,64961=>1487,64962=>1645,64963=>1241,64964=>1584,64965=>1612,64966=>2016,64967=>1645,64975=>1267,65008=>1591,65009=>1225,65010=>1190,65011=>1349,65012=>2009,65013=>1973,65014=>2107,65015=>1562,65016=>1899,65017=>1718,65018=>1217,65019=>1098,65020=>986,65021=>12210,65022=>1414,65023=>895,65136=>221,65137=>210,65138=>221,65139=>345,65140=>221,65142=>221,65143=>210,65144=>221,65145=>210,65146=>221,65147=>210,65148=>221,65149=>210,65150=>221,65151=>210,65152=>437,65153=>238,65154=>253,65155=>238,65156=>253,65157=>468,65158=>468,65159=>238,65160=>253,65161=>618,65162=>687,65163=>275,65164=>292,65165=>238,65166=>253,65167=>772,65168=>817,65169=>275,65170=>292,65171=>408,65172=>452,65173=>772,65174=>817,65175=>275,65176=>360,65177=>772,65178=>817,65179=>275,65180=>360,65181=>636,65182=>666,65183=>636,65184=>666,65185=>636,65186=>666,65187=>636,65188=>666,65189=>636,65190=>666,65191=>636,65192=>666,65193=>414,65194=>474,65195=>414,65196=>474,65197=>386,65198=>404,65199=>386,65200=>404,65201=>1013,65202=>1017,65203=>658,65204=>663,65205=>1013,65206=>1017,65207=>658,65208=>663,65209=>1096,65210=>1099,65211=>786,65212=>778,65213=>1096,65214=>1099,65215=>786,65216=>778,65217=>769,65218=>775,65219=>660,65220=>629,65221=>769,65222=>775,65223=>660,65224=>629,65225=>604,65226=>477,65227=>505,65228=>414,65229=>604,65230=>477,65231=>505,65232=>414,65233=>848,65234=>817,65235=>420,65236=>387,65237=>647,65238=>642,65239=>420,65240=>387,65241=>558,65242=>736,65243=>415,65244=>459,65245=>595,65246=>591,65247=>212,65248=>245,65249=>489,65250=>528,65251=>456,65252=>413,65253=>586,65254=>585,65255=>275,65256=>292,65257=>408,65258=>452,65259=>508,65260=>381,65261=>468,65262=>468,65263=>618,65264=>687,65265=>618,65266=>687,65267=>343,65268=>360,65269=>518,65270=>610,65271=>518,65272=>610,65273=>518,65274=>610,65275=>518,65276=>610,65279=>0); +// --- EOF --- diff --git a/fonts/Noto_Naskh_Arabic/notonaskharabic.z b/fonts/Noto_Naskh_Arabic/notonaskharabic.z new file mode 100644 index 0000000..2573b8f Binary files /dev/null and b/fonts/Noto_Naskh_Arabic/notonaskharabic.z differ diff --git a/fonts/Noto_Naskh_Arabic/notonaskharabicb.ctg.z b/fonts/Noto_Naskh_Arabic/notonaskharabicb.ctg.z new file mode 100644 index 0000000..48816e5 Binary files /dev/null and b/fonts/Noto_Naskh_Arabic/notonaskharabicb.ctg.z differ diff --git a/fonts/Noto_Naskh_Arabic/notonaskharabicb.php b/fonts/Noto_Naskh_Arabic/notonaskharabicb.php new file mode 100644 index 0000000..3dd260e --- /dev/null +++ b/fonts/Noto_Naskh_Arabic/notonaskharabicb.php @@ -0,0 +1,15 @@ +32,'FontBBox'=>'[-516 -553 12191 1408]','ItalicAngle'=>0,'Ascent'=>1069,'Descent'=>-634,'Leading'=>0,'CapHeight'=>714,'XHeight'=>536,'StemV'=>123,'StemH'=>53,'AvgWidth'=>821,'MaxWidth'=>12229,'MissingWidth'=>646); +$cw=array(0=>0,13=>221,32=>221,33=>260,34=>508,35=>559,36=>559,37=>906,38=>801,39=>290,40=>400,41=>400,42=>502,43=>559,44=>294,45=>310,46=>245,47=>288,48=>559,49=>559,50=>559,51=>559,52=>559,53=>559,54=>559,55=>559,56=>559,57=>559,58=>274,59=>304,60=>559,61=>559,62=>559,63=>550,64=>921,65=>753,66=>672,67=>668,68=>767,69=>653,70=>621,71=>769,72=>819,73=>401,74=>397,75=>734,76=>654,77=>952,78=>788,79=>787,80=>638,81=>787,82=>707,83=>586,84=>653,85=>747,86=>698,87=>1067,88=>732,89=>693,90=>666,91=>414,92=>288,93=>414,94=>559,95=>459,96=>334,97=>599,98=>649,99=>527,100=>649,101=>571,102=>407,103=>560,104=>667,105=>352,106=>345,107=>636,108=>352,109=>986,110=>667,111=>613,112=>645,113=>648,114=>523,115=>488,116=>405,117=>667,118=>606,119=>856,120=>646,121=>579,122=>529,123=>442,124=>559,125=>442,126=>559,160=>221,161=>382,162=>559,163=>559,165=>559,167=>544,168=>577,169=>845,170=>420,171=>485,174=>845,175=>459,176=>400,180=>334,182=>627,183=>294,184=>333,186=>437,187=>485,191=>550,192=>753,193=>753,194=>753,195=>753,196=>753,197=>753,198=>993,199=>668,200=>653,201=>653,202=>653,203=>653,204=>401,205=>401,206=>401,207=>401,208=>767,209=>788,210=>787,211=>787,212=>787,213=>787,214=>787,215=>559,216=>787,217=>747,218=>747,219=>747,220=>747,221=>693,222=>638,223=>706,224=>599,225=>599,226=>599,227=>599,228=>599,229=>599,230=>875,231=>527,232=>571,233=>571,234=>571,235=>571,236=>352,237=>352,238=>352,239=>352,240=>613,241=>667,242=>613,243=>613,244=>613,245=>613,246=>613,247=>559,248=>613,249=>667,250=>667,251=>667,252=>667,253=>579,254=>645,255=>579,256=>753,257=>599,258=>753,259=>599,260=>753,261=>599,262=>668,263=>527,266=>668,267=>527,268=>668,269=>527,270=>767,271=>649,272=>767,273=>649,274=>653,275=>571,278=>653,279=>571,280=>653,281=>571,282=>653,283=>571,286=>769,287=>560,288=>769,289=>560,290=>769,291=>560,294=>819,295=>667,298=>401,299=>352,302=>401,303=>352,304=>401,305=>352,310=>734,311=>636,313=>654,314=>352,315=>654,316=>352,317=>654,318=>352,321=>654,322=>352,323=>788,324=>667,325=>788,326=>667,327=>788,328=>667,330=>788,331=>667,332=>787,333=>613,336=>787,337=>613,338=>1019,339=>935,340=>707,341=>523,342=>707,343=>523,344=>707,345=>523,346=>586,347=>488,350=>586,351=>488,352=>586,353=>488,356=>653,357=>405,362=>747,363=>667,364=>747,365=>667,366=>747,367=>667,368=>747,369=>667,370=>757,371=>667,372=>1067,373=>856,374=>693,375=>579,376=>693,377=>666,378=>529,379=>666,380=>529,381=>666,382=>529,536=>586,537=>488,538=>653,539=>405,567=>345,710=>435,711=>435,713=>370,728=>400,729=>251,730=>333,731=>500,732=>476,733=>482,768=>0,769=>0,770=>0,771=>0,772=>0,774=>0,775=>0,776=>0,778=>0,779=>0,780=>0,786=>0,806=>0,807=>0,808=>0,1536=>1286,1537=>1648,1538=>1344,1539=>1280,1540=>2477,1541=>1000,1542=>538,1543=>538,1544=>954,1545=>680,1546=>889,1547=>427,1548=>261,1549=>300,1550=>854,1551=>664,1552=>0,1553=>0,1554=>0,1555=>0,1556=>0,1557=>0,1558=>0,1559=>0,1560=>0,1561=>0,1562=>0,1563=>261,1564=>0,1565=>491,1566=>466,1567=>425,1568=>636,1569=>452,1570=>284,1571=>284,1572=>497,1573=>284,1574=>636,1575=>284,1576=>806,1577=>425,1578=>806,1579=>806,1580=>655,1581=>655,1582=>655,1583=>435,1584=>435,1585=>377,1586=>377,1587=>1061,1588=>1061,1589=>1131,1590=>1131,1591=>792,1592=>792,1593=>604,1594=>604,1595=>741,1596=>741,1597=>636,1598=>636,1599=>636,1600=>210,1601=>848,1602=>652,1603=>618,1604=>612,1605=>502,1606=>604,1607=>670,1608=>497,1609=>636,1610=>636,1611=>0,1612=>0,1613=>0,1614=>0,1615=>0,1616=>0,1617=>0,1618=>0,1619=>0,1620=>0,1621=>0,1622=>0,1623=>0,1624=>0,1625=>0,1626=>0,1627=>0,1628=>0,1629=>0,1630=>0,1631=>0,1632=>488,1633=>488,1634=>488,1635=>488,1636=>488,1637=>488,1638=>488,1639=>488,1640=>488,1641=>488,1642=>471,1643=>250,1644=>250,1645=>400,1646=>806,1647=>652,1648=>0,1649=>284,1650=>284,1651=>284,1652=>452,1653=>736,1654=>949,1655=>949,1656=>1088,1657=>806,1658=>806,1659=>806,1660=>806,1661=>806,1662=>806,1663=>806,1664=>806,1665=>655,1666=>655,1667=>655,1668=>655,1669=>655,1670=>655,1671=>655,1672=>435,1673=>435,1674=>435,1675=>435,1676=>435,1677=>435,1678=>435,1679=>435,1680=>435,1681=>377,1682=>377,1683=>377,1684=>377,1685=>377,1686=>377,1687=>377,1688=>377,1689=>377,1690=>1061,1691=>1061,1692=>1061,1693=>1131,1694=>1131,1695=>792,1696=>604,1697=>848,1698=>848,1699=>848,1700=>848,1701=>848,1702=>848,1703=>652,1704=>652,1705=>741,1706=>1015,1707=>741,1708=>618,1709=>618,1710=>618,1711=>741,1712=>741,1713=>741,1714=>741,1715=>741,1716=>741,1717=>612,1718=>612,1719=>612,1720=>612,1721=>604,1722=>604,1723=>604,1724=>604,1725=>604,1726=>670,1727=>655,1728=>425,1729=>425,1730=>425,1731=>425,1732=>506,1733=>506,1734=>497,1735=>497,1736=>497,1737=>497,1738=>497,1739=>497,1740=>636,1741=>636,1742=>636,1743=>497,1744=>636,1745=>636,1746=>808,1747=>808,1748=>290,1749=>425,1750=>0,1751=>0,1752=>0,1753=>0,1754=>0,1755=>0,1756=>0,1757=>1260,1758=>921,1759=>0,1760=>0,1761=>0,1762=>0,1763=>0,1764=>0,1765=>205,1766=>307,1767=>0,1768=>0,1769=>510,1770=>0,1771=>0,1772=>0,1773=>0,1774=>435,1775=>377,1776=>488,1777=>488,1778=>488,1779=>488,1780=>488,1781=>488,1782=>488,1783=>488,1784=>488,1785=>488,1786=>1061,1787=>1131,1788=>604,1789=>452,1790=>502,1791=>670,1872=>806,1873=>806,1874=>806,1875=>806,1876=>806,1877=>806,1878=>806,1879=>655,1880=>655,1881=>435,1882=>435,1883=>377,1884=>1061,1885=>604,1886=>604,1887=>604,1888=>848,1889=>848,1890=>741,1891=>741,1892=>741,1893=>502,1894=>502,1895=>604,1896=>604,1897=>604,1898=>634,1899=>377,1900=>377,1901=>1061,1902=>655,1903=>655,1904=>1061,1905=>377,1906=>655,1907=>284,1908=>284,1909=>636,1910=>636,1911=>636,1912=>497,1913=>497,1914=>808,1915=>808,1916=>655,1917=>1061,1918=>1061,1919=>618,2160=>284,2161=>284,2162=>284,2163=>284,2164=>284,2165=>284,2166=>284,2167=>284,2168=>284,2169=>284,2170=>284,2171=>284,2172=>284,2173=>284,2174=>284,2175=>284,2176=>284,2177=>284,2178=>284,2179=>400,2180=>400,2181=>210,2182=>343,2183=>286,2184=>286,2185=>604,2186=>655,2187=>792,2188=>792,2189=>741,2190=>283,2192=>1650,2193=>1650,2200=>0,2201=>0,2202=>0,2203=>0,2204=>0,2205=>0,2206=>0,2207=>0,2208=>806,2209=>806,2210=>655,2211=>792,2212=>848,2213=>652,2214=>634,2215=>502,2216=>636,2217=>636,2218=>458,2219=>506,2220=>681,2221=>178,2222=>435,2223=>1131,2224=>741,2225=>488,2226=>377,2227=>604,2228=>618,2229=>652,2230=>806,2231=>806,2232=>806,2233=>377,2234=>636,2235=>848,2236=>652,2237=>604,2238=>806,2239=>806,2240=>806,2241=>655,2242=>741,2243=>604,2244=>652,2245=>655,2246=>655,2247=>612,2248=>741,2249=>242,2250=>0,2251=>0,2252=>0,2253=>0,2254=>0,2255=>0,2256=>0,2257=>0,2258=>0,2259=>0,2260=>0,2261=>0,2262=>0,2263=>0,2264=>0,2265=>0,2266=>0,2267=>0,2268=>0,2269=>0,2270=>0,2271=>0,2272=>0,2273=>0,2274=>488,2275=>0,2276=>0,2277=>0,2278=>0,2279=>0,2280=>0,2281=>0,2282=>0,2283=>0,2284=>0,2285=>0,2286=>0,2287=>0,2288=>0,2289=>0,2290=>0,2291=>0,2292=>0,2293=>0,2294=>0,2295=>0,2296=>0,2297=>0,2298=>0,2299=>0,2300=>0,2301=>0,2302=>0,2303=>0,7808=>1067,7809=>856,7810=>1067,7811=>856,7812=>1067,7813=>856,7838=>741,7922=>693,7923=>579,8201=>111,8203=>0,8204=>0,8205=>0,8206=>0,8207=>0,8208=>322,8209=>322,8211=>500,8212=>1000,8216=>280,8217=>280,8218=>294,8220=>489,8221=>489,8222=>489,8226=>400,8230=>912,8239=>111,8249=>353,8250=>353,8271=>261,8364=>559,8482=>835,8722=>310,8730=>538,9676=>603,11841=>261,64336=>284,64337=>288,64338=>806,64339=>817,64340=>275,64341=>292,64342=>806,64343=>817,64344=>343,64345=>360,64346=>806,64347=>817,64348=>343,64349=>360,64350=>806,64351=>817,64352=>343,64353=>360,64354=>806,64355=>817,64356=>343,64357=>360,64358=>806,64359=>817,64360=>275,64361=>360,64362=>848,64363=>832,64364=>427,64365=>412,64366=>848,64367=>832,64368=>427,64369=>412,64370=>655,64371=>724,64372=>649,64373=>657,64374=>655,64375=>724,64376=>649,64377=>657,64378=>655,64379=>724,64380=>649,64381=>657,64382=>655,64383=>724,64384=>649,64385=>657,64386=>435,64387=>485,64388=>435,64389=>485,64390=>435,64391=>485,64392=>435,64393=>485,64394=>377,64395=>395,64396=>377,64397=>395,64398=>741,64399=>768,64400=>443,64401=>467,64402=>741,64403=>768,64404=>443,64405=>467,64406=>741,64407=>768,64408=>443,64409=>467,64410=>741,64411=>768,64412=>443,64413=>467,64414=>604,64415=>599,64416=>604,64417=>599,64418=>275,64419=>360,64420=>425,64421=>466,64422=>425,64423=>464,64424=>275,64425=>412,64426=>670,64427=>554,64428=>508,64429=>397,64430=>808,64431=>566,64432=>808,64433=>566,64434=>221,64435=>221,64436=>221,64437=>221,64438=>221,64439=>221,64440=>221,64441=>221,64442=>221,64443=>221,64444=>221,64445=>221,64446=>221,64447=>221,64448=>221,64449=>221,64450=>221,64467=>618,64468=>745,64469=>443,64470=>467,64471=>497,64472=>488,64473=>497,64474=>488,64475=>497,64476=>488,64477=>949,64478=>497,64479=>488,64480=>506,64481=>497,64482=>497,64483=>488,64484=>636,64485=>690,64486=>343,64487=>360,64488=>275,64489=>292,64490=>563,64491=>580,64492=>739,64493=>756,64494=>763,64495=>780,64496=>763,64497=>780,64498=>763,64499=>780,64500=>763,64501=>780,64502=>965,64503=>982,64504=>635,64505=>965,64506=>982,64507=>567,64508=>636,64509=>690,64510=>343,64511=>360,64512=>999,64513=>999,64514=>830,64515=>965,64516=>965,64517=>999,64518=>999,64519=>999,64520=>830,64521=>965,64522=>965,64523=>999,64524=>999,64525=>999,64526=>830,64527=>965,64528=>965,64529=>999,64530=>830,64531=>965,64532=>965,64533=>1373,64534=>1204,64535=>1373,64536=>1204,64537=>1373,64538=>1373,64539=>1204,64540=>1424,64541=>1424,64542=>1424,64543=>1255,64544=>1519,64545=>1350,64546=>1519,64547=>1519,64548=>1519,64549=>1350,64550=>1417,64551=>1248,64552=>1248,64553=>1241,64554=>1072,64555=>1241,64556=>1072,64557=>1151,64558=>1151,64559=>1151,64560=>982,64561=>1117,64562=>1117,64563=>1151,64564=>982,64565=>1117,64566=>1117,64567=>731,64568=>1167,64569=>1167,64570=>1167,64571=>1060,64572=>998,64573=>1133,64574=>1133,64575=>941,64576=>941,64577=>941,64578=>772,64579=>907,64580=>907,64581=>1197,64582=>1197,64583=>1197,64584=>1028,64585=>1163,64586=>1163,64587=>999,64588=>999,64589=>999,64590=>830,64591=>965,64592=>965,64593=>1240,64594=>1071,64595=>1206,64596=>1206,64597=>1067,64598=>1067,64599=>1067,64600=>898,64601=>1033,64602=>1033,64603=>435,64604=>377,64605=>636,64606=>221,64607=>221,64608=>221,64609=>221,64610=>221,64611=>221,64612=>687,64613=>687,64614=>847,64615=>891,64616=>982,64617=>982,64618=>687,64619=>687,64620=>847,64621=>891,64622=>982,64623=>982,64624=>755,64625=>755,64626=>915,64627=>959,64628=>1050,64629=>1050,64630=>755,64631=>755,64632=>915,64633=>959,64634=>1050,64635=>1050,64636=>1102,64637=>1102,64638=>1102,64639=>1102,64640=>755,64641=>1084,64642=>1022,64643=>1157,64644=>1157,64645=>800,64646=>935,64647=>935,64648=>701,64649=>968,64650=>687,64651=>687,64652=>847,64653=>891,64654=>982,64655=>982,64656=>690,64657=>755,64658=>755,64659=>915,64660=>959,64661=>1050,64662=>1050,64663=>932,64664=>932,64665=>932,64666=>688,64667=>672,64668=>932,64669=>932,64670=>932,64671=>688,64672=>672,64673=>932,64674=>932,64675=>932,64676=>688,64677=>672,64678=>688,64679=>1306,64680=>1062,64681=>1306,64682=>1062,64683=>1306,64684=>1062,64685=>1357,64686=>1357,64687=>1357,64688=>1113,64689=>1452,64690=>1452,64691=>1208,64692=>1452,64693=>1452,64694=>1452,64695=>1208,64696=>1350,64697=>1106,64698=>1174,64699=>930,64700=>1174,64701=>930,64702=>1084,64703=>1084,64704=>1084,64705=>840,64706=>1084,64707=>840,64708=>1100,64709=>1100,64710=>1100,64711=>688,64712=>856,64713=>874,64714=>874,64715=>874,64716=>630,64717=>614,64718=>1130,64719=>1130,64720=>1130,64721=>886,64722=>932,64723=>932,64724=>932,64725=>688,64726=>672,64727=>1173,64728=>929,64729=>516,64730=>1000,64731=>1000,64732=>1000,64733=>756,64734=>740,64735=>705,64736=>689,64737=>705,64738=>689,64739=>773,64740=>757,64741=>773,64742=>757,64743=>1110,64744=>1094,64745=>1110,64746=>1094,64747=>712,64748=>880,64749=>658,64750=>705,64751=>689,64752=>773,64753=>757,64754=>210,64755=>210,64756=>210,64757=>1383,64758=>1383,64759=>1207,64760=>1207,64761=>1207,64762=>1207,64763=>1390,64764=>1390,64765=>1390,64766=>1390,64767=>1339,64768=>1339,64769=>1339,64770=>1339,64771=>1339,64772=>1339,64773=>1485,64774=>1485,64775=>1485,64776=>1485,64777=>1424,64778=>1424,64779=>1424,64780=>1255,64781=>1095,64782=>1095,64783=>1190,64784=>1190,64785=>1396,64786=>1396,64787=>1138,64788=>1138,64789=>1138,64790=>1138,64791=>1387,64792=>1387,64793=>1387,64794=>1387,64795=>1347,64796=>1347,64797=>1347,64798=>1347,64799=>1347,64800=>1347,64801=>1536,64802=>1536,64803=>1536,64804=>1536,64805=>1421,64806=>1421,64807=>1421,64808=>1252,64809=>1092,64810=>1092,64811=>1241,64812=>1241,64813=>1357,64814=>1357,64815=>1357,64816=>1113,64817=>1097,64818=>1097,64819=>1106,64820=>1354,64821=>1354,64822=>1354,64823=>1354,64824=>1354,64825=>1354,64826=>1119,64827=>1119,64828=>288,64829=>284,64830=>594,64831=>594,64832=>1166,64833=>1357,64834=>1388,64835=>1538,64836=>1612,64837=>1561,64838=>1227,64839=>1720,64840=>1842,64841=>1595,64842=>1463,64843=>998,64844=>1542,64845=>1599,64846=>1051,64847=>1353,64848=>1345,64849=>1741,64850=>1589,64851=>1345,64852=>1345,64853=>1345,64854=>1345,64855=>1345,64856=>1794,64857=>1719,64858=>1760,64859=>1760,64860=>2014,64861=>2014,64862=>2044,64863=>1834,64864=>1770,64865=>1770,64866=>1665,64867=>1526,64868=>2227,64869=>2109,64870=>1814,64871=>1909,64872=>1770,64873=>2044,64874=>1834,64875=>1770,64876=>1665,64877=>1526,64878=>2193,64879=>2058,64880=>1865,64881=>1843,64882=>1763,64883=>1519,64884=>1809,64885=>1660,64886=>1416,64887=>1343,64888=>1551,64889=>1416,64890=>1551,64891=>1551,64892=>1624,64893=>1497,64894=>1549,64895=>1380,64896=>1457,64897=>1592,64898=>1592,64899=>1531,64900=>1626,64901=>1457,64902=>1287,64903=>1382,64904=>1287,64905=>1787,64906=>1543,64907=>1760,64908=>1787,64909=>1543,64910=>1787,64911=>1543,64914=>1787,64915=>1586,64916=>1342,64917=>1345,64918=>1639,64919=>1504,64920=>1345,64921=>1639,64922=>1395,64923=>1395,64924=>1328,64925=>1169,64926=>1639,64927=>1707,64928=>1707,64929=>1707,64930=>1707,64931=>1463,64932=>1463,64933=>1760,64934=>1996,64935=>1760,64936=>2044,64937=>2193,64938=>2044,64939=>2193,64940=>1592,64941=>1348,64942=>1707,64943=>1707,64944=>1463,64945=>1516,64946=>1515,64947=>1639,64948=>1497,64949=>1287,64950=>1551,64951=>1570,64952=>1589,64953=>1760,64954=>1287,64955=>1435,64956=>1457,64957=>1673,64958=>2004,64959=>2004,64960=>1760,64961=>1515,64962=>1639,64963=>1269,64964=>1587,64965=>1621,64966=>2044,64967=>1639,64975=>1275,65008=>1606,65009=>1238,65010=>1251,65011=>1414,65012=>2028,65013=>2043,65014=>2177,65015=>1588,65016=>1997,65017=>1730,65018=>1217,65019=>1098,65020=>1011,65021=>12229,65022=>1448,65023=>925,65136=>221,65137=>210,65138=>221,65139=>378,65140=>221,65142=>221,65143=>210,65144=>221,65145=>210,65146=>221,65147=>210,65148=>221,65149=>210,65150=>221,65151=>210,65152=>452,65153=>284,65154=>288,65155=>284,65156=>288,65157=>497,65158=>488,65159=>284,65160=>288,65161=>636,65162=>690,65163=>275,65164=>292,65165=>284,65166=>288,65167=>806,65168=>817,65169=>275,65170=>292,65171=>425,65172=>466,65173=>806,65174=>817,65175=>275,65176=>360,65177=>806,65178=>817,65179=>275,65180=>360,65181=>655,65182=>724,65183=>649,65184=>657,65185=>655,65186=>724,65187=>649,65188=>657,65189=>655,65190=>724,65191=>649,65192=>657,65193=>435,65194=>485,65195=>435,65196=>485,65197=>377,65198=>395,65199=>377,65200=>395,65201=>1061,65202=>1039,65203=>700,65204=>697,65205=>1061,65206=>1039,65207=>700,65208=>697,65209=>1131,65210=>1187,65211=>795,65212=>846,65213=>1131,65214=>1187,65215=>795,65216=>846,65217=>792,65218=>841,65219=>693,65220=>706,65221=>792,65222=>841,65223=>693,65224=>706,65225=>604,65226=>477,65227=>517,65228=>448,65229=>604,65230=>477,65231=>517,65232=>448,65233=>848,65234=>832,65235=>427,65236=>412,65237=>652,65238=>632,65239=>427,65240=>412,65241=>618,65242=>745,65243=>443,65244=>467,65245=>612,65246=>617,65247=>217,65248=>245,65249=>502,65250=>555,65251=>473,65252=>413,65253=>604,65254=>599,65255=>275,65256=>292,65257=>425,65258=>466,65259=>516,65260=>397,65261=>497,65262=>488,65263=>636,65264=>690,65265=>636,65266=>690,65267=>343,65268=>360,65269=>546,65270=>631,65271=>546,65272=>631,65273=>546,65274=>631,65275=>546,65276=>631,65279=>0); +// --- EOF --- diff --git a/fonts/Noto_Naskh_Arabic/notonaskharabicb.z b/fonts/Noto_Naskh_Arabic/notonaskharabicb.z new file mode 100644 index 0000000..29b4365 Binary files /dev/null and b/fonts/Noto_Naskh_Arabic/notonaskharabicb.z differ diff --git a/fonts/OFL.txt b/fonts/Noto_Sans/LICENSE.txt similarity index 100% rename from fonts/OFL.txt rename to fonts/Noto_Sans/LICENSE.txt diff --git a/fonts/notosans.ctg.z b/fonts/Noto_Sans/notosans.ctg.z similarity index 100% rename from fonts/notosans.ctg.z rename to fonts/Noto_Sans/notosans.ctg.z diff --git a/fonts/notosans.php b/fonts/Noto_Sans/notosans.php similarity index 100% rename from fonts/notosans.php rename to fonts/Noto_Sans/notosans.php diff --git a/fonts/notosans.z b/fonts/Noto_Sans/notosans.z similarity index 100% rename from fonts/notosans.z rename to fonts/Noto_Sans/notosans.z diff --git a/fonts/notosansb.ctg.z b/fonts/Noto_Sans/notosansb.ctg.z similarity index 100% rename from fonts/notosansb.ctg.z rename to fonts/Noto_Sans/notosansb.ctg.z diff --git a/fonts/notosansb.php b/fonts/Noto_Sans/notosansb.php similarity index 100% rename from fonts/notosansb.php rename to fonts/Noto_Sans/notosansb.php diff --git a/fonts/notosansb.z b/fonts/Noto_Sans/notosansb.z similarity index 100% rename from fonts/notosansb.z rename to fonts/Noto_Sans/notosansb.z diff --git a/fonts/notosansbi.ctg.z b/fonts/Noto_Sans/notosansbi.ctg.z similarity index 100% rename from fonts/notosansbi.ctg.z rename to fonts/Noto_Sans/notosansbi.ctg.z diff --git a/fonts/notosansbi.php b/fonts/Noto_Sans/notosansbi.php similarity index 100% rename from fonts/notosansbi.php rename to fonts/Noto_Sans/notosansbi.php diff --git a/fonts/notosansbi.z b/fonts/Noto_Sans/notosansbi.z similarity index 100% rename from fonts/notosansbi.z rename to fonts/Noto_Sans/notosansbi.z diff --git a/fonts/notosansi.ctg.z b/fonts/Noto_Sans/notosansi.ctg.z similarity index 100% rename from fonts/notosansi.ctg.z rename to fonts/Noto_Sans/notosansi.ctg.z diff --git a/fonts/notosansi.php b/fonts/Noto_Sans/notosansi.php similarity index 100% rename from fonts/notosansi.php rename to fonts/Noto_Sans/notosansi.php diff --git a/fonts/notosansi.z b/fonts/Noto_Sans/notosansi.z similarity index 100% rename from fonts/notosansi.z rename to fonts/Noto_Sans/notosansi.z diff --git a/fonts/Noto_Sans_Hebrew/LICENSE.txt b/fonts/Noto_Sans_Hebrew/LICENSE.txt new file mode 100644 index 0000000..227f4ca --- /dev/null +++ b/fonts/Noto_Sans_Hebrew/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2022 The Noto Project Authors (https://github.com/notofonts/hebrew) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/fonts/Noto_Sans_Hebrew/NotoSansHebrew-Bold.ttf b/fonts/Noto_Sans_Hebrew/NotoSansHebrew-Bold.ttf new file mode 100644 index 0000000..4275d78 Binary files /dev/null and b/fonts/Noto_Sans_Hebrew/NotoSansHebrew-Bold.ttf differ diff --git a/fonts/Noto_Sans_Hebrew/NotoSansHebrew-Regular.ttf b/fonts/Noto_Sans_Hebrew/NotoSansHebrew-Regular.ttf new file mode 100644 index 0000000..b44a0db Binary files /dev/null and b/fonts/Noto_Sans_Hebrew/NotoSansHebrew-Regular.ttf differ diff --git a/fonts/Noto_Sans_Hebrew/notosanshebrew.ctg.z b/fonts/Noto_Sans_Hebrew/notosanshebrew.ctg.z new file mode 100644 index 0000000..4970087 Binary files /dev/null and b/fonts/Noto_Sans_Hebrew/notosanshebrew.ctg.z differ diff --git a/fonts/Noto_Sans_Hebrew/notosanshebrew.php b/fonts/Noto_Sans_Hebrew/notosanshebrew.php new file mode 100644 index 0000000..6c125d8 --- /dev/null +++ b/fonts/Noto_Sans_Hebrew/notosanshebrew.php @@ -0,0 +1,15 @@ +32,'FontBBox'=>'[-508 -292 961 1068]','ItalicAngle'=>0,'Ascent'=>1068,'Descent'=>-292,'Leading'=>0,'CapHeight'=>714,'XHeight'=>537,'StemV'=>70,'StemH'=>30,'AvgWidth'=>547,'MaxWidth'=>1000,'MissingWidth'=>500); +$cw=array(0=>0,13=>260,32=>270,33=>248,34=>397,35=>652,36=>573,37=>851,38=>738,39=>217,40=>294,41=>294,42=>546,43=>576,44=>230,45=>321,46=>246,47=>367,48=>576,49=>576,50=>576,51=>576,52=>576,53=>576,54=>576,55=>576,56=>576,57=>576,58=>246,59=>249,60=>576,61=>576,62=>576,63=>448,64=>885,65=>633,66=>636,67=>627,68=>708,69=>550,70=>510,71=>728,72=>729,73=>342,74=>276,75=>606,76=>535,77=>886,78=>749,79=>770,80=>595,81=>770,82=>615,83=>556,84=>537,85=>729,86=>612,87=>933,88=>589,89=>565,90=>590,91=>317,92=>367,93=>317,94=>553,95=>432,96=>312,97=>553,98=>606,99=>497,100=>606,101=>569,102=>326,103=>606,104=>609,105=>251,106=>251,107=>531,108=>251,109=>908,110=>609,111=>598,112=>606,113=>606,114=>410,115=>480,116=>372,117=>609,118=>498,119=>769,120=>536,121=>496,122=>475,123=>373,124=>525,125=>373,126=>576,160=>266,161=>248,162=>576,163=>576,165=>576,167=>511,168=>585,169=>829,170=>350,171=>499,174=>829,175=>500,176=>426,180=>312,182=>651,183=>246,184=>229,186=>367,187=>499,191=>448,192=>633,193=>633,194=>633,195=>633,196=>633,197=>633,198=>832,199=>627,200=>550,201=>550,202=>550,203=>550,204=>342,205=>342,206=>342,207=>342,208=>708,209=>749,210=>770,211=>770,212=>770,213=>770,214=>770,215=>576,216=>770,217=>729,218=>729,219=>729,220=>729,221=>565,222=>593,223=>628,224=>553,225=>553,226=>553,227=>553,228=>553,229=>553,230=>882,231=>497,232=>569,233=>569,234=>569,235=>569,236=>251,237=>251,238=>251,239=>251,240=>587,241=>609,242=>598,243=>598,244=>598,245=>598,246=>598,247=>576,248=>609,249=>609,250=>609,251=>609,252=>609,253=>496,254=>606,255=>496,256=>633,257=>553,258=>633,259=>553,260=>633,261=>553,262=>627,263=>497,266=>627,267=>497,268=>627,269=>497,270=>708,271=>606,272=>708,273=>612,274=>550,275=>569,278=>550,279=>569,280=>550,281=>569,282=>550,283=>569,286=>728,287=>606,288=>728,289=>606,290=>728,291=>606,294=>735,295=>613,298=>342,299=>251,302=>342,303=>251,304=>342,305=>251,310=>606,311=>531,313=>535,314=>251,315=>535,316=>251,317=>535,318=>251,321=>545,322=>286,323=>749,324=>609,325=>749,326=>609,327=>749,328=>609,336=>770,337=>598,338=>921,339=>972,340=>615,341=>410,344=>615,345=>410,346=>556,347=>480,350=>556,351=>480,352=>556,353=>480,356=>537,357=>372,362=>729,363=>609,366=>729,367=>609,368=>729,369=>609,370=>729,371=>609,372=>933,373=>769,374=>565,375=>496,376=>565,377=>590,378=>475,379=>590,380=>475,381=>590,382=>475,536=>556,537=>480,538=>537,539=>372,567=>251,710=>404,711=>404,713=>373,728=>381,729=>189,730=>304,731=>245,732=>437,733=>458,768=>0,769=>0,770=>0,771=>0,772=>0,774=>0,775=>0,776=>0,778=>0,779=>0,780=>0,806=>0,807=>0,808=>0,847=>0,1425=>0,1426=>0,1427=>0,1428=>0,1429=>0,1430=>0,1431=>0,1432=>0,1433=>0,1434=>0,1435=>0,1436=>0,1437=>0,1438=>0,1439=>0,1440=>0,1441=>0,1442=>0,1443=>0,1444=>0,1445=>0,1446=>0,1447=>0,1448=>0,1449=>0,1450=>0,1451=>0,1452=>0,1453=>0,1454=>0,1455=>0,1456=>0,1457=>0,1458=>0,1459=>0,1460=>0,1461=>0,1462=>0,1463=>0,1464=>0,1465=>0,1466=>0,1467=>0,1468=>0,1469=>0,1470=>324,1471=>0,1472=>525,1473=>0,1474=>0,1475=>246,1476=>0,1477=>0,1478=>397,1479=>0,1488=>632,1489=>572,1490=>374,1491=>542,1492=>627,1493=>301,1494=>330,1495=>662,1496=>634,1497=>295,1498=>545,1499=>515,1500=>522,1501=>684,1502=>660,1503=>329,1504=>379,1505=>643,1506=>593,1507=>620,1508=>601,1509=>529,1510=>556,1511=>627,1512=>523,1513=>730,1514=>685,1519=>633,1520=>589,1521=>602,1522=>599,1523=>186,1524=>365,7808=>933,7809=>769,7810=>933,7811=>769,7812=>933,7813=>769,7838=>709,7922=>565,7923=>496,8204=>0,8205=>0,8206=>0,8207=>0,8208=>321,8211=>500,8212=>1000,8216=>173,8217=>173,8218=>242,8220=>353,8221=>353,8222=>428,8226=>382,8230=>745,8249=>288,8250=>288,8362=>792,8364=>576,8482=>720,8722=>321,9676=>594,64285=>306,64286=>0,64287=>612,64288=>582,64289=>761,64290=>674,64291=>799,64292=>679,64293=>644,64294=>794,64295=>678,64296=>844,64297=>569,64298=>730,64299=>730,64300=>730,64301=>730,64302=>632,64303=>632,64304=>632,64305=>572,64306=>374,64307=>542,64308=>627,64309=>301,64310=>330,64312=>634,64313=>295,64314=>545,64315=>515,64316=>522,64318=>660,64320=>379,64321=>643,64323=>620,64324=>601,64326=>556,64327=>627,64328=>523,64329=>730,64330=>685,64331=>301,64332=>565,64333=>515,64334=>601,64335=>643); +// --- EOF --- diff --git a/fonts/Noto_Sans_Hebrew/notosanshebrew.z b/fonts/Noto_Sans_Hebrew/notosanshebrew.z new file mode 100644 index 0000000..3232592 Binary files /dev/null and b/fonts/Noto_Sans_Hebrew/notosanshebrew.z differ diff --git a/fonts/Noto_Sans_Hebrew/notosanshebrewb.ctg.z b/fonts/Noto_Sans_Hebrew/notosanshebrewb.ctg.z new file mode 100644 index 0000000..4970087 Binary files /dev/null and b/fonts/Noto_Sans_Hebrew/notosanshebrewb.ctg.z differ diff --git a/fonts/Noto_Sans_Hebrew/notosanshebrewb.php b/fonts/Noto_Sans_Hebrew/notosanshebrewb.php new file mode 100644 index 0000000..bae54f3 --- /dev/null +++ b/fonts/Noto_Sans_Hebrew/notosanshebrewb.php @@ -0,0 +1,15 @@ +32,'FontBBox'=>'[-549 -292 978 1068]','ItalicAngle'=>0,'Ascent'=>1068,'Descent'=>-292,'Leading'=>0,'CapHeight'=>714,'XHeight'=>547,'StemV'=>123,'StemH'=>53,'AvgWidth'=>581,'MaxWidth'=>1000,'MissingWidth'=>500); +$cw=array(0=>0,13=>260,32=>270,33=>273,34=>473,35=>658,36=>575,37=>909,38=>775,39=>262,40=>333,41=>333,42=>541,43=>582,44=>278,45=>319,46=>272,47=>412,48=>582,49=>582,50=>582,51=>582,52=>582,53=>582,54=>582,55=>582,56=>582,57=>582,58=>272,59=>278,60=>582,61=>582,62=>582,63=>482,64=>892,65=>689,66=>659,67=>640,68=>724,69=>549,70=>527,71=>735,72=>751,73=>401,74=>322,75=>655,76=>563,77=>935,78=>800,79=>786,80=>617,81=>786,82=>652,83=>569,84=>570,85=>746,86=>661,87=>997,88=>670,89=>624,90=>603,91=>321,92=>412,93=>321,94=>536,95=>473,96=>376,97=>595,98=>628,99=>522,100=>628,101=>599,102=>378,103=>628,104=>646,105=>296,106=>295,107=>608,108=>294,109=>963,110=>646,111=>622,112=>628,113=>628,114=>446,115=>502,116=>425,117=>646,118=>566,119=>854,120=>592,121=>565,122=>494,123=>409,124=>516,125=>409,126=>582,160=>263,161=>273,162=>582,163=>582,165=>582,167=>505,168=>595,169=>826,170=>378,171=>608,174=>826,175=>500,176=>424,180=>376,182=>646,183=>272,184=>264,186=>382,187=>608,191=>482,192=>689,193=>689,194=>689,195=>689,196=>689,197=>689,198=>900,199=>640,200=>549,201=>549,202=>549,203=>549,204=>401,205=>401,206=>401,207=>401,208=>724,209=>800,210=>786,211=>786,212=>786,213=>786,214=>786,215=>582,216=>786,217=>746,218=>746,219=>746,220=>746,221=>624,222=>614,223=>701,224=>595,225=>595,226=>595,227=>595,228=>595,229=>595,230=>914,231=>522,232=>599,233=>599,234=>599,235=>599,236=>296,237=>296,238=>296,239=>296,240=>619,241=>646,242=>622,243=>622,244=>622,245=>622,246=>622,247=>582,248=>643,249=>646,250=>646,251=>646,252=>646,253=>565,254=>628,255=>565,256=>689,257=>595,258=>689,259=>595,260=>689,261=>595,262=>640,263=>522,266=>640,267=>522,268=>640,269=>522,270=>724,271=>628,272=>724,273=>643,274=>549,275=>599,278=>549,279=>599,280=>549,281=>599,282=>549,283=>599,286=>735,287=>628,288=>735,289=>628,290=>735,291=>628,294=>763,295=>653,298=>401,299=>296,302=>401,303=>296,304=>401,305=>296,310=>655,311=>608,313=>563,314=>294,315=>563,316=>294,317=>563,318=>294,321=>583,322=>365,323=>800,324=>646,325=>800,326=>646,327=>800,328=>646,336=>786,337=>622,338=>943,339=>977,340=>652,341=>446,344=>652,345=>446,346=>569,347=>502,350=>569,351=>502,352=>569,353=>502,356=>570,357=>425,362=>746,363=>646,366=>746,367=>646,368=>746,369=>646,370=>746,371=>646,372=>997,373=>854,374=>624,375=>565,376=>624,377=>603,378=>494,379=>603,380=>494,381=>603,382=>494,536=>569,537=>502,538=>570,539=>425,567=>295,710=>475,711=>475,713=>410,728=>438,729=>245,730=>327,731=>278,732=>470,733=>537,768=>0,769=>0,770=>0,771=>0,772=>0,774=>0,775=>0,776=>0,778=>0,779=>0,780=>0,806=>0,807=>0,808=>0,847=>0,1425=>0,1426=>0,1427=>0,1428=>0,1429=>0,1430=>0,1431=>0,1432=>0,1433=>0,1434=>0,1435=>0,1436=>0,1437=>0,1438=>0,1439=>0,1440=>0,1441=>0,1442=>0,1443=>0,1444=>0,1445=>0,1446=>0,1447=>0,1448=>0,1449=>0,1450=>0,1451=>0,1452=>0,1453=>0,1454=>0,1455=>0,1456=>0,1457=>0,1458=>0,1459=>0,1460=>0,1461=>0,1462=>0,1463=>0,1464=>0,1465=>0,1466=>0,1467=>0,1468=>0,1469=>0,1470=>325,1471=>0,1472=>516,1473=>0,1474=>0,1475=>272,1476=>0,1477=>0,1478=>443,1479=>0,1488=>676,1489=>594,1490=>412,1491=>571,1492=>658,1493=>338,1494=>371,1495=>687,1496=>660,1497=>332,1498=>570,1499=>528,1500=>556,1501=>702,1502=>702,1503=>355,1504=>404,1505=>680,1506=>630,1507=>654,1508=>628,1509=>587,1510=>592,1511=>654,1512=>542,1513=>787,1514=>722,1519=>762,1520=>670,1521=>702,1522=>704,1523=>223,1524=>444,7808=>997,7809=>854,7810=>997,7811=>854,7812=>997,7813=>854,7838=>763,7922=>624,7923=>565,8204=>0,8205=>0,8206=>0,8207=>0,8208=>319,8211=>500,8212=>1000,8216=>219,8217=>219,8218=>282,8220=>441,8221=>441,8222=>506,8226=>388,8230=>818,8249=>355,8250=>355,8362=>864,8364=>582,8482=>750,8722=>319,9676=>594,64285=>355,64286=>0,64287=>709,64288=>622,64289=>838,64290=>717,64291=>832,64292=>708,64293=>687,64294=>830,64295=>720,64296=>905,64297=>567,64298=>787,64299=>787,64300=>787,64301=>787,64302=>676,64303=>676,64304=>676,64305=>594,64306=>412,64307=>571,64308=>658,64309=>338,64310=>371,64312=>660,64313=>332,64314=>570,64315=>528,64316=>556,64318=>702,64320=>404,64321=>680,64323=>654,64324=>628,64326=>592,64327=>654,64328=>542,64329=>787,64330=>722,64331=>338,64332=>592,64333=>528,64334=>628,64335=>718); +// --- EOF --- diff --git a/fonts/Noto_Sans_Hebrew/notosanshebrewb.z b/fonts/Noto_Sans_Hebrew/notosanshebrewb.z new file mode 100644 index 0000000..ada89b2 Binary files /dev/null and b/fonts/Noto_Sans_Hebrew/notosanshebrewb.z differ diff --git a/fonts/Noto_Sans_JP/LICENSE.txt b/fonts/Noto_Sans_JP/LICENSE.txt new file mode 100644 index 0000000..e660570 --- /dev/null +++ b/fonts/Noto_Sans_JP/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source' + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/fonts/Noto_Sans_JP/NotoSansJP-Bold.ttf b/fonts/Noto_Sans_JP/NotoSansJP-Bold.ttf new file mode 100644 index 0000000..00a854c Binary files /dev/null and b/fonts/Noto_Sans_JP/NotoSansJP-Bold.ttf differ diff --git a/fonts/Noto_Sans_JP/NotoSansJP-Regular.ttf b/fonts/Noto_Sans_JP/NotoSansJP-Regular.ttf new file mode 100644 index 0000000..b2dad73 Binary files /dev/null and b/fonts/Noto_Sans_JP/NotoSansJP-Regular.ttf differ diff --git a/fonts/Noto_Sans_JP/notosansjp.ctg.z b/fonts/Noto_Sans_JP/notosansjp.ctg.z new file mode 100644 index 0000000..02e0ad2 Binary files /dev/null and b/fonts/Noto_Sans_JP/notosansjp.ctg.z differ diff --git a/fonts/Noto_Sans_JP/notosansjp.php b/fonts/Noto_Sans_JP/notosansjp.php new file mode 100644 index 0000000..ec3c7ec --- /dev/null +++ b/fonts/Noto_Sans_JP/notosansjp.php @@ -0,0 +1,15 @@ +32,'FontBBox'=>'[-1002 -1048 2928 1808]','ItalicAngle'=>0,'Ascent'=>1160,'Descent'=>-288,'Leading'=>0,'CapHeight'=>733,'XHeight'=>543,'StemV'=>70,'StemH'=>30,'AvgWidth'=>983,'MaxWidth'=>3000,'MissingWidth'=>1000); +$cw=array(0=>1000,32=>224,33=>323,34=>474,35=>555,36=>555,37=>921,38=>680,39=>278,40=>338,41=>338,42=>467,43=>555,44=>278,45=>347,46=>278,47=>392,48=>555,49=>555,50=>555,51=>555,52=>555,53=>555,54=>555,55=>555,56=>555,57=>555,58=>278,59=>278,60=>555,61=>555,62=>555,63=>474,64=>946,65=>608,66=>657,67=>638,68=>688,69=>589,70=>552,71=>689,72=>728,73=>293,74=>535,75=>646,76=>543,77=>812,78=>723,79=>742,80=>633,81=>742,82=>635,83=>596,84=>599,85=>721,86=>575,87=>878,88=>573,89=>531,90=>603,91=>338,92=>392,93=>338,94=>555,95=>559,96=>606,97=>563,98=>618,99=>510,100=>620,101=>554,102=>325,103=>564,104=>607,105=>275,106=>275,107=>552,108=>284,109=>926,110=>610,111=>606,112=>620,113=>620,114=>388,115=>468,116=>377,117=>607,118=>521,119=>802,120=>498,121=>521,122=>475,123=>338,124=>270,125=>338,126=>555,160=>224,161=>323,162=>555,163=>555,164=>555,165=>555,166=>270,167=>1000,168=>606,169=>832,170=>386,171=>479,172=>555,173=>347,174=>473,175=>606,176=>370,177=>1000,178=>411,179=>411,180=>606,181=>628,182=>1000,183=>561,184=>606,185=>411,186=>407,187=>479,188=>873,189=>903,190=>889,191=>474,192=>608,193=>608,194=>608,195=>608,196=>608,197=>608,198=>918,199=>638,200=>589,201=>589,202=>589,203=>589,204=>293,205=>293,206=>293,207=>293,208=>712,209=>723,210=>742,211=>742,212=>742,213=>742,214=>742,215=>1000,216=>742,217=>721,218=>721,219=>721,220=>721,221=>531,222=>652,223=>643,224=>563,225=>563,226=>563,227=>563,228=>563,229=>563,230=>877,231=>510,232=>554,233=>554,234=>554,235=>554,236=>275,237=>275,238=>275,239=>275,240=>608,241=>610,242=>606,243=>606,244=>606,245=>606,246=>606,247=>1000,248=>606,249=>607,250=>607,251=>607,252=>607,253=>521,254=>620,255=>521,256=>608,257=>563,258=>608,259=>563,272=>712,273=>620,274=>589,275=>554,282=>589,283=>554,296=>293,297=>275,298=>293,299=>275,323=>723,324=>610,327=>723,328=>610,332=>742,333=>606,334=>742,335=>606,338=>947,339=>937,360=>721,361=>607,362=>721,363=>607,364=>721,365=>607,402=>555,416=>742,417=>606,431=>736,432=>607,461=>608,462=>563,463=>293,464=>275,465=>742,466=>606,467=>721,468=>607,469=>721,470=>607,471=>721,472=>607,473=>721,474=>607,475=>721,476=>607,504=>723,505=>610,593=>625,609=>620,699=>278,711=>600,713=>1000,714=>600,715=>600,729=>500,746=>600,747=>600,768=>0,769=>0,772=>0,775=>0,780=>0,913=>608,914=>657,915=>557,916=>656,917=>589,918=>603,919=>728,920=>742,921=>293,922=>646,923=>575,924=>812,925=>723,926=>595,927=>742,928=>721,929=>633,931=>601,932=>599,933=>531,934=>803,935=>573,936=>780,937=>758,945=>625,946=>631,947=>540,948=>594,949=>501,950=>473,951=>604,952=>583,953=>292,954=>551,955=>552,956=>628,957=>528,958=>481,959=>597,960=>654,961=>613,962=>483,963=>609,964=>514,965=>569,966=>760,967=>536,968=>769,969=>782,1025=>589,1040=>608,1041=>648,1042=>657,1043=>557,1044=>712,1045=>589,1046=>898,1047=>620,1048=>733,1049=>733,1050=>648,1051=>704,1052=>812,1053=>728,1054=>742,1055=>721,1056=>633,1057=>638,1058=>599,1059=>575,1060=>818,1061=>573,1062=>718,1063=>668,1064=>966,1065=>976,1066=>805,1067=>891,1068=>648,1069=>638,1070=>1014,1071=>650,1072=>563,1073=>608,1074=>567,1075=>459,1076=>594,1077=>554,1078=>760,1079=>510,1080=>631,1081=>631,1082=>556,1083=>593,1084=>707,1085=>629,1086=>606,1087=>618,1088=>620,1089=>510,1090=>514,1091=>521,1092=>820,1093=>498,1094=>619,1095=>572,1096=>837,1097=>845,1098=>665,1099=>753,1100=>548,1101=>510,1102=>825,1103=>574,1105=>554,7742=>812,7743=>926,7840=>608,7841=>563,7842=>608,7843=>563,7844=>608,7845=>563,7846=>608,7847=>563,7848=>608,7849=>563,7850=>608,7851=>563,7852=>608,7853=>563,7854=>608,7855=>563,7856=>608,7857=>563,7858=>608,7859=>563,7860=>608,7861=>563,7862=>608,7863=>563,7864=>589,7865=>554,7866=>589,7867=>554,7868=>589,7869=>554,7870=>589,7871=>554,7872=>589,7873=>554,7874=>589,7875=>554,7876=>589,7877=>554,7878=>589,7879=>554,7880=>293,7881=>275,7882=>293,7883=>275,7884=>742,7885=>606,7886=>742,7887=>606,7888=>742,7889=>606,7890=>742,7891=>606,7892=>742,7893=>606,7894=>742,7895=>606,7896=>742,7897=>606,7898=>742,7899=>606,7900=>742,7901=>606,7902=>742,7903=>606,7904=>742,7905=>606,7906=>742,7907=>606,7908=>721,7909=>607,7910=>721,7911=>607,7912=>736,7913=>607,7914=>736,7915=>607,7916=>736,7917=>607,7918=>736,7919=>607,7920=>736,7921=>607,7922=>531,7923=>521,7924=>531,7925=>521,7926=>531,7927=>521,7928=>531,7929=>521,8194=>500,8195=>1000,8208=>1000,8209=>347,8210=>536,8211=>536,8212=>894,8213=>1000,8214=>1000,8216=>278,8217=>278,8218=>278,8220=>474,8221=>474,8222=>474,8224=>1000,8225=>1000,8226=>340,8229=>1000,8230=>1000,8231=>1000,8240=>1000,8242=>278,8243=>474,8245=>1000,8249=>302,8250=>302,8251=>1000,8252=>613,8258=>1000,8263=>910,8264=>758,8265=>758,8273=>1000,8308=>411,8361=>555,8363=>555,8364=>555,8413=>0,8414=>0,8448=>1000,8451=>1000,8453=>1000,8457=>1000,8458=>1000,8463=>1000,8467=>457,8470=>997,8481=>1000,8482=>711,8486=>1000,8487=>1000,8491=>1000,8494=>894,8501=>1000,8507=>1000,8544=>1000,8545=>1000,8546=>1000,8547=>1000,8548=>1000,8549=>1000,8550=>1000,8551=>1000,8552=>1000,8553=>1000,8554=>1000,8555=>1000,8560=>1000,8561=>1000,8562=>1000,8563=>1000,8564=>1000,8565=>1000,8566=>1000,8567=>1000,8568=>1000,8569=>1000,8570=>1000,8571=>1000,8592=>1000,8593=>1000,8594=>1000,8595=>1000,8596=>1000,8597=>1000,8598=>1000,8599=>1000,8600=>1000,8601=>1000,8632=>1000,8633=>1000,8644=>1000,8645=>1000,8646=>1000,8651=>1000,8652=>1000,8656=>1000,8658=>1000,8660=>1000,8678=>1000,8679=>1000,8680=>1000,8681=>1000,8693=>1000,8704=>1000,8706=>1000,8707=>1000,8709=>1000,8710=>1000,8711=>1000,8712=>1000,8713=>1000,8714=>1000,8715=>1000,8719=>1000,8721=>1000,8722=>555,8723=>1000,8725=>1000,8730=>1000,8733=>1000,8734=>1000,8735=>1000,8736=>1000,8739=>1000,8741=>1000,8742=>1000,8743=>1000,8744=>1000,8745=>1000,8746=>1000,8747=>1000,8748=>1000,8749=>1000,8750=>1000,8756=>1000,8757=>1000,8758=>1000,8759=>1000,8765=>1000,8771=>1000,8773=>1000,8776=>1000,8780=>1000,8800=>1000,8801=>1000,8802=>1000,8804=>1000,8805=>1000,8806=>1000,8807=>1000,8810=>1000,8811=>1000,8814=>1000,8815=>1000,8818=>1000,8819=>1000,8822=>1000,8823=>1000,8834=>1000,8835=>1000,8836=>1000,8837=>1000,8838=>1000,8839=>1000,8842=>1000,8843=>1000,8853=>1000,8854=>1000,8855=>1000,8856=>1000,8857=>1000,8864=>1000,8869=>1000,8895=>1000,8922=>1000,8923=>1000,8943=>1000,8965=>1000,8966=>1000,8967=>1000,8978=>1000,8984=>1000,9001=>1000,9002=>1000,9136=>1000,9137=>1000,9150=>1000,9151=>1000,9152=>1000,9153=>1000,9154=>1000,9155=>1000,9156=>1000,9157=>1000,9158=>1000,9159=>1000,9160=>1000,9161=>1000,9162=>1000,9163=>1000,9164=>1000,9166=>1000,9178=>1000,9179=>1000,9251=>1000,9312=>1000,9313=>1000,9314=>1000,9315=>1000,9316=>1000,9317=>1000,9318=>1000,9319=>1000,9320=>1000,9321=>1000,9322=>1000,9323=>1000,9324=>1000,9325=>1000,9326=>1000,9327=>1000,9328=>1000,9329=>1000,9330=>1000,9331=>1000,9332=>1000,9333=>1000,9334=>1000,9335=>1000,9336=>1000,9337=>1000,9338=>1000,9339=>1000,9340=>1000,9341=>1000,9342=>1000,9343=>1000,9344=>1000,9345=>1000,9346=>1000,9347=>1000,9348=>1000,9349=>1000,9350=>1000,9351=>1000,9352=>1000,9353=>1000,9354=>1000,9355=>1000,9356=>1000,9357=>1000,9358=>1000,9359=>1000,9360=>1000,9361=>1000,9362=>1000,9363=>1000,9364=>1000,9365=>1000,9366=>1000,9367=>1000,9368=>1000,9369=>1000,9370=>1000,9371=>1000,9372=>1000,9373=>1000,9374=>1000,9375=>1000,9376=>1000,9377=>1000,9378=>1000,9379=>1000,9380=>1000,9381=>1000,9382=>1000,9383=>1000,9384=>1000,9385=>1000,9386=>1000,9387=>1000,9388=>1000,9389=>1000,9390=>1000,9391=>1000,9392=>1000,9393=>1000,9394=>1000,9395=>1000,9396=>1000,9397=>1000,9398=>1000,9399=>1000,9400=>1000,9401=>1000,9402=>1000,9403=>1000,9404=>1000,9405=>1000,9406=>1000,9407=>1000,9408=>1000,9409=>1000,9410=>1000,9411=>1000,9412=>1000,9413=>1000,9414=>1000,9415=>1000,9416=>1000,9417=>1000,9418=>1000,9419=>1000,9420=>1000,9421=>1000,9422=>1000,9423=>1000,9424=>1000,9425=>1000,9426=>1000,9427=>1000,9428=>1000,9429=>1000,9430=>1000,9431=>1000,9432=>1000,9433=>1000,9434=>1000,9435=>1000,9436=>1000,9437=>1000,9438=>1000,9439=>1000,9440=>1000,9441=>1000,9442=>1000,9443=>1000,9444=>1000,9445=>1000,9446=>1000,9447=>1000,9448=>1000,9449=>1000,9450=>1000,9451=>1000,9452=>1000,9453=>1000,9454=>1000,9455=>1000,9456=>1000,9457=>1000,9458=>1000,9459=>1000,9460=>1000,9461=>1000,9462=>1000,9463=>1000,9464=>1000,9465=>1000,9466=>1000,9467=>1000,9468=>1000,9469=>1000,9470=>1000,9471=>1000,9472=>1000,9473=>1000,9474=>1000,9475=>1000,9476=>1000,9477=>1000,9478=>1000,9479=>1000,9480=>1000,9481=>1000,9482=>1000,9483=>1000,9484=>1000,9485=>1000,9486=>1000,9487=>1000,9488=>1000,9489=>1000,9490=>1000,9491=>1000,9492=>1000,9493=>1000,9494=>1000,9495=>1000,9496=>1000,9497=>1000,9498=>1000,9499=>1000,9500=>1000,9501=>1000,9502=>1000,9503=>1000,9504=>1000,9505=>1000,9506=>1000,9507=>1000,9508=>1000,9509=>1000,9510=>1000,9511=>1000,9512=>1000,9513=>1000,9514=>1000,9515=>1000,9516=>1000,9517=>1000,9518=>1000,9519=>1000,9520=>1000,9521=>1000,9522=>1000,9523=>1000,9524=>1000,9525=>1000,9526=>1000,9527=>1000,9528=>1000,9529=>1000,9530=>1000,9531=>1000,9532=>1000,9533=>1000,9534=>1000,9535=>1000,9536=>1000,9537=>1000,9538=>1000,9539=>1000,9540=>1000,9541=>1000,9542=>1000,9543=>1000,9544=>1000,9545=>1000,9546=>1000,9547=>1000,9548=>1000,9549=>1000,9550=>1000,9551=>1000,9552=>1000,9553=>1000,9554=>1000,9555=>1000,9556=>1000,9557=>1000,9558=>1000,9559=>1000,9560=>1000,9561=>1000,9562=>1000,9563=>1000,9564=>1000,9565=>1000,9566=>1000,9567=>1000,9568=>1000,9569=>1000,9570=>1000,9571=>1000,9572=>1000,9573=>1000,9574=>1000,9575=>1000,9576=>1000,9577=>1000,9578=>1000,9579=>1000,9580=>1000,9581=>1000,9582=>1000,9583=>1000,9584=>1000,9585=>1000,9586=>1000,9587=>1000,9588=>1000,9589=>1000,9590=>1000,9591=>1000,9592=>1000,9593=>1000,9594=>1000,9595=>1000,9596=>1000,9597=>1000,9598=>1000,9599=>1000,9600=>1000,9601=>1000,9602=>1000,9603=>1000,9604=>1000,9605=>1000,9606=>1000,9607=>1000,9608=>1000,9609=>1000,9610=>1000,9611=>1000,9612=>1000,9613=>1000,9614=>1000,9615=>1000,9616=>1000,9617=>1000,9618=>1000,9619=>1000,9620=>1000,9621=>1000,9622=>1000,9623=>1000,9624=>1000,9625=>1000,9626=>1000,9627=>1000,9628=>1000,9629=>1000,9630=>1000,9631=>1000,9632=>1000,9633=>1000,9634=>1000,9635=>1000,9636=>1000,9637=>1000,9638=>1000,9639=>1000,9640=>1000,9641=>1000,9642=>1000,9643=>1000,9649=>1000,9650=>1000,9651=>1000,9654=>1000,9655=>1000,9660=>1000,9661=>1000,9664=>1000,9665=>1000,9670=>1000,9671=>1000,9673=>1000,9674=>1000,9675=>1000,9676=>1000,9678=>1000,9679=>1000,9680=>1000,9681=>1000,9682=>1000,9683=>1000,9698=>1000,9699=>1000,9700=>1000,9701=>1000,9702=>1000,9711=>1000,9728=>1000,9729=>1000,9730=>1000,9731=>1000,9733=>1000,9734=>1000,9737=>1000,9742=>1000,9743=>1000,9750=>1000,9751=>1000,9756=>1000,9757=>1000,9758=>1000,9759=>1000,9775=>1000,9792=>1000,9793=>1000,9794=>1000,9824=>1000,9825=>1000,9826=>1000,9827=>1000,9828=>1000,9829=>1000,9830=>1000,9831=>1000,9832=>1000,9833=>1000,9834=>1000,9835=>1000,9836=>1000,9837=>1000,9838=>1000,9839=>1000,9842=>1000,9843=>1000,9844=>1000,9845=>1000,9846=>1000,9847=>1000,9848=>1000,9849=>1000,9850=>1000,9851=>1000,9852=>1000,9853=>1000,9888=>1000,9917=>1000,9918=>1000,9986=>1000,10003=>683,10010=>1000,10045=>1000,10047=>1000,10048=>1000,10070=>1000,10102=>1000,10103=>1000,10104=>1000,10105=>1000,10106=>1000,10107=>1000,10108=>1000,10109=>1000,10110=>1000,10111=>1000,10112=>1000,10113=>1000,10114=>1000,10115=>1000,10116=>1000,10117=>1000,10118=>1000,10119=>1000,10120=>1000,10121=>1000,10122=>1000,10123=>1000,10124=>1000,10125=>1000,10126=>1000,10127=>1000,10128=>1000,10129=>1000,10130=>1000,10131=>1000,10145=>1000,10548=>1000,10549=>1000,10687=>1000,10746=>1000,10747=>1000,11013=>1000,11014=>1000,11015=>1000,11034=>1000,11157=>1000,11834=>1676,11835=>2459,11904=>1000,11905=>1000,11906=>1000,11907=>1000,11908=>1000,11909=>1000,11910=>1000,11911=>1000,11912=>1000,11913=>1000,11914=>1000,11915=>1000,11916=>1000,11917=>1000,11918=>1000,11919=>1000,11920=>1000,11921=>1000,11922=>1000,11923=>1000,11924=>1000,11925=>1000,11926=>1000,11927=>1000,11928=>1000,11929=>1000,11931=>1000,11932=>1000,11933=>1000,11934=>1000,11935=>1000,11936=>1000,11937=>1000,11938=>1000,11939=>1000,11940=>1000,11941=>1000,11942=>1000,11943=>1000,11944=>1000,11945=>1000,11946=>1000,11947=>1000,11948=>1000,11949=>1000,11950=>1000,11951=>1000,11952=>1000,11953=>1000,11954=>1000,11955=>1000,11956=>1000,11957=>1000,11958=>1000,11959=>1000,11960=>1000,11961=>1000,11962=>1000,11963=>1000,11964=>1000,11965=>1000,11966=>1000,11967=>1000,11968=>1000,11969=>1000,11970=>1000,11971=>1000,11972=>1000,11973=>1000,11974=>1000,11975=>1000,11976=>1000,11977=>1000,11978=>1000,11979=>1000,11980=>1000,11981=>1000,11982=>1000,11983=>1000,11984=>1000,11985=>1000,11986=>1000,11987=>1000,11988=>1000,11989=>1000,11990=>1000,11991=>1000,11992=>1000,11993=>1000,11994=>1000,11995=>1000,11996=>1000,11997=>1000,11998=>1000,11999=>1000,12000=>1000,12001=>1000,12002=>1000,12003=>1000,12004=>1000,12005=>1000,12006=>1000,12007=>1000,12008=>1000,12009=>1000,12010=>1000,12011=>1000,12012=>1000,12013=>1000,12014=>1000,12015=>1000,12016=>1000,12017=>1000,12018=>1000,12019=>1000,12032=>1000,12033=>1000,12034=>1000,12035=>1000,12036=>1000,12037=>1000,12038=>1000,12039=>1000,12040=>1000,12041=>1000,12042=>1000,12043=>1000,12044=>1000,12045=>1000,12046=>1000,12047=>1000,12048=>1000,12049=>1000,12050=>1000,12051=>1000,12052=>1000,12053=>1000,12054=>1000,12055=>1000,12056=>1000,12057=>1000,12058=>1000,12059=>1000,12060=>1000,12061=>1000,12062=>1000,12063=>1000,12064=>1000,12065=>1000,12066=>1000,12067=>1000,12068=>1000,12069=>1000,12070=>1000,12071=>1000,12072=>1000,12073=>1000,12074=>1000,12075=>1000,12076=>1000,12077=>1000,12078=>1000,12079=>1000,12080=>1000,12081=>1000,12082=>1000,12083=>1000,12084=>1000,12085=>1000,12086=>1000,12087=>1000,12088=>1000,12089=>1000,12090=>1000,12091=>1000,12092=>1000,12093=>1000,12094=>1000,12095=>1000,12096=>1000,12097=>1000,12098=>1000,12099=>1000,12100=>1000,12101=>1000,12102=>1000,12103=>1000,12104=>1000,12105=>1000,12106=>1000,12107=>1000,12108=>1000,12109=>1000,12110=>1000,12111=>1000,12112=>1000,12113=>1000,12114=>1000,12115=>1000,12116=>1000,12117=>1000,12118=>1000,12119=>1000,12120=>1000,12121=>1000,12122=>1000,12123=>1000,12124=>1000,12125=>1000,12126=>1000,12127=>1000,12128=>1000,12129=>1000,12130=>1000,12131=>1000,12132=>1000,12133=>1000,12134=>1000,12135=>1000,12136=>1000,12137=>1000,12138=>1000,12139=>1000,12140=>1000,12141=>1000,12142=>1000,12143=>1000,12144=>1000,12145=>1000,12146=>1000,12147=>1000,12148=>1000,12149=>1000,12150=>1000,12151=>1000,12152=>1000,12153=>1000,12154=>1000,12155=>1000,12156=>1000,12157=>1000,12158=>1000,12159=>1000,12160=>1000,12161=>1000,12162=>1000,12163=>1000,12164=>1000,12165=>1000,12166=>1000,12167=>1000,12168=>1000,12169=>1000,12170=>1000,12171=>1000,12172=>1000,12173=>1000,12174=>1000,12175=>1000,12176=>1000,12177=>1000,12178=>1000,12179=>1000,12180=>1000,12181=>1000,12182=>1000,12183=>1000,12184=>1000,12185=>1000,12186=>1000,12187=>1000,12188=>1000,12189=>1000,12190=>1000,12191=>1000,12192=>1000,12193=>1000,12194=>1000,12195=>1000,12196=>1000,12197=>1000,12198=>1000,12199=>1000,12200=>1000,12201=>1000,12202=>1000,12203=>1000,12204=>1000,12205=>1000,12206=>1000,12207=>1000,12208=>1000,12209=>1000,12210=>1000,12211=>1000,12212=>1000,12213=>1000,12214=>1000,12215=>1000,12216=>1000,12217=>1000,12218=>1000,12219=>1000,12220=>1000,12221=>1000,12222=>1000,12223=>1000,12224=>1000,12225=>1000,12226=>1000,12227=>1000,12228=>1000,12229=>1000,12230=>1000,12231=>1000,12232=>1000,12233=>1000,12234=>1000,12235=>1000,12236=>1000,12237=>1000,12238=>1000,12239=>1000,12240=>1000,12241=>1000,12242=>1000,12243=>1000,12244=>1000,12245=>1000,12272=>1000,12273=>1000,12274=>1000,12275=>1000,12276=>1000,12277=>1000,12278=>1000,12279=>1000,12280=>1000,12281=>1000,12282=>1000,12283=>1000,12288=>1000,12289=>1000,12290=>1000,12291=>1000,12292=>1000,12293=>1000,12294=>1000,12295=>1000,12296=>1000,12297=>1000,12298=>1000,12299=>1000,12300=>1000,12301=>1000,12302=>1000,12303=>1000,12304=>1000,12305=>1000,12306=>1000,12307=>1000,12308=>1000,12309=>1000,12310=>1000,12311=>1000,12312=>1000,12313=>1000,12314=>1000,12315=>1000,12316=>1000,12317=>1000,12318=>1000,12319=>1000,12320=>1000,12321=>1000,12322=>1000,12323=>1000,12324=>1000,12325=>1000,12326=>1000,12327=>1000,12328=>1000,12329=>1000,12330=>0,12331=>0,12332=>0,12333=>0,12334=>250,12335=>250,12336=>1000,12337=>1000,12338=>1000,12339=>1000,12340=>1000,12341=>1000,12342=>1000,12343=>1000,12344=>1000,12345=>1000,12346=>1000,12347=>1000,12348=>1000,12349=>1000,12350=>1000,12351=>1000,12353=>1000,12354=>1000,12355=>1000,12356=>1000,12357=>1000,12358=>1000,12359=>1000,12360=>1000,12361=>1000,12362=>1000,12363=>1000,12364=>1000,12365=>1000,12366=>1000,12367=>1000,12368=>1000,12369=>1000,12370=>1000,12371=>1000,12372=>1000,12373=>1000,12374=>1000,12375=>1000,12376=>1000,12377=>1000,12378=>1000,12379=>1000,12380=>1000,12381=>1000,12382=>1000,12383=>1000,12384=>1000,12385=>1000,12386=>1000,12387=>1000,12388=>1000,12389=>1000,12390=>1000,12391=>1000,12392=>1000,12393=>1000,12394=>1000,12395=>1000,12396=>1000,12397=>1000,12398=>1000,12399=>1000,12400=>1000,12401=>1000,12402=>1000,12403=>1000,12404=>1000,12405=>1000,12406=>1000,12407=>1000,12408=>1000,12409=>1000,12410=>1000,12411=>1000,12412=>1000,12413=>1000,12414=>1000,12415=>1000,12416=>1000,12417=>1000,12418=>1000,12419=>1000,12420=>1000,12421=>1000,12422=>1000,12423=>1000,12424=>1000,12425=>1000,12426=>1000,12427=>1000,12428=>1000,12429=>1000,12430=>1000,12431=>1000,12432=>1000,12433=>1000,12434=>1000,12435=>1000,12436=>1000,12437=>1000,12438=>1000,12441=>0,12442=>0,12443=>1000,12444=>1000,12445=>1000,12446=>1000,12447=>1000,12448=>1000,12449=>1000,12450=>1000,12451=>1000,12452=>1000,12453=>1000,12454=>1000,12455=>1000,12456=>1000,12457=>1000,12458=>1000,12459=>1000,12460=>1000,12461=>1000,12462=>1000,12463=>1000,12464=>1000,12465=>1000,12466=>1000,12467=>1000,12468=>1000,12469=>1000,12470=>1000,12471=>1000,12472=>1000,12473=>1000,12474=>1000,12475=>1000,12476=>1000,12477=>1000,12478=>1000,12479=>1000,12480=>1000,12481=>1000,12482=>1000,12483=>1000,12484=>1000,12485=>1000,12486=>1000,12487=>1000,12488=>1000,12489=>1000,12490=>1000,12491=>1000,12492=>1000,12493=>1000,12494=>1000,12495=>1000,12496=>1000,12497=>1000,12498=>1000,12499=>1000,12500=>1000,12501=>1000,12502=>1000,12503=>1000,12504=>1000,12505=>1000,12506=>1000,12507=>1000,12508=>1000,12509=>1000,12510=>1000,12511=>1000,12512=>1000,12513=>1000,12514=>1000,12515=>1000,12516=>1000,12517=>1000,12518=>1000,12519=>1000,12520=>1000,12521=>1000,12522=>1000,12523=>1000,12524=>1000,12525=>1000,12526=>1000,12527=>1000,12528=>1000,12529=>1000,12530=>1000,12531=>1000,12532=>1000,12533=>1000,12534=>1000,12535=>1000,12536=>1000,12537=>1000,12538=>1000,12539=>1000,12540=>1000,12541=>1000,12542=>1000,12543=>1000,12549=>1000,12550=>1000,12551=>1000,12552=>1000,12553=>1000,12554=>1000,12555=>1000,12556=>1000,12557=>1000,12558=>1000,12559=>1000,12560=>1000,12561=>1000,12562=>1000,12563=>1000,12564=>1000,12565=>1000,12566=>1000,12567=>1000,12568=>1000,12569=>1000,12570=>1000,12571=>1000,12572=>1000,12573=>1000,12574=>1000,12575=>1000,12576=>1000,12577=>1000,12578=>1000,12579=>1000,12580=>1000,12581=>1000,12582=>1000,12583=>1000,12584=>1000,12585=>1000,12586=>1000,12587=>1000,12588=>1000,12589=>1000,12590=>1000,12591=>1000,12593=>920,12594=>920,12595=>920,12596=>920,12597=>920,12598=>920,12599=>920,12600=>920,12601=>920,12602=>920,12603=>920,12604=>920,12605=>920,12606=>920,12607=>920,12608=>920,12609=>920,12610=>920,12611=>920,12612=>920,12613=>920,12614=>920,12615=>920,12616=>920,12617=>920,12618=>920,12619=>920,12620=>920,12621=>920,12622=>920,12623=>920,12624=>920,12625=>920,12626=>920,12627=>920,12628=>920,12629=>920,12630=>920,12631=>920,12632=>920,12633=>920,12634=>920,12635=>920,12636=>920,12637=>920,12638=>920,12639=>920,12640=>920,12641=>920,12642=>920,12643=>920,12645=>920,12646=>920,12647=>920,12648=>920,12649=>920,12650=>920,12651=>920,12652=>920,12653=>920,12654=>920,12655=>920,12656=>920,12657=>920,12658=>920,12659=>920,12660=>920,12661=>920,12662=>920,12663=>920,12664=>920,12665=>920,12666=>920,12667=>920,12668=>920,12669=>920,12670=>920,12671=>920,12672=>920,12673=>920,12674=>920,12675=>920,12676=>920,12677=>920,12678=>920,12679=>920,12680=>920,12681=>920,12682=>920,12683=>920,12684=>920,12685=>920,12686=>920,12688=>1000,12689=>1000,12690=>1000,12691=>1000,12692=>1000,12693=>1000,12694=>1000,12695=>1000,12696=>1000,12697=>1000,12698=>1000,12699=>1000,12700=>1000,12701=>1000,12702=>1000,12703=>1000,12704=>1000,12705=>1000,12706=>1000,12707=>1000,12708=>1000,12709=>1000,12710=>1000,12711=>1000,12712=>1000,12713=>1000,12714=>1000,12715=>1000,12716=>1000,12717=>1000,12718=>1000,12719=>1000,12720=>1000,12721=>1000,12722=>1000,12723=>1000,12724=>600,12725=>600,12726=>600,12727=>600,12728=>1000,12729=>1000,12730=>1000,12731=>600,12736=>1000,12737=>1000,12738=>1000,12739=>1000,12740=>1000,12741=>1000,12742=>1000,12743=>1000,12744=>1000,12745=>1000,12746=>1000,12747=>1000,12748=>1000,12749=>1000,12750=>1000,12751=>1000,12752=>1000,12753=>1000,12754=>1000,12755=>1000,12756=>1000,12757=>1000,12758=>1000,12759=>1000,12760=>1000,12761=>1000,12762=>1000,12763=>1000,12764=>1000,12765=>1000,12766=>1000,12767=>1000,12768=>1000,12769=>1000,12770=>1000,12771=>1000,12784=>1000,12785=>1000,12786=>1000,12787=>1000,12788=>1000,12789=>1000,12790=>1000,12791=>1000,12792=>1000,12793=>1000,12794=>1000,12795=>1000,12796=>1000,12797=>1000,12798=>1000,12799=>1000,12800=>1000,12801=>1000,12802=>1000,12803=>1000,12804=>1000,12805=>1000,12806=>1000,12807=>1000,12808=>1000,12809=>1000,12810=>1000,12811=>1000,12812=>1000,12813=>1000,12814=>1000,12815=>1000,12816=>1000,12817=>1000,12818=>1000,12819=>1000,12820=>1000,12821=>1000,12822=>1000,12823=>1000,12824=>1000,12825=>1000,12826=>1000,12827=>1000,12828=>1000,12829=>1000,12830=>1000,12832=>1000,12833=>1000,12834=>1000,12835=>1000,12836=>1000,12837=>1000,12838=>1000,12839=>1000,12840=>1000,12841=>1000,12842=>1000,12843=>1000,12844=>1000,12845=>1000,12846=>1000,12847=>1000,12848=>1000,12849=>1000,12850=>1000,12851=>1000,12852=>1000,12853=>1000,12854=>1000,12855=>1000,12856=>1000,12857=>1000,12858=>1000,12859=>1000,12860=>1000,12861=>1000,12862=>1000,12863=>1000,12864=>1000,12865=>1000,12866=>1000,12867=>1000,12868=>1000,12869=>1000,12870=>1000,12871=>1000,12872=>1000,12873=>1000,12874=>1000,12875=>1000,12876=>1000,12877=>1000,12878=>1000,12879=>1000,12880=>1000,12881=>1000,12882=>1000,12883=>1000,12884=>1000,12885=>1000,12886=>1000,12887=>1000,12888=>1000,12889=>1000,12890=>1000,12891=>1000,12892=>1000,12893=>1000,12894=>1000,12895=>1000,12896=>1000,12897=>1000,12898=>1000,12899=>1000,12900=>1000,12901=>1000,12902=>1000,12903=>1000,12904=>1000,12905=>1000,12906=>1000,12907=>1000,12908=>1000,12909=>1000,12910=>1000,12911=>1000,12912=>1000,12913=>1000,12914=>1000,12915=>1000,12916=>1000,12917=>1000,12918=>1000,12919=>1000,12920=>1000,12921=>1000,12922=>1000,12923=>1000,12924=>1000,12925=>1000,12926=>1000,12927=>1000,12928=>1000,12929=>1000,12930=>1000,12931=>1000,12932=>1000,12933=>1000,12934=>1000,12935=>1000,12936=>1000,12937=>1000,12938=>1000,12939=>1000,12940=>1000,12941=>1000,12942=>1000,12943=>1000,12944=>1000,12945=>1000,12946=>1000,12947=>1000,12948=>1000,12949=>1000,12950=>1000,12951=>1000,12952=>1000,12953=>1000,12954=>1000,12955=>1000,12956=>1000,12957=>1000,12958=>1000,12959=>1000,12960=>1000,12961=>1000,12962=>1000,12963=>1000,12964=>1000,12965=>1000,12966=>1000,12967=>1000,12968=>1000,12969=>1000,12970=>1000,12971=>1000,12972=>1000,12973=>1000,12974=>1000,12975=>1000,12976=>1000,12977=>1000,12978=>1000,12979=>1000,12980=>1000,12981=>1000,12982=>1000,12983=>1000,12984=>1000,12985=>1000,12986=>1000,12987=>1000,12988=>1000,12989=>1000,12990=>1000,12991=>1000,12992=>1000,12993=>1000,12994=>1000,12995=>1000,12996=>1000,12997=>1000,12998=>1000,12999=>1000,13000=>1000,13001=>1000,13002=>1000,13003=>1000,13004=>1000,13005=>1000,13006=>1000,13007=>1000,13008=>1000,13009=>1000,13010=>1000,13011=>1000,13012=>1000,13013=>1000,13014=>1000,13015=>1000,13016=>1000,13017=>1000,13018=>1000,13019=>1000,13020=>1000,13021=>1000,13022=>1000,13023=>1000,13024=>1000,13025=>1000,13026=>1000,13027=>1000,13028=>1000,13029=>1000,13030=>1000,13031=>1000,13032=>1000,13033=>1000,13034=>1000,13035=>1000,13036=>1000,13037=>1000,13038=>1000,13039=>1000,13040=>1000,13041=>1000,13042=>1000,13043=>1000,13044=>1000,13045=>1000,13046=>1000,13047=>1000,13048=>1000,13049=>1000,13050=>1000,13051=>1000,13052=>1000,13053=>1000,13054=>1000,13055=>1000,13056=>1000,13057=>1000,13058=>1000,13059=>1000,13060=>1000,13061=>1000,13062=>1000,13063=>1000,13064=>1000,13065=>1000,13066=>1000,13067=>1000,13068=>1000,13069=>1000,13070=>1000,13071=>1000,13072=>1000,13073=>1000,13074=>1000,13075=>1000,13076=>1000,13077=>1000,13078=>1000,13079=>1000,13080=>1000,13081=>1000,13082=>1000,13083=>1000,13084=>1000,13085=>1000,13086=>1000,13087=>1000,13088=>1000,13089=>1000,13090=>1000,13091=>1000,13092=>1000,13093=>1000,13094=>1000,13095=>1000,13096=>1000,13097=>1000,13098=>1000,13099=>1000,13101=>1000,13102=>1000,13103=>1000,13104=>1000,13105=>1000,13106=>1000,13107=>1000,13108=>1000,13109=>1000,13110=>1000,13111=>1000,13112=>1000,13113=>1000,13114=>1000,13115=>1000,13116=>1000,13117=>1000,13118=>1000,13119=>1000,13120=>1000,13121=>1000,13122=>1000,13123=>1000,13124=>1000,13125=>1000,13126=>1000,13127=>1000,13128=>1000,13129=>1000,13130=>1000,13131=>1000,13132=>1000,13133=>1000,13134=>1000,13135=>1000,13136=>1000,13137=>1000,13138=>1000,13139=>1000,13140=>1000,13141=>1000,13142=>1000,13143=>1000,13144=>1000,13145=>1000,13146=>1000,13147=>1000,13148=>1000,13149=>1000,13150=>1000,13151=>1000,13152=>1000,13153=>1000,13154=>1000,13155=>1000,13156=>1000,13157=>1000,13158=>1000,13159=>1000,13160=>1000,13161=>1000,13162=>1000,13163=>1000,13164=>1000,13165=>1000,13166=>1000,13167=>1000,13168=>1000,13169=>1000,13170=>1000,13171=>1000,13172=>1000,13173=>1000,13174=>1000,13175=>1000,13176=>1000,13177=>1000,13178=>1000,13179=>1000,13180=>1000,13181=>1000,13182=>1000,13183=>1000,13184=>1000,13185=>1000,13186=>1000,13187=>1000,13188=>1000,13189=>1000,13190=>1000,13191=>1000,13192=>1000,13193=>1000,13194=>1000,13195=>1000,13196=>1000,13197=>1000,13198=>1000,13199=>1000,13200=>1000,13201=>1000,13202=>1000,13203=>1000,13204=>1000,13205=>1000,13206=>1000,13207=>1000,13208=>1000,13209=>1000,13210=>1000,13211=>1000,13212=>1000,13213=>1000,13214=>1000,13215=>1000,13216=>1000,13217=>1000,13218=>1000,13219=>1000,13220=>1000,13221=>1000,13222=>1000,13223=>1000,13224=>1000,13225=>1000,13226=>1000,13227=>1000,13228=>1000,13229=>1000,13230=>1000,13231=>1000,13232=>1000,13233=>1000,13234=>1000,13235=>1000,13236=>1000,13237=>1000,13238=>1000,13239=>1000,13240=>1000,13241=>1000,13242=>1000,13243=>1000,13244=>1000,13245=>1000,13246=>1000,13247=>1000,13248=>1000,13249=>1000,13250=>1000,13251=>1000,13252=>1000,13253=>1000,13254=>1000,13255=>1000,13256=>1000,13257=>1000,13258=>1000,13259=>1000,13260=>1000,13261=>1000,13262=>1000,13263=>1000,13264=>1000,13265=>1000,13266=>1000,13267=>1000,13268=>1000,13269=>1000,13270=>1000,13271=>1000,13272=>1000,13273=>1000,13274=>1000,13275=>1000,13276=>1000,13277=>1000,13278=>1000,13279=>1000,13280=>1000,13281=>1000,13282=>1000,13283=>1000,13284=>1000,13285=>1000,13286=>1000,13287=>1000,13288=>1000,13289=>1000,13290=>1000,13291=>1000,13292=>1000,13293=>1000,13294=>1000,13295=>1000,13296=>1000,13297=>1000,13298=>1000,13299=>1000,13300=>1000,13301=>1000,13302=>1000,13303=>1000,13304=>1000,13305=>1000,13306=>1000,13307=>1000,13308=>1000,13309=>1000,13310=>1000,13311=>1000,13314=>1000,13317=>1000,13318=>1000,13351=>1000,13356=>1000,13358=>1000,13416=>1000,13418=>1000,13448=>1000,13458=>1000,13493=>1000,13500=>1000,13505=>1000,13511=>1000,13531=>1000,13599=>1000,13630=>1000,13661=>1000,13662=>1000,13667=>1000,13678=>1000,13734=>1000,13736=>1000,13765=>1000,13786=>1000,13790=>1000,13812=>1000,13829=>1000,13844=>1000,13898=>1000,13969=>1000,13974=>1000,13977=>1000,14031=>1000,14177=>1000,14178=>1000,14187=>1000,14188=>1000,14197=>1000,14221=>1000,14273=>1000,14306=>1000,14312=>1000,14324=>1000,14333=>1000,14336=>1000,14383=>1000,14390=>1000,14400=>1000,14428=>1000,14433=>1000,14497=>1000,14509=>1000,14586=>1000,14615=>1000,14618=>1000,14703=>1000,14756=>1000,14776=>1000,14940=>1000,14958=>1000,14963=>1000,14981=>1000,15044=>1000,15051=>1000,15062=>1000,15063=>1000,15082=>1000,15091=>1000,15118=>1000,15130=>1000,15132=>1000,15138=>1000,15157=>1000,15213=>1000,15223=>1000,15239=>1000,15240=>1000,15245=>1000,15268=>1000,15286=>1000,15299=>1000,15309=>1000,15344=>1000,15347=>1000,15375=>1000,15398=>1000,15555=>1000,15570=>1000,15633=>1000,15646=>1000,15665=>1000,15694=>1000,15716=>1000,15770=>1000,15808=>1000,15820=>1000,15828=>1000,15877=>1000,15935=>1000,15936=>1000,15968=>1000,15974=>1000,15976=>1000,16003=>1000,16010=>1000,16020=>1000,16090=>1000,16215=>1000,16242=>1000,16245=>1000,16247=>1000,16302=>1000,16305=>1000,16329=>1000,16343=>1000,16348=>1000,16441=>1000,16472=>1000,16531=>1000,16643=>1000,16645=>1000,16712=>1000,16719=>1000,16739=>1000,16820=>1000,16831=>1000,16870=>1000,16878=>1000,16883=>1000,16903=>1000,16910=>1000,16996=>1000,17043=>1000,17094=>1000,17110=>1000,17117=>1000,17154=>1000,17195=>1000,17219=>1000,17390=>1000,17392=>1000,17416=>1000,17420=>1000,17431=>1000,17436=>1000,17442=>1000,17491=>1000,17499=>1000,17526=>1000,17530=>1000,17553=>1000,17587=>1000,17598=>1000,17620=>1000,17672=>1000,17677=>1000,17701=>1000,17731=>1000,17786=>1000,17821=>1000,17848=>1000,17854=>1000,17893=>1000,17898=>1000,17935=>1000,17936=>1000,17985=>1000,18021=>1000,18081=>1000,18094=>1000,18095=>1000,18188=>1000,18207=>1000,18276=>1000,18406=>1000,18429=>1000,18454=>1000,18462=>1000,18500=>1000,18510=>1000,18613=>1000,18864=>1000,18919=>1000,18938=>1000,18948=>1000,18985=>1000,19132=>1000,19256=>1000,19259=>1000,19326=>1000,19394=>1000,19402=>1000,19410=>1000,19432=>1000,19479=>1000,19488=>1000,19512=>1000,19652=>1000,19665=>1000,19681=>1000,19719=>1000,19831=>1000,19968=>1000,19969=>1000,19970=>1000,19971=>1000,19972=>1000,19973=>1000,19975=>1000,19976=>1000,19977=>1000,19978=>1000,19979=>1000,19980=>1000,19981=>1000,19982=>1000,19983=>1000,19984=>1000,19985=>1000,19986=>1000,19988=>1000,19989=>1000,19990=>1000,19991=>1000,19992=>1000,19993=>1000,19998=>1000,19999=>1000,20001=>1000,20003=>1000,20004=>1000,20006=>1000,20008=>1000,20009=>1000,20010=>1000,20011=>1000,20012=>1000,20013=>1000,20014=>1000,20015=>1000,20016=>1000,20017=>1000,20018=>1000,20021=>1000,20022=>1000,20023=>1000,20024=>1000,20025=>1000,20027=>1000,20028=>1000,20031=>1000,20032=>1000,20033=>1000,20034=>1000,20035=>1000,20036=>1000,20037=>1000,20039=>1000,20040=>1000,20043=>1000,20045=>1000,20046=>1000,20047=>1000,20049=>1000,20053=>1000,20054=>1000,20055=>1000,20056=>1000,20057=>1000,20058=>1000,20059=>1000,20060=>1000,20061=>1000,20062=>1000,20063=>1000,20066=>1000,20067=>1000,20072=>1000,20073=>1000,20081=>1000,20083=>1000,20084=>1000,20085=>1000,20089=>1000,20094=>1000,20095=>1000,20096=>1000,20098=>1000,20101=>1000,20102=>1000,20104=>1000,20105=>1000,20106=>1000,20107=>1000,20108=>1000,20109=>1000,20110=>1000,20113=>1000,20114=>1000,20116=>1000,20117=>1000,20118=>1000,20119=>1000,20120=>1000,20121=>1000,20123=>1000,20124=>1000,20125=>1000,20126=>1000,20127=>1000,20128=>1000,20129=>1000,20130=>1000,20132=>1000,20133=>1000,20134=>1000,20136=>1000,20139=>1000,20140=>1000,20141=>1000,20142=>1000,20143=>1000,20144=>1000,20147=>1000,20150=>1000,20153=>1000,20154=>1000,20155=>1000,20156=>1000,20160=>1000,20161=>1000,20162=>1000,20163=>1000,20164=>1000,20166=>1000,20167=>1000,20168=>1000,20170=>1000,20171=>1000,20173=>1000,20174=>1000,20175=>1000,20176=>1000,20180=>1000,20181=>1000,20182=>1000,20183=>1000,20184=>1000,20185=>1000,20186=>1000,20187=>1000,20189=>1000,20190=>1000,20191=>1000,20192=>1000,20193=>1000,20194=>1000,20195=>1000,20196=>1000,20197=>1000,20200=>1000,20203=>1000,20205=>1000,20206=>1000,20207=>1000,20208=>1000,20209=>1000,20210=>1000,20211=>1000,20213=>1000,20214=>1000,20215=>1000,20219=>1000,20220=>1000,20221=>1000,20222=>1000,20223=>1000,20224=>1000,20225=>1000,20226=>1000,20227=>1000,20232=>1000,20233=>1000,20234=>1000,20235=>1000,20236=>1000,20237=>1000,20238=>1000,20239=>1000,20240=>1000,20241=>1000,20242=>1000,20245=>1000,20246=>1000,20247=>1000,20249=>1000,20250=>1000,20252=>1000,20253=>1000,20267=>1000,20270=>1000,20271=>1000,20272=>1000,20273=>1000,20275=>1000,20276=>1000,20277=>1000,20278=>1000,20279=>1000,20280=>1000,20281=>1000,20282=>1000,20283=>1000,20284=>1000,20285=>1000,20286=>1000,20288=>1000,20290=>1000,20291=>1000,20294=>1000,20295=>1000,20296=>1000,20297=>1000,20299=>1000,20300=>1000,20301=>1000,20302=>1000,20303=>1000,20304=>1000,20305=>1000,20306=>1000,20307=>1000,20308=>1000,20309=>1000,20310=>1000,20311=>1000,20312=>1000,20313=>1000,20314=>1000,20315=>1000,20316=>1000,20317=>1000,20318=>1000,20319=>1000,20320=>1000,20323=>1000,20324=>1000,20329=>1000,20330=>1000,20332=>1000,20334=>1000,20335=>1000,20336=>1000,20337=>1000,20339=>1000,20341=>1000,20342=>1000,20343=>1000,20344=>1000,20345=>1000,20346=>1000,20347=>1000,20348=>1000,20349=>1000,20350=>1000,20351=>1000,20353=>1000,20354=>1000,20355=>1000,20356=>1000,20357=>1000,20358=>1000,20360=>1000,20361=>1000,20362=>1000,20363=>1000,20364=>1000,20365=>1000,20366=>1000,20367=>1000,20368=>1000,20369=>1000,20370=>1000,20371=>1000,20372=>1000,20374=>1000,20375=>1000,20376=>1000,20377=>1000,20378=>1000,20379=>1000,20381=>1000,20382=>1000,20383=>1000,20384=>1000,20385=>1000,20395=>1000,20397=>1000,20398=>1000,20399=>1000,20402=>1000,20405=>1000,20406=>1000,20407=>1000,20409=>1000,20411=>1000,20412=>1000,20413=>1000,20414=>1000,20415=>1000,20416=>1000,20417=>1000,20418=>1000,20419=>1000,20420=>1000,20421=>1000,20422=>1000,20424=>1000,20425=>1000,20426=>1000,20427=>1000,20428=>1000,20429=>1000,20430=>1000,20431=>1000,20432=>1000,20433=>1000,20434=>1000,20435=>1000,20436=>1000,20439=>1000,20440=>1000,20442=>1000,20443=>1000,20444=>1000,20445=>1000,20447=>1000,20448=>1000,20449=>1000,20450=>1000,20451=>1000,20452=>1000,20453=>1000,20454=>1000,20462=>1000,20463=>1000,20464=>1000,20465=>1000,20466=>1000,20467=>1000,20469=>1000,20470=>1000,20472=>1000,20474=>1000,20476=>1000,20477=>1000,20478=>1000,20479=>1000,20480=>1000,20481=>1000,20482=>1000,20484=>1000,20485=>1000,20486=>1000,20487=>1000,20489=>1000,20490=>1000,20491=>1000,20492=>1000,20493=>1000,20494=>1000,20495=>1000,20496=>1000,20497=>1000,20498=>1000,20499=>1000,20500=>1000,20502=>1000,20503=>1000,20504=>1000,20505=>1000,20506=>1000,20507=>1000,20508=>1000,20509=>1000,20510=>1000,20511=>1000,20513=>1000,20514=>1000,20515=>1000,20516=>1000,20517=>1000,20518=>1000,20519=>1000,20520=>1000,20521=>1000,20522=>1000,20523=>1000,20524=>1000,20525=>1000,20526=>1000,20528=>1000,20530=>1000,20531=>1000,20533=>1000,20534=>1000,20537=>1000,20539=>1000,20544=>1000,20545=>1000,20546=>1000,20547=>1000,20549=>1000,20550=>1000,20551=>1000,20552=>1000,20553=>1000,20554=>1000,20556=>1000,20558=>1000,20559=>1000,20560=>1000,20561=>1000,20562=>1000,20563=>1000,20565=>1000,20566=>1000,20567=>1000,20569=>1000,20570=>1000,20572=>1000,20575=>1000,20576=>1000,20578=>1000,20579=>1000,20581=>1000,20582=>1000,20583=>1000,20586=>1000,20588=>1000,20589=>1000,20592=>1000,20593=>1000,20594=>1000,20596=>1000,20597=>1000,20598=>1000,20599=>1000,20600=>1000,20605=>1000,20608=>1000,20609=>1000,20611=>1000,20612=>1000,20613=>1000,20614=>1000,20616=>1000,20618=>1000,20621=>1000,20622=>1000,20623=>1000,20624=>1000,20625=>1000,20626=>1000,20627=>1000,20628=>1000,20629=>1000,20630=>1000,20632=>1000,20633=>1000,20634=>1000,20635=>1000,20636=>1000,20638=>1000,20639=>1000,20640=>1000,20641=>1000,20642=>1000,20643=>1000,20650=>1000,20652=>1000,20653=>1000,20655=>1000,20656=>1000,20657=>1000,20658=>1000,20659=>1000,20660=>1000,20661=>1000,20663=>1000,20665=>1000,20666=>1000,20667=>1000,20669=>1000,20670=>1000,20672=>1000,20674=>1000,20675=>1000,20676=>1000,20677=>1000,20679=>1000,20681=>1000,20682=>1000,20684=>1000,20685=>1000,20686=>1000,20687=>1000,20688=>1000,20689=>1000,20691=>1000,20692=>1000,20693=>1000,20694=>1000,20696=>1000,20697=>1000,20698=>1000,20700=>1000,20701=>1000,20702=>1000,20703=>1000,20705=>1000,20706=>1000,20707=>1000,20708=>1000,20709=>1000,20710=>1000,20711=>1000,20712=>1000,20713=>1000,20717=>1000,20718=>1000,20719=>1000,20720=>1000,20721=>1000,20722=>1000,20723=>1000,20724=>1000,20725=>1000,20726=>1000,20729=>1000,20730=>1000,20731=>1000,20734=>1000,20736=>1000,20737=>1000,20738=>1000,20739=>1000,20740=>1000,20742=>1000,20743=>1000,20744=>1000,20745=>1000,20747=>1000,20748=>1000,20749=>1000,20750=>1000,20752=>1000,20754=>1000,20756=>1000,20757=>1000,20758=>1000,20759=>1000,20760=>1000,20761=>1000,20762=>1000,20763=>1000,20764=>1000,20765=>1000,20766=>1000,20767=>1000,20769=>1000,20771=>1000,20775=>1000,20776=>1000,20778=>1000,20780=>1000,20781=>1000,20783=>1000,20785=>1000,20786=>1000,20787=>1000,20788=>1000,20789=>1000,20791=>1000,20792=>1000,20793=>1000,20794=>1000,20795=>1000,20796=>1000,20799=>1000,20800=>1000,20801=>1000,20802=>1000,20803=>1000,20804=>1000,20805=>1000,20806=>1000,20807=>1000,20808=>1000,20809=>1000,20810=>1000,20811=>1000,20812=>1000,20813=>1000,20814=>1000,20815=>1000,20816=>1000,20818=>1000,20819=>1000,20820=>1000,20821=>1000,20823=>1000,20824=>1000,20826=>1000,20828=>1000,20831=>1000,20832=>1000,20834=>1000,20836=>1000,20837=>1000,20838=>1000,20839=>1000,20840=>1000,20841=>1000,20842=>1000,20843=>1000,20844=>1000,20845=>1000,20846=>1000,20849=>1000,20851=>1000,20852=>1000,20853=>1000,20854=>1000,20855=>1000,20856=>1000,20857=>1000,20859=>1000,20860=>1000,20862=>1000,20864=>1000,20866=>1000,20867=>1000,20868=>1000,20869=>1000,20870=>1000,20873=>1000,20874=>1000,20875=>1000,20876=>1000,20877=>1000,20878=>1000,20879=>1000,20880=>1000,20881=>1000,20882=>1000,20883=>1000,20885=>1000,20886=>1000,20887=>1000,20888=>1000,20889=>1000,20893=>1000,20896=>1000,20897=>1000,20898=>1000,20899=>1000,20900=>1000,20901=>1000,20902=>1000,20904=>1000,20905=>1000,20906=>1000,20907=>1000,20908=>1000,20909=>1000,20912=>1000,20913=>1000,20914=>1000,20915=>1000,20916=>1000,20917=>1000,20918=>1000,20919=>1000,20920=>1000,20922=>1000,20924=>1000,20925=>1000,20926=>1000,20927=>1000,20930=>1000,20931=>1000,20932=>1000,20933=>1000,20934=>1000,20936=>1000,20937=>1000,20938=>1000,20939=>1000,20940=>1000,20941=>1000,20943=>1000,20945=>1000,20946=>1000,20947=>1000,20948=>1000,20949=>1000,20950=>1000,20952=>1000,20955=>1000,20956=>1000,20957=>1000,20958=>1000,20959=>1000,20960=>1000,20961=>1000,20962=>1000,20965=>1000,20966=>1000,20967=>1000,20969=>1000,20970=>1000,20972=>1000,20973=>1000,20974=>1000,20976=>1000,20977=>1000,20978=>1000,20979=>1000,20980=>1000,20981=>1000,20982=>1000,20983=>1000,20984=>1000,20985=>1000,20986=>1000,20989=>1000,20990=>1000,20992=>1000,20993=>1000,20994=>1000,20995=>1000,20996=>1000,20997=>1000,20998=>1000,20999=>1000,21000=>1000,21002=>1000,21003=>1000,21006=>1000,21009=>1000,21010=>1000,21011=>1000,21012=>1000,21013=>1000,21014=>1000,21015=>1000,21016=>1000,21021=>1000,21026=>1000,21028=>1000,21029=>1000,21030=>1000,21031=>1000,21032=>1000,21033=>1000,21034=>1000,21035=>1000,21038=>1000,21040=>1000,21041=>1000,21042=>1000,21043=>1000,21045=>1000,21046=>1000,21047=>1000,21048=>1000,21049=>1000,21050=>1000,21051=>1000,21052=>1000,21059=>1000,21060=>1000,21061=>1000,21063=>1000,21065=>1000,21066=>1000,21067=>1000,21068=>1000,21069=>1000,21071=>1000,21076=>1000,21077=>1000,21078=>1000,21079=>1000,21080=>1000,21082=>1000,21083=>1000,21084=>1000,21085=>1000,21086=>1000,21087=>1000,21088=>1000,21089=>1000,21091=>1000,21092=>1000,21093=>1000,21094=>1000,21097=>1000,21098=>1000,21100=>1000,21102=>1000,21103=>1000,21104=>1000,21105=>1000,21106=>1000,21107=>1000,21108=>1000,21109=>1000,21111=>1000,21112=>1000,21113=>1000,21117=>1000,21119=>1000,21120=>1000,21122=>1000,21123=>1000,21124=>1000,21125=>1000,21127=>1000,21128=>1000,21129=>1000,21130=>1000,21132=>1000,21133=>1000,21137=>1000,21138=>1000,21139=>1000,21140=>1000,21141=>1000,21142=>1000,21143=>1000,21144=>1000,21146=>1000,21147=>1000,21148=>1000,21151=>1000,21152=>1000,21155=>1000,21156=>1000,21157=>1000,21158=>1000,21159=>1000,21161=>1000,21162=>1000,21163=>1000,21164=>1000,21165=>1000,21167=>1000,21168=>1000,21169=>1000,21172=>1000,21173=>1000,21174=>1000,21175=>1000,21176=>1000,21177=>1000,21178=>1000,21179=>1000,21180=>1000,21181=>1000,21182=>1000,21184=>1000,21185=>1000,21187=>1000,21188=>1000,21189=>1000,21190=>1000,21191=>1000,21192=>1000,21193=>1000,21194=>1000,21196=>1000,21197=>1000,21199=>1000,21200=>1000,21201=>1000,21202=>1000,21204=>1000,21205=>1000,21206=>1000,21207=>1000,21208=>1000,21209=>1000,21211=>1000,21212=>1000,21213=>1000,21214=>1000,21215=>1000,21216=>1000,21217=>1000,21218=>1000,21219=>1000,21220=>1000,21221=>1000,21222=>1000,21223=>1000,21224=>1000,21225=>1000,21226=>1000,21228=>1000,21232=>1000,21233=>1000,21234=>1000,21235=>1000,21236=>1000,21237=>1000,21238=>1000,21239=>1000,21240=>1000,21241=>1000,21242=>1000,21243=>1000,21246=>1000,21247=>1000,21248=>1000,21249=>1000,21250=>1000,21251=>1000,21253=>1000,21254=>1000,21255=>1000,21256=>1000,21258=>1000,21259=>1000,21260=>1000,21261=>1000,21263=>1000,21264=>1000,21265=>1000,21267=>1000,21269=>1000,21270=>1000,21271=>1000,21272=>1000,21273=>1000,21274=>1000,21275=>1000,21276=>1000,21277=>1000,21278=>1000,21279=>1000,21280=>1000,21281=>1000,21283=>1000,21284=>1000,21285=>1000,21287=>1000,21288=>1000,21289=>1000,21290=>1000,21291=>1000,21292=>1000,21293=>1000,21295=>1000,21296=>1000,21297=>1000,21298=>1000,21299=>1000,21301=>1000,21304=>1000,21305=>1000,21306=>1000,21307=>1000,21308=>1000,21309=>1000,21310=>1000,21311=>1000,21312=>1000,21313=>1000,21314=>1000,21315=>1000,21317=>1000,21318=>1000,21319=>1000,21320=>1000,21321=>1000,21322=>1000,21323=>1000,21324=>1000,21325=>1000,21329=>1000,21330=>1000,21331=>1000,21332=>1000,21335=>1000,21336=>1000,21337=>1000,21338=>1000,21339=>1000,21340=>1000,21342=>1000,21344=>1000,21345=>1000,21347=>1000,21348=>1000,21349=>1000,21350=>1000,21351=>1000,21353=>1000,21356=>1000,21357=>1000,21358=>1000,21359=>1000,21360=>1000,21361=>1000,21362=>1000,21363=>1000,21364=>1000,21365=>1000,21367=>1000,21368=>1000,21369=>1000,21370=>1000,21371=>1000,21373=>1000,21374=>1000,21375=>1000,21378=>1000,21379=>1000,21380=>1000,21383=>1000,21384=>1000,21385=>1000,21390=>1000,21395=>1000,21396=>1000,21398=>1000,21400=>1000,21401=>1000,21402=>1000,21405=>1000,21407=>1000,21408=>1000,21409=>1000,21412=>1000,21413=>1000,21414=>1000,21416=>1000,21417=>1000,21418=>1000,21419=>1000,21421=>1000,21422=>1000,21423=>1000,21424=>1000,21426=>1000,21427=>1000,21428=>1000,21429=>1000,21430=>1000,21431=>1000,21432=>1000,21434=>1000,21435=>1000,21437=>1000,21440=>1000,21441=>1000,21442=>1000,21443=>1000,21444=>1000,21445=>1000,21448=>1000,21449=>1000,21450=>1000,21451=>1000,21452=>1000,21453=>1000,21454=>1000,21455=>1000,21458=>1000,21459=>1000,21460=>1000,21461=>1000,21462=>1000,21463=>1000,21465=>1000,21466=>1000,21467=>1000,21469=>1000,21470=>1000,21471=>1000,21472=>1000,21473=>1000,21474=>1000,21475=>1000,21476=>1000,21477=>1000,21478=>1000,21479=>1000,21480=>1000,21481=>1000,21482=>1000,21483=>1000,21484=>1000,21485=>1000,21486=>1000,21487=>1000,21488=>1000,21489=>1000,21490=>1000,21491=>1000,21492=>1000,21493=>1000,21494=>1000,21495=>1000,21496=>1000,21498=>1000,21505=>1000,21506=>1000,21507=>1000,21508=>1000,21512=>1000,21513=>1000,21514=>1000,21515=>1000,21516=>1000,21517=>1000,21518=>1000,21519=>1000,21520=>1000,21521=>1000,21522=>1000,21523=>1000,21530=>1000,21531=>1000,21533=>1000,21534=>1000,21535=>1000,21536=>1000,21537=>1000,21540=>1000,21542=>1000,21543=>1000,21544=>1000,21545=>1000,21546=>1000,21547=>1000,21548=>1000,21549=>1000,21550=>1000,21551=>1000,21553=>1000,21555=>1000,21556=>1000,21557=>1000,21558=>1000,21560=>1000,21561=>1000,21563=>1000,21564=>1000,21565=>1000,21566=>1000,21567=>1000,21568=>1000,21570=>1000,21571=>1000,21572=>1000,21574=>1000,21575=>1000,21576=>1000,21577=>1000,21578=>1000,21580=>1000,21581=>1000,21582=>1000,21583=>1000,21585=>1000,21589=>1000,21598=>1000,21599=>1000,21602=>1000,21604=>1000,21606=>1000,21607=>1000,21608=>1000,21609=>1000,21610=>1000,21611=>1000,21612=>1000,21613=>1000,21614=>1000,21616=>1000,21617=>1000,21619=>1000,21620=>1000,21621=>1000,21622=>1000,21623=>1000,21627=>1000,21628=>1000,21629=>1000,21631=>1000,21632=>1000,21633=>1000,21635=>1000,21636=>1000,21637=>1000,21638=>1000,21640=>1000,21641=>1000,21642=>1000,21643=>1000,21644=>1000,21645=>1000,21646=>1000,21647=>1000,21648=>1000,21649=>1000,21650=>1000,21653=>1000,21654=>1000,21660=>1000,21663=>1000,21664=>1000,21665=>1000,21666=>1000,21668=>1000,21669=>1000,21670=>1000,21671=>1000,21672=>1000,21673=>1000,21674=>1000,21675=>1000,21676=>1000,21677=>1000,21678=>1000,21679=>1000,21681=>1000,21682=>1000,21683=>1000,21687=>1000,21688=>1000,21689=>1000,21690=>1000,21691=>1000,21692=>1000,21693=>1000,21694=>1000,21695=>1000,21696=>1000,21697=>1000,21698=>1000,21699=>1000,21700=>1000,21702=>1000,21703=>1000,21704=>1000,21705=>1000,21706=>1000,21709=>1000,21710=>1000,21720=>1000,21728=>1000,21729=>1000,21730=>1000,21733=>1000,21734=>1000,21736=>1000,21737=>1000,21738=>1000,21740=>1000,21741=>1000,21742=>1000,21743=>1000,21745=>1000,21746=>1000,21747=>1000,21750=>1000,21754=>1000,21756=>1000,21757=>1000,21758=>1000,21759=>1000,21760=>1000,21761=>1000,21764=>1000,21765=>1000,21766=>1000,21767=>1000,21768=>1000,21769=>1000,21772=>1000,21773=>1000,21774=>1000,21775=>1000,21776=>1000,21780=>1000,21781=>1000,21782=>1000,21799=>1000,21802=>1000,21803=>1000,21806=>1000,21807=>1000,21809=>1000,21810=>1000,21811=>1000,21813=>1000,21814=>1000,21816=>1000,21817=>1000,21819=>1000,21820=>1000,21821=>1000,21822=>1000,21824=>1000,21825=>1000,21828=>1000,21829=>1000,21830=>1000,21831=>1000,21833=>1000,21834=>1000,21836=>1000,21837=>1000,21839=>1000,21840=>1000,21841=>1000,21843=>1000,21846=>1000,21847=>1000,21848=>1000,21850=>1000,21851=>1000,21852=>1000,21853=>1000,21854=>1000,21856=>1000,21857=>1000,21859=>1000,21860=>1000,21862=>1000,21883=>1000,21884=>1000,21885=>1000,21886=>1000,21887=>1000,21888=>1000,21889=>1000,21890=>1000,21891=>1000,21892=>1000,21894=>1000,21895=>1000,21896=>1000,21897=>1000,21898=>1000,21899=>1000,21902=>1000,21903=>1000,21905=>1000,21906=>1000,21907=>1000,21908=>1000,21911=>1000,21912=>1000,21913=>1000,21914=>1000,21916=>1000,21917=>1000,21918=>1000,21919=>1000,21923=>1000,21924=>1000,21927=>1000,21928=>1000,21929=>1000,21930=>1000,21931=>1000,21932=>1000,21933=>1000,21934=>1000,21936=>1000,21938=>1000,21942=>1000,21951=>1000,21953=>1000,21955=>1000,21956=>1000,21957=>1000,21958=>1000,21959=>1000,21961=>1000,21963=>1000,21964=>1000,21966=>1000,21969=>1000,21970=>1000,21971=>1000,21972=>1000,21975=>1000,21976=>1000,21978=>1000,21979=>1000,21980=>1000,21981=>1000,21982=>1000,21983=>1000,21986=>1000,21987=>1000,21988=>1000,21993=>1000,21996=>1000,21998=>1000,22001=>1000,22006=>1000,22007=>1000,22008=>1000,22009=>1000,22013=>1000,22014=>1000,22015=>1000,22021=>1000,22022=>1000,22023=>1000,22024=>1000,22025=>1000,22026=>1000,22029=>1000,22030=>1000,22031=>1000,22032=>1000,22033=>1000,22034=>1000,22036=>1000,22038=>1000,22039=>1000,22040=>1000,22041=>1000,22043=>1000,22048=>1000,22056=>1000,22057=>1000,22060=>1000,22063=>1000,22064=>1000,22065=>1000,22066=>1000,22067=>1000,22068=>1000,22069=>1000,22070=>1000,22071=>1000,22072=>1000,22073=>1000,22075=>1000,22076=>1000,22077=>1000,22079=>1000,22080=>1000,22081=>1000,22082=>1000,22083=>1000,22084=>1000,22086=>1000,22087=>1000,22089=>1000,22091=>1000,22092=>1000,22093=>1000,22094=>1000,22095=>1000,22096=>1000,22099=>1000,22100=>1000,22107=>1000,22110=>1000,22112=>1000,22113=>1000,22114=>1000,22115=>1000,22116=>1000,22118=>1000,22120=>1000,22121=>1000,22122=>1000,22123=>1000,22124=>1000,22125=>1000,22127=>1000,22129=>1000,22130=>1000,22132=>1000,22133=>1000,22134=>1000,22136=>1000,22138=>1000,22144=>1000,22148=>1000,22149=>1000,22150=>1000,22151=>1000,22152=>1000,22154=>1000,22155=>1000,22156=>1000,22159=>1000,22164=>1000,22165=>1000,22169=>1000,22170=>1000,22173=>1000,22174=>1000,22175=>1000,22176=>1000,22178=>1000,22181=>1000,22182=>1000,22183=>1000,22184=>1000,22185=>1000,22187=>1000,22188=>1000,22189=>1000,22190=>1000,22193=>1000,22194=>1000,22195=>1000,22196=>1000,22198=>1000,22199=>1000,22204=>1000,22206=>1000,22208=>1000,22209=>1000,22210=>1000,22211=>1000,22213=>1000,22216=>1000,22217=>1000,22218=>1000,22219=>1000,22220=>1000,22221=>1000,22222=>1000,22223=>1000,22224=>1000,22225=>1000,22227=>1000,22231=>1000,22232=>1000,22233=>1000,22234=>1000,22235=>1000,22236=>1000,22237=>1000,22238=>1000,22239=>1000,22240=>1000,22241=>1000,22243=>1000,22244=>1000,22245=>1000,22246=>1000,22247=>1000,22248=>1000,22251=>1000,22253=>1000,22254=>1000,22256=>1000,22257=>1000,22258=>1000,22259=>1000,22262=>1000,22263=>1000,22265=>1000,22266=>1000,22269=>1000,22271=>1000,22272=>1000,22273=>1000,22274=>1000,22275=>1000,22276=>1000,22279=>1000,22280=>1000,22281=>1000,22282=>1000,22283=>1000,22284=>1000,22285=>1000,22287=>1000,22289=>1000,22290=>1000,22291=>1000,22293=>1000,22294=>1000,22296=>1000,22298=>1000,22299=>1000,22300=>1000,22301=>1000,22303=>1000,22304=>1000,22305=>1000,22306=>1000,22307=>1000,22308=>1000,22309=>1000,22310=>1000,22311=>1000,22312=>1000,22313=>1000,22314=>1000,22316=>1000,22317=>1000,22318=>1000,22319=>1000,22320=>1000,22323=>1000,22324=>1000,22327=>1000,22328=>1000,22331=>1000,22333=>1000,22334=>1000,22335=>1000,22336=>1000,22338=>1000,22341=>1000,22342=>1000,22343=>1000,22346=>1000,22348=>1000,22349=>1000,22350=>1000,22351=>1000,22352=>1000,22353=>1000,22354=>1000,22361=>1000,22367=>1000,22369=>1000,22370=>1000,22372=>1000,22373=>1000,22374=>1000,22375=>1000,22376=>1000,22377=>1000,22378=>1000,22379=>1000,22381=>1000,22382=>1000,22383=>1000,22384=>1000,22385=>1000,22387=>1000,22388=>1000,22389=>1000,22391=>1000,22393=>1000,22394=>1000,22395=>1000,22396=>1000,22398=>1000,22399=>1000,22401=>1000,22402=>1000,22403=>1000,22408=>1000,22409=>1000,22411=>1000,22412=>1000,22419=>1000,22420=>1000,22421=>1000,22423=>1000,22425=>1000,22426=>1000,22428=>1000,22429=>1000,22430=>1000,22431=>1000,22432=>1000,22433=>1000,22434=>1000,22435=>1000,22436=>1000,22439=>1000,22440=>1000,22441=>1000,22442=>1000,22444=>1000,22446=>1000,22448=>1000,22451=>1000,22456=>1000,22461=>1000,22464=>1000,22467=>1000,22470=>1000,22471=>1000,22472=>1000,22475=>1000,22476=>1000,22478=>1000,22479=>1000,22482=>1000,22483=>1000,22484=>1000,22485=>1000,22486=>1000,22487=>1000,22492=>1000,22493=>1000,22494=>1000,22495=>1000,22496=>1000,22497=>1000,22499=>1000,22500=>1000,22502=>1000,22503=>1000,22505=>1000,22509=>1000,22512=>1000,22516=>1000,22517=>1000,22518=>1000,22519=>1000,22520=>1000,22521=>1000,22522=>1000,22523=>1000,22524=>1000,22525=>1000,22526=>1000,22527=>1000,22528=>1000,22530=>1000,22531=>1000,22532=>1000,22533=>1000,22534=>1000,22536=>1000,22537=>1000,22538=>1000,22539=>1000,22540=>1000,22541=>1000,22549=>1000,22553=>1000,22555=>1000,22557=>1000,22558=>1000,22559=>1000,22560=>1000,22561=>1000,22564=>1000,22566=>1000,22567=>1000,22570=>1000,22573=>1000,22575=>1000,22576=>1000,22577=>1000,22578=>1000,22580=>1000,22581=>1000,22585=>1000,22586=>1000,22589=>1000,22591=>1000,22592=>1000,22593=>1000,22601=>1000,22602=>1000,22603=>1000,22604=>1000,22605=>1000,22607=>1000,22608=>1000,22609=>1000,22610=>1000,22612=>1000,22613=>1000,22615=>1000,22616=>1000,22617=>1000,22618=>1000,22622=>1000,22623=>1000,22625=>1000,22626=>1000,22628=>1000,22631=>1000,22632=>1000,22633=>1000,22635=>1000,22637=>1000,22640=>1000,22642=>1000,22645=>1000,22648=>1000,22649=>1000,22652=>1000,22654=>1000,22655=>1000,22656=>1000,22657=>1000,22659=>1000,22661=>1000,22663=>1000,22664=>1000,22665=>1000,22666=>1000,22667=>1000,22668=>1000,22669=>1000,22671=>1000,22672=>1000,22675=>1000,22676=>1000,22678=>1000,22679=>1000,22680=>1000,22684=>1000,22685=>1000,22686=>1000,22687=>1000,22688=>1000,22689=>1000,22690=>1000,22694=>1000,22696=>1000,22697=>1000,22698=>1000,22699=>1000,22702=>1000,22705=>1000,22706=>1000,22707=>1000,22712=>1000,22713=>1000,22714=>1000,22715=>1000,22716=>1000,22718=>1000,22721=>1000,22722=>1000,22723=>1000,22724=>1000,22725=>1000,22727=>1000,22728=>1000,22730=>1000,22732=>1000,22733=>1000,22734=>1000,22736=>1000,22737=>1000,22738=>1000,22739=>1000,22740=>1000,22741=>1000,22742=>1000,22743=>1000,22744=>1000,22745=>1000,22746=>1000,22748=>1000,22749=>1000,22750=>1000,22751=>1000,22752=>1000,22753=>1000,22754=>1000,22756=>1000,22757=>1000,22761=>1000,22763=>1000,22764=>1000,22766=>1000,22767=>1000,22768=>1000,22769=>1000,22770=>1000,22771=>1000,22772=>1000,22775=>1000,22777=>1000,22778=>1000,22779=>1000,22780=>1000,22781=>1000,22786=>1000,22789=>1000,22790=>1000,22793=>1000,22794=>1000,22795=>1000,22796=>1000,22797=>1000,22799=>1000,22800=>1000,22802=>1000,22803=>1000,22804=>1000,22805=>1000,22806=>1000,22808=>1000,22809=>1000,22810=>1000,22811=>1000,22812=>1000,22813=>1000,22815=>1000,22817=>1000,22818=>1000,22819=>1000,22820=>1000,22821=>1000,22823=>1000,22824=>1000,22825=>1000,22826=>1000,22827=>1000,22828=>1000,22829=>1000,22830=>1000,22831=>1000,22832=>1000,22833=>1000,22834=>1000,22835=>1000,22837=>1000,22838=>1000,22839=>1000,22840=>1000,22841=>1000,22845=>1000,22846=>1000,22847=>1000,22851=>1000,22852=>1000,22854=>1000,22855=>1000,22856=>1000,22857=>1000,22862=>1000,22863=>1000,22864=>1000,22865=>1000,22866=>1000,22867=>1000,22868=>1000,22869=>1000,22871=>1000,22872=>1000,22873=>1000,22874=>1000,22875=>1000,22877=>1000,22878=>1000,22879=>1000,22880=>1000,22881=>1000,22882=>1000,22883=>1000,22885=>1000,22887=>1000,22888=>1000,22889=>1000,22890=>1000,22891=>1000,22892=>1000,22893=>1000,22894=>1000,22895=>1000,22898=>1000,22899=>1000,22900=>1000,22901=>1000,22902=>1000,22904=>1000,22905=>1000,22907=>1000,22908=>1000,22909=>1000,22913=>1000,22914=>1000,22915=>1000,22916=>1000,22922=>1000,22923=>1000,22924=>1000,22925=>1000,22926=>1000,22930=>1000,22931=>1000,22933=>1000,22934=>1000,22935=>1000,22937=>1000,22939=>1000,22941=>1000,22943=>1000,22947=>1000,22948=>1000,22949=>1000,22951=>1000,22952=>1000,22956=>1000,22957=>1000,22958=>1000,22959=>1000,22960=>1000,22962=>1000,22963=>1000,22967=>1000,22969=>1000,22970=>1000,22971=>1000,22972=>1000,22974=>1000,22977=>1000,22979=>1000,22980=>1000,22982=>1000,22984=>1000,22985=>1000,22986=>1000,22987=>1000,22989=>1000,22992=>1000,22993=>1000,22994=>1000,22995=>1000,22996=>1000,23001=>1000,23002=>1000,23004=>1000,23005=>1000,23006=>1000,23007=>1000,23011=>1000,23012=>1000,23013=>1000,23014=>1000,23015=>1000,23016=>1000,23018=>1000,23019=>1000,23020=>1000,23022=>1000,23023=>1000,23025=>1000,23026=>1000,23028=>1000,23030=>1000,23031=>1000,23032=>1000,23035=>1000,23039=>1000,23040=>1000,23041=>1000,23043=>1000,23044=>1000,23049=>1000,23052=>1000,23053=>1000,23054=>1000,23057=>1000,23058=>1000,23059=>1000,23063=>1000,23064=>1000,23066=>1000,23067=>1000,23068=>1000,23070=>1000,23071=>1000,23072=>1000,23075=>1000,23076=>1000,23077=>1000,23079=>1000,23080=>1000,23081=>1000,23082=>1000,23085=>1000,23087=>1000,23088=>1000,23093=>1000,23094=>1000,23100=>1000,23104=>1000,23105=>1000,23108=>1000,23109=>1000,23110=>1000,23111=>1000,23112=>1000,23113=>1000,23116=>1000,23120=>1000,23125=>1000,23130=>1000,23134=>1000,23138=>1000,23139=>1000,23141=>1000,23142=>1000,23143=>1000,23146=>1000,23148=>1000,23149=>1000,23159=>1000,23162=>1000,23163=>1000,23166=>1000,23167=>1000,23172=>1000,23179=>1000,23184=>1000,23186=>1000,23187=>1000,23190=>1000,23193=>1000,23194=>1000,23195=>1000,23196=>1000,23198=>1000,23199=>1000,23200=>1000,23202=>1000,23207=>1000,23212=>1000,23217=>1000,23218=>1000,23219=>1000,23221=>1000,23224=>1000,23226=>1000,23227=>1000,23228=>1000,23229=>1000,23230=>1000,23231=>1000,23233=>1000,23234=>1000,23236=>1000,23238=>1000,23240=>1000,23241=>1000,23243=>1000,23244=>1000,23247=>1000,23248=>1000,23254=>1000,23255=>1000,23258=>1000,23260=>1000,23264=>1000,23265=>1000,23267=>1000,23269=>1000,23270=>1000,23273=>1000,23274=>1000,23278=>1000,23280=>1000,23285=>1000,23286=>1000,23290=>1000,23291=>1000,23293=>1000,23296=>1000,23297=>1000,23304=>1000,23305=>1000,23307=>1000,23308=>1000,23318=>1000,23319=>1000,23321=>1000,23323=>1000,23325=>1000,23329=>1000,23330=>1000,23333=>1000,23338=>1000,23340=>1000,23341=>1000,23344=>1000,23346=>1000,23348=>1000,23350=>1000,23352=>1000,23358=>1000,23360=>1000,23361=>1000,23363=>1000,23365=>1000,23371=>1000,23372=>1000,23376=>1000,23377=>1000,23378=>1000,23380=>1000,23381=>1000,23382=>1000,23383=>1000,23384=>1000,23386=>1000,23387=>1000,23388=>1000,23389=>1000,23390=>1000,23391=>1000,23395=>1000,23396=>1000,23397=>1000,23398=>1000,23400=>1000,23401=>1000,23403=>1000,23406=>1000,23407=>1000,23408=>1000,23409=>1000,23411=>1000,23413=>1000,23414=>1000,23416=>1000,23418=>1000,23420=>1000,23421=>1000,23422=>1000,23423=>1000,23424=>1000,23425=>1000,23426=>1000,23427=>1000,23428=>1000,23429=>1000,23430=>1000,23431=>1000,23432=>1000,23433=>1000,23434=>1000,23435=>1000,23436=>1000,23437=>1000,23438=>1000,23439=>1000,23440=>1000,23441=>1000,23443=>1000,23444=>1000,23445=>1000,23446=>1000,23447=>1000,23448=>1000,23449=>1000,23450=>1000,23451=>1000,23452=>1000,23453=>1000,23455=>1000,23458=>1000,23459=>1000,23460=>1000,23461=>1000,23462=>1000,23464=>1000,23465=>1000,23468=>1000,23469=>1000,23470=>1000,23471=>1000,23472=>1000,23473=>1000,23474=>1000,23475=>1000,23476=>1000,23477=>1000,23478=>1000,23479=>1000,23480=>1000,23481=>1000,23482=>1000,23484=>1000,23487=>1000,23488=>1000,23489=>1000,23490=>1000,23491=>1000,23492=>1000,23493=>1000,23494=>1000,23495=>1000,23497=>1000,23500=>1000,23501=>1000,23502=>1000,23503=>1000,23504=>1000,23506=>1000,23507=>1000,23508=>1000,23510=>1000,23511=>1000,23512=>1000,23513=>1000,23514=>1000,23515=>1000,23517=>1000,23518=>1000,23519=>1000,23520=>1000,23521=>1000,23522=>1000,23524=>1000,23525=>1000,23526=>1000,23527=>1000,23528=>1000,23529=>1000,23531=>1000,23532=>1000,23534=>1000,23535=>1000,23536=>1000,23537=>1000,23539=>1000,23540=>1000,23541=>1000,23542=>1000,23544=>1000,23546=>1000,23549=>1000,23550=>1000,23551=>1000,23553=>1000,23554=>1000,23555=>1000,23556=>1000,23557=>1000,23558=>1000,23559=>1000,23560=>1000,23561=>1000,23562=>1000,23563=>1000,23564=>1000,23565=>1000,23566=>1000,23567=>1000,23569=>1000,23570=>1000,23571=>1000,23572=>1000,23574=>1000,23575=>1000,23577=>1000,23578=>1000,23582=>1000,23583=>1000,23584=>1000,23586=>1000,23587=>1000,23588=>1000,23590=>1000,23592=>1000,23593=>1000,23594=>1000,23595=>1000,23596=>1000,23597=>1000,23598=>1000,23600=>1000,23601=>1000,23602=>1000,23605=>1000,23606=>1000,23608=>1000,23609=>1000,23610=>1000,23611=>1000,23612=>1000,23613=>1000,23614=>1000,23615=>1000,23616=>1000,23617=>1000,23621=>1000,23622=>1000,23624=>1000,23626=>1000,23627=>1000,23629=>1000,23630=>1000,23631=>1000,23632=>1000,23633=>1000,23635=>1000,23637=>1000,23641=>1000,23642=>1000,23643=>1000,23644=>1000,23646=>1000,23647=>1000,23648=>1000,23649=>1000,23650=>1000,23651=>1000,23652=>1000,23653=>1000,23655=>1000,23656=>1000,23657=>1000,23660=>1000,23661=>1000,23662=>1000,23663=>1000,23664=>1000,23665=>1000,23668=>1000,23669=>1000,23670=>1000,23673=>1000,23674=>1000,23675=>1000,23676=>1000,23677=>1000,23687=>1000,23688=>1000,23690=>1000,23692=>1000,23695=>1000,23696=>1000,23697=>1000,23698=>1000,23700=>1000,23709=>1000,23711=>1000,23712=>1000,23713=>1000,23714=>1000,23715=>1000,23718=>1000,23719=>1000,23720=>1000,23721=>1000,23722=>1000,23723=>1000,23724=>1000,23725=>1000,23729=>1000,23730=>1000,23731=>1000,23732=>1000,23733=>1000,23734=>1000,23735=>1000,23736=>1000,23738=>1000,23739=>1000,23740=>1000,23742=>1000,23749=>1000,23751=>1000,23753=>1000,23755=>1000,23760=>1000,23762=>1000,23767=>1000,23769=>1000,23773=>1000,23776=>1000,23777=>1000,23782=>1000,23784=>1000,23785=>1000,23786=>1000,23789=>1000,23790=>1000,23791=>1000,23792=>1000,23793=>1000,23794=>1000,23796=>1000,23797=>1000,23798=>1000,23802=>1000,23803=>1000,23805=>1000,23809=>1000,23814=>1000,23815=>1000,23819=>1000,23821=>1000,23822=>1000,23824=>1000,23825=>1000,23826=>1000,23828=>1000,23829=>1000,23830=>1000,23831=>1000,23832=>1000,23833=>1000,23834=>1000,23835=>1000,23837=>1000,23839=>1000,23840=>1000,23842=>1000,23843=>1000,23844=>1000,23846=>1000,23847=>1000,23849=>1000,23851=>1000,23857=>1000,23860=>1000,23865=>1000,23869=>1000,23871=>1000,23874=>1000,23875=>1000,23878=>1000,23879=>1000,23880=>1000,23882=>1000,23883=>1000,23884=>1000,23886=>1000,23888=>1000,23889=>1000,23890=>1000,23891=>1000,23893=>1000,23897=>1000,23900=>1000,23903=>1000,23904=>1000,23905=>1000,23906=>1000,23908=>1000,23913=>1000,23914=>1000,23916=>1000,23917=>1000,23919=>1000,23920=>1000,23923=>1000,23926=>1000,23929=>1000,23930=>1000,23934=>1000,23935=>1000,23937=>1000,23938=>1000,23939=>1000,23940=>1000,23943=>1000,23944=>1000,23946=>1000,23947=>1000,23948=>1000,23952=>1000,23954=>1000,23955=>1000,23956=>1000,23957=>1000,23959=>1000,23961=>1000,23963=>1000,23965=>1000,23967=>1000,23968=>1000,23970=>1000,23972=>1000,23975=>1000,23979=>1000,23980=>1000,23982=>1000,23984=>1000,23986=>1000,23988=>1000,23991=>1000,23992=>1000,23993=>1000,23994=>1000,23996=>1000,23997=>1000,24003=>1000,24007=>1000,24009=>1000,24011=>1000,24012=>1000,24013=>1000,24014=>1000,24016=>1000,24017=>1000,24018=>1000,24019=>1000,24022=>1000,24023=>1000,24024=>1000,24025=>1000,24027=>1000,24029=>1000,24030=>1000,24032=>1000,24033=>1000,24034=>1000,24035=>1000,24036=>1000,24037=>1000,24038=>1000,24039=>1000,24040=>1000,24041=>1000,24043=>1000,24046=>1000,24049=>1000,24050=>1000,24051=>1000,24052=>1000,24053=>1000,24055=>1000,24056=>1000,24057=>1000,24059=>1000,24061=>1000,24062=>1000,24063=>1000,24064=>1000,24066=>1000,24067=>1000,24070=>1000,24071=>1000,24075=>1000,24076=>1000,24077=>1000,24081=>1000,24082=>1000,24084=>1000,24085=>1000,24086=>1000,24088=>1000,24089=>1000,24090=>1000,24091=>1000,24093=>1000,24095=>1000,24096=>1000,24101=>1000,24104=>1000,24107=>1000,24109=>1000,24110=>1000,24111=>1000,24112=>1000,24114=>1000,24115=>1000,24117=>1000,24118=>1000,24119=>1000,24120=>1000,24125=>1000,24126=>1000,24128=>1000,24131=>1000,24132=>1000,24133=>1000,24135=>1000,24137=>1000,24139=>1000,24140=>1000,24142=>1000,24144=>1000,24145=>1000,24148=>1000,24149=>1000,24150=>1000,24151=>1000,24152=>1000,24155=>1000,24156=>1000,24158=>1000,24159=>1000,24161=>1000,24162=>1000,24163=>1000,24164=>1000,24168=>1000,24170=>1000,24171=>1000,24172=>1000,24173=>1000,24174=>1000,24176=>1000,24178=>1000,24179=>1000,24180=>1000,24181=>1000,24182=>1000,24183=>1000,24184=>1000,24185=>1000,24186=>1000,24187=>1000,24188=>1000,24189=>1000,24190=>1000,24191=>1000,24192=>1000,24193=>1000,24195=>1000,24196=>1000,24199=>1000,24202=>1000,24203=>1000,24206=>1000,24207=>1000,24213=>1000,24214=>1000,24215=>1000,24217=>1000,24218=>1000,24220=>1000,24224=>1000,24226=>1000,24228=>1000,24229=>1000,24230=>1000,24231=>1000,24232=>1000,24234=>1000,24235=>1000,24236=>1000,24237=>1000,24241=>1000,24243=>1000,24245=>1000,24246=>1000,24247=>1000,24248=>1000,24249=>1000,24253=>1000,24254=>1000,24255=>1000,24257=>1000,24258=>1000,24259=>1000,24262=>1000,24264=>1000,24265=>1000,24266=>1000,24267=>1000,24268=>1000,24270=>1000,24271=>1000,24272=>1000,24273=>1000,24274=>1000,24275=>1000,24276=>1000,24277=>1000,24278=>1000,24281=>1000,24282=>1000,24283=>1000,24284=>1000,24285=>1000,24286=>1000,24287=>1000,24288=>1000,24289=>1000,24290=>1000,24291=>1000,24293=>1000,24296=>1000,24297=>1000,24299=>1000,24300=>1000,24304=>1000,24305=>1000,24307=>1000,24308=>1000,24310=>1000,24311=>1000,24312=>1000,24313=>1000,24314=>1000,24315=>1000,24316=>1000,24317=>1000,24318=>1000,24319=>1000,24320=>1000,24321=>1000,24322=>1000,24323=>1000,24324=>1000,24326=>1000,24327=>1000,24328=>1000,24329=>1000,24330=>1000,24331=>1000,24332=>1000,24333=>1000,24334=>1000,24335=>1000,24336=>1000,24337=>1000,24339=>1000,24340=>1000,24341=>1000,24342=>1000,24343=>1000,24344=>1000,24345=>1000,24347=>1000,24348=>1000,24349=>1000,24350=>1000,24351=>1000,24353=>1000,24354=>1000,24355=>1000,24356=>1000,24357=>1000,24358=>1000,24359=>1000,24360=>1000,24361=>1000,24363=>1000,24364=>1000,24365=>1000,24366=>1000,24367=>1000,24368=>1000,24369=>1000,24372=>1000,24373=>1000,24374=>1000,24375=>1000,24376=>1000,24378=>1000,24379=>1000,24380=>1000,24381=>1000,24382=>1000,24383=>1000,24384=>1000,24385=>1000,24388=>1000,24389=>1000,24391=>1000,24392=>1000,24394=>1000,24396=>1000,24397=>1000,24398=>1000,24400=>1000,24401=>1000,24403=>1000,24404=>1000,24406=>1000,24407=>1000,24408=>1000,24409=>1000,24411=>1000,24412=>1000,24413=>1000,24416=>1000,24417=>1000,24418=>1000,24419=>1000,24420=>1000,24421=>1000,24422=>1000,24423=>1000,24425=>1000,24426=>1000,24427=>1000,24428=>1000,24429=>1000,24431=>1000,24432=>1000,24433=>1000,24434=>1000,24435=>1000,24436=>1000,24437=>1000,24439=>1000,24440=>1000,24441=>1000,24442=>1000,24444=>1000,24445=>1000,24446=>1000,24447=>1000,24448=>1000,24449=>1000,24450=>1000,24451=>1000,24452=>1000,24453=>1000,24455=>1000,24456=>1000,24457=>1000,24458=>1000,24459=>1000,24460=>1000,24461=>1000,24463=>1000,24464=>1000,24465=>1000,24466=>1000,24467=>1000,24470=>1000,24471=>1000,24472=>1000,24473=>1000,24476=>1000,24477=>1000,24478=>1000,24480=>1000,24481=>1000,24482=>1000,24484=>1000,24487=>1000,24488=>1000,24489=>1000,24490=>1000,24491=>1000,24492=>1000,24493=>1000,24494=>1000,24495=>1000,24496=>1000,24497=>1000,24499=>1000,24500=>1000,24501=>1000,24503=>1000,24504=>1000,24505=>1000,24508=>1000,24509=>1000,24515=>1000,24516=>1000,24517=>1000,24519=>1000,24520=>1000,24521=>1000,24523=>1000,24524=>1000,24525=>1000,24528=>1000,24529=>1000,24530=>1000,24531=>1000,24532=>1000,24534=>1000,24535=>1000,24536=>1000,24537=>1000,24540=>1000,24541=>1000,24542=>1000,24544=>1000,24545=>1000,24546=>1000,24548=>1000,24552=>1000,24553=>1000,24554=>1000,24555=>1000,24556=>1000,24557=>1000,24558=>1000,24559=>1000,24560=>1000,24561=>1000,24562=>1000,24563=>1000,24565=>1000,24566=>1000,24568=>1000,24570=>1000,24571=>1000,24572=>1000,24573=>1000,24575=>1000,24583=>1000,24586=>1000,24589=>1000,24590=>1000,24591=>1000,24592=>1000,24594=>1000,24595=>1000,24596=>1000,24597=>1000,24598=>1000,24599=>1000,24600=>1000,24601=>1000,24602=>1000,24603=>1000,24604=>1000,24605=>1000,24607=>1000,24608=>1000,24609=>1000,24610=>1000,24612=>1000,24613=>1000,24614=>1000,24615=>1000,24616=>1000,24617=>1000,24618=>1000,24619=>1000,24621=>1000,24623=>1000,24625=>1000,24627=>1000,24629=>1000,24634=>1000,24640=>1000,24641=>1000,24642=>1000,24643=>1000,24646=>1000,24647=>1000,24648=>1000,24649=>1000,24650=>1000,24651=>1000,24652=>1000,24653=>1000,24656=>1000,24657=>1000,24658=>1000,24660=>1000,24661=>1000,24662=>1000,24663=>1000,24665=>1000,24666=>1000,24669=>1000,24671=>1000,24672=>1000,24673=>1000,24674=>1000,24675=>1000,24676=>1000,24677=>1000,24679=>1000,24680=>1000,24681=>1000,24682=>1000,24683=>1000,24684=>1000,24685=>1000,24687=>1000,24688=>1000,24689=>1000,24693=>1000,24695=>1000,24702=>1000,24703=>1000,24705=>1000,24706=>1000,24707=>1000,24708=>1000,24709=>1000,24710=>1000,24712=>1000,24713=>1000,24714=>1000,24715=>1000,24716=>1000,24717=>1000,24718=>1000,24721=>1000,24722=>1000,24723=>1000,24724=>1000,24725=>1000,24726=>1000,24727=>1000,24728=>1000,24730=>1000,24731=>1000,24733=>1000,24734=>1000,24735=>1000,24736=>1000,24738=>1000,24739=>1000,24740=>1000,24741=>1000,24742=>1000,24743=>1000,24744=>1000,24745=>1000,24746=>1000,24752=>1000,24753=>1000,24754=>1000,24755=>1000,24756=>1000,24757=>1000,24758=>1000,24759=>1000,24760=>1000,24763=>1000,24764=>1000,24765=>1000,24766=>1000,24770=>1000,24772=>1000,24773=>1000,24774=>1000,24775=>1000,24776=>1000,24777=>1000,24778=>1000,24779=>1000,24782=>1000,24783=>1000,24785=>1000,24787=>1000,24788=>1000,24789=>1000,24792=>1000,24793=>1000,24794=>1000,24795=>1000,24796=>1000,24797=>1000,24798=>1000,24799=>1000,24800=>1000,24801=>1000,24802=>1000,24803=>1000,24805=>1000,24807=>1000,24808=>1000,24814=>1000,24816=>1000,24817=>1000,24818=>1000,24819=>1000,24820=>1000,24821=>1000,24822=>1000,24823=>1000,24824=>1000,24825=>1000,24826=>1000,24827=>1000,24828=>1000,24829=>1000,24832=>1000,24833=>1000,24834=>1000,24835=>1000,24838=>1000,24839=>1000,24840=>1000,24841=>1000,24842=>1000,24844=>1000,24845=>1000,24846=>1000,24847=>1000,24848=>1000,24849=>1000,24850=>1000,24851=>1000,24852=>1000,24853=>1000,24854=>1000,24855=>1000,24857=>1000,24858=>1000,24859=>1000,24860=>1000,24862=>1000,24863=>1000,24864=>1000,24865=>1000,24866=>1000,24871=>1000,24872=>1000,24874=>1000,24875=>1000,24876=>1000,24880=>1000,24881=>1000,24884=>1000,24885=>1000,24886=>1000,24887=>1000,24889=>1000,24890=>1000,24892=>1000,24893=>1000,24894=>1000,24895=>1000,24897=>1000,24898=>1000,24900=>1000,24901=>1000,24902=>1000,24903=>1000,24904=>1000,24905=>1000,24906=>1000,24907=>1000,24908=>1000,24909=>1000,24910=>1000,24915=>1000,24917=>1000,24920=>1000,24921=>1000,24922=>1000,24925=>1000,24926=>1000,24927=>1000,24928=>1000,24930=>1000,24931=>1000,24932=>1000,24933=>1000,24935=>1000,24936=>1000,24939=>1000,24940=>1000,24942=>1000,24943=>1000,24944=>1000,24945=>1000,24946=>1000,24947=>1000,24948=>1000,24949=>1000,24950=>1000,24951=>1000,24952=>1000,24955=>1000,24956=>1000,24957=>1000,24958=>1000,24959=>1000,24960=>1000,24961=>1000,24962=>1000,24963=>1000,24964=>1000,24967=>1000,24970=>1000,24971=>1000,24973=>1000,24974=>1000,24976=>1000,24977=>1000,24978=>1000,24979=>1000,24980=>1000,24982=>1000,24983=>1000,24984=>1000,24985=>1000,24986=>1000,24988=>1000,24989=>1000,24991=>1000,24992=>1000,24996=>1000,24997=>1000,24999=>1000,25000=>1000,25001=>1000,25002=>1000,25003=>1000,25004=>1000,25005=>1000,25006=>1000,25010=>1000,25014=>1000,25016=>1000,25017=>1000,25018=>1000,25020=>1000,25022=>1000,25024=>1000,25025=>1000,25026=>1000,25027=>1000,25030=>1000,25031=>1000,25032=>1000,25033=>1000,25034=>1000,25035=>1000,25036=>1000,25037=>1000,25038=>1000,25039=>1000,25040=>1000,25045=>1000,25052=>1000,25053=>1000,25054=>1000,25055=>1000,25057=>1000,25058=>1000,25059=>1000,25061=>1000,25062=>1000,25063=>1000,25064=>1000,25065=>1000,25068=>1000,25069=>1000,25071=>1000,25074=>1000,25076=>1000,25077=>1000,25078=>1000,25079=>1000,25080=>1000,25082=>1000,25084=>1000,25085=>1000,25086=>1000,25087=>1000,25088=>1000,25089=>1000,25091=>1000,25092=>1000,25095=>1000,25096=>1000,25097=>1000,25098=>1000,25100=>1000,25101=>1000,25102=>1000,25104=>1000,25105=>1000,25106=>1000,25107=>1000,25108=>1000,25109=>1000,25110=>1000,25114=>1000,25115=>1000,25116=>1000,25117=>1000,25118=>1000,25119=>1000,25120=>1000,25121=>1000,25122=>1000,25123=>1000,25126=>1000,25127=>1000,25129=>1000,25130=>1000,25131=>1000,25134=>1000,25135=>1000,25136=>1000,25137=>1000,25138=>1000,25139=>1000,25140=>1000,25142=>1000,25144=>1000,25145=>1000,25147=>1000,25149=>1000,25150=>1000,25151=>1000,25152=>1000,25153=>1000,25154=>1000,25155=>1000,25156=>1000,25158=>1000,25159=>1000,25160=>1000,25161=>1000,25163=>1000,25164=>1000,25165=>1000,25166=>1000,25168=>1000,25169=>1000,25170=>1000,25171=>1000,25172=>1000,25173=>1000,25174=>1000,25176=>1000,25178=>1000,25179=>1000,25180=>1000,25182=>1000,25184=>1000,25185=>1000,25187=>1000,25188=>1000,25192=>1000,25197=>1000,25198=>1000,25199=>1000,25201=>1000,25203=>1000,25206=>1000,25209=>1000,25210=>1000,25211=>1000,25212=>1000,25213=>1000,25214=>1000,25215=>1000,25216=>1000,25218=>1000,25219=>1000,25220=>1000,25221=>1000,25225=>1000,25226=>1000,25229=>1000,25230=>1000,25231=>1000,25232=>1000,25233=>1000,25234=>1000,25235=>1000,25236=>1000,25237=>1000,25238=>1000,25239=>1000,25240=>1000,25241=>1000,25243=>1000,25244=>1000,25246=>1000,25254=>1000,25256=>1000,25259=>1000,25260=>1000,25265=>1000,25267=>1000,25269=>1000,25270=>1000,25271=>1000,25273=>1000,25274=>1000,25275=>1000,25276=>1000,25277=>1000,25278=>1000,25279=>1000,25282=>1000,25284=>1000,25285=>1000,25286=>1000,25287=>1000,25288=>1000,25289=>1000,25290=>1000,25292=>1000,25293=>1000,25294=>1000,25295=>1000,25296=>1000,25297=>1000,25298=>1000,25299=>1000,25300=>1000,25301=>1000,25302=>1000,25303=>1000,25304=>1000,25305=>1000,25306=>1000,25307=>1000,25308=>1000,25309=>1000,25312=>1000,25313=>1000,25322=>1000,25324=>1000,25325=>1000,25326=>1000,25327=>1000,25329=>1000,25330=>1000,25331=>1000,25332=>1000,25333=>1000,25334=>1000,25335=>1000,25340=>1000,25341=>1000,25342=>1000,25343=>1000,25345=>1000,25346=>1000,25347=>1000,25348=>1000,25351=>1000,25352=>1000,25353=>1000,25354=>1000,25355=>1000,25356=>1000,25357=>1000,25360=>1000,25361=>1000,25363=>1000,25366=>1000,25368=>1000,25369=>1000,25371=>1000,25375=>1000,25383=>1000,25384=>1000,25385=>1000,25386=>1000,25387=>1000,25389=>1000,25391=>1000,25394=>1000,25397=>1000,25398=>1000,25401=>1000,25402=>1000,25403=>1000,25404=>1000,25405=>1000,25406=>1000,25407=>1000,25409=>1000,25410=>1000,25411=>1000,25412=>1000,25414=>1000,25417=>1000,25418=>1000,25419=>1000,25420=>1000,25421=>1000,25422=>1000,25423=>1000,25424=>1000,25426=>1000,25427=>1000,25428=>1000,25429=>1000,25431=>1000,25432=>1000,25433=>1000,25435=>1000,25436=>1000,25445=>1000,25446=>1000,25447=>1000,25448=>1000,25449=>1000,25451=>1000,25452=>1000,25453=>1000,25454=>1000,25457=>1000,25458=>1000,25460=>1000,25461=>1000,25462=>1000,25463=>1000,25464=>1000,25466=>1000,25467=>1000,25468=>1000,25469=>1000,25471=>1000,25472=>1000,25474=>1000,25475=>1000,25476=>1000,25479=>1000,25480=>1000,25481=>1000,25482=>1000,25484=>1000,25486=>1000,25487=>1000,25488=>1000,25490=>1000,25492=>1000,25493=>1000,25494=>1000,25496=>1000,25497=>1000,25498=>1000,25499=>1000,25502=>1000,25503=>1000,25504=>1000,25505=>1000,25506=>1000,25507=>1000,25508=>1000,25509=>1000,25510=>1000,25511=>1000,25512=>1000,25513=>1000,25514=>1000,25515=>1000,25516=>1000,25517=>1000,25518=>1000,25519=>1000,25522=>1000,25524=>1000,25525=>1000,25531=>1000,25533=>1000,25534=>1000,25536=>1000,25537=>1000,25539=>1000,25540=>1000,25541=>1000,25542=>1000,25544=>1000,25545=>1000,25550=>1000,25551=>1000,25552=>1000,25553=>1000,25554=>1000,25555=>1000,25556=>1000,25557=>1000,25558=>1000,25562=>1000,25563=>1000,25564=>1000,25568=>1000,25569=>1000,25571=>1000,25573=>1000,25577=>1000,25578=>1000,25579=>1000,25580=>1000,25581=>1000,25582=>1000,25586=>1000,25587=>1000,25588=>1000,25589=>1000,25590=>1000,25591=>1000,25592=>1000,25593=>1000,25594=>1000,25606=>1000,25609=>1000,25610=>1000,25613=>1000,25615=>1000,25616=>1000,25618=>1000,25619=>1000,25620=>1000,25622=>1000,25623=>1000,25624=>1000,25628=>1000,25630=>1000,25632=>1000,25634=>1000,25636=>1000,25637=>1000,25638=>1000,25640=>1000,25641=>1000,25642=>1000,25644=>1000,25645=>1000,25647=>1000,25648=>1000,25652=>1000,25653=>1000,25654=>1000,25658=>1000,25661=>1000,25662=>1000,25663=>1000,25666=>1000,25675=>1000,25678=>1000,25679=>1000,25681=>1000,25682=>1000,25683=>1000,25684=>1000,25688=>1000,25690=>1000,25691=>1000,25692=>1000,25693=>1000,25695=>1000,25696=>1000,25697=>1000,25699=>1000,25703=>1000,25705=>1000,25709=>1000,25711=>1000,25715=>1000,25716=>1000,25718=>1000,25720=>1000,25721=>1000,25722=>1000,25723=>1000,25725=>1000,25731=>1000,25733=>1000,25735=>1000,25736=>1000,25743=>1000,25744=>1000,25745=>1000,25746=>1000,25747=>1000,25749=>1000,25752=>1000,25753=>1000,25754=>1000,25755=>1000,25757=>1000,25758=>1000,25759=>1000,25761=>1000,25763=>1000,25764=>1000,25765=>1000,25766=>1000,25768=>1000,25769=>1000,25771=>1000,25772=>1000,25773=>1000,25774=>1000,25776=>1000,25778=>1000,25779=>1000,25785=>1000,25787=>1000,25788=>1000,25789=>1000,25790=>1000,25791=>1000,25793=>1000,25794=>1000,25796=>1000,25797=>1000,25799=>1000,25801=>1000,25802=>1000,25803=>1000,25804=>1000,25805=>1000,25806=>1000,25808=>1000,25809=>1000,25810=>1000,25812=>1000,25813=>1000,25815=>1000,25816=>1000,25818=>1000,25824=>1000,25825=>1000,25826=>1000,25827=>1000,25828=>1000,25829=>1000,25830=>1000,25831=>1000,25833=>1000,25834=>1000,25836=>1000,25837=>1000,25839=>1000,25840=>1000,25841=>1000,25842=>1000,25844=>1000,25845=>1000,25846=>1000,25847=>1000,25850=>1000,25851=>1000,25853=>1000,25854=>1000,25855=>1000,25856=>1000,25857=>1000,25860=>1000,25861=>1000,25864=>1000,25865=>1000,25866=>1000,25871=>1000,25875=>1000,25876=>1000,25878=>1000,25880=>1000,25881=>1000,25883=>1000,25884=>1000,25885=>1000,25886=>1000,25887=>1000,25890=>1000,25891=>1000,25892=>1000,25894=>1000,25897=>1000,25898=>1000,25899=>1000,25900=>1000,25902=>1000,25903=>1000,25905=>1000,25906=>1000,25908=>1000,25909=>1000,25910=>1000,25911=>1000,25912=>1000,25913=>1000,25914=>1000,25915=>1000,25916=>1000,25917=>1000,25918=>1000,25919=>1000,25923=>1000,25924=>1000,25925=>1000,25927=>1000,25928=>1000,25929=>1000,25933=>1000,25934=>1000,25935=>1000,25936=>1000,25937=>1000,25938=>1000,25940=>1000,25941=>1000,25942=>1000,25943=>1000,25944=>1000,25945=>1000,25949=>1000,25950=>1000,25951=>1000,25952=>1000,25954=>1000,25955=>1000,25958=>1000,25959=>1000,25963=>1000,25964=>1000,25968=>1000,25970=>1000,25972=>1000,25973=>1000,25975=>1000,25976=>1000,25978=>1000,25981=>1000,25985=>1000,25986=>1000,25987=>1000,25988=>1000,25989=>1000,25991=>1000,25992=>1000,25993=>1000,25994=>1000,25996=>1000,25998=>1000,26000=>1000,26001=>1000,26002=>1000,26005=>1000,26007=>1000,26008=>1000,26009=>1000,26011=>1000,26012=>1000,26013=>1000,26015=>1000,26016=>1000,26017=>1000,26019=>1000,26020=>1000,26021=>1000,26022=>1000,26023=>1000,26027=>1000,26028=>1000,26029=>1000,26030=>1000,26031=>1000,26032=>1000,26034=>1000,26035=>1000,26036=>1000,26037=>1000,26039=>1000,26040=>1000,26041=>1000,26044=>1000,26045=>1000,26046=>1000,26047=>1000,26049=>1000,26050=>1000,26051=>1000,26052=>1000,26053=>1000,26054=>1000,26056=>1000,26057=>1000,26059=>1000,26060=>1000,26062=>1000,26063=>1000,26064=>1000,26066=>1000,26068=>1000,26070=>1000,26071=>1000,26072=>1000,26073=>1000,26075=>1000,26079=>1000,26080=>1000,26081=>1000,26082=>1000,26083=>1000,26085=>1000,26086=>1000,26087=>1000,26088=>1000,26089=>1000,26092=>1000,26093=>1000,26096=>1000,26097=>1000,26098=>1000,26100=>1000,26101=>1000,26105=>1000,26106=>1000,26107=>1000,26108=>1000,26110=>1000,26111=>1000,26112=>1000,26114=>1000,26115=>1000,26116=>1000,26118=>1000,26119=>1000,26120=>1000,26121=>1000,26122=>1000,26124=>1000,26125=>1000,26126=>1000,26127=>1000,26129=>1000,26130=>1000,26131=>1000,26132=>1000,26133=>1000,26134=>1000,26140=>1000,26141=>1000,26142=>1000,26143=>1000,26144=>1000,26145=>1000,26146=>1000,26147=>1000,26148=>1000,26149=>1000,26150=>1000,26151=>1000,26152=>1000,26153=>1000,26154=>1000,26155=>1000,26156=>1000,26157=>1000,26158=>1000,26159=>1000,26160=>1000,26161=>1000,26163=>1000,26164=>1000,26165=>1000,26166=>1000,26167=>1000,26169=>1000,26170=>1000,26171=>1000,26172=>1000,26175=>1000,26176=>1000,26177=>1000,26178=>1000,26179=>1000,26180=>1000,26181=>1000,26182=>1000,26184=>1000,26185=>1000,26186=>1000,26187=>1000,26188=>1000,26190=>1000,26191=>1000,26193=>1000,26194=>1000,26199=>1000,26200=>1000,26201=>1000,26202=>1000,26203=>1000,26204=>1000,26205=>1000,26206=>1000,26207=>1000,26208=>1000,26209=>1000,26210=>1000,26211=>1000,26212=>1000,26213=>1000,26214=>1000,26215=>1000,26216=>1000,26217=>1000,26218=>1000,26219=>1000,26220=>1000,26221=>1000,26222=>1000,26223=>1000,26224=>1000,26227=>1000,26228=>1000,26229=>1000,26230=>1000,26231=>1000,26232=>1000,26233=>1000,26234=>1000,26235=>1000,26236=>1000,26238=>1000,26239=>1000,26240=>1000,26241=>1000,26243=>1000,26244=>1000,26247=>1000,26248=>1000,26249=>1000,26251=>1000,26252=>1000,26253=>1000,26254=>1000,26256=>1000,26257=>1000,26258=>1000,26262=>1000,26263=>1000,26264=>1000,26265=>1000,26266=>1000,26267=>1000,26268=>1000,26269=>1000,26271=>1000,26272=>1000,26274=>1000,26276=>1000,26278=>1000,26283=>1000,26285=>1000,26286=>1000,26289=>1000,26290=>1000,26291=>1000,26292=>1000,26293=>1000,26296=>1000,26297=>1000,26299=>1000,26300=>1000,26302=>1000,26303=>1000,26304=>1000,26305=>1000,26306=>1000,26307=>1000,26308=>1000,26310=>1000,26311=>1000,26312=>1000,26313=>1000,26316=>1000,26318=>1000,26319=>1000,26324=>1000,26326=>1000,26329=>1000,26330=>1000,26331=>1000,26332=>1000,26333=>1000,26335=>1000,26336=>1000,26342=>1000,26344=>1000,26345=>1000,26347=>1000,26348=>1000,26350=>1000,26352=>1000,26354=>1000,26355=>1000,26356=>1000,26357=>1000,26359=>1000,26360=>1000,26361=>1000,26362=>1000,26363=>1000,26364=>1000,26365=>1000,26366=>1000,26367=>1000,26368=>1000,26369=>1000,26371=>1000,26373=>1000,26375=>1000,26376=>1000,26377=>1000,26379=>1000,26380=>1000,26381=>1000,26382=>1000,26383=>1000,26384=>1000,26386=>1000,26387=>1000,26388=>1000,26389=>1000,26390=>1000,26391=>1000,26393=>1000,26395=>1000,26396=>1000,26397=>1000,26398=>1000,26399=>1000,26400=>1000,26402=>1000,26405=>1000,26406=>1000,26407=>1000,26408=>1000,26410=>1000,26411=>1000,26412=>1000,26413=>1000,26414=>1000,26417=>1000,26419=>1000,26420=>1000,26421=>1000,26422=>1000,26423=>1000,26424=>1000,26426=>1000,26429=>1000,26430=>1000,26431=>1000,26433=>1000,26435=>1000,26437=>1000,26438=>1000,26439=>1000,26440=>1000,26441=>1000,26444=>1000,26445=>1000,26446=>1000,26447=>1000,26448=>1000,26449=>1000,26451=>1000,26452=>1000,26453=>1000,26454=>1000,26457=>1000,26460=>1000,26461=>1000,26462=>1000,26463=>1000,26464=>1000,26465=>1000,26466=>1000,26467=>1000,26468=>1000,26469=>1000,26470=>1000,26474=>1000,26476=>1000,26477=>1000,26478=>1000,26479=>1000,26480=>1000,26481=>1000,26482=>1000,26483=>1000,26484=>1000,26485=>1000,26486=>1000,26487=>1000,26491=>1000,26492=>1000,26494=>1000,26495=>1000,26496=>1000,26497=>1000,26500=>1000,26501=>1000,26503=>1000,26505=>1000,26507=>1000,26508=>1000,26510=>1000,26511=>1000,26512=>1000,26513=>1000,26514=>1000,26515=>1000,26517=>1000,26518=>1000,26519=>1000,26520=>1000,26521=>1000,26522=>1000,26523=>1000,26524=>1000,26525=>1000,26528=>1000,26529=>1000,26530=>1000,26532=>1000,26534=>1000,26537=>1000,26543=>1000,26544=>1000,26545=>1000,26546=>1000,26547=>1000,26548=>1000,26549=>1000,26550=>1000,26551=>1000,26552=>1000,26553=>1000,26555=>1000,26556=>1000,26557=>1000,26558=>1000,26560=>1000,26561=>1000,26562=>1000,26563=>1000,26564=>1000,26565=>1000,26566=>1000,26568=>1000,26569=>1000,26570=>1000,26574=>1000,26575=>1000,26576=>1000,26577=>1000,26578=>1000,26579=>1000,26580=>1000,26583=>1000,26584=>1000,26585=>1000,26586=>1000,26587=>1000,26588=>1000,26589=>1000,26590=>1000,26593=>1000,26594=>1000,26596=>1000,26598=>1000,26599=>1000,26601=>1000,26604=>1000,26606=>1000,26607=>1000,26608=>1000,26609=>1000,26610=>1000,26611=>1000,26612=>1000,26613=>1000,26614=>1000,26615=>1000,26617=>1000,26618=>1000,26619=>1000,26620=>1000,26622=>1000,26623=>1000,26625=>1000,26626=>1000,26627=>1000,26628=>1000,26629=>1000,26640=>1000,26643=>1000,26644=>1000,26646=>1000,26647=>1000,26648=>1000,26649=>1000,26653=>1000,26654=>1000,26655=>1000,26657=>1000,26658=>1000,26663=>1000,26664=>1000,26665=>1000,26666=>1000,26667=>1000,26668=>1000,26669=>1000,26671=>1000,26672=>1000,26673=>1000,26674=>1000,26675=>1000,26676=>1000,26680=>1000,26681=>1000,26683=>1000,26684=>1000,26685=>1000,26686=>1000,26687=>1000,26688=>1000,26689=>1000,26690=>1000,26691=>1000,26692=>1000,26693=>1000,26694=>1000,26696=>1000,26697=>1000,26698=>1000,26700=>1000,26701=>1000,26702=>1000,26704=>1000,26705=>1000,26706=>1000,26707=>1000,26708=>1000,26709=>1000,26711=>1000,26712=>1000,26713=>1000,26715=>1000,26716=>1000,26717=>1000,26719=>1000,26723=>1000,26727=>1000,26731=>1000,26734=>1000,26735=>1000,26736=>1000,26737=>1000,26738=>1000,26740=>1000,26741=>1000,26742=>1000,26743=>1000,26745=>1000,26746=>1000,26747=>1000,26748=>1000,26750=>1000,26751=>1000,26753=>1000,26754=>1000,26755=>1000,26756=>1000,26757=>1000,26758=>1000,26760=>1000,26765=>1000,26766=>1000,26767=>1000,26768=>1000,26771=>1000,26772=>1000,26774=>1000,26775=>1000,26776=>1000,26777=>1000,26778=>1000,26779=>1000,26780=>1000,26781=>1000,26783=>1000,26784=>1000,26785=>1000,26786=>1000,26787=>1000,26789=>1000,26790=>1000,26791=>1000,26792=>1000,26793=>1000,26794=>1000,26795=>1000,26797=>1000,26798=>1000,26799=>1000,26800=>1000,26801=>1000,26802=>1000,26803=>1000,26804=>1000,26805=>1000,26806=>1000,26809=>1000,26810=>1000,26811=>1000,26812=>1000,26819=>1000,26820=>1000,26821=>1000,26822=>1000,26824=>1000,26825=>1000,26826=>1000,26827=>1000,26828=>1000,26829=>1000,26831=>1000,26832=>1000,26833=>1000,26834=>1000,26835=>1000,26836=>1000,26837=>1000,26838=>1000,26839=>1000,26840=>1000,26841=>1000,26842=>1000,26844=>1000,26845=>1000,26847=>1000,26848=>1000,26849=>1000,26851=>1000,26852=>1000,26853=>1000,26855=>1000,26856=>1000,26858=>1000,26859=>1000,26860=>1000,26861=>1000,26862=>1000,26863=>1000,26864=>1000,26865=>1000,26866=>1000,26869=>1000,26870=>1000,26871=>1000,26873=>1000,26874=>1000,26875=>1000,26876=>1000,26877=>1000,26880=>1000,26881=>1000,26883=>1000,26884=>1000,26885=>1000,26886=>1000,26887=>1000,26888=>1000,26889=>1000,26890=>1000,26891=>1000,26892=>1000,26893=>1000,26894=>1000,26895=>1000,26896=>1000,26897=>1000,26898=>1000,26899=>1000,26902=>1000,26903=>1000,26905=>1000,26906=>1000,26907=>1000,26908=>1000,26913=>1000,26914=>1000,26915=>1000,26917=>1000,26918=>1000,26920=>1000,26922=>1000,26928=>1000,26929=>1000,26931=>1000,26932=>1000,26933=>1000,26934=>1000,26936=>1000,26937=>1000,26939=>1000,26941=>1000,26943=>1000,26946=>1000,26949=>1000,26950=>1000,26953=>1000,26954=>1000,26958=>1000,26963=>1000,26964=>1000,26965=>1000,26967=>1000,26969=>1000,26970=>1000,26971=>1000,26972=>1000,26973=>1000,26974=>1000,26976=>1000,26977=>1000,26978=>1000,26979=>1000,26980=>1000,26981=>1000,26982=>1000,26984=>1000,26985=>1000,26986=>1000,26987=>1000,26988=>1000,26989=>1000,26990=>1000,26991=>1000,26992=>1000,26993=>1000,26994=>1000,26995=>1000,26996=>1000,26997=>1000,26999=>1000,27000=>1000,27001=>1000,27002=>1000,27003=>1000,27004=>1000,27005=>1000,27006=>1000,27007=>1000,27008=>1000,27009=>1000,27010=>1000,27014=>1000,27018=>1000,27021=>1000,27022=>1000,27025=>1000,27026=>1000,27028=>1000,27029=>1000,27030=>1000,27032=>1000,27035=>1000,27036=>1000,27040=>1000,27041=>1000,27045=>1000,27046=>1000,27047=>1000,27048=>1000,27051=>1000,27053=>1000,27054=>1000,27055=>1000,27056=>1000,27057=>1000,27058=>1000,27060=>1000,27063=>1000,27064=>1000,27066=>1000,27067=>1000,27068=>1000,27070=>1000,27071=>1000,27072=>1000,27073=>1000,27075=>1000,27077=>1000,27079=>1000,27080=>1000,27082=>1000,27083=>1000,27084=>1000,27085=>1000,27086=>1000,27087=>1000,27088=>1000,27089=>1000,27091=>1000,27094=>1000,27095=>1000,27096=>1000,27097=>1000,27101=>1000,27102=>1000,27106=>1000,27107=>1000,27109=>1000,27111=>1000,27112=>1000,27113=>1000,27114=>1000,27115=>1000,27117=>1000,27118=>1000,27119=>1000,27121=>1000,27122=>1000,27123=>1000,27124=>1000,27125=>1000,27126=>1000,27129=>1000,27131=>1000,27133=>1000,27134=>1000,27135=>1000,27136=>1000,27137=>1000,27138=>1000,27139=>1000,27141=>1000,27146=>1000,27147=>1000,27148=>1000,27151=>1000,27153=>1000,27154=>1000,27155=>1000,27156=>1000,27157=>1000,27159=>1000,27161=>1000,27162=>1000,27163=>1000,27165=>1000,27166=>1000,27167=>1000,27168=>1000,27169=>1000,27170=>1000,27171=>1000,27172=>1000,27176=>1000,27177=>1000,27178=>1000,27179=>1000,27182=>1000,27184=>1000,27186=>1000,27187=>1000,27188=>1000,27189=>1000,27190=>1000,27191=>1000,27192=>1000,27193=>1000,27194=>1000,27195=>1000,27197=>1000,27198=>1000,27199=>1000,27204=>1000,27205=>1000,27206=>1000,27207=>1000,27208=>1000,27209=>1000,27210=>1000,27211=>1000,27214=>1000,27216=>1000,27217=>1000,27218=>1000,27220=>1000,27221=>1000,27222=>1000,27224=>1000,27225=>1000,27227=>1000,27231=>1000,27233=>1000,27234=>1000,27236=>1000,27238=>1000,27239=>1000,27242=>1000,27243=>1000,27249=>1000,27250=>1000,27251=>1000,27256=>1000,27258=>1000,27262=>1000,27263=>1000,27264=>1000,27265=>1000,27267=>1000,27268=>1000,27270=>1000,27271=>1000,27273=>1000,27275=>1000,27277=>1000,27278=>1000,27280=>1000,27281=>1000,27284=>1000,27287=>1000,27291=>1000,27292=>1000,27293=>1000,27294=>1000,27295=>1000,27296=>1000,27297=>1000,27298=>1000,27299=>1000,27301=>1000,27306=>1000,27307=>1000,27308=>1000,27310=>1000,27311=>1000,27312=>1000,27313=>1000,27315=>1000,27316=>1000,27320=>1000,27323=>1000,27325=>1000,27326=>1000,27327=>1000,27329=>1000,27330=>1000,27331=>1000,27334=>1000,27336=>1000,27337=>1000,27340=>1000,27344=>1000,27345=>1000,27347=>1000,27348=>1000,27349=>1000,27350=>1000,27354=>1000,27355=>1000,27356=>1000,27357=>1000,27358=>1000,27359=>1000,27362=>1000,27364=>1000,27367=>1000,27368=>1000,27370=>1000,27372=>1000,27376=>1000,27377=>1000,27378=>1000,27379=>1000,27384=>1000,27386=>1000,27387=>1000,27388=>1000,27389=>1000,27394=>1000,27395=>1000,27396=>1000,27397=>1000,27398=>1000,27399=>1000,27401=>1000,27402=>1000,27403=>1000,27407=>1000,27408=>1000,27409=>1000,27410=>1000,27414=>1000,27415=>1000,27419=>1000,27421=>1000,27422=>1000,27423=>1000,27424=>1000,27425=>1000,27427=>1000,27428=>1000,27431=>1000,27432=>1000,27435=>1000,27436=>1000,27439=>1000,27442=>1000,27445=>1000,27446=>1000,27447=>1000,27448=>1000,27449=>1000,27450=>1000,27451=>1000,27453=>1000,27454=>1000,27455=>1000,27459=>1000,27462=>1000,27463=>1000,27465=>1000,27466=>1000,27468=>1000,27469=>1000,27470=>1000,27472=>1000,27474=>1000,27475=>1000,27476=>1000,27478=>1000,27480=>1000,27481=>1000,27483=>1000,27485=>1000,27487=>1000,27488=>1000,27489=>1000,27490=>1000,27491=>1000,27492=>1000,27493=>1000,27494=>1000,27495=>1000,27497=>1000,27498=>1000,27499=>1000,27500=>1000,27502=>1000,27503=>1000,27504=>1000,27506=>1000,27507=>1000,27508=>1000,27509=>1000,27511=>1000,27512=>1000,27513=>1000,27514=>1000,27515=>1000,27517=>1000,27518=>1000,27519=>1000,27520=>1000,27521=>1000,27522=>1000,27523=>1000,27524=>1000,27525=>1000,27526=>1000,27529=>1000,27530=>1000,27531=>1000,27533=>1000,27541=>1000,27542=>1000,27543=>1000,27544=>1000,27547=>1000,27550=>1000,27551=>1000,27552=>1000,27554=>1000,27555=>1000,27556=>1000,27560=>1000,27561=>1000,27562=>1000,27563=>1000,27564=>1000,27565=>1000,27566=>1000,27567=>1000,27568=>1000,27569=>1000,27570=>1000,27571=>1000,27572=>1000,27573=>1000,27575=>1000,27576=>1000,27577=>1000,27578=>1000,27579=>1000,27580=>1000,27581=>1000,27582=>1000,27583=>1000,27584=>1000,27587=>1000,27588=>1000,27589=>1000,27590=>1000,27591=>1000,27592=>1000,27593=>1000,27595=>1000,27596=>1000,27597=>1000,27598=>1000,27599=>1000,27602=>1000,27603=>1000,27604=>1000,27606=>1000,27607=>1000,27608=>1000,27610=>1000,27611=>1000,27615=>1000,27617=>1000,27619=>1000,27622=>1000,27623=>1000,27627=>1000,27628=>1000,27630=>1000,27631=>1000,27633=>1000,27635=>1000,27639=>1000,27641=>1000,27647=>1000,27650=>1000,27652=>1000,27653=>1000,27656=>1000,27657=>1000,27658=>1000,27661=>1000,27662=>1000,27663=>1000,27664=>1000,27665=>1000,27666=>1000,27667=>1000,27668=>1000,27671=>1000,27673=>1000,27675=>1000,27679=>1000,27683=>1000,27684=>1000,27686=>1000,27687=>1000,27688=>1000,27692=>1000,27694=>1000,27699=>1000,27700=>1000,27701=>1000,27702=>1000,27703=>1000,27704=>1000,27706=>1000,27707=>1000,27710=>1000,27711=>1000,27712=>1000,27713=>1000,27714=>1000,27722=>1000,27723=>1000,27725=>1000,27726=>1000,27727=>1000,27728=>1000,27730=>1000,27732=>1000,27733=>1000,27735=>1000,27737=>1000,27738=>1000,27739=>1000,27740=>1000,27741=>1000,27742=>1000,27743=>1000,27744=>1000,27746=>1000,27751=>1000,27752=>1000,27754=>1000,27755=>1000,27757=>1000,27759=>1000,27760=>1000,27762=>1000,27763=>1000,27764=>1000,27766=>1000,27768=>1000,27769=>1000,27770=>1000,27771=>1000,27773=>1000,27774=>1000,27777=>1000,27778=>1000,27779=>1000,27780=>1000,27781=>1000,27782=>1000,27783=>1000,27784=>1000,27785=>1000,27788=>1000,27789=>1000,27792=>1000,27794=>1000,27795=>1000,27796=>1000,27797=>1000,27798=>1000,27799=>1000,27800=>1000,27801=>1000,27802=>1000,27803=>1000,27804=>1000,27807=>1000,27809=>1000,27810=>1000,27818=>1000,27819=>1000,27820=>1000,27821=>1000,27822=>1000,27824=>1000,27825=>1000,27826=>1000,27827=>1000,27828=>1000,27832=>1000,27833=>1000,27834=>1000,27835=>1000,27836=>1000,27837=>1000,27838=>1000,27839=>1000,27841=>1000,27842=>1000,27844=>1000,27845=>1000,27846=>1000,27849=>1000,27850=>1000,27852=>1000,27853=>1000,27855=>1000,27856=>1000,27857=>1000,27858=>1000,27859=>1000,27860=>1000,27861=>1000,27862=>1000,27863=>1000,27865=>1000,27866=>1000,27867=>1000,27868=>1000,27869=>1000,27872=>1000,27873=>1000,27874=>1000,27875=>1000,27877=>1000,27879=>1000,27880=>1000,27881=>1000,27882=>1000,27883=>1000,27884=>1000,27885=>1000,27886=>1000,27887=>1000,27888=>1000,27889=>1000,27890=>1000,27891=>1000,27892=>1000,27899=>1000,27904=>1000,27905=>1000,27908=>1000,27911=>1000,27914=>1000,27915=>1000,27916=>1000,27918=>1000,27919=>1000,27921=>1000,27922=>1000,27923=>1000,27927=>1000,27929=>1000,27930=>1000,27931=>1000,27934=>1000,27935=>1000,27940=>1000,27941=>1000,27942=>1000,27943=>1000,27944=>1000,27945=>1000,27946=>1000,27947=>1000,27950=>1000,27951=>1000,27953=>1000,27954=>1000,27955=>1000,27956=>1000,27957=>1000,27958=>1000,27960=>1000,27961=>1000,27963=>1000,27964=>1000,27965=>1000,27966=>1000,27967=>1000,27969=>1000,27972=>1000,27973=>1000,27991=>1000,27992=>1000,27993=>1000,27994=>1000,27995=>1000,27996=>1000,27998=>1000,27999=>1000,28000=>1000,28001=>1000,28003=>1000,28004=>1000,28005=>1000,28006=>1000,28007=>1000,28009=>1000,28010=>1000,28012=>1000,28014=>1000,28015=>1000,28016=>1000,28020=>1000,28023=>1000,28024=>1000,28025=>1000,28028=>1000,28032=>1000,28033=>1000,28034=>1000,28037=>1000,28039=>1000,28040=>1000,28041=>1000,28042=>1000,28044=>1000,28045=>1000,28046=>1000,28049=>1000,28050=>1000,28051=>1000,28052=>1000,28053=>1000,28054=>1000,28055=>1000,28056=>1000,28057=>1000,28059=>1000,28060=>1000,28074=>1000,28075=>1000,28076=>1000,28078=>1000,28079=>1000,28082=>1000,28084=>1000,28085=>1000,28087=>1000,28088=>1000,28089=>1000,28092=>1000,28093=>1000,28095=>1000,28096=>1000,28098=>1000,28100=>1000,28101=>1000,28102=>1000,28103=>1000,28104=>1000,28106=>1000,28107=>1000,28108=>1000,28110=>1000,28111=>1000,28112=>1000,28113=>1000,28114=>1000,28117=>1000,28118=>1000,28120=>1000,28121=>1000,28122=>1000,28123=>1000,28125=>1000,28126=>1000,28127=>1000,28128=>1000,28129=>1000,28130=>1000,28132=>1000,28133=>1000,28134=>1000,28136=>1000,28137=>1000,28138=>1000,28139=>1000,28140=>1000,28142=>1000,28143=>1000,28144=>1000,28145=>1000,28146=>1000,28147=>1000,28148=>1000,28149=>1000,28150=>1000,28151=>1000,28152=>1000,28153=>1000,28154=>1000,28155=>1000,28156=>1000,28160=>1000,28164=>1000,28165=>1000,28167=>1000,28168=>1000,28169=>1000,28170=>1000,28171=>1000,28179=>1000,28181=>1000,28183=>1000,28185=>1000,28186=>1000,28187=>1000,28189=>1000,28190=>1000,28191=>1000,28192=>1000,28193=>1000,28194=>1000,28195=>1000,28196=>1000,28197=>1000,28198=>1000,28199=>1000,28201=>1000,28203=>1000,28204=>1000,28205=>1000,28206=>1000,28207=>1000,28210=>1000,28212=>1000,28214=>1000,28216=>1000,28217=>1000,28218=>1000,28219=>1000,28220=>1000,28222=>1000,28226=>1000,28227=>1000,28228=>1000,28229=>1000,28232=>1000,28233=>1000,28234=>1000,28235=>1000,28236=>1000,28237=>1000,28238=>1000,28239=>1000,28241=>1000,28242=>1000,28243=>1000,28244=>1000,28246=>1000,28247=>1000,28248=>1000,28251=>1000,28252=>1000,28253=>1000,28254=>1000,28255=>1000,28258=>1000,28259=>1000,28263=>1000,28264=>1000,28267=>1000,28270=>1000,28271=>1000,28274=>1000,28275=>1000,28278=>1000,28283=>1000,28285=>1000,28286=>1000,28287=>1000,28288=>1000,28290=>1000,28297=>1000,28300=>1000,28301=>1000,28303=>1000,28304=>1000,28307=>1000,28310=>1000,28312=>1000,28313=>1000,28316=>1000,28317=>1000,28319=>1000,28320=>1000,28322=>1000,28325=>1000,28327=>1000,28330=>1000,28331=>1000,28333=>1000,28334=>1000,28335=>1000,28337=>1000,28338=>1000,28339=>1000,28340=>1000,28342=>1000,28343=>1000,28346=>1000,28347=>1000,28348=>1000,28349=>1000,28351=>1000,28352=>1000,28353=>1000,28354=>1000,28355=>1000,28356=>1000,28357=>1000,28359=>1000,28360=>1000,28361=>1000,28362=>1000,28363=>1000,28364=>1000,28365=>1000,28366=>1000,28367=>1000,28369=>1000,28371=>1000,28372=>1000,28373=>1000,28377=>1000,28378=>1000,28379=>1000,28381=>1000,28382=>1000,28390=>1000,28395=>1000,28396=>1000,28397=>1000,28398=>1000,28399=>1000,28402=>1000,28404=>1000,28407=>1000,28408=>1000,28409=>1000,28411=>1000,28413=>1000,28414=>1000,28415=>1000,28417=>1000,28418=>1000,28420=>1000,28422=>1000,28424=>1000,28425=>1000,28426=>1000,28428=>1000,28429=>1000,28431=>1000,28432=>1000,28433=>1000,28435=>1000,28436=>1000,28437=>1000,28438=>1000,28440=>1000,28442=>1000,28443=>1000,28448=>1000,28450=>1000,28451=>1000,28453=>1000,28454=>1000,28457=>1000,28458=>1000,28459=>1000,28460=>1000,28461=>1000,28463=>1000,28464=>1000,28465=>1000,28466=>1000,28467=>1000,28469=>1000,28470=>1000,28472=>1000,28475=>1000,28476=>1000,28478=>1000,28479=>1000,28481=>1000,28485=>1000,28495=>1000,28497=>1000,28498=>1000,28499=>1000,28500=>1000,28503=>1000,28504=>1000,28505=>1000,28506=>1000,28507=>1000,28508=>1000,28509=>1000,28510=>1000,28511=>1000,28512=>1000,28513=>1000,28514=>1000,28516=>1000,28518=>1000,28520=>1000,28524=>1000,28525=>1000,28526=>1000,28527=>1000,28528=>1000,28532=>1000,28536=>1000,28538=>1000,28540=>1000,28541=>1000,28542=>1000,28544=>1000,28545=>1000,28546=>1000,28547=>1000,28548=>1000,28550=>1000,28551=>1000,28552=>1000,28555=>1000,28556=>1000,28557=>1000,28558=>1000,28560=>1000,28561=>1000,28562=>1000,28563=>1000,28564=>1000,28566=>1000,28567=>1000,28568=>1000,28570=>1000,28573=>1000,28575=>1000,28576=>1000,28577=>1000,28579=>1000,28580=>1000,28581=>1000,28582=>1000,28583=>1000,28584=>1000,28586=>1000,28590=>1000,28591=>1000,28592=>1000,28593=>1000,28595=>1000,28597=>1000,28598=>1000,28599=>1000,28601=>1000,28604=>1000,28606=>1000,28608=>1000,28609=>1000,28610=>1000,28611=>1000,28613=>1000,28614=>1000,28615=>1000,28616=>1000,28617=>1000,28618=>1000,28628=>1000,28629=>1000,28632=>1000,28634=>1000,28635=>1000,28638=>1000,28639=>1000,28640=>1000,28641=>1000,28644=>1000,28648=>1000,28649=>1000,28651=>1000,28652=>1000,28654=>1000,28655=>1000,28656=>1000,28657=>1000,28659=>1000,28661=>1000,28662=>1000,28665=>1000,28666=>1000,28668=>1000,28669=>1000,28670=>1000,28672=>1000,28673=>1000,28677=>1000,28678=>1000,28679=>1000,28681=>1000,28682=>1000,28683=>1000,28685=>1000,28687=>1000,28689=>1000,28693=>1000,28695=>1000,28696=>1000,28698=>1000,28699=>1000,28701=>1000,28702=>1000,28703=>1000,28704=>1000,28707=>1000,28710=>1000,28711=>1000,28712=>1000,28716=>1000,28719=>1000,28720=>1000,28722=>1000,28724=>1000,28727=>1000,28729=>1000,28730=>1000,28732=>1000,28734=>1000,28739=>1000,28740=>1000,28743=>1000,28744=>1000,28745=>1000,28746=>1000,28747=>1000,28748=>1000,28750=>1000,28753=>1000,28756=>1000,28757=>1000,28760=>1000,28765=>1000,28766=>1000,28771=>1000,28772=>1000,28773=>1000,28777=>1000,28779=>1000,28780=>1000,28782=>1000,28783=>1000,28784=>1000,28789=>1000,28790=>1000,28792=>1000,28796=>1000,28797=>1000,28798=>1000,28801=>1000,28805=>1000,28806=>1000,28809=>1000,28810=>1000,28814=>1000,28818=>1000,28820=>1000,28821=>1000,28822=>1000,28823=>1000,28824=>1000,28825=>1000,28827=>1000,28831=>1000,28836=>1000,28843=>1000,28844=>1000,28845=>1000,28846=>1000,28847=>1000,28848=>1000,28849=>1000,28851=>1000,28852=>1000,28855=>1000,28856=>1000,28857=>1000,28858=>1000,28859=>1000,28872=>1000,28874=>1000,28875=>1000,28879=>1000,28881=>1000,28883=>1000,28884=>1000,28885=>1000,28886=>1000,28888=>1000,28889=>1000,28892=>1000,28893=>1000,28895=>1000,28900=>1000,28908=>1000,28913=>1000,28921=>1000,28922=>1000,28925=>1000,28931=>1000,28932=>1000,28933=>1000,28934=>1000,28935=>1000,28936=>1000,28937=>1000,28939=>1000,28940=>1000,28943=>1000,28948=>1000,28953=>1000,28954=>1000,28956=>1000,28958=>1000,28960=>1000,28961=>1000,28966=>1000,28971=>1000,28973=>1000,28974=>1000,28975=>1000,28976=>1000,28977=>1000,28982=>1000,28984=>1000,28988=>1000,28993=>1000,28997=>1000,28998=>1000,28999=>1000,29001=>1000,29002=>1000,29003=>1000,29004=>1000,29006=>1000,29008=>1000,29009=>1000,29010=>1000,29011=>1000,29013=>1000,29014=>1000,29015=>1000,29017=>1000,29018=>1000,29020=>1000,29022=>1000,29024=>1000,29026=>1000,29028=>1000,29029=>1000,29030=>1000,29031=>1000,29032=>1000,29033=>1000,29036=>1000,29038=>1000,29049=>1000,29053=>1000,29056=>1000,29060=>1000,29061=>1000,29063=>1000,29064=>1000,29066=>1000,29068=>1000,29071=>1000,29074=>1000,29076=>1000,29077=>1000,29078=>1000,29081=>1000,29082=>1000,29083=>1000,29087=>1000,29088=>1000,29090=>1000,29096=>1000,29100=>1000,29102=>1000,29103=>1000,29104=>1000,29105=>1000,29106=>1000,29107=>1000,29113=>1000,29114=>1000,29118=>1000,29119=>1000,29120=>1000,29121=>1000,29123=>1000,29124=>1000,29128=>1000,29129=>1000,29131=>1000,29132=>1000,29134=>1000,29136=>1000,29138=>1000,29139=>1000,29140=>1000,29141=>1000,29142=>1000,29143=>1000,29145=>1000,29146=>1000,29148=>1000,29151=>1000,29152=>1000,29157=>1000,29158=>1000,29159=>1000,29164=>1000,29165=>1000,29166=>1000,29172=>1000,29173=>1000,29176=>1000,29177=>1000,29179=>1000,29180=>1000,29182=>1000,29183=>1000,29184=>1000,29190=>1000,29191=>1000,29192=>1000,29193=>1000,29197=>1000,29200=>1000,29203=>1000,29205=>1000,29207=>1000,29210=>1000,29211=>1000,29213=>1000,29215=>1000,29220=>1000,29224=>1000,29226=>1000,29227=>1000,29228=>1000,29229=>1000,29231=>1000,29232=>1000,29234=>1000,29236=>1000,29237=>1000,29238=>1000,29240=>1000,29241=>1000,29242=>1000,29243=>1000,29244=>1000,29245=>1000,29246=>1000,29247=>1000,29248=>1000,29249=>1000,29250=>1000,29251=>1000,29253=>1000,29254=>1000,29255=>1000,29256=>1000,29259=>1000,29260=>1000,29262=>1000,29263=>1000,29264=>1000,29266=>1000,29267=>1000,29269=>1000,29270=>1000,29271=>1000,29272=>1000,29273=>1000,29274=>1000,29275=>1000,29276=>1000,29277=>1000,29278=>1000,29279=>1000,29280=>1000,29281=>1000,29282=>1000,29283=>1000,29287=>1000,29288=>1000,29289=>1000,29291=>1000,29294=>1000,29295=>1000,29297=>1000,29298=>1000,29300=>1000,29303=>1000,29304=>1000,29305=>1000,29307=>1000,29308=>1000,29309=>1000,29310=>1000,29311=>1000,29312=>1000,29313=>1000,29314=>1000,29316=>1000,29319=>1000,29321=>1000,29325=>1000,29326=>1000,29330=>1000,29331=>1000,29334=>1000,29339=>1000,29344=>1000,29346=>1000,29351=>1000,29352=>1000,29356=>1000,29357=>1000,29358=>1000,29359=>1000,29360=>1000,29361=>1000,29362=>1000,29364=>1000,29366=>1000,29369=>1000,29374=>1000,29376=>1000,29377=>1000,29378=>1000,29379=>1000,29380=>1000,29382=>1000,29383=>1000,29385=>1000,29388=>1000,29390=>1000,29392=>1000,29394=>1000,29397=>1000,29398=>1000,29399=>1000,29400=>1000,29401=>1000,29403=>1000,29407=>1000,29408=>1000,29409=>1000,29410=>1000,29413=>1000,29417=>1000,29420=>1000,29421=>1000,29427=>1000,29428=>1000,29431=>1000,29432=>1000,29433=>1000,29434=>1000,29435=>1000,29436=>1000,29437=>1000,29438=>1000,29442=>1000,29444=>1000,29445=>1000,29447=>1000,29450=>1000,29451=>1000,29453=>1000,29458=>1000,29459=>1000,29462=>1000,29463=>1000,29464=>1000,29465=>1000,29467=>1000,29468=>1000,29469=>1000,29470=>1000,29471=>1000,29474=>1000,29476=>1000,29477=>1000,29479=>1000,29480=>1000,29481=>1000,29482=>1000,29483=>1000,29484=>1000,29486=>1000,29487=>1000,29489=>1000,29490=>1000,29491=>1000,29492=>1000,29493=>1000,29494=>1000,29495=>1000,29497=>1000,29498=>1000,29499=>1000,29501=>1000,29502=>1000,29503=>1000,29507=>1000,29508=>1000,29509=>1000,29517=>1000,29518=>1000,29519=>1000,29520=>1000,29522=>1000,29526=>1000,29527=>1000,29528=>1000,29533=>1000,29534=>1000,29535=>1000,29536=>1000,29539=>1000,29542=>1000,29543=>1000,29544=>1000,29545=>1000,29546=>1000,29547=>1000,29548=>1000,29550=>1000,29551=>1000,29552=>1000,29553=>1000,29554=>1000,29557=>1000,29559=>1000,29560=>1000,29561=>1000,29562=>1000,29563=>1000,29564=>1000,29568=>1000,29569=>1000,29571=>1000,29572=>1000,29573=>1000,29574=>1000,29575=>1000,29577=>1000,29578=>1000,29579=>1000,29582=>1000,29584=>1000,29587=>1000,29588=>1000,29589=>1000,29590=>1000,29591=>1000,29592=>1000,29596=>1000,29598=>1000,29599=>1000,29600=>1000,29602=>1000,29605=>1000,29606=>1000,29608=>1000,29609=>1000,29610=>1000,29611=>1000,29613=>1000,29618=>1000,29619=>1000,29621=>1000,29623=>1000,29625=>1000,29626=>1000,29627=>1000,29628=>1000,29629=>1000,29631=>1000,29632=>1000,29634=>1000,29637=>1000,29638=>1000,29640=>1000,29641=>1000,29642=>1000,29643=>1000,29644=>1000,29645=>1000,29646=>1000,29647=>1000,29650=>1000,29651=>1000,29654=>1000,29657=>1000,29661=>1000,29662=>1000,29664=>1000,29665=>1000,29667=>1000,29668=>1000,29669=>1000,29670=>1000,29671=>1000,29673=>1000,29674=>1000,29677=>1000,29678=>1000,29681=>1000,29684=>1000,29685=>1000,29687=>1000,29688=>1000,29689=>1000,29690=>1000,29691=>1000,29693=>1000,29694=>1000,29695=>1000,29696=>1000,29697=>1000,29699=>1000,29700=>1000,29701=>1000,29702=>1000,29703=>1000,29705=>1000,29706=>1000,29713=>1000,29715=>1000,29722=>1000,29723=>1000,29729=>1000,29730=>1000,29732=>1000,29733=>1000,29734=>1000,29736=>1000,29737=>1000,29738=>1000,29739=>1000,29740=>1000,29741=>1000,29742=>1000,29743=>1000,29744=>1000,29745=>1000,29746=>1000,29747=>1000,29748=>1000,29749=>1000,29750=>1000,29753=>1000,29754=>1000,29759=>1000,29760=>1000,29761=>1000,29763=>1000,29764=>1000,29766=>1000,29767=>1000,29771=>1000,29773=>1000,29777=>1000,29778=>1000,29779=>1000,29781=>1000,29783=>1000,29785=>1000,29786=>1000,29787=>1000,29788=>1000,29789=>1000,29790=>1000,29791=>1000,29792=>1000,29794=>1000,29795=>1000,29796=>1000,29798=>1000,29799=>1000,29800=>1000,29801=>1000,29802=>1000,29803=>1000,29805=>1000,29806=>1000,29807=>1000,29808=>1000,29809=>1000,29810=>1000,29811=>1000,29814=>1000,29822=>1000,29824=>1000,29825=>1000,29827=>1000,29829=>1000,29830=>1000,29831=>1000,29832=>1000,29833=>1000,29835=>1000,29839=>1000,29840=>1000,29841=>1000,29842=>1000,29847=>1000,29848=>1000,29849=>1000,29850=>1000,29852=>1000,29854=>1000,29855=>1000,29856=>1000,29857=>1000,29858=>1000,29859=>1000,29861=>1000,29862=>1000,29863=>1000,29864=>1000,29865=>1000,29866=>1000,29867=>1000,29870=>1000,29871=>1000,29872=>1000,29873=>1000,29874=>1000,29877=>1000,29881=>1000,29882=>1000,29883=>1000,29885=>1000,29887=>1000,29896=>1000,29897=>1000,29898=>1000,29900=>1000,29903=>1000,29904=>1000,29907=>1000,29908=>1000,29910=>1000,29912=>1000,29914=>1000,29915=>1000,29916=>1000,29918=>1000,29919=>1000,29920=>1000,29922=>1000,29923=>1000,29924=>1000,29926=>1000,29927=>1000,29928=>1000,29929=>1000,29930=>1000,29931=>1000,29934=>1000,29935=>1000,29936=>1000,29937=>1000,29938=>1000,29940=>1000,29942=>1000,29943=>1000,29944=>1000,29946=>1000,29947=>1000,29948=>1000,29951=>1000,29953=>1000,29955=>1000,29956=>1000,29957=>1000,29958=>1000,29964=>1000,29965=>1000,29966=>1000,29969=>1000,29970=>1000,29971=>1000,29973=>1000,29974=>1000,29975=>1000,29976=>1000,29978=>1000,29980=>1000,29982=>1000,29983=>1000,29984=>1000,29985=>1000,29986=>1000,29987=>1000,29988=>1000,29989=>1000,29990=>1000,29991=>1000,29992=>1000,29993=>1000,29994=>1000,29995=>1000,29996=>1000,29999=>1000,30000=>1000,30001=>1000,30002=>1000,30003=>1000,30006=>1000,30007=>1000,30008=>1000,30009=>1000,30010=>1000,30011=>1000,30012=>1000,30013=>1000,30014=>1000,30015=>1000,30016=>1000,30019=>1000,30020=>1000,30022=>1000,30023=>1000,30024=>1000,30025=>1000,30026=>1000,30027=>1000,30028=>1000,30029=>1000,30030=>1000,30031=>1000,30032=>1000,30033=>1000,30034=>1000,30036=>1000,30039=>1000,30041=>1000,30042=>1000,30043=>1000,30044=>1000,30045=>1000,30046=>1000,30047=>1000,30048=>1000,30049=>1000,30050=>1000,30052=>1000,30053=>1000,30054=>1000,30055=>1000,30057=>1000,30058=>1000,30059=>1000,30060=>1000,30061=>1000,30063=>1000,30064=>1000,30065=>1000,30066=>1000,30067=>1000,30068=>1000,30069=>1000,30070=>1000,30071=>1000,30072=>1000,30073=>1000,30074=>1000,30075=>1000,30076=>1000,30077=>1000,30078=>1000,30079=>1000,30081=>1000,30082=>1000,30085=>1000,30086=>1000,30087=>1000,30089=>1000,30090=>1000,30091=>1000,30092=>1000,30094=>1000,30095=>1000,30096=>1000,30097=>1000,30098=>1000,30099=>1000,30100=>1000,30101=>1000,30105=>1000,30106=>1000,30108=>1000,30109=>1000,30114=>1000,30115=>1000,30116=>1000,30117=>1000,30123=>1000,30128=>1000,30129=>1000,30130=>1000,30131=>1000,30132=>1000,30133=>1000,30135=>1000,30136=>1000,30137=>1000,30138=>1000,30140=>1000,30141=>1000,30142=>1000,30143=>1000,30144=>1000,30145=>1000,30146=>1000,30147=>1000,30148=>1000,30149=>1000,30150=>1000,30151=>1000,30154=>1000,30156=>1000,30157=>1000,30158=>1000,30159=>1000,30162=>1000,30163=>1000,30164=>1000,30165=>1000,30167=>1000,30168=>1000,30169=>1000,30171=>1000,30172=>1000,30173=>1000,30174=>1000,30175=>1000,30176=>1000,30177=>1000,30178=>1000,30179=>1000,30180=>1000,30183=>1000,30185=>1000,30188=>1000,30190=>1000,30191=>1000,30192=>1000,30193=>1000,30194=>1000,30195=>1000,30196=>1000,30201=>1000,30202=>1000,30204=>1000,30206=>1000,30207=>1000,30208=>1000,30209=>1000,30210=>1000,30211=>1000,30212=>1000,30215=>1000,30216=>1000,30217=>1000,30218=>1000,30219=>1000,30220=>1000,30221=>1000,30223=>1000,30226=>1000,30227=>1000,30229=>1000,30230=>1000,30232=>1000,30233=>1000,30235=>1000,30236=>1000,30237=>1000,30238=>1000,30239=>1000,30240=>1000,30241=>1000,30242=>1000,30243=>1000,30244=>1000,30245=>1000,30246=>1000,30247=>1000,30248=>1000,30249=>1000,30253=>1000,30256=>1000,30258=>1000,30259=>1000,30260=>1000,30261=>1000,30264=>1000,30265=>1000,30266=>1000,30267=>1000,30268=>1000,30272=>1000,30273=>1000,30274=>1000,30275=>1000,30276=>1000,30277=>1000,30278=>1000,30279=>1000,30280=>1000,30281=>1000,30282=>1000,30283=>1000,30284=>1000,30286=>1000,30290=>1000,30293=>1000,30294=>1000,30296=>1000,30297=>1000,30300=>1000,30303=>1000,30305=>1000,30306=>1000,30308=>1000,30309=>1000,30311=>1000,30312=>1000,30313=>1000,30314=>1000,30316=>1000,30317=>1000,30318=>1000,30319=>1000,30320=>1000,30321=>1000,30322=>1000,30324=>1000,30326=>1000,30328=>1000,30330=>1000,30331=>1000,30332=>1000,30333=>1000,30334=>1000,30336=>1000,30337=>1000,30338=>1000,30339=>1000,30340=>1000,30341=>1000,30342=>1000,30343=>1000,30344=>1000,30347=>1000,30348=>1000,30349=>1000,30350=>1000,30352=>1000,30355=>1000,30357=>1000,30358=>1000,30361=>1000,30362=>1000,30363=>1000,30364=>1000,30365=>1000,30366=>1000,30367=>1000,30368=>1000,30369=>1000,30370=>1000,30371=>1000,30372=>1000,30373=>1000,30374=>1000,30375=>1000,30376=>1000,30378=>1000,30381=>1000,30382=>1000,30383=>1000,30384=>1000,30388=>1000,30390=>1000,30391=>1000,30392=>1000,30393=>1000,30394=>1000,30397=>1000,30399=>1000,30401=>1000,30402=>1000,30403=>1000,30405=>1000,30406=>1000,30408=>1000,30409=>1000,30410=>1000,30411=>1000,30412=>1000,30413=>1000,30414=>1000,30418=>1000,30420=>1000,30422=>1000,30423=>1000,30425=>1000,30427=>1000,30428=>1000,30430=>1000,30431=>1000,30432=>1000,30433=>1000,30435=>1000,30436=>1000,30437=>1000,30438=>1000,30439=>1000,30440=>1000,30442=>1000,30443=>1000,30444=>1000,30446=>1000,30448=>1000,30449=>1000,30450=>1000,30452=>1000,30454=>1000,30456=>1000,30457=>1000,30459=>1000,30460=>1000,30462=>1000,30464=>1000,30465=>1000,30468=>1000,30470=>1000,30471=>1000,30472=>1000,30473=>1000,30474=>1000,30475=>1000,30476=>1000,30478=>1000,30482=>1000,30484=>1000,30485=>1000,30487=>1000,30489=>1000,30490=>1000,30491=>1000,30492=>1000,30494=>1000,30495=>1000,30496=>1000,30498=>1000,30500=>1000,30501=>1000,30502=>1000,30504=>1000,30505=>1000,30509=>1000,30510=>1000,30511=>1000,30516=>1000,30517=>1000,30518=>1000,30519=>1000,30520=>1000,30521=>1000,30522=>1000,30524=>1000,30525=>1000,30526=>1000,30528=>1000,30530=>1000,30533=>1000,30534=>1000,30535=>1000,30538=>1000,30541=>1000,30542=>1000,30543=>1000,30546=>1000,30550=>1000,30551=>1000,30552=>1000,30554=>1000,30555=>1000,30556=>1000,30558=>1000,30559=>1000,30560=>1000,30561=>1000,30562=>1000,30563=>1000,30564=>1000,30565=>1000,30566=>1000,30567=>1000,30568=>1000,30570=>1000,30571=>1000,30572=>1000,30576=>1000,30578=>1000,30579=>1000,30580=>1000,30585=>1000,30586=>1000,30588=>1000,30589=>1000,30590=>1000,30591=>1000,30592=>1000,30596=>1000,30603=>1000,30604=>1000,30605=>1000,30606=>1000,30609=>1000,30612=>1000,30613=>1000,30614=>1000,30618=>1000,30622=>1000,30623=>1000,30624=>1000,30626=>1000,30628=>1000,30629=>1000,30631=>1000,30633=>1000,30634=>1000,30636=>1000,30637=>1000,30638=>1000,30639=>1000,30640=>1000,30641=>1000,30643=>1000,30645=>1000,30646=>1000,30647=>1000,30649=>1000,30651=>1000,30652=>1000,30653=>1000,30654=>1000,30655=>1000,30659=>1000,30663=>1000,30665=>1000,30669=>1000,30673=>1000,30674=>1000,30677=>1000,30679=>1000,30681=>1000,30682=>1000,30683=>1000,30684=>1000,30686=>1000,30687=>1000,30688=>1000,30690=>1000,30691=>1000,30692=>1000,30693=>1000,30694=>1000,30695=>1000,30697=>1000,30698=>1000,30700=>1000,30701=>1000,30702=>1000,30703=>1000,30704=>1000,30705=>1000,30707=>1000,30708=>1000,30712=>1000,30715=>1000,30716=>1000,30722=>1000,30725=>1000,30726=>1000,30729=>1000,30732=>1000,30733=>1000,30734=>1000,30737=>1000,30738=>1000,30740=>1000,30741=>1000,30745=>1000,30749=>1000,30752=>1000,30753=>1000,30754=>1000,30755=>1000,30757=>1000,30758=>1000,30759=>1000,30764=>1000,30765=>1000,30766=>1000,30768=>1000,30770=>1000,30772=>1000,30773=>1000,30775=>1000,30778=>1000,30783=>1000,30787=>1000,30788=>1000,30789=>1000,30791=>1000,30792=>1000,30796=>1000,30798=>1000,30799=>1000,30801=>1000,30802=>1000,30812=>1000,30813=>1000,30814=>1000,30816=>1000,30817=>1000,30819=>1000,30820=>1000,30824=>1000,30826=>1000,30827=>1000,30828=>1000,30830=>1000,30831=>1000,30834=>1000,30836=>1000,30842=>1000,30844=>1000,30846=>1000,30849=>1000,30854=>1000,30855=>1000,30858=>1000,30860=>1000,30861=>1000,30862=>1000,30863=>1000,30865=>1000,30867=>1000,30868=>1000,30869=>1000,30871=>1000,30872=>1000,30874=>1000,30877=>1000,30878=>1000,30879=>1000,30881=>1000,30883=>1000,30884=>1000,30887=>1000,30888=>1000,30889=>1000,30890=>1000,30892=>1000,30893=>1000,30895=>1000,30896=>1000,30897=>1000,30898=>1000,30899=>1000,30901=>1000,30906=>1000,30907=>1000,30908=>1000,30909=>1000,30910=>1000,30911=>1000,30913=>1000,30917=>1000,30918=>1000,30919=>1000,30920=>1000,30921=>1000,30922=>1000,30923=>1000,30924=>1000,30926=>1000,30928=>1000,30929=>1000,30930=>1000,30931=>1000,30932=>1000,30933=>1000,30934=>1000,30938=>1000,30939=>1000,30943=>1000,30944=>1000,30945=>1000,30948=>1000,30950=>1000,30951=>1000,30952=>1000,30954=>1000,30956=>1000,30959=>1000,30962=>1000,30963=>1000,30964=>1000,30966=>1000,30967=>1000,30969=>1000,30970=>1000,30971=>1000,30973=>1000,30974=>1000,30975=>1000,30976=>1000,30977=>1000,30982=>1000,30983=>1000,30988=>1000,30990=>1000,30992=>1000,30993=>1000,30994=>1000,31001=>1000,31002=>1000,31003=>1000,31004=>1000,31006=>1000,31007=>1000,31008=>1000,31013=>1000,31014=>1000,31015=>1000,31016=>1000,31017=>1000,31018=>1000,31019=>1000,31020=>1000,31021=>1000,31022=>1000,31024=>1000,31025=>1000,31028=>1000,31029=>1000,31034=>1000,31035=>1000,31036=>1000,31037=>1000,31038=>1000,31039=>1000,31040=>1000,31041=>1000,31042=>1000,31044=>1000,31045=>1000,31046=>1000,31047=>1000,31048=>1000,31049=>1000,31050=>1000,31051=>1000,31055=>1000,31056=>1000,31057=>1000,31059=>1000,31060=>1000,31061=>1000,31062=>1000,31063=>1000,31064=>1000,31066=>1000,31067=>1000,31068=>1000,31069=>1000,31070=>1000,31071=>1000,31072=>1000,31074=>1000,31077=>1000,31079=>1000,31080=>1000,31081=>1000,31083=>1000,31085=>1000,31090=>1000,31095=>1000,31097=>1000,31098=>1000,31099=>1000,31100=>1000,31102=>1000,31103=>1000,31104=>1000,31105=>1000,31108=>1000,31109=>1000,31114=>1000,31115=>1000,31116=>1000,31117=>1000,31118=>1000,31119=>1000,31121=>1000,31123=>1000,31124=>1000,31125=>1000,31126=>1000,31128=>1000,31131=>1000,31132=>1000,31133=>1000,31137=>1000,31142=>1000,31143=>1000,31144=>1000,31145=>1000,31146=>1000,31147=>1000,31150=>1000,31151=>1000,31152=>1000,31153=>1000,31155=>1000,31156=>1000,31160=>1000,31161=>1000,31162=>1000,31163=>1000,31165=>1000,31166=>1000,31167=>1000,31168=>1000,31169=>1000,31170=>1000,31172=>1000,31175=>1000,31176=>1000,31177=>1000,31178=>1000,31179=>1000,31180=>1000,31181=>1000,31183=>1000,31185=>1000,31186=>1000,31188=>1000,31189=>1000,31190=>1000,31192=>1000,31194=>1000,31197=>1000,31198=>1000,31199=>1000,31200=>1000,31201=>1000,31202=>1000,31203=>1000,31204=>1000,31205=>1000,31206=>1000,31207=>1000,31209=>1000,31210=>1000,31211=>1000,31212=>1000,31213=>1000,31216=>1000,31217=>1000,31224=>1000,31227=>1000,31228=>1000,31232=>1000,31234=>1000,31235=>1000,31237=>1000,31239=>1000,31240=>1000,31241=>1000,31242=>1000,31243=>1000,31244=>1000,31245=>1000,31246=>1000,31249=>1000,31252=>1000,31253=>1000,31255=>1000,31256=>1000,31257=>1000,31258=>1000,31259=>1000,31260=>1000,31262=>1000,31263=>1000,31264=>1000,31265=>1000,31271=>1000,31275=>1000,31277=>1000,31278=>1000,31279=>1000,31280=>1000,31281=>1000,31282=>1000,31284=>1000,31285=>1000,31287=>1000,31288=>1000,31289=>1000,31290=>1000,31291=>1000,31292=>1000,31293=>1000,31294=>1000,31295=>1000,31296=>1000,31298=>1000,31299=>1000,31300=>1000,31301=>1000,31302=>1000,31303=>1000,31304=>1000,31305=>1000,31308=>1000,31309=>1000,31310=>1000,31311=>1000,31312=>1000,31317=>1000,31318=>1000,31319=>1000,31321=>1000,31324=>1000,31325=>1000,31327=>1000,31328=>1000,31329=>1000,31330=>1000,31331=>1000,31333=>1000,31335=>1000,31337=>1000,31338=>1000,31339=>1000,31341=>1000,31344=>1000,31348=>1000,31349=>1000,31350=>1000,31352=>1000,31353=>1000,31354=>1000,31357=>1000,31358=>1000,31359=>1000,31360=>1000,31361=>1000,31362=>1000,31363=>1000,31364=>1000,31365=>1000,31366=>1000,31368=>1000,31370=>1000,31371=>1000,31376=>1000,31377=>1000,31378=>1000,31379=>1000,31380=>1000,31381=>1000,31382=>1000,31383=>1000,31384=>1000,31390=>1000,31391=>1000,31392=>1000,31395=>1000,31401=>1000,31402=>1000,31404=>1000,31406=>1000,31407=>1000,31408=>1000,31411=>1000,31413=>1000,31414=>1000,31417=>1000,31418=>1000,31419=>1000,31420=>1000,31421=>1000,31422=>1000,31423=>1000,31427=>1000,31428=>1000,31429=>1000,31430=>1000,31431=>1000,31432=>1000,31433=>1000,31434=>1000,31435=>1000,31436=>1000,31437=>1000,31438=>1000,31439=>1000,31441=>1000,31442=>1000,31443=>1000,31445=>1000,31449=>1000,31450=>1000,31451=>1000,31452=>1000,31453=>1000,31455=>1000,31456=>1000,31457=>1000,31458=>1000,31459=>1000,31461=>1000,31462=>1000,31463=>1000,31464=>1000,31465=>1000,31466=>1000,31467=>1000,31468=>1000,31469=>1000,31471=>1000,31472=>1000,31473=>1000,31476=>1000,31478=>1000,31480=>1000,31481=>1000,31482=>1000,31483=>1000,31485=>1000,31486=>1000,31487=>1000,31490=>1000,31492=>1000,31494=>1000,31495=>1000,31496=>1000,31498=>1000,31499=>1000,31503=>1000,31505=>1000,31506=>1000,31508=>1000,31512=>1000,31513=>1000,31515=>1000,31518=>1000,31519=>1000,31520=>1000,31523=>1000,31525=>1000,31526=>1000,31527=>1000,31528=>1000,31529=>1000,31530=>1000,31531=>1000,31532=>1000,31533=>1000,31534=>1000,31535=>1000,31536=>1000,31537=>1000,31539=>1000,31540=>1000,31541=>1000,31542=>1000,31545=>1000,31547=>1000,31549=>1000,31551=>1000,31552=>1000,31553=>1000,31557=>1000,31558=>1000,31559=>1000,31560=>1000,31561=>1000,31563=>1000,31564=>1000,31565=>1000,31566=>1000,31567=>1000,31568=>1000,31569=>1000,31570=>1000,31571=>1000,31572=>1000,31573=>1000,31574=>1000,31581=>1000,31584=>1000,31588=>1000,31589=>1000,31590=>1000,31591=>1000,31593=>1000,31594=>1000,31596=>1000,31597=>1000,31598=>1000,31599=>1000,31600=>1000,31601=>1000,31602=>1000,31603=>1000,31604=>1000,31605=>1000,31607=>1000,31609=>1000,31610=>1000,31615=>1000,31620=>1000,31622=>1000,31623=>1000,31625=>1000,31627=>1000,31629=>1000,31630=>1000,31631=>1000,31632=>1000,31633=>1000,31634=>1000,31636=>1000,31637=>1000,31638=>1000,31639=>1000,31640=>1000,31641=>1000,31642=>1000,31643=>1000,31644=>1000,31645=>1000,31646=>1000,31647=>1000,31648=>1000,31649=>1000,31653=>1000,31658=>1000,31660=>1000,31661=>1000,31663=>1000,31664=>1000,31665=>1000,31666=>1000,31668=>1000,31669=>1000,31670=>1000,31672=>1000,31674=>1000,31675=>1000,31676=>1000,31677=>1000,31680=>1000,31681=>1000,31682=>1000,31684=>1000,31685=>1000,31686=>1000,31687=>1000,31688=>1000,31689=>1000,31690=>1000,31691=>1000,31692=>1000,31695=>1000,31700=>1000,31702=>1000,31703=>1000,31705=>1000,31706=>1000,31707=>1000,31709=>1000,31712=>1000,31716=>1000,31717=>1000,31718=>1000,31720=>1000,31721=>1000,31722=>1000,31725=>1000,31728=>1000,31730=>1000,31731=>1000,31732=>1000,31733=>1000,31734=>1000,31735=>1000,31736=>1000,31737=>1000,31738=>1000,31740=>1000,31742=>1000,31744=>1000,31745=>1000,31746=>1000,31747=>1000,31748=>1000,31750=>1000,31751=>1000,31753=>1000,31755=>1000,31756=>1000,31757=>1000,31758=>1000,31759=>1000,31761=>1000,31762=>1000,31763=>1000,31764=>1000,31767=>1000,31769=>1000,31771=>1000,31774=>1000,31775=>1000,31776=>1000,31777=>1000,31779=>1000,31781=>1000,31782=>1000,31783=>1000,31784=>1000,31786=>1000,31787=>1000,31788=>1000,31791=>1000,31793=>1000,31795=>1000,31796=>1000,31798=>1000,31799=>1000,31800=>1000,31801=>1000,31802=>1000,31805=>1000,31806=>1000,31807=>1000,31808=>1000,31810=>1000,31811=>1000,31813=>1000,31814=>1000,31818=>1000,31820=>1000,31821=>1000,31823=>1000,31824=>1000,31825=>1000,31826=>1000,31827=>1000,31828=>1000,31829=>1000,31830=>1000,31831=>1000,31832=>1000,31833=>1000,31834=>1000,31835=>1000,31836=>1000,31837=>1000,31838=>1000,31839=>1000,31840=>1000,31841=>1000,31843=>1000,31844=>1000,31845=>1000,31847=>1000,31849=>1000,31852=>1000,31853=>1000,31854=>1000,31855=>1000,31856=>1000,31858=>1000,31859=>1000,31861=>1000,31865=>1000,31867=>1000,31868=>1000,31869=>1000,31870=>1000,31873=>1000,31874=>1000,31875=>1000,31878=>1000,31879=>1000,31881=>1000,31883=>1000,31885=>1000,31887=>1000,31888=>1000,31890=>1000,31892=>1000,31893=>1000,31895=>1000,31896=>1000,31899=>1000,31902=>1000,31903=>1000,31904=>1000,31905=>1000,31906=>1000,31908=>1000,31909=>1000,31910=>1000,31911=>1000,31912=>1000,31915=>1000,31917=>1000,31918=>1000,31920=>1000,31921=>1000,31922=>1000,31923=>1000,31926=>1000,31927=>1000,31929=>1000,31930=>1000,31931=>1000,31932=>1000,31933=>1000,31934=>1000,31935=>1000,31936=>1000,31938=>1000,31940=>1000,31941=>1000,31943=>1000,31944=>1000,31945=>1000,31946=>1000,31949=>1000,31950=>1000,31951=>1000,31954=>1000,31955=>1000,31956=>1000,31957=>1000,31958=>1000,31959=>1000,31960=>1000,31961=>1000,31962=>1000,31964=>1000,31965=>1000,31966=>1000,31967=>1000,31968=>1000,31970=>1000,31974=>1000,31975=>1000,31977=>1000,31979=>1000,31983=>1000,31986=>1000,31988=>1000,31989=>1000,31990=>1000,31992=>1000,31993=>1000,31994=>1000,31995=>1000,31998=>1000,32000=>1000,32002=>1000,32003=>1000,32004=>1000,32005=>1000,32006=>1000,32007=>1000,32008=>1000,32009=>1000,32010=>1000,32011=>1000,32013=>1000,32015=>1000,32016=>1000,32017=>1000,32018=>1000,32019=>1000,32020=>1000,32021=>1000,32022=>1000,32023=>1000,32024=>1000,32025=>1000,32026=>1000,32027=>1000,32028=>1000,32029=>1000,32030=>1000,32032=>1000,32033=>1000,32034=>1000,32035=>1000,32038=>1000,32042=>1000,32043=>1000,32044=>1000,32045=>1000,32046=>1000,32047=>1000,32048=>1000,32049=>1000,32050=>1000,32051=>1000,32053=>1000,32057=>1000,32058=>1000,32060=>1000,32061=>1000,32062=>1000,32063=>1000,32064=>1000,32065=>1000,32066=>1000,32067=>1000,32068=>1000,32069=>1000,32070=>1000,32071=>1000,32072=>1000,32075=>1000,32076=>1000,32077=>1000,32078=>1000,32079=>1000,32080=>1000,32081=>1000,32083=>1000,32085=>1000,32086=>1000,32087=>1000,32089=>1000,32090=>1000,32091=>1000,32092=>1000,32093=>1000,32094=>1000,32097=>1000,32098=>1000,32099=>1000,32101=>1000,32102=>1000,32103=>1000,32104=>1000,32106=>1000,32110=>1000,32112=>1000,32113=>1000,32114=>1000,32115=>1000,32117=>1000,32118=>1000,32120=>1000,32121=>1000,32122=>1000,32123=>1000,32125=>1000,32127=>1000,32129=>1000,32130=>1000,32131=>1000,32133=>1000,32134=>1000,32136=>1000,32137=>1000,32139=>1000,32140=>1000,32141=>1000,32143=>1000,32145=>1000,32147=>1000,32150=>1000,32151=>1000,32153=>1000,32154=>1000,32155=>1000,32156=>1000,32157=>1000,32158=>1000,32159=>1000,32160=>1000,32162=>1000,32163=>1000,32166=>1000,32167=>1000,32170=>1000,32171=>1000,32172=>1000,32173=>1000,32174=>1000,32175=>1000,32176=>1000,32177=>1000,32178=>1000,32179=>1000,32180=>1000,32181=>1000,32182=>1000,32183=>1000,32184=>1000,32185=>1000,32186=>1000,32187=>1000,32189=>1000,32190=>1000,32191=>1000,32192=>1000,32194=>1000,32195=>1000,32196=>1000,32197=>1000,32198=>1000,32199=>1000,32202=>1000,32203=>1000,32204=>1000,32205=>1000,32206=>1000,32207=>1000,32208=>1000,32209=>1000,32210=>1000,32213=>1000,32214=>1000,32215=>1000,32216=>1000,32217=>1000,32218=>1000,32220=>1000,32221=>1000,32222=>1000,32224=>1000,32225=>1000,32226=>1000,32227=>1000,32228=>1000,32229=>1000,32230=>1000,32232=>1000,32233=>1000,32234=>1000,32235=>1000,32236=>1000,32237=>1000,32239=>1000,32241=>1000,32242=>1000,32244=>1000,32245=>1000,32246=>1000,32249=>1000,32250=>1000,32251=>1000,32256=>1000,32257=>1000,32260=>1000,32261=>1000,32264=>1000,32265=>1000,32266=>1000,32267=>1000,32272=>1000,32273=>1000,32274=>1000,32277=>1000,32279=>1000,32283=>1000,32284=>1000,32285=>1000,32286=>1000,32287=>1000,32288=>1000,32289=>1000,32290=>1000,32291=>1000,32294=>1000,32295=>1000,32296=>1000,32299=>1000,32300=>1000,32301=>1000,32302=>1000,32303=>1000,32305=>1000,32306=>1000,32307=>1000,32309=>1000,32310=>1000,32311=>1000,32313=>1000,32314=>1000,32315=>1000,32317=>1000,32318=>1000,32319=>1000,32321=>1000,32323=>1000,32324=>1000,32325=>1000,32326=>1000,32327=>1000,32328=>1000,32330=>1000,32331=>1000,32333=>1000,32334=>1000,32336=>1000,32338=>1000,32340=>1000,32341=>1000,32342=>1000,32344=>1000,32345=>1000,32346=>1000,32349=>1000,32350=>1000,32351=>1000,32353=>1000,32354=>1000,32357=>1000,32358=>1000,32359=>1000,32361=>1000,32362=>1000,32363=>1000,32365=>1000,32366=>1000,32367=>1000,32368=>1000,32371=>1000,32373=>1000,32376=>1000,32377=>1000,32379=>1000,32380=>1000,32381=>1000,32382=>1000,32383=>1000,32385=>1000,32386=>1000,32387=>1000,32390=>1000,32391=>1000,32392=>1000,32393=>1000,32394=>1000,32396=>1000,32397=>1000,32398=>1000,32399=>1000,32400=>1000,32401=>1000,32402=>1000,32403=>1000,32404=>1000,32405=>1000,32406=>1000,32408=>1000,32410=>1000,32411=>1000,32412=>1000,32413=>1000,32414=>1000,32415=>1000,32566=>1000,32568=>1000,32570=>1000,32571=>1000,32572=>1000,32573=>1000,32574=>1000,32575=>1000,32579=>1000,32580=>1000,32581=>1000,32583=>1000,32588=>1000,32589=>1000,32590=>1000,32591=>1000,32592=>1000,32593=>1000,32594=>1000,32595=>1000,32596=>1000,32597=>1000,32600=>1000,32603=>1000,32604=>1000,32605=>1000,32607=>1000,32608=>1000,32609=>1000,32611=>1000,32612=>1000,32613=>1000,32614=>1000,32615=>1000,32616=>1000,32617=>1000,32618=>1000,32619=>1000,32621=>1000,32622=>1000,32624=>1000,32625=>1000,32626=>1000,32629=>1000,32631=>1000,32632=>1000,32633=>1000,32637=>1000,32638=>1000,32639=>1000,32640=>1000,32642=>1000,32643=>1000,32645=>1000,32646=>1000,32647=>1000,32648=>1000,32650=>1000,32651=>1000,32652=>1000,32653=>1000,32654=>1000,32655=>1000,32656=>1000,32657=>1000,32660=>1000,32662=>1000,32663=>1000,32666=>1000,32668=>1000,32669=>1000,32670=>1000,32673=>1000,32674=>1000,32675=>1000,32676=>1000,32678=>1000,32680=>1000,32681=>1000,32682=>1000,32685=>1000,32686=>1000,32687=>1000,32690=>1000,32692=>1000,32694=>1000,32696=>1000,32697=>1000,32700=>1000,32701=>1000,32703=>1000,32704=>1000,32705=>1000,32707=>1000,32709=>1000,32710=>1000,32712=>1000,32714=>1000,32716=>1000,32718=>1000,32719=>1000,32722=>1000,32724=>1000,32725=>1000,32731=>1000,32735=>1000,32736=>1000,32737=>1000,32739=>1000,32741=>1000,32742=>1000,32744=>1000,32745=>1000,32747=>1000,32748=>1000,32750=>1000,32751=>1000,32752=>1000,32754=>1000,32755=>1000,32761=>1000,32762=>1000,32763=>1000,32764=>1000,32765=>1000,32766=>1000,32767=>1000,32768=>1000,32769=>1000,32770=>1000,32771=>1000,32772=>1000,32773=>1000,32774=>1000,32775=>1000,32776=>1000,32778=>1000,32779=>1000,32780=>1000,32781=>1000,32782=>1000,32783=>1000,32784=>1000,32785=>1000,32786=>1000,32787=>1000,32788=>1000,32789=>1000,32790=>1000,32791=>1000,32792=>1000,32793=>1000,32796=>1000,32797=>1000,32798=>1000,32799=>1000,32800=>1000,32801=>1000,32804=>1000,32806=>1000,32808=>1000,32812=>1000,32814=>1000,32816=>1000,32819=>1000,32820=>1000,32821=>1000,32822=>1000,32823=>1000,32825=>1000,32826=>1000,32827=>1000,32828=>1000,32829=>1000,32830=>1000,32831=>1000,32832=>1000,32835=>1000,32836=>1000,32838=>1000,32842=>1000,32850=>1000,32854=>1000,32856=>1000,32858=>1000,32862=>1000,32863=>1000,32864=>1000,32865=>1000,32866=>1000,32868=>1000,32870=>1000,32872=>1000,32877=>1000,32879=>1000,32880=>1000,32881=>1000,32882=>1000,32883=>1000,32884=>1000,32885=>1000,32886=>1000,32887=>1000,32889=>1000,32891=>1000,32893=>1000,32894=>1000,32895=>1000,32896=>1000,32897=>1000,32900=>1000,32901=>1000,32902=>1000,32903=>1000,32904=>1000,32905=>1000,32907=>1000,32908=>1000,32910=>1000,32915=>1000,32918=>1000,32920=>1000,32921=>1000,32922=>1000,32923=>1000,32924=>1000,32925=>1000,32926=>1000,32929=>1000,32930=>1000,32932=>1000,32933=>1000,32934=>1000,32935=>1000,32937=>1000,32938=>1000,32939=>1000,32940=>1000,32941=>1000,32943=>1000,32945=>1000,32946=>1000,32948=>1000,32952=>1000,32953=>1000,32954=>1000,32963=>1000,32964=>1000,32965=>1000,32966=>1000,32968=>1000,32970=>1000,32972=>1000,32973=>1000,32974=>1000,32975=>1000,32978=>1000,32980=>1000,32981=>1000,32982=>1000,32983=>1000,32984=>1000,32985=>1000,32986=>1000,32987=>1000,32989=>1000,32990=>1000,32992=>1000,32993=>1000,32996=>1000,32997=>1000,32998=>1000,33005=>1000,33006=>1000,33007=>1000,33008=>1000,33009=>1000,33010=>1000,33011=>1000,33012=>1000,33013=>1000,33014=>1000,33015=>1000,33016=>1000,33017=>1000,33018=>1000,33019=>1000,33020=>1000,33021=>1000,33022=>1000,33025=>1000,33026=>1000,33027=>1000,33029=>1000,33030=>1000,33031=>1000,33032=>1000,33033=>1000,33034=>1000,33035=>1000,33037=>1000,33046=>1000,33047=>1000,33048=>1000,33050=>1000,33051=>1000,33052=>1000,33054=>1000,33056=>1000,33059=>1000,33060=>1000,33063=>1000,33065=>1000,33067=>1000,33068=>1000,33071=>1000,33072=>1000,33073=>1000,33075=>1000,33077=>1000,33081=>1000,33082=>1000,33084=>1000,33085=>1000,33086=>1000,33089=>1000,33093=>1000,33094=>1000,33095=>1000,33098=>1000,33099=>1000,33100=>1000,33102=>1000,33104=>1000,33105=>1000,33106=>1000,33107=>1000,33108=>1000,33109=>1000,33111=>1000,33119=>1000,33120=>1000,33121=>1000,33125=>1000,33126=>1000,33127=>1000,33128=>1000,33129=>1000,33131=>1000,33133=>1000,33134=>1000,33135=>1000,33136=>1000,33137=>1000,33139=>1000,33140=>1000,33143=>1000,33144=>1000,33145=>1000,33146=>1000,33151=>1000,33152=>1000,33153=>1000,33154=>1000,33155=>1000,33156=>1000,33157=>1000,33158=>1000,33160=>1000,33162=>1000,33163=>1000,33166=>1000,33167=>1000,33168=>1000,33171=>1000,33173=>1000,33174=>1000,33176=>1000,33178=>1000,33179=>1000,33180=>1000,33181=>1000,33182=>1000,33184=>1000,33186=>1000,33187=>1000,33188=>1000,33192=>1000,33193=>1000,33198=>1000,33200=>1000,33202=>1000,33203=>1000,33204=>1000,33205=>1000,33208=>1000,33210=>1000,33211=>1000,33213=>1000,33214=>1000,33215=>1000,33216=>1000,33217=>1000,33218=>1000,33219=>1000,33221=>1000,33222=>1000,33224=>1000,33225=>1000,33226=>1000,33227=>1000,33229=>1000,33230=>1000,33231=>1000,33233=>1000,33235=>1000,33237=>1000,33238=>1000,33239=>1000,33240=>1000,33241=>1000,33242=>1000,33243=>1000,33245=>1000,33246=>1000,33247=>1000,33248=>1000,33249=>1000,33251=>1000,33252=>1000,33253=>1000,33255=>1000,33256=>1000,33258=>1000,33259=>1000,33260=>1000,33261=>1000,33263=>1000,33264=>1000,33265=>1000,33266=>1000,33267=>1000,33268=>1000,33269=>1000,33270=>1000,33272=>1000,33273=>1000,33274=>1000,33275=>1000,33276=>1000,33277=>1000,33278=>1000,33279=>1000,33280=>1000,33281=>1000,33282=>1000,33283=>1000,33284=>1000,33285=>1000,33287=>1000,33288=>1000,33289=>1000,33290=>1000,33291=>1000,33292=>1000,33293=>1000,33294=>1000,33295=>1000,33296=>1000,33298=>1000,33299=>1000,33300=>1000,33302=>1000,33303=>1000,33304=>1000,33305=>1000,33306=>1000,33307=>1000,33308=>1000,33309=>1000,33310=>1000,33311=>1000,33313=>1000,33314=>1000,33320=>1000,33321=>1000,33322=>1000,33323=>1000,33324=>1000,33326=>1000,33330=>1000,33331=>1000,33332=>1000,33333=>1000,33334=>1000,33335=>1000,33336=>1000,33337=>1000,33338=>1000,33340=>1000,33344=>1000,33347=>1000,33348=>1000,33349=>1000,33350=>1000,33351=>1000,33353=>1000,33355=>1000,33358=>1000,33359=>1000,33361=>1000,33366=>1000,33367=>1000,33368=>1000,33369=>1000,33370=>1000,33372=>1000,33373=>1000,33375=>1000,33376=>1000,33378=>1000,33379=>1000,33380=>1000,33382=>1000,33383=>1000,33384=>1000,33386=>1000,33387=>1000,33389=>1000,33390=>1000,33391=>1000,33393=>1000,33394=>1000,33396=>1000,33398=>1000,33399=>1000,33400=>1000,33401=>1000,33403=>1000,33405=>1000,33406=>1000,33407=>1000,33408=>1000,33409=>1000,33411=>1000,33412=>1000,33415=>1000,33417=>1000,33418=>1000,33419=>1000,33421=>1000,33422=>1000,33425=>1000,33426=>1000,33427=>1000,33428=>1000,33430=>1000,33432=>1000,33433=>1000,33434=>1000,33435=>1000,33437=>1000,33439=>1000,33440=>1000,33441=>1000,33443=>1000,33444=>1000,33445=>1000,33446=>1000,33447=>1000,33448=>1000,33449=>1000,33450=>1000,33451=>1000,33452=>1000,33453=>1000,33454=>1000,33455=>1000,33456=>1000,33457=>1000,33458=>1000,33459=>1000,33460=>1000,33463=>1000,33464=>1000,33465=>1000,33466=>1000,33467=>1000,33468=>1000,33469=>1000,33470=>1000,33471=>1000,33477=>1000,33478=>1000,33488=>1000,33489=>1000,33490=>1000,33491=>1000,33492=>1000,33493=>1000,33495=>1000,33497=>1000,33498=>1000,33499=>1000,33500=>1000,33502=>1000,33503=>1000,33504=>1000,33505=>1000,33506=>1000,33507=>1000,33508=>1000,33509=>1000,33510=>1000,33511=>1000,33512=>1000,33514=>1000,33515=>1000,33517=>1000,33519=>1000,33521=>1000,33523=>1000,33524=>1000,33526=>1000,33527=>1000,33529=>1000,33530=>1000,33531=>1000,33533=>1000,33534=>1000,33536=>1000,33537=>1000,33538=>1000,33539=>1000,33540=>1000,33541=>1000,33542=>1000,33543=>1000,33544=>1000,33545=>1000,33546=>1000,33547=>1000,33548=>1000,33550=>1000,33558=>1000,33559=>1000,33560=>1000,33563=>1000,33564=>1000,33565=>1000,33566=>1000,33567=>1000,33569=>1000,33570=>1000,33571=>1000,33576=>1000,33579=>1000,33580=>1000,33581=>1000,33582=>1000,33583=>1000,33584=>1000,33585=>1000,33586=>1000,33587=>1000,33588=>1000,33589=>1000,33590=>1000,33591=>1000,33592=>1000,33593=>1000,33594=>1000,33596=>1000,33597=>1000,33600=>1000,33602=>1000,33603=>1000,33604=>1000,33605=>1000,33606=>1000,33607=>1000,33609=>1000,33610=>1000,33613=>1000,33614=>1000,33615=>1000,33616=>1000,33617=>1000,33618=>1000,33619=>1000,33620=>1000,33621=>1000,33622=>1000,33623=>1000,33624=>1000,33626=>1000,33634=>1000,33635=>1000,33648=>1000,33651=>1000,33653=>1000,33655=>1000,33656=>1000,33659=>1000,33660=>1000,33661=>1000,33663=>1000,33664=>1000,33666=>1000,33668=>1000,33669=>1000,33670=>1000,33671=>1000,33673=>1000,33674=>1000,33677=>1000,33678=>1000,33682=>1000,33683=>1000,33684=>1000,33685=>1000,33686=>1000,33688=>1000,33689=>1000,33690=>1000,33691=>1000,33692=>1000,33693=>1000,33694=>1000,33695=>1000,33696=>1000,33698=>1000,33702=>1000,33703=>1000,33704=>1000,33705=>1000,33706=>1000,33707=>1000,33708=>1000,33709=>1000,33713=>1000,33717=>1000,33725=>1000,33726=>1000,33727=>1000,33728=>1000,33729=>1000,33733=>1000,33735=>1000,33737=>1000,33738=>1000,33740=>1000,33742=>1000,33743=>1000,33744=>1000,33745=>1000,33747=>1000,33748=>1000,33750=>1000,33752=>1000,33756=>1000,33757=>1000,33759=>1000,33760=>1000,33761=>1000,33765=>1000,33768=>1000,33769=>1000,33770=>1000,33771=>1000,33775=>1000,33776=>1000,33777=>1000,33778=>1000,33780=>1000,33782=>1000,33783=>1000,33784=>1000,33785=>1000,33787=>1000,33788=>1000,33789=>1000,33793=>1000,33795=>1000,33796=>1000,33798=>1000,33799=>1000,33802=>1000,33803=>1000,33804=>1000,33805=>1000,33806=>1000,33807=>1000,33809=>1000,33811=>1000,33813=>1000,33815=>1000,33817=>1000,33824=>1000,33826=>1000,33833=>1000,33834=>1000,33836=>1000,33839=>1000,33841=>1000,33845=>1000,33848=>1000,33849=>1000,33852=>1000,33853=>1000,33861=>1000,33862=>1000,33863=>1000,33864=>1000,33865=>1000,33866=>1000,33869=>1000,33870=>1000,33871=>1000,33873=>1000,33874=>1000,33878=>1000,33879=>1000,33880=>1000,33881=>1000,33882=>1000,33883=>1000,33884=>1000,33887=>1000,33888=>1000,33889=>1000,33890=>1000,33891=>1000,33892=>1000,33893=>1000,33894=>1000,33895=>1000,33897=>1000,33898=>1000,33899=>1000,33900=>1000,33901=>1000,33902=>1000,33903=>1000,33904=>1000,33905=>1000,33907=>1000,33908=>1000,33909=>1000,33910=>1000,33911=>1000,33912=>1000,33913=>1000,33914=>1000,33916=>1000,33917=>1000,33921=>1000,33922=>1000,33924=>1000,33925=>1000,33931=>1000,33936=>1000,33938=>1000,33939=>1000,33940=>1000,33941=>1000,33943=>1000,33945=>1000,33948=>1000,33950=>1000,33951=>1000,33953=>1000,33958=>1000,33960=>1000,33961=>1000,33962=>1000,33965=>1000,33967=>1000,33969=>1000,33970=>1000,33972=>1000,33976=>1000,33977=>1000,33978=>1000,33979=>1000,33980=>1000,33981=>1000,33982=>1000,33983=>1000,33984=>1000,33985=>1000,33986=>1000,33988=>1000,33990=>1000,33991=>1000,33992=>1000,33993=>1000,33994=>1000,33995=>1000,33996=>1000,33997=>1000,33998=>1000,33999=>1000,34000=>1000,34001=>1000,34003=>1000,34006=>1000,34009=>1000,34010=>1000,34012=>1000,34023=>1000,34026=>1000,34028=>1000,34030=>1000,34031=>1000,34032=>1000,34033=>1000,34034=>1000,34036=>1000,34039=>1000,34042=>1000,34043=>1000,34044=>1000,34045=>1000,34047=>1000,34048=>1000,34050=>1000,34051=>1000,34054=>1000,34055=>1000,34060=>1000,34062=>1000,34064=>1000,34065=>1000,34067=>1000,34068=>1000,34069=>1000,34071=>1000,34072=>1000,34074=>1000,34075=>1000,34076=>1000,34078=>1000,34079=>1000,34081=>1000,34082=>1000,34083=>1000,34084=>1000,34085=>1000,34086=>1000,34087=>1000,34090=>1000,34091=>1000,34092=>1000,34093=>1000,34095=>1000,34098=>1000,34099=>1000,34100=>1000,34101=>1000,34102=>1000,34109=>1000,34110=>1000,34111=>1000,34112=>1000,34113=>1000,34115=>1000,34118=>1000,34120=>1000,34121=>1000,34122=>1000,34123=>1000,34126=>1000,34127=>1000,34128=>1000,34129=>1000,34130=>1000,34131=>1000,34133=>1000,34134=>1000,34135=>1000,34136=>1000,34137=>1000,34138=>1000,34140=>1000,34141=>1000,34142=>1000,34143=>1000,34144=>1000,34145=>1000,34146=>1000,34147=>1000,34148=>1000,34152=>1000,34153=>1000,34154=>1000,34155=>1000,34157=>1000,34159=>1000,34167=>1000,34169=>1000,34170=>1000,34171=>1000,34173=>1000,34174=>1000,34175=>1000,34176=>1000,34177=>1000,34180=>1000,34181=>1000,34182=>1000,34183=>1000,34184=>1000,34185=>1000,34186=>1000,34187=>1000,34188=>1000,34191=>1000,34192=>1000,34193=>1000,34195=>1000,34196=>1000,34199=>1000,34200=>1000,34201=>1000,34203=>1000,34204=>1000,34205=>1000,34207=>1000,34208=>1000,34210=>1000,34212=>1000,34213=>1000,34214=>1000,34215=>1000,34216=>1000,34217=>1000,34218=>1000,34219=>1000,34220=>1000,34221=>1000,34222=>1000,34223=>1000,34224=>1000,34228=>1000,34230=>1000,34231=>1000,34232=>1000,34233=>1000,34234=>1000,34236=>1000,34237=>1000,34238=>1000,34239=>1000,34241=>1000,34242=>1000,34247=>1000,34249=>1000,34250=>1000,34251=>1000,34253=>1000,34254=>1000,34255=>1000,34256=>1000,34261=>1000,34264=>1000,34265=>1000,34266=>1000,34268=>1000,34269=>1000,34271=>1000,34272=>1000,34273=>1000,34276=>1000,34277=>1000,34278=>1000,34280=>1000,34281=>1000,34282=>1000,34285=>1000,34291=>1000,34292=>1000,34294=>1000,34295=>1000,34297=>1000,34298=>1000,34299=>1000,34300=>1000,34302=>1000,34303=>1000,34304=>1000,34306=>1000,34308=>1000,34309=>1000,34310=>1000,34311=>1000,34314=>1000,34315=>1000,34317=>1000,34318=>1000,34320=>1000,34321=>1000,34322=>1000,34323=>1000,34326=>1000,34327=>1000,34328=>1000,34329=>1000,34330=>1000,34331=>1000,34334=>1000,34337=>1000,34338=>1000,34340=>1000,34343=>1000,34345=>1000,34349=>1000,34351=>1000,34352=>1000,34358=>1000,34360=>1000,34361=>1000,34362=>1000,34364=>1000,34365=>1000,34367=>1000,34368=>1000,34369=>1000,34370=>1000,34374=>1000,34381=>1000,34382=>1000,34384=>1000,34386=>1000,34387=>1000,34388=>1000,34389=>1000,34390=>1000,34391=>1000,34392=>1000,34393=>1000,34394=>1000,34395=>1000,34396=>1000,34397=>1000,34398=>1000,34399=>1000,34400=>1000,34401=>1000,34402=>1000,34403=>1000,34404=>1000,34407=>1000,34409=>1000,34411=>1000,34412=>1000,34415=>1000,34417=>1000,34421=>1000,34422=>1000,34423=>1000,34425=>1000,34426=>1000,34427=>1000,34429=>1000,34439=>1000,34440=>1000,34441=>1000,34442=>1000,34443=>1000,34444=>1000,34445=>1000,34449=>1000,34451=>1000,34453=>1000,34454=>1000,34456=>1000,34458=>1000,34460=>1000,34461=>1000,34465=>1000,34467=>1000,34468=>1000,34470=>1000,34471=>1000,34472=>1000,34473=>1000,34474=>1000,34475=>1000,34477=>1000,34479=>1000,34480=>1000,34481=>1000,34483=>1000,34484=>1000,34485=>1000,34486=>1000,34487=>1000,34488=>1000,34489=>1000,34495=>1000,34496=>1000,34497=>1000,34499=>1000,34500=>1000,34501=>1000,34502=>1000,34503=>1000,34505=>1000,34507=>1000,34509=>1000,34510=>1000,34513=>1000,34514=>1000,34516=>1000,34517=>1000,34519=>1000,34521=>1000,34522=>1000,34523=>1000,34524=>1000,34526=>1000,34527=>1000,34528=>1000,34531=>1000,34532=>1000,34533=>1000,34534=>1000,34535=>1000,34537=>1000,34540=>1000,34541=>1000,34542=>1000,34543=>1000,34552=>1000,34553=>1000,34554=>1000,34555=>1000,34556=>1000,34557=>1000,34558=>1000,34560=>1000,34562=>1000,34563=>1000,34564=>1000,34565=>1000,34566=>1000,34567=>1000,34568=>1000,34569=>1000,34570=>1000,34571=>1000,34573=>1000,34574=>1000,34575=>1000,34576=>1000,34577=>1000,34578=>1000,34579=>1000,34580=>1000,34584=>1000,34585=>1000,34586=>1000,34588=>1000,34590=>1000,34591=>1000,34593=>1000,34594=>1000,34595=>1000,34597=>1000,34600=>1000,34601=>1000,34606=>1000,34607=>1000,34609=>1000,34610=>1000,34612=>1000,34615=>1000,34617=>1000,34618=>1000,34619=>1000,34620=>1000,34621=>1000,34622=>1000,34623=>1000,34624=>1000,34627=>1000,34629=>1000,34633=>1000,34635=>1000,34636=>1000,34637=>1000,34638=>1000,34641=>1000,34643=>1000,34645=>1000,34647=>1000,34648=>1000,34649=>1000,34653=>1000,34655=>1000,34656=>1000,34657=>1000,34659=>1000,34660=>1000,34661=>1000,34662=>1000,34664=>1000,34666=>1000,34670=>1000,34671=>1000,34673=>1000,34674=>1000,34676=>1000,34678=>1000,34680=>1000,34683=>1000,34684=>1000,34687=>1000,34690=>1000,34691=>1000,34692=>1000,34693=>1000,34694=>1000,34695=>1000,34696=>1000,34697=>1000,34699=>1000,34700=>1000,34701=>1000,34702=>1000,34704=>1000,34707=>1000,34709=>1000,34711=>1000,34712=>1000,34713=>1000,34718=>1000,34719=>1000,34720=>1000,34722=>1000,34723=>1000,34727=>1000,34731=>1000,34732=>1000,34733=>1000,34734=>1000,34735=>1000,34737=>1000,34739=>1000,34741=>1000,34746=>1000,34747=>1000,34749=>1000,34750=>1000,34751=>1000,34752=>1000,34753=>1000,34756=>1000,34758=>1000,34759=>1000,34760=>1000,34761=>1000,34762=>1000,34763=>1000,34766=>1000,34768=>1000,34770=>1000,34773=>1000,34774=>1000,34777=>1000,34778=>1000,34780=>1000,34783=>1000,34784=>1000,34786=>1000,34787=>1000,34788=>1000,34789=>1000,34790=>1000,34794=>1000,34795=>1000,34796=>1000,34797=>1000,34799=>1000,34801=>1000,34802=>1000,34803=>1000,34805=>1000,34806=>1000,34807=>1000,34808=>1000,34809=>1000,34810=>1000,34811=>1000,34814=>1000,34815=>1000,34817=>1000,34819=>1000,34821=>1000,34822=>1000,34823=>1000,34825=>1000,34826=>1000,34827=>1000,34829=>1000,34830=>1000,34831=>1000,34832=>1000,34833=>1000,34834=>1000,34835=>1000,34836=>1000,34837=>1000,34838=>1000,34840=>1000,34841=>1000,34842=>1000,34843=>1000,34844=>1000,34846=>1000,34847=>1000,34849=>1000,34850=>1000,34851=>1000,34855=>1000,34856=>1000,34861=>1000,34862=>1000,34864=>1000,34865=>1000,34866=>1000,34869=>1000,34870=>1000,34873=>1000,34874=>1000,34875=>1000,34876=>1000,34880=>1000,34881=>1000,34882=>1000,34883=>1000,34884=>1000,34885=>1000,34886=>1000,34888=>1000,34889=>1000,34890=>1000,34891=>1000,34892=>1000,34893=>1000,34894=>1000,34897=>1000,34898=>1000,34899=>1000,34901=>1000,34902=>1000,34903=>1000,34904=>1000,34905=>1000,34906=>1000,34907=>1000,34908=>1000,34909=>1000,34910=>1000,34911=>1000,34912=>1000,34913=>1000,34914=>1000,34915=>1000,34916=>1000,34920=>1000,34921=>1000,34923=>1000,34926=>1000,34927=>1000,34928=>1000,34929=>1000,34930=>1000,34933=>1000,34935=>1000,34937=>1000,34939=>1000,34941=>1000,34942=>1000,34943=>1000,34944=>1000,34945=>1000,34946=>1000,34952=>1000,34955=>1000,34957=>1000,34962=>1000,34966=>1000,34967=>1000,34968=>1000,34969=>1000,34970=>1000,34971=>1000,34972=>1000,34974=>1000,34975=>1000,34976=>1000,34978=>1000,34980=>1000,34984=>1000,34986=>1000,34987=>1000,34990=>1000,34992=>1000,34993=>1000,34996=>1000,34997=>1000,34999=>1000,35002=>1000,35004=>1000,35005=>1000,35006=>1000,35007=>1000,35008=>1000,35009=>1000,35010=>1000,35011=>1000,35012=>1000,35013=>1000,35014=>1000,35018=>1000,35019=>1000,35020=>1000,35021=>1000,35022=>1000,35023=>1000,35025=>1000,35026=>1000,35027=>1000,35028=>1000,35029=>1000,35032=>1000,35033=>1000,35035=>1000,35036=>1000,35037=>1000,35038=>1000,35039=>1000,35040=>1000,35041=>1000,35047=>1000,35048=>1000,35055=>1000,35056=>1000,35057=>1000,35058=>1000,35059=>1000,35060=>1000,35061=>1000,35063=>1000,35064=>1000,35065=>1000,35068=>1000,35069=>1000,35070=>1000,35073=>1000,35074=>1000,35076=>1000,35078=>1000,35079=>1000,35082=>1000,35084=>1000,35085=>1000,35086=>1000,35087=>1000,35088=>1000,35090=>1000,35091=>1000,35093=>1000,35094=>1000,35096=>1000,35097=>1000,35098=>1000,35100=>1000,35101=>1000,35102=>1000,35104=>1000,35109=>1000,35110=>1000,35111=>1000,35112=>1000,35114=>1000,35115=>1000,35120=>1000,35121=>1000,35122=>1000,35125=>1000,35126=>1000,35127=>1000,35128=>1000,35129=>1000,35130=>1000,35131=>1000,35134=>1000,35136=>1000,35137=>1000,35138=>1000,35139=>1000,35140=>1000,35141=>1000,35142=>1000,35145=>1000,35148=>1000,35149=>1000,35151=>1000,35154=>1000,35158=>1000,35159=>1000,35162=>1000,35163=>1000,35164=>1000,35166=>1000,35167=>1000,35168=>1000,35169=>1000,35170=>1000,35171=>1000,35172=>1000,35174=>1000,35178=>1000,35179=>1000,35181=>1000,35182=>1000,35183=>1000,35184=>1000,35186=>1000,35187=>1000,35188=>1000,35189=>1000,35191=>1000,35194=>1000,35195=>1000,35196=>1000,35197=>1000,35198=>1000,35199=>1000,35200=>1000,35201=>1000,35203=>1000,35206=>1000,35207=>1000,35208=>1000,35209=>1000,35210=>1000,35211=>1000,35213=>1000,35215=>1000,35216=>1000,35219=>1000,35220=>1000,35221=>1000,35222=>1000,35223=>1000,35224=>1000,35226=>1000,35227=>1000,35228=>1000,35231=>1000,35232=>1000,35233=>1000,35237=>1000,35238=>1000,35239=>1000,35241=>1000,35242=>1000,35244=>1000,35247=>1000,35248=>1000,35250=>1000,35251=>1000,35252=>1000,35253=>1000,35254=>1000,35255=>1000,35258=>1000,35260=>1000,35261=>1000,35263=>1000,35264=>1000,35265=>1000,35282=>1000,35284=>1000,35285=>1000,35286=>1000,35287=>1000,35288=>1000,35290=>1000,35292=>1000,35293=>1000,35299=>1000,35301=>1000,35302=>1000,35303=>1000,35305=>1000,35307=>1000,35309=>1000,35313=>1000,35315=>1000,35316=>1000,35318=>1000,35320=>1000,35321=>1000,35325=>1000,35327=>1000,35328=>1000,35329=>1000,35330=>1000,35331=>1000,35332=>1000,35333=>1000,35335=>1000,35336=>1000,35338=>1000,35340=>1000,35342=>1000,35343=>1000,35344=>1000,35345=>1000,35346=>1000,35347=>1000,35348=>1000,35349=>1000,35350=>1000,35351=>1000,35352=>1000,35355=>1000,35357=>1000,35358=>1000,35359=>1000,35360=>1000,35361=>1000,35362=>1000,35363=>1000,35364=>1000,35365=>1000,35366=>1000,35370=>1000,35371=>1000,35372=>1000,35373=>1000,35375=>1000,35377=>1000,35379=>1000,35380=>1000,35381=>1000,35382=>1000,35383=>1000,35386=>1000,35387=>1000,35388=>1000,35389=>1000,35390=>1000,35392=>1000,35393=>1000,35395=>1000,35397=>1000,35398=>1000,35399=>1000,35400=>1000,35401=>1000,35405=>1000,35406=>1000,35408=>1000,35409=>1000,35410=>1000,35411=>1000,35412=>1000,35413=>1000,35414=>1000,35415=>1000,35416=>1000,35419=>1000,35420=>1000,35421=>1000,35422=>1000,35424=>1000,35425=>1000,35426=>1000,35427=>1000,35429=>1000,35430=>1000,35431=>1000,35433=>1000,35435=>1000,35436=>1000,35437=>1000,35438=>1000,35440=>1000,35441=>1000,35442=>1000,35443=>1000,35445=>1000,35446=>1000,35447=>1000,35449=>1000,35450=>1000,35451=>1000,35452=>1000,35454=>1000,35455=>1000,35456=>1000,35458=>1000,35459=>1000,35460=>1000,35461=>1000,35462=>1000,35463=>1000,35465=>1000,35467=>1000,35468=>1000,35469=>1000,35471=>1000,35472=>1000,35473=>1000,35474=>1000,35475=>1000,35477=>1000,35478=>1000,35479=>1000,35480=>1000,35481=>1000,35482=>1000,35486=>1000,35487=>1000,35488=>1000,35489=>1000,35491=>1000,35492=>1000,35493=>1000,35494=>1000,35495=>1000,35496=>1000,35497=>1000,35498=>1000,35500=>1000,35501=>1000,35502=>1000,35503=>1000,35504=>1000,35506=>1000,35507=>1000,35510=>1000,35511=>1000,35513=>1000,35515=>1000,35516=>1000,35518=>1000,35519=>1000,35522=>1000,35523=>1000,35524=>1000,35526=>1000,35527=>1000,35528=>1000,35529=>1000,35530=>1000,35531=>1000,35532=>1000,35533=>1000,35535=>1000,35536=>1000,35537=>1000,35538=>1000,35539=>1000,35540=>1000,35541=>1000,35542=>1000,35543=>1000,35546=>1000,35547=>1000,35548=>1000,35549=>1000,35550=>1000,35551=>1000,35552=>1000,35553=>1000,35554=>1000,35556=>1000,35558=>1000,35559=>1000,35563=>1000,35564=>1000,35565=>1000,35566=>1000,35568=>1000,35569=>1000,35571=>1000,35572=>1000,35573=>1000,35574=>1000,35575=>1000,35576=>1000,35578=>1000,35580=>1000,35582=>1000,35583=>1000,35584=>1000,35585=>1000,35586=>1000,35588=>1000,35589=>1000,35590=>1000,35591=>1000,35594=>1000,35595=>1000,35596=>1000,35597=>1000,35598=>1000,35599=>1000,35600=>1000,35601=>1000,35604=>1000,35606=>1000,35607=>1000,35609=>1000,35610=>1000,35611=>1000,35612=>1000,35613=>1000,35614=>1000,35615=>1000,35616=>1000,35617=>1000,35622=>1000,35624=>1000,35627=>1000,35628=>1000,35629=>1000,35632=>1000,35635=>1000,35639=>1000,35641=>1000,35644=>1000,35646=>1000,35649=>1000,35650=>1000,35651=>1000,35652=>1000,35653=>1000,35654=>1000,35656=>1000,35657=>1000,35660=>1000,35661=>1000,35662=>1000,35663=>1000,35665=>1000,35666=>1000,35667=>1000,35668=>1000,35670=>1000,35672=>1000,35673=>1000,35674=>1000,35675=>1000,35676=>1000,35678=>1000,35679=>1000,35683=>1000,35686=>1000,35689=>1000,35691=>1000,35692=>1000,35693=>1000,35695=>1000,35696=>1000,35697=>1000,35698=>1000,35700=>1000,35702=>1000,35703=>1000,35704=>1000,35705=>1000,35708=>1000,35709=>1000,35710=>1000,35711=>1000,35712=>1000,35713=>1000,35715=>1000,35716=>1000,35717=>1000,35722=>1000,35723=>1000,35724=>1000,35725=>1000,35726=>1000,35727=>1000,35728=>1000,35730=>1000,35731=>1000,35732=>1000,35733=>1000,35734=>1000,35737=>1000,35738=>1000,35740=>1000,35741=>1000,35742=>1000,35743=>1000,35744=>1000,35895=>1000,35896=>1000,35897=>1000,35898=>1000,35901=>1000,35902=>1000,35903=>1000,35905=>1000,35909=>1000,35910=>1000,35911=>1000,35912=>1000,35913=>1000,35914=>1000,35915=>1000,35916=>1000,35918=>1000,35919=>1000,35920=>1000,35921=>1000,35923=>1000,35924=>1000,35925=>1000,35927=>1000,35928=>1000,35929=>1000,35930=>1000,35931=>1000,35933=>1000,35937=>1000,35938=>1000,35939=>1000,35940=>1000,35942=>1000,35944=>1000,35945=>1000,35946=>1000,35947=>1000,35948=>1000,35949=>1000,35955=>1000,35957=>1000,35958=>1000,35960=>1000,35961=>1000,35962=>1000,35963=>1000,35964=>1000,35966=>1000,35970=>1000,35973=>1000,35974=>1000,35975=>1000,35977=>1000,35978=>1000,35979=>1000,35980=>1000,35981=>1000,35982=>1000,35984=>1000,35986=>1000,35987=>1000,35988=>1000,35992=>1000,35993=>1000,35995=>1000,35996=>1000,35997=>1000,35998=>1000,35999=>1000,36000=>1000,36001=>1000,36002=>1000,36004=>1000,36007=>1000,36008=>1000,36009=>1000,36010=>1000,36011=>1000,36012=>1000,36013=>1000,36014=>1000,36015=>1000,36016=>1000,36018=>1000,36019=>1000,36020=>1000,36022=>1000,36023=>1000,36024=>1000,36025=>1000,36026=>1000,36027=>1000,36028=>1000,36029=>1000,36031=>1000,36032=>1000,36033=>1000,36034=>1000,36035=>1000,36036=>1000,36037=>1000,36038=>1000,36039=>1000,36040=>1000,36041=>1000,36042=>1000,36043=>1000,36045=>1000,36046=>1000,36047=>1000,36049=>1000,36050=>1000,36051=>1000,36053=>1000,36054=>1000,36057=>1000,36058=>1000,36059=>1000,36060=>1000,36061=>1000,36062=>1000,36064=>1000,36065=>1000,36066=>1000,36067=>1000,36068=>1000,36070=>1000,36072=>1000,36074=>1000,36076=>1000,36077=>1000,36079=>1000,36080=>1000,36081=>1000,36082=>1000,36084=>1000,36085=>1000,36087=>1000,36088=>1000,36090=>1000,36091=>1000,36092=>1000,36093=>1000,36094=>1000,36095=>1000,36097=>1000,36099=>1000,36100=>1000,36101=>1000,36103=>1000,36104=>1000,36105=>1000,36106=>1000,36107=>1000,36109=>1000,36110=>1000,36111=>1000,36112=>1000,36114=>1000,36115=>1000,36116=>1000,36118=>1000,36119=>1000,36123=>1000,36124=>1000,36125=>1000,36196=>1000,36197=>1000,36198=>1000,36199=>1000,36201=>1000,36203=>1000,36204=>1000,36205=>1000,36206=>1000,36208=>1000,36209=>1000,36211=>1000,36212=>1000,36214=>1000,36215=>1000,36223=>1000,36225=>1000,36226=>1000,36228=>1000,36229=>1000,36232=>1000,36234=>1000,36237=>1000,36240=>1000,36241=>1000,36245=>1000,36249=>1000,36254=>1000,36255=>1000,36256=>1000,36259=>1000,36262=>1000,36264=>1000,36267=>1000,36268=>1000,36271=>1000,36274=>1000,36275=>1000,36277=>1000,36279=>1000,36281=>1000,36282=>1000,36283=>1000,36284=>1000,36286=>1000,36288=>1000,36290=>1000,36293=>1000,36294=>1000,36295=>1000,36296=>1000,36298=>1000,36299=>1000,36300=>1000,36302=>1000,36303=>1000,36305=>1000,36308=>1000,36309=>1000,36310=>1000,36311=>1000,36313=>1000,36314=>1000,36315=>1000,36317=>1000,36319=>1000,36321=>1000,36323=>1000,36324=>1000,36325=>1000,36327=>1000,36328=>1000,36330=>1000,36331=>1000,36332=>1000,36335=>1000,36336=>1000,36337=>1000,36338=>1000,36339=>1000,36340=>1000,36341=>1000,36348=>1000,36349=>1000,36351=>1000,36353=>1000,36356=>1000,36357=>1000,36358=>1000,36360=>1000,36361=>1000,36362=>1000,36363=>1000,36364=>1000,36367=>1000,36368=>1000,36369=>1000,36372=>1000,36374=>1000,36381=>1000,36382=>1000,36383=>1000,36384=>1000,36385=>1000,36386=>1000,36387=>1000,36390=>1000,36391=>1000,36394=>1000,36400=>1000,36401=>1000,36403=>1000,36404=>1000,36405=>1000,36406=>1000,36407=>1000,36408=>1000,36409=>1000,36413=>1000,36416=>1000,36417=>1000,36418=>1000,36420=>1000,36423=>1000,36424=>1000,36425=>1000,36426=>1000,36427=>1000,36428=>1000,36429=>1000,36430=>1000,36431=>1000,36432=>1000,36436=>1000,36437=>1000,36441=>1000,36443=>1000,36444=>1000,36445=>1000,36446=>1000,36447=>1000,36448=>1000,36449=>1000,36450=>1000,36451=>1000,36452=>1000,36457=>1000,36460=>1000,36461=>1000,36463=>1000,36464=>1000,36465=>1000,36466=>1000,36468=>1000,36469=>1000,36470=>1000,36471=>1000,36473=>1000,36474=>1000,36475=>1000,36476=>1000,36481=>1000,36482=>1000,36483=>1000,36484=>1000,36485=>1000,36487=>1000,36489=>1000,36490=>1000,36491=>1000,36493=>1000,36496=>1000,36497=>1000,36498=>1000,36499=>1000,36500=>1000,36501=>1000,36504=>1000,36505=>1000,36506=>1000,36507=>1000,36509=>1000,36510=>1000,36513=>1000,36514=>1000,36519=>1000,36521=>1000,36522=>1000,36523=>1000,36524=>1000,36525=>1000,36526=>1000,36527=>1000,36528=>1000,36529=>1000,36531=>1000,36533=>1000,36534=>1000,36538=>1000,36539=>1000,36542=>1000,36544=>1000,36545=>1000,36547=>1000,36548=>1000,36549=>1000,36550=>1000,36551=>1000,36552=>1000,36554=>1000,36555=>1000,36556=>1000,36557=>1000,36559=>1000,36561=>1000,36562=>1000,36564=>1000,36571=>1000,36572=>1000,36575=>1000,36578=>1000,36579=>1000,36584=>1000,36587=>1000,36589=>1000,36590=>1000,36592=>1000,36593=>1000,36599=>1000,36600=>1000,36601=>1000,36602=>1000,36603=>1000,36604=>1000,36605=>1000,36606=>1000,36608=>1000,36610=>1000,36611=>1000,36613=>1000,36615=>1000,36616=>1000,36617=>1000,36618=>1000,36620=>1000,36623=>1000,36624=>1000,36626=>1000,36627=>1000,36628=>1000,36629=>1000,36630=>1000,36631=>1000,36632=>1000,36633=>1000,36635=>1000,36636=>1000,36637=>1000,36638=>1000,36639=>1000,36640=>1000,36641=>1000,36643=>1000,36645=>1000,36646=>1000,36647=>1000,36648=>1000,36649=>1000,36650=>1000,36651=>1000,36652=>1000,36653=>1000,36654=>1000,36655=>1000,36659=>1000,36660=>1000,36661=>1000,36662=>1000,36663=>1000,36664=>1000,36665=>1000,36666=>1000,36667=>1000,36670=>1000,36671=>1000,36672=>1000,36673=>1000,36674=>1000,36675=>1000,36676=>1000,36677=>1000,36678=>1000,36679=>1000,36681=>1000,36682=>1000,36684=>1000,36685=>1000,36686=>1000,36687=>1000,36689=>1000,36690=>1000,36691=>1000,36692=>1000,36693=>1000,36695=>1000,36696=>1000,36700=>1000,36701=>1000,36702=>1000,36703=>1000,36705=>1000,36706=>1000,36707=>1000,36708=>1000,36709=>1000,36710=>1000,36763=>1000,36764=>1000,36765=>1000,36766=>1000,36767=>1000,36768=>1000,36769=>1000,36770=>1000,36771=>1000,36772=>1000,36773=>1000,36774=>1000,36775=>1000,36776=>1000,36781=>1000,36782=>1000,36783=>1000,36784=>1000,36785=>1000,36786=>1000,36788=>1000,36789=>1000,36790=>1000,36791=>1000,36792=>1000,36794=>1000,36795=>1000,36796=>1000,36798=>1000,36799=>1000,36800=>1000,36801=>1000,36802=>1000,36804=>1000,36805=>1000,36806=>1000,36808=>1000,36810=>1000,36811=>1000,36813=>1000,36814=>1000,36816=>1000,36817=>1000,36818=>1000,36819=>1000,36820=>1000,36821=>1000,36826=>1000,36832=>1000,36834=>1000,36835=>1000,36836=>1000,36837=>1000,36838=>1000,36840=>1000,36841=>1000,36842=>1000,36843=>1000,36845=>1000,36846=>1000,36847=>1000,36848=>1000,36849=>1000,36852=>1000,36853=>1000,36854=>1000,36855=>1000,36856=>1000,36857=>1000,36858=>1000,36859=>1000,36861=>1000,36862=>1000,36864=>1000,36865=>1000,36866=>1000,36867=>1000,36868=>1000,36869=>1000,36870=>1000,36872=>1000,36875=>1000,36876=>1000,36877=>1000,36878=>1000,36879=>1000,36880=>1000,36881=>1000,36883=>1000,36884=>1000,36885=>1000,36886=>1000,36887=>1000,36888=>1000,36889=>1000,36890=>1000,36891=>1000,36893=>1000,36894=>1000,36895=>1000,36896=>1000,36897=>1000,36898=>1000,36899=>1000,36903=>1000,36904=>1000,36905=>1000,36906=>1000,36908=>1000,36909=>1000,36910=>1000,36911=>1000,36913=>1000,36914=>1000,36915=>1000,36916=>1000,36917=>1000,36918=>1000,36919=>1000,36920=>1000,36921=>1000,36924=>1000,36926=>1000,36927=>1000,36929=>1000,36930=>1000,36931=>1000,36932=>1000,36933=>1000,36935=>1000,36937=>1000,36938=>1000,36939=>1000,36940=>1000,36941=>1000,36942=>1000,36943=>1000,36944=>1000,36945=>1000,36946=>1000,36947=>1000,36948=>1000,36949=>1000,36950=>1000,36952=>1000,36953=>1000,36955=>1000,36956=>1000,36957=>1000,36958=>1000,36960=>1000,36961=>1000,36962=>1000,36963=>1000,36965=>1000,36966=>1000,36967=>1000,36968=>1000,36969=>1000,36972=>1000,36973=>1000,36974=>1000,36975=>1000,36976=>1000,36978=>1000,36980=>1000,36981=>1000,36982=>1000,36983=>1000,36984=>1000,36985=>1000,36986=>1000,36988=>1000,36989=>1000,36991=>1000,36992=>1000,36993=>1000,36994=>1000,36995=>1000,36996=>1000,36997=>1000,36999=>1000,37000=>1000,37001=>1000,37002=>1000,37003=>1000,37004=>1000,37006=>1000,37007=>1000,37008=>1000,37009=>1000,37013=>1000,37015=>1000,37016=>1000,37017=>1000,37019=>1000,37024=>1000,37025=>1000,37026=>1000,37027=>1000,37029=>1000,37030=>1000,37032=>1000,37034=>1000,37039=>1000,37040=>1000,37041=>1000,37042=>1000,37043=>1000,37044=>1000,37045=>1000,37046=>1000,37048=>1000,37053=>1000,37054=>1000,37057=>1000,37059=>1000,37060=>1000,37061=>1000,37063=>1000,37064=>1000,37065=>1000,37066=>1000,37068=>1000,37070=>1000,37074=>1000,37077=>1000,37079=>1000,37080=>1000,37081=>1000,37083=>1000,37084=>1000,37085=>1000,37086=>1000,37087=>1000,37089=>1000,37090=>1000,37092=>1000,37093=>1000,37096=>1000,37099=>1000,37101=>1000,37103=>1000,37104=>1000,37106=>1000,37108=>1000,37109=>1000,37110=>1000,37111=>1000,37117=>1000,37118=>1000,37119=>1000,37120=>1000,37122=>1000,37124=>1000,37125=>1000,37126=>1000,37128=>1000,37133=>1000,37136=>1000,37138=>1000,37140=>1000,37141=>1000,37142=>1000,37143=>1000,37144=>1000,37145=>1000,37146=>1000,37148=>1000,37150=>1000,37152=>1000,37154=>1000,37155=>1000,37157=>1000,37159=>1000,37161=>1000,37165=>1000,37166=>1000,37167=>1000,37168=>1000,37169=>1000,37170=>1000,37172=>1000,37174=>1000,37175=>1000,37177=>1000,37178=>1000,37180=>1000,37181=>1000,37187=>1000,37190=>1000,37191=>1000,37192=>1000,37193=>1000,37194=>1000,37195=>1000,37196=>1000,37197=>1000,37198=>1000,37199=>1000,37202=>1000,37203=>1000,37204=>1000,37206=>1000,37207=>1000,37208=>1000,37209=>1000,37210=>1000,37211=>1000,37217=>1000,37218=>1000,37219=>1000,37220=>1000,37221=>1000,37223=>1000,37225=>1000,37226=>1000,37228=>1000,37229=>1000,37234=>1000,37235=>1000,37236=>1000,37237=>1000,37239=>1000,37240=>1000,37241=>1000,37242=>1000,37243=>1000,37249=>1000,37250=>1000,37251=>1000,37253=>1000,37254=>1000,37255=>1000,37257=>1000,37258=>1000,37259=>1000,37261=>1000,37262=>1000,37264=>1000,37265=>1000,37266=>1000,37267=>1000,37268=>1000,37269=>1000,37271=>1000,37272=>1000,37276=>1000,37278=>1000,37281=>1000,37282=>1000,37284=>1000,37286=>1000,37288=>1000,37290=>1000,37291=>1000,37292=>1000,37293=>1000,37294=>1000,37295=>1000,37296=>1000,37297=>1000,37298=>1000,37299=>1000,37300=>1000,37301=>1000,37302=>1000,37304=>1000,37306=>1000,37307=>1000,37308=>1000,37309=>1000,37311=>1000,37312=>1000,37313=>1000,37314=>1000,37315=>1000,37316=>1000,37317=>1000,37318=>1000,37319=>1000,37320=>1000,37321=>1000,37323=>1000,37324=>1000,37325=>1000,37326=>1000,37327=>1000,37328=>1000,37329=>1000,37331=>1000,37332=>1000,37334=>1000,37335=>1000,37336=>1000,37337=>1000,37338=>1000,37339=>1000,37340=>1000,37341=>1000,37342=>1000,37343=>1000,37345=>1000,37347=>1000,37348=>1000,37349=>1000,37350=>1000,37351=>1000,37353=>1000,37354=>1000,37356=>1000,37357=>1000,37358=>1000,37359=>1000,37360=>1000,37361=>1000,37365=>1000,37366=>1000,37367=>1000,37369=>1000,37371=>1000,37372=>1000,37373=>1000,37375=>1000,37376=>1000,37377=>1000,37380=>1000,37381=>1000,37382=>1000,37383=>1000,37385=>1000,37386=>1000,37388=>1000,37389=>1000,37390=>1000,37392=>1000,37393=>1000,37394=>1000,37395=>1000,37396=>1000,37397=>1000,37398=>1000,37399=>1000,37400=>1000,37404=>1000,37405=>1000,37406=>1000,37411=>1000,37412=>1000,37413=>1000,37414=>1000,37416=>1000,37417=>1000,37420=>1000,37422=>1000,37423=>1000,37424=>1000,37427=>1000,37428=>1000,37429=>1000,37430=>1000,37431=>1000,37432=>1000,37433=>1000,37434=>1000,37436=>1000,37438=>1000,37439=>1000,37440=>1000,37442=>1000,37443=>1000,37444=>1000,37445=>1000,37446=>1000,37447=>1000,37448=>1000,37449=>1000,37450=>1000,37451=>1000,37453=>1000,37454=>1000,37455=>1000,37456=>1000,37457=>1000,37462=>1000,37463=>1000,37464=>1000,37465=>1000,37466=>1000,37467=>1000,37468=>1000,37469=>1000,37470=>1000,37472=>1000,37473=>1000,37474=>1000,37476=>1000,37477=>1000,37478=>1000,37479=>1000,37480=>1000,37481=>1000,37486=>1000,37487=>1000,37488=>1000,37489=>1000,37493=>1000,37494=>1000,37495=>1000,37496=>1000,37497=>1000,37499=>1000,37500=>1000,37501=>1000,37502=>1000,37503=>1000,37504=>1000,37507=>1000,37509=>1000,37512=>1000,37513=>1000,37514=>1000,37517=>1000,37518=>1000,37521=>1000,37522=>1000,37523=>1000,37525=>1000,37526=>1000,37527=>1000,37528=>1000,37529=>1000,37530=>1000,37531=>1000,37532=>1000,37535=>1000,37536=>1000,37540=>1000,37541=>1000,37543=>1000,37544=>1000,37547=>1000,37549=>1000,37551=>1000,37554=>1000,37555=>1000,37558=>1000,37559=>1000,37560=>1000,37561=>1000,37562=>1000,37563=>1000,37564=>1000,37565=>1000,37567=>1000,37568=>1000,37569=>1000,37570=>1000,37571=>1000,37573=>1000,37574=>1000,37575=>1000,37576=>1000,37579=>1000,37580=>1000,37581=>1000,37582=>1000,37583=>1000,37584=>1000,37586=>1000,37587=>1000,37589=>1000,37591=>1000,37592=>1000,37593=>1000,37596=>1000,37597=>1000,37599=>1000,37600=>1000,37601=>1000,37603=>1000,37604=>1000,37605=>1000,37607=>1000,37608=>1000,37609=>1000,37610=>1000,37612=>1000,37613=>1000,37614=>1000,37616=>1000,37618=>1000,37619=>1000,37623=>1000,37624=>1000,37625=>1000,37626=>1000,37627=>1000,37628=>1000,37631=>1000,37632=>1000,37634=>1000,37636=>1000,37638=>1000,37640=>1000,37645=>1000,37647=>1000,37648=>1000,37649=>1000,37652=>1000,37653=>1000,37656=>1000,37657=>1000,37658=>1000,37660=>1000,37661=>1000,37662=>1000,37663=>1000,37664=>1000,37665=>1000,37666=>1000,37667=>1000,37668=>1000,37669=>1000,37670=>1000,37671=>1000,37672=>1000,37673=>1000,37674=>1000,37675=>1000,37676=>1000,37678=>1000,37679=>1000,37682=>1000,37683=>1000,37684=>1000,37685=>1000,37686=>1000,37687=>1000,37690=>1000,37691=>1000,37700=>1000,37703=>1000,37704=>1000,37705=>1000,37706=>1000,37707=>1000,37709=>1000,37712=>1000,37713=>1000,37714=>1000,37716=>1000,37717=>1000,37718=>1000,37719=>1000,37720=>1000,37722=>1000,37723=>1000,37724=>1000,37726=>1000,37728=>1000,37732=>1000,37733=>1000,37735=>1000,37737=>1000,37738=>1000,37739=>1000,37740=>1000,37741=>1000,37742=>1000,37743=>1000,37744=>1000,37745=>1000,37747=>1000,37748=>1000,37749=>1000,37750=>1000,37754=>1000,37756=>1000,37757=>1000,37758=>1000,37759=>1000,37760=>1000,37761=>1000,37762=>1000,37768=>1000,37770=>1000,37771=>1000,37772=>1000,37773=>1000,37775=>1000,37778=>1000,37780=>1000,37781=>1000,37782=>1000,37783=>1000,37784=>1000,37786=>1000,37787=>1000,37790=>1000,37793=>1000,37795=>1000,37796=>1000,37798=>1000,37799=>1000,37800=>1000,37801=>1000,37803=>1000,37804=>1000,37805=>1000,37806=>1000,37808=>1000,37812=>1000,37813=>1000,37814=>1000,37817=>1000,37818=>1000,37819=>1000,37825=>1000,37827=>1000,37828=>1000,37829=>1000,37830=>1000,37831=>1000,37832=>1000,37833=>1000,37834=>1000,37835=>1000,37836=>1000,37837=>1000,37840=>1000,37841=>1000,37843=>1000,37846=>1000,37847=>1000,37848=>1000,37849=>1000,37852=>1000,37853=>1000,37854=>1000,37855=>1000,37857=>1000,37858=>1000,37860=>1000,37861=>1000,37862=>1000,37863=>1000,37864=>1000,37873=>1000,37877=>1000,37879=>1000,37880=>1000,37881=>1000,37882=>1000,37883=>1000,37885=>1000,37889=>1000,37890=>1000,37891=>1000,37892=>1000,37895=>1000,37896=>1000,37897=>1000,37901=>1000,37902=>1000,37903=>1000,37904=>1000,37907=>1000,37908=>1000,37909=>1000,37910=>1000,37911=>1000,37912=>1000,37913=>1000,37914=>1000,37919=>1000,37921=>1000,37931=>1000,37934=>1000,37935=>1000,37937=>1000,37938=>1000,37939=>1000,37940=>1000,37941=>1000,37942=>1000,37944=>1000,37946=>1000,37947=>1000,37949=>1000,37951=>1000,37953=>1000,37955=>1000,37956=>1000,37957=>1000,37960=>1000,37962=>1000,37964=>1000,37969=>1000,37970=>1000,37971=>1000,37973=>1000,37977=>1000,37978=>1000,37979=>1000,37980=>1000,37982=>1000,37983=>1000,37984=>1000,37985=>1000,37986=>1000,37987=>1000,37992=>1000,37994=>1000,37995=>1000,37997=>1000,37998=>1000,37999=>1000,38000=>1000,38001=>1000,38002=>1000,38005=>1000,38007=>1000,38012=>1000,38013=>1000,38014=>1000,38015=>1000,38017=>1000,38019=>1000,38020=>1000,38021=>1000,38263=>1000,38264=>1000,38265=>1000,38270=>1000,38271=>1000,38272=>1000,38274=>1000,38275=>1000,38276=>1000,38278=>1000,38279=>1000,38280=>1000,38281=>1000,38282=>1000,38283=>1000,38284=>1000,38285=>1000,38286=>1000,38287=>1000,38289=>1000,38290=>1000,38291=>1000,38292=>1000,38294=>1000,38296=>1000,38297=>1000,38301=>1000,38302=>1000,38303=>1000,38304=>1000,38305=>1000,38306=>1000,38307=>1000,38308=>1000,38309=>1000,38310=>1000,38311=>1000,38312=>1000,38313=>1000,38315=>1000,38316=>1000,38317=>1000,38321=>1000,38322=>1000,38324=>1000,38326=>1000,38329=>1000,38330=>1000,38331=>1000,38332=>1000,38333=>1000,38334=>1000,38335=>1000,38339=>1000,38342=>1000,38343=>1000,38344=>1000,38345=>1000,38346=>1000,38347=>1000,38348=>1000,38349=>1000,38352=>1000,38353=>1000,38354=>1000,38355=>1000,38356=>1000,38357=>1000,38358=>1000,38360=>1000,38361=>1000,38362=>1000,38364=>1000,38365=>1000,38366=>1000,38367=>1000,38368=>1000,38369=>1000,38370=>1000,38372=>1000,38373=>1000,38374=>1000,38376=>1000,38428=>1000,38429=>1000,38430=>1000,38433=>1000,38434=>1000,38436=>1000,38437=>1000,38438=>1000,38440=>1000,38442=>1000,38444=>1000,38446=>1000,38447=>1000,38449=>1000,38450=>1000,38451=>1000,38452=>1000,38455=>1000,38456=>1000,38457=>1000,38458=>1000,38459=>1000,38460=>1000,38461=>1000,38463=>1000,38464=>1000,38465=>1000,38466=>1000,38468=>1000,38475=>1000,38476=>1000,38477=>1000,38479=>1000,38480=>1000,38482=>1000,38484=>1000,38486=>1000,38487=>1000,38488=>1000,38491=>1000,38492=>1000,38493=>1000,38494=>1000,38495=>1000,38497=>1000,38498=>1000,38499=>1000,38500=>1000,38501=>1000,38502=>1000,38506=>1000,38508=>1000,38510=>1000,38512=>1000,38514=>1000,38515=>1000,38516=>1000,38517=>1000,38518=>1000,38519=>1000,38520=>1000,38522=>1000,38523=>1000,38524=>1000,38525=>1000,38526=>1000,38527=>1000,38529=>1000,38530=>1000,38531=>1000,38532=>1000,38533=>1000,38534=>1000,38536=>1000,38537=>1000,38538=>1000,38539=>1000,38541=>1000,38542=>1000,38543=>1000,38545=>1000,38548=>1000,38549=>1000,38550=>1000,38551=>1000,38552=>1000,38553=>1000,38554=>1000,38555=>1000,38556=>1000,38557=>1000,38559=>1000,38560=>1000,38563=>1000,38564=>1000,38565=>1000,38566=>1000,38567=>1000,38568=>1000,38569=>1000,38570=>1000,38574=>1000,38575=>1000,38576=>1000,38577=>1000,38578=>1000,38579=>1000,38580=>1000,38582=>1000,38583=>1000,38584=>1000,38585=>1000,38586=>1000,38587=>1000,38588=>1000,38589=>1000,38592=>1000,38593=>1000,38596=>1000,38597=>1000,38598=>1000,38599=>1000,38601=>1000,38602=>1000,38603=>1000,38604=>1000,38605=>1000,38606=>1000,38609=>1000,38610=>1000,38613=>1000,38614=>1000,38616=>1000,38617=>1000,38618=>1000,38619=>1000,38620=>1000,38621=>1000,38622=>1000,38623=>1000,38626=>1000,38627=>1000,38632=>1000,38633=>1000,38634=>1000,38635=>1000,38639=>1000,38640=>1000,38641=>1000,38642=>1000,38646=>1000,38647=>1000,38649=>1000,38650=>1000,38651=>1000,38656=>1000,38658=>1000,38659=>1000,38660=>1000,38661=>1000,38662=>1000,38663=>1000,38664=>1000,38665=>1000,38666=>1000,38669=>1000,38670=>1000,38671=>1000,38673=>1000,38675=>1000,38676=>1000,38678=>1000,38681=>1000,38682=>1000,38683=>1000,38684=>1000,38685=>1000,38686=>1000,38689=>1000,38690=>1000,38691=>1000,38692=>1000,38695=>1000,38696=>1000,38698=>1000,38704=>1000,38705=>1000,38706=>1000,38707=>1000,38710=>1000,38712=>1000,38713=>1000,38715=>1000,38717=>1000,38718=>1000,38721=>1000,38722=>1000,38723=>1000,38724=>1000,38726=>1000,38727=>1000,38728=>1000,38729=>1000,38730=>1000,38733=>1000,38734=>1000,38735=>1000,38737=>1000,38738=>1000,38741=>1000,38742=>1000,38743=>1000,38744=>1000,38745=>1000,38746=>1000,38747=>1000,38748=>1000,38750=>1000,38752=>1000,38753=>1000,38754=>1000,38755=>1000,38756=>1000,38758=>1000,38759=>1000,38760=>1000,38761=>1000,38762=>1000,38763=>1000,38765=>1000,38766=>1000,38769=>1000,38771=>1000,38772=>1000,38774=>1000,38775=>1000,38776=>1000,38777=>1000,38778=>1000,38779=>1000,38780=>1000,38781=>1000,38783=>1000,38784=>1000,38785=>1000,38788=>1000,38789=>1000,38790=>1000,38793=>1000,38795=>1000,38797=>1000,38799=>1000,38800=>1000,38805=>1000,38806=>1000,38807=>1000,38808=>1000,38809=>1000,38810=>1000,38812=>1000,38814=>1000,38815=>1000,38816=>1000,38818=>1000,38819=>1000,38822=>1000,38824=>1000,38827=>1000,38828=>1000,38829=>1000,38830=>1000,38833=>1000,38834=>1000,38835=>1000,38836=>1000,38837=>1000,38838=>1000,38840=>1000,38841=>1000,38842=>1000,38844=>1000,38846=>1000,38847=>1000,38849=>1000,38851=>1000,38852=>1000,38853=>1000,38854=>1000,38855=>1000,38856=>1000,38857=>1000,38858=>1000,38859=>1000,38860=>1000,38861=>1000,38862=>1000,38864=>1000,38865=>1000,38867=>1000,38868=>1000,38871=>1000,38872=>1000,38873=>1000,38875=>1000,38876=>1000,38877=>1000,38878=>1000,38880=>1000,38881=>1000,38884=>1000,38886=>1000,38893=>1000,38894=>1000,38895=>1000,38897=>1000,38898=>1000,38899=>1000,38900=>1000,38901=>1000,38902=>1000,38903=>1000,38904=>1000,38906=>1000,38907=>1000,38911=>1000,38913=>1000,38914=>1000,38915=>1000,38916=>1000,38917=>1000,38918=>1000,38919=>1000,38920=>1000,38922=>1000,38924=>1000,38925=>1000,38926=>1000,38927=>1000,38928=>1000,38929=>1000,38930=>1000,38931=>1000,38932=>1000,38934=>1000,38935=>1000,38936=>1000,38937=>1000,38938=>1000,38940=>1000,38942=>1000,38944=>1000,38945=>1000,38947=>1000,38948=>1000,38949=>1000,38950=>1000,38955=>1000,38956=>1000,38957=>1000,38958=>1000,38959=>1000,38960=>1000,38962=>1000,38963=>1000,38964=>1000,38965=>1000,38967=>1000,38968=>1000,38969=>1000,38971=>1000,38972=>1000,38973=>1000,38974=>1000,38980=>1000,38982=>1000,38983=>1000,38986=>1000,38987=>1000,38988=>1000,38989=>1000,38990=>1000,38991=>1000,38993=>1000,38994=>1000,38995=>1000,38996=>1000,38997=>1000,38998=>1000,38999=>1000,39000=>1000,39001=>1000,39002=>1000,39003=>1000,39006=>1000,39010=>1000,39011=>1000,39013=>1000,39014=>1000,39015=>1000,39018=>1000,39019=>1000,39020=>1000,39023=>1000,39024=>1000,39025=>1000,39027=>1000,39028=>1000,39029=>1000,39080=>1000,39082=>1000,39083=>1000,39085=>1000,39086=>1000,39087=>1000,39088=>1000,39089=>1000,39092=>1000,39094=>1000,39095=>1000,39096=>1000,39098=>1000,39099=>1000,39100=>1000,39103=>1000,39106=>1000,39107=>1000,39108=>1000,39109=>1000,39110=>1000,39111=>1000,39112=>1000,39115=>1000,39116=>1000,39118=>1000,39131=>1000,39132=>1000,39134=>1000,39135=>1000,39136=>1000,39137=>1000,39138=>1000,39139=>1000,39141=>1000,39142=>1000,39143=>1000,39145=>1000,39146=>1000,39147=>1000,39149=>1000,39150=>1000,39151=>1000,39152=>1000,39153=>1000,39154=>1000,39155=>1000,39156=>1000,39158=>1000,39164=>1000,39165=>1000,39166=>1000,39170=>1000,39171=>1000,39173=>1000,39175=>1000,39176=>1000,39177=>1000,39178=>1000,39180=>1000,39184=>1000,39185=>1000,39186=>1000,39187=>1000,39188=>1000,39189=>1000,39190=>1000,39191=>1000,39192=>1000,39194=>1000,39195=>1000,39196=>1000,39197=>1000,39198=>1000,39199=>1000,39200=>1000,39201=>1000,39202=>1000,39204=>1000,39206=>1000,39207=>1000,39208=>1000,39211=>1000,39212=>1000,39214=>1000,39217=>1000,39218=>1000,39219=>1000,39220=>1000,39221=>1000,39225=>1000,39226=>1000,39227=>1000,39228=>1000,39229=>1000,39230=>1000,39232=>1000,39233=>1000,39234=>1000,39237=>1000,39238=>1000,39239=>1000,39240=>1000,39241=>1000,39243=>1000,39244=>1000,39245=>1000,39246=>1000,39248=>1000,39249=>1000,39250=>1000,39252=>1000,39253=>1000,39255=>1000,39256=>1000,39257=>1000,39259=>1000,39260=>1000,39262=>1000,39263=>1000,39264=>1000,39267=>1000,39318=>1000,39319=>1000,39320=>1000,39321=>1000,39323=>1000,39325=>1000,39326=>1000,39327=>1000,39331=>1000,39333=>1000,39334=>1000,39336=>1000,39340=>1000,39341=>1000,39342=>1000,39344=>1000,39345=>1000,39346=>1000,39347=>1000,39348=>1000,39349=>1000,39353=>1000,39354=>1000,39356=>1000,39357=>1000,39359=>1000,39361=>1000,39363=>1000,39364=>1000,39365=>1000,39366=>1000,39368=>1000,39369=>1000,39376=>1000,39377=>1000,39378=>1000,39379=>1000,39380=>1000,39381=>1000,39384=>1000,39385=>1000,39386=>1000,39387=>1000,39388=>1000,39389=>1000,39390=>1000,39391=>1000,39393=>1000,39394=>1000,39399=>1000,39402=>1000,39403=>1000,39404=>1000,39405=>1000,39406=>1000,39408=>1000,39409=>1000,39410=>1000,39412=>1000,39413=>1000,39416=>1000,39417=>1000,39419=>1000,39420=>1000,39421=>1000,39422=>1000,39423=>1000,39425=>1000,39426=>1000,39427=>1000,39428=>1000,39429=>1000,39432=>1000,39434=>1000,39435=>1000,39436=>1000,39438=>1000,39439=>1000,39440=>1000,39441=>1000,39442=>1000,39443=>1000,39446=>1000,39449=>1000,39450=>1000,39454=>1000,39456=>1000,39458=>1000,39459=>1000,39460=>1000,39463=>1000,39464=>1000,39467=>1000,39469=>1000,39470=>1000,39472=>1000,39473=>1000,39475=>1000,39477=>1000,39478=>1000,39479=>1000,39480=>1000,39486=>1000,39488=>1000,39489=>1000,39490=>1000,39491=>1000,39492=>1000,39493=>1000,39495=>1000,39498=>1000,39499=>1000,39500=>1000,39501=>1000,39502=>1000,39505=>1000,39506=>1000,39508=>1000,39509=>1000,39510=>1000,39511=>1000,39512=>1000,39514=>1000,39515=>1000,39517=>1000,39519=>1000,39522=>1000,39524=>1000,39525=>1000,39529=>1000,39530=>1000,39531=>1000,39532=>1000,39592=>1000,39594=>1000,39596=>1000,39597=>1000,39598=>1000,39599=>1000,39600=>1000,39602=>1000,39604=>1000,39605=>1000,39606=>1000,39607=>1000,39608=>1000,39609=>1000,39611=>1000,39612=>1000,39613=>1000,39614=>1000,39615=>1000,39616=>1000,39617=>1000,39619=>1000,39620=>1000,39622=>1000,39624=>1000,39630=>1000,39631=>1000,39632=>1000,39633=>1000,39634=>1000,39635=>1000,39636=>1000,39637=>1000,39638=>1000,39639=>1000,39640=>1000,39641=>1000,39643=>1000,39644=>1000,39646=>1000,39647=>1000,39648=>1000,39650=>1000,39651=>1000,39652=>1000,39653=>1000,39654=>1000,39655=>1000,39657=>1000,39658=>1000,39659=>1000,39660=>1000,39661=>1000,39662=>1000,39663=>1000,39665=>1000,39666=>1000,39667=>1000,39668=>1000,39669=>1000,39671=>1000,39673=>1000,39674=>1000,39675=>1000,39677=>1000,39679=>1000,39680=>1000,39681=>1000,39682=>1000,39683=>1000,39684=>1000,39685=>1000,39686=>1000,39688=>1000,39689=>1000,39691=>1000,39692=>1000,39693=>1000,39694=>1000,39696=>1000,39698=>1000,39702=>1000,39704=>1000,39705=>1000,39706=>1000,39707=>1000,39708=>1000,39709=>1000,39711=>1000,39712=>1000,39714=>1000,39715=>1000,39717=>1000,39718=>1000,39719=>1000,39720=>1000,39721=>1000,39722=>1000,39723=>1000,39724=>1000,39725=>1000,39726=>1000,39727=>1000,39729=>1000,39730=>1000,39731=>1000,39732=>1000,39733=>1000,39735=>1000,39737=>1000,39738=>1000,39739=>1000,39740=>1000,39741=>1000,39745=>1000,39746=>1000,39747=>1000,39748=>1000,39749=>1000,39752=>1000,39755=>1000,39756=>1000,39757=>1000,39758=>1000,39759=>1000,39761=>1000,39764=>1000,39765=>1000,39766=>1000,39767=>1000,39768=>1000,39770=>1000,39771=>1000,39774=>1000,39777=>1000,39779=>1000,39781=>1000,39782=>1000,39784=>1000,39786=>1000,39787=>1000,39788=>1000,39789=>1000,39790=>1000,39791=>1000,39794=>1000,39795=>1000,39796=>1000,39797=>1000,39798=>1000,39799=>1000,39800=>1000,39801=>1000,39807=>1000,39808=>1000,39811=>1000,39812=>1000,39813=>1000,39814=>1000,39815=>1000,39817=>1000,39818=>1000,39819=>1000,39821=>1000,39822=>1000,39823=>1000,39824=>1000,39825=>1000,39826=>1000,39827=>1000,39828=>1000,39830=>1000,39831=>1000,39834=>1000,39837=>1000,39838=>1000,39839=>1000,39840=>1000,39846=>1000,39847=>1000,39848=>1000,39849=>1000,39850=>1000,39851=>1000,39852=>1000,39853=>1000,39854=>1000,39856=>1000,39857=>1000,39858=>1000,39860=>1000,39863=>1000,39864=>1000,39865=>1000,39867=>1000,39868=>1000,39870=>1000,39871=>1000,39872=>1000,39873=>1000,39878=>1000,39879=>1000,39880=>1000,39881=>1000,39882=>1000,39886=>1000,39887=>1000,39888=>1000,39889=>1000,39890=>1000,39892=>1000,39894=>1000,39895=>1000,39896=>1000,39899=>1000,39901=>1000,39903=>1000,39905=>1000,39906=>1000,39907=>1000,39908=>1000,39909=>1000,39911=>1000,39912=>1000,39914=>1000,39915=>1000,39918=>1000,39919=>1000,39920=>1000,39921=>1000,39922=>1000,39923=>1000,39925=>1000,39927=>1000,39928=>1000,39929=>1000,39930=>1000,39933=>1000,39935=>1000,39936=>1000,39938=>1000,39940=>1000,39942=>1000,39944=>1000,39945=>1000,39946=>1000,39947=>1000,39948=>1000,39949=>1000,39951=>1000,39952=>1000,39953=>1000,39954=>1000,39955=>1000,39956=>1000,39957=>1000,39958=>1000,39960=>1000,39961=>1000,39962=>1000,39963=>1000,39964=>1000,39965=>1000,39966=>1000,39969=>1000,39970=>1000,39971=>1000,39972=>1000,39973=>1000,39974=>1000,39975=>1000,39976=>1000,39977=>1000,39978=>1000,39981=>1000,39982=>1000,39983=>1000,39984=>1000,39985=>1000,39986=>1000,39989=>1000,39990=>1000,39991=>1000,39993=>1000,39994=>1000,39995=>1000,39997=>1000,39998=>1000,40001=>1000,40003=>1000,40004=>1000,40005=>1000,40006=>1000,40007=>1000,40008=>1000,40009=>1000,40010=>1000,40014=>1000,40015=>1000,40016=>1000,40018=>1000,40019=>1000,40020=>1000,40022=>1000,40023=>1000,40024=>1000,40026=>1000,40027=>1000,40028=>1000,40029=>1000,40030=>1000,40031=>1000,40032=>1000,40033=>1000,40035=>1000,40037=>1000,40039=>1000,40040=>1000,40041=>1000,40042=>1000,40043=>1000,40045=>1000,40046=>1000,40048=>1000,40050=>1000,40053=>1000,40054=>1000,40055=>1000,40056=>1000,40058=>1000,40059=>1000,40060=>1000,40165=>1000,40166=>1000,40167=>1000,40169=>1000,40171=>1000,40172=>1000,40176=>1000,40178=>1000,40179=>1000,40180=>1000,40182=>1000,40183=>1000,40185=>1000,40194=>1000,40195=>1000,40198=>1000,40199=>1000,40200=>1000,40201=>1000,40203=>1000,40206=>1000,40209=>1000,40210=>1000,40213=>1000,40215=>1000,40216=>1000,40219=>1000,40220=>1000,40221=>1000,40222=>1000,40223=>1000,40227=>1000,40230=>1000,40232=>1000,40234=>1000,40235=>1000,40236=>1000,40239=>1000,40240=>1000,40242=>1000,40243=>1000,40244=>1000,40250=>1000,40251=>1000,40252=>1000,40253=>1000,40254=>1000,40255=>1000,40257=>1000,40258=>1000,40259=>1000,40260=>1000,40261=>1000,40262=>1000,40263=>1000,40264=>1000,40266=>1000,40272=>1000,40273=>1000,40274=>1000,40275=>1000,40276=>1000,40281=>1000,40284=>1000,40285=>1000,40286=>1000,40287=>1000,40288=>1000,40289=>1000,40290=>1000,40291=>1000,40292=>1000,40293=>1000,40297=>1000,40298=>1000,40299=>1000,40300=>1000,40303=>1000,40304=>1000,40306=>1000,40307=>1000,40310=>1000,40311=>1000,40314=>1000,40315=>1000,40316=>1000,40318=>1000,40323=>1000,40324=>1000,40326=>1000,40327=>1000,40329=>1000,40330=>1000,40333=>1000,40334=>1000,40335=>1000,40338=>1000,40339=>1000,40341=>1000,40342=>1000,40343=>1000,40344=>1000,40345=>1000,40346=>1000,40353=>1000,40356=>1000,40361=>1000,40362=>1000,40363=>1000,40364=>1000,40366=>1000,40367=>1000,40369=>1000,40370=>1000,40372=>1000,40373=>1000,40376=>1000,40377=>1000,40378=>1000,40379=>1000,40380=>1000,40381=>1000,40383=>1000,40384=>1000,40385=>1000,40386=>1000,40387=>1000,40388=>1000,40390=>1000,40391=>1000,40393=>1000,40394=>1000,40399=>1000,40403=>1000,40404=>1000,40405=>1000,40406=>1000,40407=>1000,40409=>1000,40410=>1000,40414=>1000,40415=>1000,40416=>1000,40419=>1000,40421=>1000,40422=>1000,40423=>1000,40425=>1000,40427=>1000,40429=>1000,40430=>1000,40431=>1000,40432=>1000,40434=>1000,40435=>1000,40436=>1000,40440=>1000,40441=>1000,40442=>1000,40445=>1000,40446=>1000,40450=>1000,40455=>1000,40458=>1000,40461=>1000,40462=>1000,40464=>1000,40465=>1000,40466=>1000,40469=>1000,40470=>1000,40473=>1000,40474=>1000,40475=>1000,40476=>1000,40477=>1000,40478=>1000,40479=>1000,40565=>1000,40568=>1000,40569=>1000,40570=>1000,40571=>1000,40572=>1000,40573=>1000,40575=>1000,40576=>1000,40577=>1000,40578=>1000,40579=>1000,40580=>1000,40581=>1000,40583=>1000,40584=>1000,40587=>1000,40588=>1000,40590=>1000,40591=>1000,40593=>1000,40594=>1000,40595=>1000,40597=>1000,40598=>1000,40599=>1000,40600=>1000,40603=>1000,40605=>1000,40606=>1000,40607=>1000,40612=>1000,40613=>1000,40614=>1000,40616=>1000,40617=>1000,40618=>1000,40620=>1000,40621=>1000,40622=>1000,40623=>1000,40624=>1000,40627=>1000,40628=>1000,40629=>1000,40632=>1000,40633=>1000,40634=>1000,40635=>1000,40636=>1000,40637=>1000,40638=>1000,40639=>1000,40643=>1000,40644=>1000,40646=>1000,40648=>1000,40651=>1000,40652=>1000,40653=>1000,40654=>1000,40655=>1000,40656=>1000,40657=>1000,40658=>1000,40660=>1000,40661=>1000,40664=>1000,40665=>1000,40667=>1000,40668=>1000,40669=>1000,40670=>1000,40671=>1000,40672=>1000,40676=>1000,40677=>1000,40679=>1000,40680=>1000,40684=>1000,40685=>1000,40686=>1000,40687=>1000,40688=>1000,40689=>1000,40690=>1000,40692=>1000,40693=>1000,40694=>1000,40695=>1000,40696=>1000,40697=>1000,40699=>1000,40700=>1000,40701=>1000,40702=>1000,40703=>1000,40706=>1000,40707=>1000,40711=>1000,40712=>1000,40713=>1000,40718=>1000,40719=>1000,40720=>1000,40721=>1000,40722=>1000,40723=>1000,40724=>1000,40725=>1000,40726=>1000,40727=>1000,40729=>1000,40730=>1000,40731=>1000,40735=>1000,40736=>1000,40737=>1000,40738=>1000,40742=>1000,40746=>1000,40747=>1000,40748=>1000,40751=>1000,40753=>1000,40754=>1000,40756=>1000,40759=>1000,40761=>1000,40762=>1000,40763=>1000,40764=>1000,40765=>1000,40766=>1000,40767=>1000,40769=>1000,40771=>1000,40772=>1000,40773=>1000,40774=>1000,40775=>1000,40778=>1000,40779=>1000,40782=>1000,40783=>1000,40784=>1000,40786=>1000,40787=>1000,40788=>1000,40789=>1000,40790=>1000,40791=>1000,40792=>1000,40794=>1000,40797=>1000,40798=>1000,40799=>1000,40800=>1000,40801=>1000,40802=>1000,40803=>1000,40806=>1000,40807=>1000,40808=>1000,40809=>1000,40810=>1000,40812=>1000,40813=>1000,40814=>1000,40815=>1000,40816=>1000,40817=>1000,40818=>1000,40819=>1000,40821=>1000,40822=>1000,40823=>1000,40826=>1000,40829=>1000,40831=>1000,40845=>1000,40847=>1000,40848=>1000,40849=>1000,40850=>1000,40852=>1000,40853=>1000,40854=>1000,40855=>1000,40857=>1000,40860=>1000,40861=>1000,40862=>1000,40863=>1000,40864=>1000,40865=>1000,40866=>1000,40867=>1000,40869=>1000,40884=>1000,40892=>1000,40893=>1000,40894=>1000,40895=>1000,40896=>1000,40897=>1000,40898=>1000,40900=>1000,40902=>1000,40908=>1000,63744=>1000,63745=>1000,63746=>1000,63747=>1000,63748=>1000,63749=>1000,63750=>1000,63751=>1000,63752=>1000,63753=>1000,63754=>1000,63755=>1000,63756=>1000,63757=>1000,63758=>1000,63759=>1000,63760=>1000,63761=>1000,63762=>1000,63763=>1000,63764=>1000,63765=>1000,63766=>1000,63767=>1000,63768=>1000,63769=>1000,63770=>1000,63771=>1000,63772=>1000,63773=>1000,63774=>1000,63775=>1000,63776=>1000,63777=>1000,63778=>1000,63779=>1000,63780=>1000,63781=>1000,63782=>1000,63783=>1000,63784=>1000,63785=>1000,63786=>1000,63787=>1000,63788=>1000,63789=>1000,63790=>1000,63791=>1000,63792=>1000,63793=>1000,63794=>1000,63795=>1000,63796=>1000,63797=>1000,63798=>1000,63799=>1000,63800=>1000,63801=>1000,63802=>1000,63803=>1000,63804=>1000,63805=>1000,63806=>1000,63807=>1000,63808=>1000,63809=>1000,63810=>1000,63811=>1000,63812=>1000,63813=>1000,63814=>1000,63815=>1000,63816=>1000,63817=>1000,63818=>1000,63819=>1000,63820=>1000,63821=>1000,63822=>1000,63823=>1000,63824=>1000,63825=>1000,63826=>1000,63827=>1000,63828=>1000,63829=>1000,63830=>1000,63831=>1000,63832=>1000,63833=>1000,63835=>1000,63836=>1000,63837=>1000,63838=>1000,63839=>1000,63840=>1000,63841=>1000,63842=>1000,63843=>1000,63844=>1000,63845=>1000,63846=>1000,63847=>1000,63848=>1000,63849=>1000,63850=>1000,63851=>1000,63852=>1000,63853=>1000,63854=>1000,63855=>1000,63856=>1000,63857=>1000,63858=>1000,63859=>1000,63860=>1000,63861=>1000,63862=>1000,63863=>1000,63864=>1000,63865=>1000,63866=>1000,63867=>1000,63868=>1000,63869=>1000,63870=>1000,63871=>1000,63872=>1000,63873=>1000,63874=>1000,63875=>1000,63876=>1000,63877=>1000,63878=>1000,63879=>1000,63880=>1000,63881=>1000,63882=>1000,63883=>1000,63884=>1000,63885=>1000,63886=>1000,63887=>1000,63888=>1000,63889=>1000,63890=>1000,63891=>1000,63892=>1000,63893=>1000,63894=>1000,63895=>1000,63896=>1000,63897=>1000,63898=>1000,63899=>1000,63900=>1000,63901=>1000,63902=>1000,63903=>1000,63904=>1000,63905=>1000,63906=>1000,63907=>1000,63908=>1000,63909=>1000,63910=>1000,63911=>1000,63912=>1000,63913=>1000,63914=>1000,63915=>1000,63916=>1000,63917=>1000,63918=>1000,63919=>1000,63920=>1000,63921=>1000,63922=>1000,63923=>1000,63924=>1000,63925=>1000,63926=>1000,63927=>1000,63928=>1000,63929=>1000,63930=>1000,63931=>1000,63932=>1000,63933=>1000,63934=>1000,63935=>1000,63936=>1000,63937=>1000,63938=>1000,63939=>1000,63940=>1000,63941=>1000,63942=>1000,63943=>1000,63944=>1000,63945=>1000,63946=>1000,63947=>1000,63948=>1000,63949=>1000,63950=>1000,63951=>1000,63952=>1000,63953=>1000,63954=>1000,63955=>1000,63956=>1000,63957=>1000,63958=>1000,63959=>1000,63960=>1000,63961=>1000,63962=>1000,63963=>1000,63964=>1000,63965=>1000,63966=>1000,63967=>1000,63968=>1000,63969=>1000,63970=>1000,63971=>1000,63972=>1000,63973=>1000,63974=>1000,63975=>1000,63976=>1000,63977=>1000,63978=>1000,63979=>1000,63980=>1000,63981=>1000,63982=>1000,63983=>1000,63984=>1000,63985=>1000,63986=>1000,63988=>1000,63989=>1000,63990=>1000,63991=>1000,63992=>1000,63993=>1000,63994=>1000,63995=>1000,63996=>1000,63997=>1000,63998=>1000,63999=>1000,64000=>1000,64001=>1000,64002=>1000,64003=>1000,64004=>1000,64005=>1000,64006=>1000,64007=>1000,64008=>1000,64009=>1000,64010=>1000,64011=>1000,64014=>1000,64015=>1000,64016=>1000,64017=>1000,64018=>1000,64019=>1000,64020=>1000,64021=>1000,64022=>1000,64023=>1000,64024=>1000,64025=>1000,64026=>1000,64027=>1000,64028=>1000,64029=>1000,64030=>1000,64031=>1000,64032=>1000,64033=>1000,64034=>1000,64035=>1000,64036=>1000,64037=>1000,64038=>1000,64039=>1000,64040=>1000,64041=>1000,64042=>1000,64043=>1000,64044=>1000,64045=>1000,64046=>1000,64047=>1000,64048=>1000,64049=>1000,64050=>1000,64051=>1000,64052=>1000,64053=>1000,64054=>1000,64055=>1000,64056=>1000,64057=>1000,64058=>1000,64059=>1000,64060=>1000,64061=>1000,64062=>1000,64063=>1000,64064=>1000,64065=>1000,64066=>1000,64067=>1000,64068=>1000,64069=>1000,64070=>1000,64071=>1000,64072=>1000,64073=>1000,64074=>1000,64075=>1000,64076=>1000,64077=>1000,64078=>1000,64079=>1000,64080=>1000,64081=>1000,64082=>1000,64083=>1000,64084=>1000,64085=>1000,64086=>1000,64087=>1000,64088=>1000,64089=>1000,64090=>1000,64091=>1000,64092=>1000,64093=>1000,64094=>1000,64095=>1000,64096=>1000,64097=>1000,64098=>1000,64099=>1000,64100=>1000,64101=>1000,64102=>1000,64103=>1000,64104=>1000,64105=>1000,64106=>1000,64107=>1000,64108=>1000,64109=>1000,64256=>643,64257=>600,64258=>610,64259=>918,64260=>928,65040=>1000,65041=>1000,65042=>1000,65043=>1000,65044=>1000,65045=>1000,65046=>1000,65047=>1000,65048=>1000,65049=>1000,65072=>1000,65073=>1000,65074=>1000,65075=>1000,65076=>1000,65077=>1000,65078=>1000,65079=>1000,65080=>1000,65081=>1000,65082=>1000,65083=>1000,65084=>1000,65085=>1000,65086=>1000,65087=>1000,65088=>1000,65089=>1000,65090=>1000,65091=>1000,65092=>1000,65093=>1000,65094=>1000,65095=>1000,65096=>1000,65097=>1000,65098=>1000,65099=>1000,65100=>1000,65101=>1000,65102=>1000,65103=>1000,65104=>1000,65105=>1000,65106=>1000,65108=>1000,65109=>1000,65110=>1000,65111=>1000,65112=>1000,65113=>1000,65114=>1000,65115=>1000,65116=>1000,65117=>1000,65118=>1000,65119=>1000,65120=>1000,65121=>1000,65122=>1000,65123=>1000,65124=>1000,65125=>1000,65126=>1000,65128=>1000,65129=>1000,65130=>1000,65131=>1000,65281=>1000,65282=>1000,65283=>1000,65284=>1000,65285=>1000,65286=>1000,65287=>1000,65288=>1000,65289=>1000,65290=>1000,65291=>1000,65292=>1000,65293=>1000,65294=>1000,65295=>1000,65296=>1000,65297=>1000,65298=>1000,65299=>1000,65300=>1000,65301=>1000,65302=>1000,65303=>1000,65304=>1000,65305=>1000,65306=>1000,65307=>1000,65308=>1000,65309=>1000,65310=>1000,65311=>1000,65312=>1000,65313=>1000,65314=>1000,65315=>1000,65316=>1000,65317=>1000,65318=>1000,65319=>1000,65320=>1000,65321=>1000,65322=>1000,65323=>1000,65324=>1000,65325=>1000,65326=>1000,65327=>1000,65328=>1000,65329=>1000,65330=>1000,65331=>1000,65332=>1000,65333=>1000,65334=>1000,65335=>1000,65336=>1000,65337=>1000,65338=>1000,65339=>1000,65340=>1000,65341=>1000,65342=>1000,65343=>1000,65344=>1000,65345=>1000,65346=>1000,65347=>1000,65348=>1000,65349=>1000,65350=>1000,65351=>1000,65352=>1000,65353=>1000,65354=>1000,65355=>1000,65356=>1000,65357=>1000,65358=>1000,65359=>1000,65360=>1000,65361=>1000,65362=>1000,65363=>1000,65364=>1000,65365=>1000,65366=>1000,65367=>1000,65368=>1000,65369=>1000,65370=>1000,65371=>1000,65372=>1000,65373=>1000,65374=>1000,65375=>1000,65376=>1000,65377=>500,65378=>500,65379=>500,65380=>500,65381=>500,65382=>500,65383=>500,65384=>500,65385=>500,65386=>500,65387=>500,65388=>500,65389=>500,65390=>500,65391=>500,65392=>500,65393=>500,65394=>500,65395=>500,65396=>500,65397=>500,65398=>500,65399=>500,65400=>500,65401=>500,65402=>500,65403=>500,65404=>500,65405=>500,65406=>500,65407=>500,65408=>500,65409=>500,65410=>500,65411=>500,65412=>500,65413=>500,65414=>500,65415=>500,65416=>500,65417=>500,65418=>500,65419=>500,65420=>500,65421=>500,65422=>500,65423=>500,65424=>500,65425=>500,65426=>500,65427=>500,65428=>500,65429=>500,65430=>500,65431=>500,65432=>500,65433=>500,65434=>500,65435=>500,65436=>500,65437=>500,65438=>500,65439=>500,65441=>920,65442=>920,65443=>920,65444=>920,65445=>920,65446=>920,65447=>920,65448=>920,65449=>920,65450=>920,65451=>920,65452=>920,65453=>920,65454=>920,65455=>920,65456=>920,65457=>920,65458=>920,65459=>920,65460=>920,65461=>920,65462=>920,65463=>920,65464=>920,65465=>920,65466=>920,65467=>920,65468=>920,65469=>920,65470=>920,65474=>920,65475=>920,65476=>920,65477=>920,65478=>920,65479=>920,65482=>920,65483=>920,65484=>920,65485=>920,65486=>920,65487=>920,65490=>920,65491=>920,65492=>920,65493=>920,65494=>920,65495=>920,65498=>920,65499=>920,65500=>920,65504=>1000,65505=>1000,65506=>1000,65507=>1000,65508=>1000,65509=>1000,65510=>1000,65512=>500,65513=>500,65514=>500,65515=>500,65516=>500,65517=>500,65518=>500); +// --- EOF --- diff --git a/fonts/Noto_Sans_JP/notosansjp.z b/fonts/Noto_Sans_JP/notosansjp.z new file mode 100644 index 0000000..f902fa8 Binary files /dev/null and b/fonts/Noto_Sans_JP/notosansjp.z differ diff --git a/fonts/Noto_Sans_JP/notosansjpb.ctg.z b/fonts/Noto_Sans_JP/notosansjpb.ctg.z new file mode 100644 index 0000000..02e0ad2 Binary files /dev/null and b/fonts/Noto_Sans_JP/notosansjpb.ctg.z differ diff --git a/fonts/Noto_Sans_JP/notosansjpb.php b/fonts/Noto_Sans_JP/notosansjpb.php new file mode 100644 index 0000000..0a564be --- /dev/null +++ b/fonts/Noto_Sans_JP/notosansjpb.php @@ -0,0 +1,15 @@ +32,'FontBBox'=>'[-1013 -1046 2926 1806]','ItalicAngle'=>0,'Ascent'=>1160,'Descent'=>-288,'Leading'=>0,'CapHeight'=>741,'XHeight'=>560,'StemV'=>123,'StemH'=>53,'AvgWidth'=>984,'MaxWidth'=>3000,'MissingWidth'=>1000); +$cw=array(0=>1000,32=>227,33=>370,34=>574,35=>590,36=>590,37=>963,38=>740,39=>325,40=>378,41=>378,42=>507,43=>590,44=>325,45=>370,46=>325,47=>387,48=>590,49=>590,50=>590,51=>590,52=>590,53=>590,54=>590,55=>590,56=>590,57=>590,58=>325,59=>325,60=>590,61=>590,62=>590,63=>514,64=>1007,65=>641,66=>681,67=>656,68=>714,69=>615,70=>585,71=>717,72=>757,73=>330,74=>568,75=>686,76=>578,77=>853,78=>749,79=>770,80=>667,81=>770,82=>682,83=>624,84=>625,85=>748,86=>619,87=>915,88=>627,89=>580,90=>613,91=>378,92=>387,93=>378,94=>590,95=>567,96=>626,97=>591,98=>644,99=>527,100=>644,101=>581,102=>372,103=>597,104=>640,105=>304,106=>306,107=>604,108=>315,109=>964,110=>641,111=>626,112=>644,113=>644,114=>437,115=>495,116=>421,117=>637,118=>576,119=>863,120=>562,121=>574,122=>511,123=>378,124=>296,125=>378,126=>590,160=>227,161=>370,162=>590,163=>590,164=>590,165=>590,166=>296,167=>1000,168=>626,169=>849,170=>403,171=>529,172=>590,173=>370,174=>513,175=>626,176=>404,177=>1000,178=>424,179=>424,180=>626,181=>664,182=>1000,183=>592,184=>626,185=>424,186=>420,187=>529,188=>909,189=>948,190=>921,191=>514,192=>641,193=>641,194=>641,195=>641,196=>641,197=>641,198=>951,199=>656,200=>615,201=>615,202=>615,203=>615,204=>330,205=>330,206=>330,207=>330,208=>742,209=>749,210=>770,211=>770,212=>770,213=>770,214=>770,215=>1000,216=>770,217=>748,218=>748,219=>748,220=>748,221=>580,222=>690,223=>700,224=>591,225=>591,226=>591,227=>591,228=>591,229=>591,230=>891,231=>527,232=>581,233=>581,234=>581,235=>581,236=>304,237=>304,238=>304,239=>304,240=>630,241=>641,242=>626,243=>626,244=>626,245=>626,246=>626,247=>1000,248=>626,249=>637,250=>637,251=>637,252=>637,253=>574,254=>644,255=>574,256=>641,257=>591,258=>641,259=>591,272=>742,273=>644,274=>615,275=>581,282=>615,283=>581,296=>330,297=>304,298=>330,299=>304,323=>749,324=>641,327=>749,328=>641,332=>770,333=>626,334=>770,335=>626,338=>981,339=>938,360=>748,361=>637,362=>748,363=>637,364=>748,365=>637,402=>590,416=>770,417=>626,431=>767,432=>637,461=>641,462=>591,463=>330,464=>304,465=>770,466=>626,467=>748,468=>637,469=>748,470=>637,471=>748,472=>637,473=>748,474=>637,475=>748,476=>637,504=>749,505=>641,593=>647,609=>644,699=>325,711=>600,713=>1000,714=>600,715=>600,729=>500,746=>600,747=>600,768=>0,769=>0,772=>0,775=>0,780=>0,913=>641,914=>681,915=>584,916=>710,917=>615,918=>613,919=>757,920=>770,921=>330,922=>686,923=>619,924=>853,925=>749,926=>636,927=>770,928=>747,929=>667,931=>619,932=>625,933=>580,934=>850,935=>627,936=>836,937=>797,945=>663,946=>670,947=>589,948=>616,949=>528,950=>515,951=>631,952=>615,953=>329,954=>604,955=>608,956=>664,957=>577,958=>521,959=>621,960=>705,961=>639,962=>502,963=>642,964=>548,965=>596,966=>819,967=>583,968=>833,969=>833,1025=>615,1040=>641,1041=>675,1042=>681,1043=>584,1044=>750,1045=>615,1046=>965,1047=>637,1048=>761,1049=>761,1050=>693,1051=>737,1052=>853,1053=>757,1054=>770,1055=>747,1056=>667,1057=>656,1058=>625,1059=>617,1060=>856,1061=>627,1062=>751,1063=>704,1064=>1018,1065=>1034,1066=>825,1067=>951,1068=>675,1069=>656,1070=>1064,1071=>689,1072=>591,1073=>632,1074=>593,1075=>483,1076=>646,1077=>581,1078=>839,1079=>534,1080=>656,1081=>656,1082=>605,1083=>638,1084=>740,1085=>655,1086=>626,1087=>645,1088=>644,1089=>527,1090=>548,1091=>574,1092=>869,1093=>562,1094=>663,1095=>612,1096=>895,1097=>917,1098=>698,1099=>819,1100=>577,1101=>527,1102=>868,1103=>608,1105=>581,7742=>853,7743=>964,7840=>641,7841=>591,7842=>641,7843=>591,7844=>641,7845=>591,7846=>641,7847=>591,7848=>641,7849=>591,7850=>641,7851=>591,7852=>641,7853=>591,7854=>641,7855=>591,7856=>641,7857=>591,7858=>641,7859=>591,7860=>641,7861=>591,7862=>641,7863=>591,7864=>615,7865=>581,7866=>615,7867=>581,7868=>615,7869=>581,7870=>615,7871=>581,7872=>615,7873=>581,7874=>615,7875=>581,7876=>615,7877=>581,7878=>615,7879=>581,7880=>330,7881=>304,7882=>330,7883=>304,7884=>770,7885=>626,7886=>770,7887=>626,7888=>770,7889=>626,7890=>770,7891=>626,7892=>770,7893=>626,7894=>770,7895=>626,7896=>770,7897=>626,7898=>770,7899=>626,7900=>770,7901=>626,7902=>770,7903=>626,7904=>770,7905=>626,7906=>770,7907=>626,7908=>748,7909=>637,7910=>748,7911=>637,7912=>767,7913=>637,7914=>767,7915=>637,7916=>767,7917=>637,7918=>767,7919=>637,7920=>767,7921=>637,7922=>580,7923=>574,7924=>580,7925=>574,7926=>580,7927=>574,7928=>580,7929=>574,8194=>500,8195=>1000,8208=>1000,8209=>370,8210=>544,8211=>544,8212=>908,8213=>1000,8214=>1000,8216=>325,8217=>325,8218=>325,8220=>574,8221=>574,8222=>574,8224=>1000,8225=>1000,8226=>378,8229=>1000,8230=>1000,8231=>1000,8240=>1000,8242=>325,8243=>574,8245=>1000,8249=>324,8250=>324,8251=>1000,8252=>677,8258=>1000,8263=>973,8264=>830,8265=>830,8273=>1000,8308=>424,8361=>590,8363=>590,8364=>590,8413=>0,8414=>0,8448=>1000,8451=>1000,8453=>1000,8457=>1000,8458=>1000,8463=>1000,8467=>514,8470=>1074,8481=>1000,8482=>760,8486=>1000,8487=>1000,8491=>1000,8494=>908,8501=>1000,8507=>1000,8544=>1000,8545=>1000,8546=>1000,8547=>1000,8548=>1000,8549=>1000,8550=>1000,8551=>1000,8552=>1000,8553=>1000,8554=>1000,8555=>1000,8560=>1000,8561=>1000,8562=>1000,8563=>1000,8564=>1000,8565=>1000,8566=>1000,8567=>1000,8568=>1000,8569=>1000,8570=>1000,8571=>1000,8592=>1000,8593=>1000,8594=>1000,8595=>1000,8596=>1000,8597=>1000,8598=>1000,8599=>1000,8600=>1000,8601=>1000,8632=>1000,8633=>1000,8644=>1000,8645=>1000,8646=>1000,8651=>1000,8652=>1000,8656=>1000,8658=>1000,8660=>1000,8678=>1000,8679=>1000,8680=>1000,8681=>1000,8693=>1000,8704=>1000,8706=>1000,8707=>1000,8709=>1000,8710=>1000,8711=>1000,8712=>1000,8713=>1000,8714=>1000,8715=>1000,8719=>1000,8721=>1000,8722=>590,8723=>1000,8725=>1000,8730=>1000,8733=>1000,8734=>1000,8735=>1000,8736=>1000,8739=>1000,8741=>1000,8742=>1000,8743=>1000,8744=>1000,8745=>1000,8746=>1000,8747=>1000,8748=>1000,8749=>1000,8750=>1000,8756=>1000,8757=>1000,8758=>1000,8759=>1000,8765=>1000,8771=>1000,8773=>1000,8776=>1000,8780=>1000,8800=>1000,8801=>1000,8802=>1000,8804=>1000,8805=>1000,8806=>1000,8807=>1000,8810=>1000,8811=>1000,8814=>1000,8815=>1000,8818=>1000,8819=>1000,8822=>1000,8823=>1000,8834=>1000,8835=>1000,8836=>1000,8837=>1000,8838=>1000,8839=>1000,8842=>1000,8843=>1000,8853=>1000,8854=>1000,8855=>1000,8856=>1000,8857=>1000,8864=>1000,8869=>1000,8895=>1000,8922=>1000,8923=>1000,8943=>1000,8965=>1000,8966=>1000,8967=>1000,8978=>1000,8984=>1000,9001=>1000,9002=>1000,9136=>1000,9137=>1000,9150=>1000,9151=>1000,9152=>1000,9153=>1000,9154=>1000,9155=>1000,9156=>1000,9157=>1000,9158=>1000,9159=>1000,9160=>1000,9161=>1000,9162=>1000,9163=>1000,9164=>1000,9166=>1000,9178=>1000,9179=>1000,9251=>1000,9312=>1000,9313=>1000,9314=>1000,9315=>1000,9316=>1000,9317=>1000,9318=>1000,9319=>1000,9320=>1000,9321=>1000,9322=>1000,9323=>1000,9324=>1000,9325=>1000,9326=>1000,9327=>1000,9328=>1000,9329=>1000,9330=>1000,9331=>1000,9332=>1000,9333=>1000,9334=>1000,9335=>1000,9336=>1000,9337=>1000,9338=>1000,9339=>1000,9340=>1000,9341=>1000,9342=>1000,9343=>1000,9344=>1000,9345=>1000,9346=>1000,9347=>1000,9348=>1000,9349=>1000,9350=>1000,9351=>1000,9352=>1000,9353=>1000,9354=>1000,9355=>1000,9356=>1000,9357=>1000,9358=>1000,9359=>1000,9360=>1000,9361=>1000,9362=>1000,9363=>1000,9364=>1000,9365=>1000,9366=>1000,9367=>1000,9368=>1000,9369=>1000,9370=>1000,9371=>1000,9372=>1000,9373=>1000,9374=>1000,9375=>1000,9376=>1000,9377=>1000,9378=>1000,9379=>1000,9380=>1000,9381=>1000,9382=>1000,9383=>1000,9384=>1000,9385=>1000,9386=>1000,9387=>1000,9388=>1000,9389=>1000,9390=>1000,9391=>1000,9392=>1000,9393=>1000,9394=>1000,9395=>1000,9396=>1000,9397=>1000,9398=>1000,9399=>1000,9400=>1000,9401=>1000,9402=>1000,9403=>1000,9404=>1000,9405=>1000,9406=>1000,9407=>1000,9408=>1000,9409=>1000,9410=>1000,9411=>1000,9412=>1000,9413=>1000,9414=>1000,9415=>1000,9416=>1000,9417=>1000,9418=>1000,9419=>1000,9420=>1000,9421=>1000,9422=>1000,9423=>1000,9424=>1000,9425=>1000,9426=>1000,9427=>1000,9428=>1000,9429=>1000,9430=>1000,9431=>1000,9432=>1000,9433=>1000,9434=>1000,9435=>1000,9436=>1000,9437=>1000,9438=>1000,9439=>1000,9440=>1000,9441=>1000,9442=>1000,9443=>1000,9444=>1000,9445=>1000,9446=>1000,9447=>1000,9448=>1000,9449=>1000,9450=>1000,9451=>1000,9452=>1000,9453=>1000,9454=>1000,9455=>1000,9456=>1000,9457=>1000,9458=>1000,9459=>1000,9460=>1000,9461=>1000,9462=>1000,9463=>1000,9464=>1000,9465=>1000,9466=>1000,9467=>1000,9468=>1000,9469=>1000,9470=>1000,9471=>1000,9472=>1000,9473=>1000,9474=>1000,9475=>1000,9476=>1000,9477=>1000,9478=>1000,9479=>1000,9480=>1000,9481=>1000,9482=>1000,9483=>1000,9484=>1000,9485=>1000,9486=>1000,9487=>1000,9488=>1000,9489=>1000,9490=>1000,9491=>1000,9492=>1000,9493=>1000,9494=>1000,9495=>1000,9496=>1000,9497=>1000,9498=>1000,9499=>1000,9500=>1000,9501=>1000,9502=>1000,9503=>1000,9504=>1000,9505=>1000,9506=>1000,9507=>1000,9508=>1000,9509=>1000,9510=>1000,9511=>1000,9512=>1000,9513=>1000,9514=>1000,9515=>1000,9516=>1000,9517=>1000,9518=>1000,9519=>1000,9520=>1000,9521=>1000,9522=>1000,9523=>1000,9524=>1000,9525=>1000,9526=>1000,9527=>1000,9528=>1000,9529=>1000,9530=>1000,9531=>1000,9532=>1000,9533=>1000,9534=>1000,9535=>1000,9536=>1000,9537=>1000,9538=>1000,9539=>1000,9540=>1000,9541=>1000,9542=>1000,9543=>1000,9544=>1000,9545=>1000,9546=>1000,9547=>1000,9548=>1000,9549=>1000,9550=>1000,9551=>1000,9552=>1000,9553=>1000,9554=>1000,9555=>1000,9556=>1000,9557=>1000,9558=>1000,9559=>1000,9560=>1000,9561=>1000,9562=>1000,9563=>1000,9564=>1000,9565=>1000,9566=>1000,9567=>1000,9568=>1000,9569=>1000,9570=>1000,9571=>1000,9572=>1000,9573=>1000,9574=>1000,9575=>1000,9576=>1000,9577=>1000,9578=>1000,9579=>1000,9580=>1000,9581=>1000,9582=>1000,9583=>1000,9584=>1000,9585=>1000,9586=>1000,9587=>1000,9588=>1000,9589=>1000,9590=>1000,9591=>1000,9592=>1000,9593=>1000,9594=>1000,9595=>1000,9596=>1000,9597=>1000,9598=>1000,9599=>1000,9600=>1000,9601=>1000,9602=>1000,9603=>1000,9604=>1000,9605=>1000,9606=>1000,9607=>1000,9608=>1000,9609=>1000,9610=>1000,9611=>1000,9612=>1000,9613=>1000,9614=>1000,9615=>1000,9616=>1000,9617=>1000,9618=>1000,9619=>1000,9620=>1000,9621=>1000,9622=>1000,9623=>1000,9624=>1000,9625=>1000,9626=>1000,9627=>1000,9628=>1000,9629=>1000,9630=>1000,9631=>1000,9632=>1000,9633=>1000,9634=>1000,9635=>1000,9636=>1000,9637=>1000,9638=>1000,9639=>1000,9640=>1000,9641=>1000,9642=>1000,9643=>1000,9649=>1000,9650=>1000,9651=>1000,9654=>1000,9655=>1000,9660=>1000,9661=>1000,9664=>1000,9665=>1000,9670=>1000,9671=>1000,9673=>1000,9674=>1000,9675=>1000,9676=>1000,9678=>1000,9679=>1000,9680=>1000,9681=>1000,9682=>1000,9683=>1000,9698=>1000,9699=>1000,9700=>1000,9701=>1000,9702=>1000,9711=>1000,9728=>1000,9729=>1000,9730=>1000,9731=>1000,9733=>1000,9734=>1000,9737=>1000,9742=>1000,9743=>1000,9750=>1000,9751=>1000,9756=>1000,9757=>1000,9758=>1000,9759=>1000,9775=>1000,9792=>1000,9793=>1000,9794=>1000,9824=>1000,9825=>1000,9826=>1000,9827=>1000,9828=>1000,9829=>1000,9830=>1000,9831=>1000,9832=>1000,9833=>1000,9834=>1000,9835=>1000,9836=>1000,9837=>1000,9838=>1000,9839=>1000,9842=>1000,9843=>1000,9844=>1000,9845=>1000,9846=>1000,9847=>1000,9848=>1000,9849=>1000,9850=>1000,9851=>1000,9852=>1000,9853=>1000,9888=>1000,9917=>1000,9918=>1000,9986=>1000,10003=>723,10010=>1000,10045=>1000,10047=>1000,10048=>1000,10070=>1000,10102=>1000,10103=>1000,10104=>1000,10105=>1000,10106=>1000,10107=>1000,10108=>1000,10109=>1000,10110=>1000,10111=>1000,10112=>1000,10113=>1000,10114=>1000,10115=>1000,10116=>1000,10117=>1000,10118=>1000,10119=>1000,10120=>1000,10121=>1000,10122=>1000,10123=>1000,10124=>1000,10125=>1000,10126=>1000,10127=>1000,10128=>1000,10129=>1000,10130=>1000,10131=>1000,10145=>1000,10548=>1000,10549=>1000,10687=>1000,10746=>1000,10747=>1000,11013=>1000,11014=>1000,11015=>1000,11034=>1000,11157=>1000,11834=>1702,11835=>2496,11904=>1000,11905=>1000,11906=>1000,11907=>1000,11908=>1000,11909=>1000,11910=>1000,11911=>1000,11912=>1000,11913=>1000,11914=>1000,11915=>1000,11916=>1000,11917=>1000,11918=>1000,11919=>1000,11920=>1000,11921=>1000,11922=>1000,11923=>1000,11924=>1000,11925=>1000,11926=>1000,11927=>1000,11928=>1000,11929=>1000,11931=>1000,11932=>1000,11933=>1000,11934=>1000,11935=>1000,11936=>1000,11937=>1000,11938=>1000,11939=>1000,11940=>1000,11941=>1000,11942=>1000,11943=>1000,11944=>1000,11945=>1000,11946=>1000,11947=>1000,11948=>1000,11949=>1000,11950=>1000,11951=>1000,11952=>1000,11953=>1000,11954=>1000,11955=>1000,11956=>1000,11957=>1000,11958=>1000,11959=>1000,11960=>1000,11961=>1000,11962=>1000,11963=>1000,11964=>1000,11965=>1000,11966=>1000,11967=>1000,11968=>1000,11969=>1000,11970=>1000,11971=>1000,11972=>1000,11973=>1000,11974=>1000,11975=>1000,11976=>1000,11977=>1000,11978=>1000,11979=>1000,11980=>1000,11981=>1000,11982=>1000,11983=>1000,11984=>1000,11985=>1000,11986=>1000,11987=>1000,11988=>1000,11989=>1000,11990=>1000,11991=>1000,11992=>1000,11993=>1000,11994=>1000,11995=>1000,11996=>1000,11997=>1000,11998=>1000,11999=>1000,12000=>1000,12001=>1000,12002=>1000,12003=>1000,12004=>1000,12005=>1000,12006=>1000,12007=>1000,12008=>1000,12009=>1000,12010=>1000,12011=>1000,12012=>1000,12013=>1000,12014=>1000,12015=>1000,12016=>1000,12017=>1000,12018=>1000,12019=>1000,12032=>1000,12033=>1000,12034=>1000,12035=>1000,12036=>1000,12037=>1000,12038=>1000,12039=>1000,12040=>1000,12041=>1000,12042=>1000,12043=>1000,12044=>1000,12045=>1000,12046=>1000,12047=>1000,12048=>1000,12049=>1000,12050=>1000,12051=>1000,12052=>1000,12053=>1000,12054=>1000,12055=>1000,12056=>1000,12057=>1000,12058=>1000,12059=>1000,12060=>1000,12061=>1000,12062=>1000,12063=>1000,12064=>1000,12065=>1000,12066=>1000,12067=>1000,12068=>1000,12069=>1000,12070=>1000,12071=>1000,12072=>1000,12073=>1000,12074=>1000,12075=>1000,12076=>1000,12077=>1000,12078=>1000,12079=>1000,12080=>1000,12081=>1000,12082=>1000,12083=>1000,12084=>1000,12085=>1000,12086=>1000,12087=>1000,12088=>1000,12089=>1000,12090=>1000,12091=>1000,12092=>1000,12093=>1000,12094=>1000,12095=>1000,12096=>1000,12097=>1000,12098=>1000,12099=>1000,12100=>1000,12101=>1000,12102=>1000,12103=>1000,12104=>1000,12105=>1000,12106=>1000,12107=>1000,12108=>1000,12109=>1000,12110=>1000,12111=>1000,12112=>1000,12113=>1000,12114=>1000,12115=>1000,12116=>1000,12117=>1000,12118=>1000,12119=>1000,12120=>1000,12121=>1000,12122=>1000,12123=>1000,12124=>1000,12125=>1000,12126=>1000,12127=>1000,12128=>1000,12129=>1000,12130=>1000,12131=>1000,12132=>1000,12133=>1000,12134=>1000,12135=>1000,12136=>1000,12137=>1000,12138=>1000,12139=>1000,12140=>1000,12141=>1000,12142=>1000,12143=>1000,12144=>1000,12145=>1000,12146=>1000,12147=>1000,12148=>1000,12149=>1000,12150=>1000,12151=>1000,12152=>1000,12153=>1000,12154=>1000,12155=>1000,12156=>1000,12157=>1000,12158=>1000,12159=>1000,12160=>1000,12161=>1000,12162=>1000,12163=>1000,12164=>1000,12165=>1000,12166=>1000,12167=>1000,12168=>1000,12169=>1000,12170=>1000,12171=>1000,12172=>1000,12173=>1000,12174=>1000,12175=>1000,12176=>1000,12177=>1000,12178=>1000,12179=>1000,12180=>1000,12181=>1000,12182=>1000,12183=>1000,12184=>1000,12185=>1000,12186=>1000,12187=>1000,12188=>1000,12189=>1000,12190=>1000,12191=>1000,12192=>1000,12193=>1000,12194=>1000,12195=>1000,12196=>1000,12197=>1000,12198=>1000,12199=>1000,12200=>1000,12201=>1000,12202=>1000,12203=>1000,12204=>1000,12205=>1000,12206=>1000,12207=>1000,12208=>1000,12209=>1000,12210=>1000,12211=>1000,12212=>1000,12213=>1000,12214=>1000,12215=>1000,12216=>1000,12217=>1000,12218=>1000,12219=>1000,12220=>1000,12221=>1000,12222=>1000,12223=>1000,12224=>1000,12225=>1000,12226=>1000,12227=>1000,12228=>1000,12229=>1000,12230=>1000,12231=>1000,12232=>1000,12233=>1000,12234=>1000,12235=>1000,12236=>1000,12237=>1000,12238=>1000,12239=>1000,12240=>1000,12241=>1000,12242=>1000,12243=>1000,12244=>1000,12245=>1000,12272=>1000,12273=>1000,12274=>1000,12275=>1000,12276=>1000,12277=>1000,12278=>1000,12279=>1000,12280=>1000,12281=>1000,12282=>1000,12283=>1000,12288=>1000,12289=>1000,12290=>1000,12291=>1000,12292=>1000,12293=>1000,12294=>1000,12295=>1000,12296=>1000,12297=>1000,12298=>1000,12299=>1000,12300=>1000,12301=>1000,12302=>1000,12303=>1000,12304=>1000,12305=>1000,12306=>1000,12307=>1000,12308=>1000,12309=>1000,12310=>1000,12311=>1000,12312=>1000,12313=>1000,12314=>1000,12315=>1000,12316=>1000,12317=>1000,12318=>1000,12319=>1000,12320=>1000,12321=>1000,12322=>1000,12323=>1000,12324=>1000,12325=>1000,12326=>1000,12327=>1000,12328=>1000,12329=>1000,12330=>0,12331=>0,12332=>0,12333=>0,12334=>250,12335=>250,12336=>1000,12337=>1000,12338=>1000,12339=>1000,12340=>1000,12341=>1000,12342=>1000,12343=>1000,12344=>1000,12345=>1000,12346=>1000,12347=>1000,12348=>1000,12349=>1000,12350=>1000,12351=>1000,12353=>1000,12354=>1000,12355=>1000,12356=>1000,12357=>1000,12358=>1000,12359=>1000,12360=>1000,12361=>1000,12362=>1000,12363=>1000,12364=>1000,12365=>1000,12366=>1000,12367=>1000,12368=>1000,12369=>1000,12370=>1000,12371=>1000,12372=>1000,12373=>1000,12374=>1000,12375=>1000,12376=>1000,12377=>1000,12378=>1000,12379=>1000,12380=>1000,12381=>1000,12382=>1000,12383=>1000,12384=>1000,12385=>1000,12386=>1000,12387=>1000,12388=>1000,12389=>1000,12390=>1000,12391=>1000,12392=>1000,12393=>1000,12394=>1000,12395=>1000,12396=>1000,12397=>1000,12398=>1000,12399=>1000,12400=>1000,12401=>1000,12402=>1000,12403=>1000,12404=>1000,12405=>1000,12406=>1000,12407=>1000,12408=>1000,12409=>1000,12410=>1000,12411=>1000,12412=>1000,12413=>1000,12414=>1000,12415=>1000,12416=>1000,12417=>1000,12418=>1000,12419=>1000,12420=>1000,12421=>1000,12422=>1000,12423=>1000,12424=>1000,12425=>1000,12426=>1000,12427=>1000,12428=>1000,12429=>1000,12430=>1000,12431=>1000,12432=>1000,12433=>1000,12434=>1000,12435=>1000,12436=>1000,12437=>1000,12438=>1000,12441=>0,12442=>0,12443=>1000,12444=>1000,12445=>1000,12446=>1000,12447=>1000,12448=>1000,12449=>1000,12450=>1000,12451=>1000,12452=>1000,12453=>1000,12454=>1000,12455=>1000,12456=>1000,12457=>1000,12458=>1000,12459=>1000,12460=>1000,12461=>1000,12462=>1000,12463=>1000,12464=>1000,12465=>1000,12466=>1000,12467=>1000,12468=>1000,12469=>1000,12470=>1000,12471=>1000,12472=>1000,12473=>1000,12474=>1000,12475=>1000,12476=>1000,12477=>1000,12478=>1000,12479=>1000,12480=>1000,12481=>1000,12482=>1000,12483=>1000,12484=>1000,12485=>1000,12486=>1000,12487=>1000,12488=>1000,12489=>1000,12490=>1000,12491=>1000,12492=>1000,12493=>1000,12494=>1000,12495=>1000,12496=>1000,12497=>1000,12498=>1000,12499=>1000,12500=>1000,12501=>1000,12502=>1000,12503=>1000,12504=>1000,12505=>1000,12506=>1000,12507=>1000,12508=>1000,12509=>1000,12510=>1000,12511=>1000,12512=>1000,12513=>1000,12514=>1000,12515=>1000,12516=>1000,12517=>1000,12518=>1000,12519=>1000,12520=>1000,12521=>1000,12522=>1000,12523=>1000,12524=>1000,12525=>1000,12526=>1000,12527=>1000,12528=>1000,12529=>1000,12530=>1000,12531=>1000,12532=>1000,12533=>1000,12534=>1000,12535=>1000,12536=>1000,12537=>1000,12538=>1000,12539=>1000,12540=>1000,12541=>1000,12542=>1000,12543=>1000,12549=>1000,12550=>1000,12551=>1000,12552=>1000,12553=>1000,12554=>1000,12555=>1000,12556=>1000,12557=>1000,12558=>1000,12559=>1000,12560=>1000,12561=>1000,12562=>1000,12563=>1000,12564=>1000,12565=>1000,12566=>1000,12567=>1000,12568=>1000,12569=>1000,12570=>1000,12571=>1000,12572=>1000,12573=>1000,12574=>1000,12575=>1000,12576=>1000,12577=>1000,12578=>1000,12579=>1000,12580=>1000,12581=>1000,12582=>1000,12583=>1000,12584=>1000,12585=>1000,12586=>1000,12587=>1000,12588=>1000,12589=>1000,12590=>1000,12591=>1000,12593=>920,12594=>920,12595=>920,12596=>920,12597=>920,12598=>920,12599=>920,12600=>920,12601=>920,12602=>920,12603=>920,12604=>920,12605=>920,12606=>920,12607=>920,12608=>920,12609=>920,12610=>920,12611=>920,12612=>920,12613=>920,12614=>920,12615=>920,12616=>920,12617=>920,12618=>920,12619=>920,12620=>920,12621=>920,12622=>920,12623=>920,12624=>920,12625=>920,12626=>920,12627=>920,12628=>920,12629=>920,12630=>920,12631=>920,12632=>920,12633=>920,12634=>920,12635=>920,12636=>920,12637=>920,12638=>920,12639=>920,12640=>920,12641=>920,12642=>920,12643=>920,12645=>920,12646=>920,12647=>920,12648=>920,12649=>920,12650=>920,12651=>920,12652=>920,12653=>920,12654=>920,12655=>920,12656=>920,12657=>920,12658=>920,12659=>920,12660=>920,12661=>920,12662=>920,12663=>920,12664=>920,12665=>920,12666=>920,12667=>920,12668=>920,12669=>920,12670=>920,12671=>920,12672=>920,12673=>920,12674=>920,12675=>920,12676=>920,12677=>920,12678=>920,12679=>920,12680=>920,12681=>920,12682=>920,12683=>920,12684=>920,12685=>920,12686=>920,12688=>1000,12689=>1000,12690=>1000,12691=>1000,12692=>1000,12693=>1000,12694=>1000,12695=>1000,12696=>1000,12697=>1000,12698=>1000,12699=>1000,12700=>1000,12701=>1000,12702=>1000,12703=>1000,12704=>1000,12705=>1000,12706=>1000,12707=>1000,12708=>1000,12709=>1000,12710=>1000,12711=>1000,12712=>1000,12713=>1000,12714=>1000,12715=>1000,12716=>1000,12717=>1000,12718=>1000,12719=>1000,12720=>1000,12721=>1000,12722=>1000,12723=>1000,12724=>600,12725=>600,12726=>600,12727=>600,12728=>1000,12729=>1000,12730=>1000,12731=>600,12736=>1000,12737=>1000,12738=>1000,12739=>1000,12740=>1000,12741=>1000,12742=>1000,12743=>1000,12744=>1000,12745=>1000,12746=>1000,12747=>1000,12748=>1000,12749=>1000,12750=>1000,12751=>1000,12752=>1000,12753=>1000,12754=>1000,12755=>1000,12756=>1000,12757=>1000,12758=>1000,12759=>1000,12760=>1000,12761=>1000,12762=>1000,12763=>1000,12764=>1000,12765=>1000,12766=>1000,12767=>1000,12768=>1000,12769=>1000,12770=>1000,12771=>1000,12784=>1000,12785=>1000,12786=>1000,12787=>1000,12788=>1000,12789=>1000,12790=>1000,12791=>1000,12792=>1000,12793=>1000,12794=>1000,12795=>1000,12796=>1000,12797=>1000,12798=>1000,12799=>1000,12800=>1000,12801=>1000,12802=>1000,12803=>1000,12804=>1000,12805=>1000,12806=>1000,12807=>1000,12808=>1000,12809=>1000,12810=>1000,12811=>1000,12812=>1000,12813=>1000,12814=>1000,12815=>1000,12816=>1000,12817=>1000,12818=>1000,12819=>1000,12820=>1000,12821=>1000,12822=>1000,12823=>1000,12824=>1000,12825=>1000,12826=>1000,12827=>1000,12828=>1000,12829=>1000,12830=>1000,12832=>1000,12833=>1000,12834=>1000,12835=>1000,12836=>1000,12837=>1000,12838=>1000,12839=>1000,12840=>1000,12841=>1000,12842=>1000,12843=>1000,12844=>1000,12845=>1000,12846=>1000,12847=>1000,12848=>1000,12849=>1000,12850=>1000,12851=>1000,12852=>1000,12853=>1000,12854=>1000,12855=>1000,12856=>1000,12857=>1000,12858=>1000,12859=>1000,12860=>1000,12861=>1000,12862=>1000,12863=>1000,12864=>1000,12865=>1000,12866=>1000,12867=>1000,12868=>1000,12869=>1000,12870=>1000,12871=>1000,12872=>1000,12873=>1000,12874=>1000,12875=>1000,12876=>1000,12877=>1000,12878=>1000,12879=>1000,12880=>1000,12881=>1000,12882=>1000,12883=>1000,12884=>1000,12885=>1000,12886=>1000,12887=>1000,12888=>1000,12889=>1000,12890=>1000,12891=>1000,12892=>1000,12893=>1000,12894=>1000,12895=>1000,12896=>1000,12897=>1000,12898=>1000,12899=>1000,12900=>1000,12901=>1000,12902=>1000,12903=>1000,12904=>1000,12905=>1000,12906=>1000,12907=>1000,12908=>1000,12909=>1000,12910=>1000,12911=>1000,12912=>1000,12913=>1000,12914=>1000,12915=>1000,12916=>1000,12917=>1000,12918=>1000,12919=>1000,12920=>1000,12921=>1000,12922=>1000,12923=>1000,12924=>1000,12925=>1000,12926=>1000,12927=>1000,12928=>1000,12929=>1000,12930=>1000,12931=>1000,12932=>1000,12933=>1000,12934=>1000,12935=>1000,12936=>1000,12937=>1000,12938=>1000,12939=>1000,12940=>1000,12941=>1000,12942=>1000,12943=>1000,12944=>1000,12945=>1000,12946=>1000,12947=>1000,12948=>1000,12949=>1000,12950=>1000,12951=>1000,12952=>1000,12953=>1000,12954=>1000,12955=>1000,12956=>1000,12957=>1000,12958=>1000,12959=>1000,12960=>1000,12961=>1000,12962=>1000,12963=>1000,12964=>1000,12965=>1000,12966=>1000,12967=>1000,12968=>1000,12969=>1000,12970=>1000,12971=>1000,12972=>1000,12973=>1000,12974=>1000,12975=>1000,12976=>1000,12977=>1000,12978=>1000,12979=>1000,12980=>1000,12981=>1000,12982=>1000,12983=>1000,12984=>1000,12985=>1000,12986=>1000,12987=>1000,12988=>1000,12989=>1000,12990=>1000,12991=>1000,12992=>1000,12993=>1000,12994=>1000,12995=>1000,12996=>1000,12997=>1000,12998=>1000,12999=>1000,13000=>1000,13001=>1000,13002=>1000,13003=>1000,13004=>1000,13005=>1000,13006=>1000,13007=>1000,13008=>1000,13009=>1000,13010=>1000,13011=>1000,13012=>1000,13013=>1000,13014=>1000,13015=>1000,13016=>1000,13017=>1000,13018=>1000,13019=>1000,13020=>1000,13021=>1000,13022=>1000,13023=>1000,13024=>1000,13025=>1000,13026=>1000,13027=>1000,13028=>1000,13029=>1000,13030=>1000,13031=>1000,13032=>1000,13033=>1000,13034=>1000,13035=>1000,13036=>1000,13037=>1000,13038=>1000,13039=>1000,13040=>1000,13041=>1000,13042=>1000,13043=>1000,13044=>1000,13045=>1000,13046=>1000,13047=>1000,13048=>1000,13049=>1000,13050=>1000,13051=>1000,13052=>1000,13053=>1000,13054=>1000,13055=>1000,13056=>1000,13057=>1000,13058=>1000,13059=>1000,13060=>1000,13061=>1000,13062=>1000,13063=>1000,13064=>1000,13065=>1000,13066=>1000,13067=>1000,13068=>1000,13069=>1000,13070=>1000,13071=>1000,13072=>1000,13073=>1000,13074=>1000,13075=>1000,13076=>1000,13077=>1000,13078=>1000,13079=>1000,13080=>1000,13081=>1000,13082=>1000,13083=>1000,13084=>1000,13085=>1000,13086=>1000,13087=>1000,13088=>1000,13089=>1000,13090=>1000,13091=>1000,13092=>1000,13093=>1000,13094=>1000,13095=>1000,13096=>1000,13097=>1000,13098=>1000,13099=>1000,13101=>1000,13102=>1000,13103=>1000,13104=>1000,13105=>1000,13106=>1000,13107=>1000,13108=>1000,13109=>1000,13110=>1000,13111=>1000,13112=>1000,13113=>1000,13114=>1000,13115=>1000,13116=>1000,13117=>1000,13118=>1000,13119=>1000,13120=>1000,13121=>1000,13122=>1000,13123=>1000,13124=>1000,13125=>1000,13126=>1000,13127=>1000,13128=>1000,13129=>1000,13130=>1000,13131=>1000,13132=>1000,13133=>1000,13134=>1000,13135=>1000,13136=>1000,13137=>1000,13138=>1000,13139=>1000,13140=>1000,13141=>1000,13142=>1000,13143=>1000,13144=>1000,13145=>1000,13146=>1000,13147=>1000,13148=>1000,13149=>1000,13150=>1000,13151=>1000,13152=>1000,13153=>1000,13154=>1000,13155=>1000,13156=>1000,13157=>1000,13158=>1000,13159=>1000,13160=>1000,13161=>1000,13162=>1000,13163=>1000,13164=>1000,13165=>1000,13166=>1000,13167=>1000,13168=>1000,13169=>1000,13170=>1000,13171=>1000,13172=>1000,13173=>1000,13174=>1000,13175=>1000,13176=>1000,13177=>1000,13178=>1000,13179=>1000,13180=>1000,13181=>1000,13182=>1000,13183=>1000,13184=>1000,13185=>1000,13186=>1000,13187=>1000,13188=>1000,13189=>1000,13190=>1000,13191=>1000,13192=>1000,13193=>1000,13194=>1000,13195=>1000,13196=>1000,13197=>1000,13198=>1000,13199=>1000,13200=>1000,13201=>1000,13202=>1000,13203=>1000,13204=>1000,13205=>1000,13206=>1000,13207=>1000,13208=>1000,13209=>1000,13210=>1000,13211=>1000,13212=>1000,13213=>1000,13214=>1000,13215=>1000,13216=>1000,13217=>1000,13218=>1000,13219=>1000,13220=>1000,13221=>1000,13222=>1000,13223=>1000,13224=>1000,13225=>1000,13226=>1000,13227=>1000,13228=>1000,13229=>1000,13230=>1000,13231=>1000,13232=>1000,13233=>1000,13234=>1000,13235=>1000,13236=>1000,13237=>1000,13238=>1000,13239=>1000,13240=>1000,13241=>1000,13242=>1000,13243=>1000,13244=>1000,13245=>1000,13246=>1000,13247=>1000,13248=>1000,13249=>1000,13250=>1000,13251=>1000,13252=>1000,13253=>1000,13254=>1000,13255=>1000,13256=>1000,13257=>1000,13258=>1000,13259=>1000,13260=>1000,13261=>1000,13262=>1000,13263=>1000,13264=>1000,13265=>1000,13266=>1000,13267=>1000,13268=>1000,13269=>1000,13270=>1000,13271=>1000,13272=>1000,13273=>1000,13274=>1000,13275=>1000,13276=>1000,13277=>1000,13278=>1000,13279=>1000,13280=>1000,13281=>1000,13282=>1000,13283=>1000,13284=>1000,13285=>1000,13286=>1000,13287=>1000,13288=>1000,13289=>1000,13290=>1000,13291=>1000,13292=>1000,13293=>1000,13294=>1000,13295=>1000,13296=>1000,13297=>1000,13298=>1000,13299=>1000,13300=>1000,13301=>1000,13302=>1000,13303=>1000,13304=>1000,13305=>1000,13306=>1000,13307=>1000,13308=>1000,13309=>1000,13310=>1000,13311=>1000,13314=>1000,13317=>1000,13318=>1000,13351=>1000,13356=>1000,13358=>1000,13416=>1000,13418=>1000,13448=>1000,13458=>1000,13493=>1000,13500=>1000,13505=>1000,13511=>1000,13531=>1000,13599=>1000,13630=>1000,13661=>1000,13662=>1000,13667=>1000,13678=>1000,13734=>1000,13736=>1000,13765=>1000,13786=>1000,13790=>1000,13812=>1000,13829=>1000,13844=>1000,13898=>1000,13969=>1000,13974=>1000,13977=>1000,14031=>1000,14177=>1000,14178=>1000,14187=>1000,14188=>1000,14197=>1000,14221=>1000,14273=>1000,14306=>1000,14312=>1000,14324=>1000,14333=>1000,14336=>1000,14383=>1000,14390=>1000,14400=>1000,14428=>1000,14433=>1000,14497=>1000,14509=>1000,14586=>1000,14615=>1000,14618=>1000,14703=>1000,14756=>1000,14776=>1000,14940=>1000,14958=>1000,14963=>1000,14981=>1000,15044=>1000,15051=>1000,15062=>1000,15063=>1000,15082=>1000,15091=>1000,15118=>1000,15130=>1000,15132=>1000,15138=>1000,15157=>1000,15213=>1000,15223=>1000,15239=>1000,15240=>1000,15245=>1000,15268=>1000,15286=>1000,15299=>1000,15309=>1000,15344=>1000,15347=>1000,15375=>1000,15398=>1000,15555=>1000,15570=>1000,15633=>1000,15646=>1000,15665=>1000,15694=>1000,15716=>1000,15770=>1000,15808=>1000,15820=>1000,15828=>1000,15877=>1000,15935=>1000,15936=>1000,15968=>1000,15974=>1000,15976=>1000,16003=>1000,16010=>1000,16020=>1000,16090=>1000,16215=>1000,16242=>1000,16245=>1000,16247=>1000,16302=>1000,16305=>1000,16329=>1000,16343=>1000,16348=>1000,16441=>1000,16472=>1000,16531=>1000,16643=>1000,16645=>1000,16712=>1000,16719=>1000,16739=>1000,16820=>1000,16831=>1000,16870=>1000,16878=>1000,16883=>1000,16903=>1000,16910=>1000,16996=>1000,17043=>1000,17094=>1000,17110=>1000,17117=>1000,17154=>1000,17195=>1000,17219=>1000,17390=>1000,17392=>1000,17416=>1000,17420=>1000,17431=>1000,17436=>1000,17442=>1000,17491=>1000,17499=>1000,17526=>1000,17530=>1000,17553=>1000,17587=>1000,17598=>1000,17620=>1000,17672=>1000,17677=>1000,17701=>1000,17731=>1000,17786=>1000,17821=>1000,17848=>1000,17854=>1000,17893=>1000,17898=>1000,17935=>1000,17936=>1000,17985=>1000,18021=>1000,18081=>1000,18094=>1000,18095=>1000,18188=>1000,18207=>1000,18276=>1000,18406=>1000,18429=>1000,18454=>1000,18462=>1000,18500=>1000,18510=>1000,18613=>1000,18864=>1000,18919=>1000,18938=>1000,18948=>1000,18985=>1000,19132=>1000,19256=>1000,19259=>1000,19326=>1000,19394=>1000,19402=>1000,19410=>1000,19432=>1000,19479=>1000,19488=>1000,19512=>1000,19652=>1000,19665=>1000,19681=>1000,19719=>1000,19831=>1000,19968=>1000,19969=>1000,19970=>1000,19971=>1000,19972=>1000,19973=>1000,19975=>1000,19976=>1000,19977=>1000,19978=>1000,19979=>1000,19980=>1000,19981=>1000,19982=>1000,19983=>1000,19984=>1000,19985=>1000,19986=>1000,19988=>1000,19989=>1000,19990=>1000,19991=>1000,19992=>1000,19993=>1000,19998=>1000,19999=>1000,20001=>1000,20003=>1000,20004=>1000,20006=>1000,20008=>1000,20009=>1000,20010=>1000,20011=>1000,20012=>1000,20013=>1000,20014=>1000,20015=>1000,20016=>1000,20017=>1000,20018=>1000,20021=>1000,20022=>1000,20023=>1000,20024=>1000,20025=>1000,20027=>1000,20028=>1000,20031=>1000,20032=>1000,20033=>1000,20034=>1000,20035=>1000,20036=>1000,20037=>1000,20039=>1000,20040=>1000,20043=>1000,20045=>1000,20046=>1000,20047=>1000,20049=>1000,20053=>1000,20054=>1000,20055=>1000,20056=>1000,20057=>1000,20058=>1000,20059=>1000,20060=>1000,20061=>1000,20062=>1000,20063=>1000,20066=>1000,20067=>1000,20072=>1000,20073=>1000,20081=>1000,20083=>1000,20084=>1000,20085=>1000,20089=>1000,20094=>1000,20095=>1000,20096=>1000,20098=>1000,20101=>1000,20102=>1000,20104=>1000,20105=>1000,20106=>1000,20107=>1000,20108=>1000,20109=>1000,20110=>1000,20113=>1000,20114=>1000,20116=>1000,20117=>1000,20118=>1000,20119=>1000,20120=>1000,20121=>1000,20123=>1000,20124=>1000,20125=>1000,20126=>1000,20127=>1000,20128=>1000,20129=>1000,20130=>1000,20132=>1000,20133=>1000,20134=>1000,20136=>1000,20139=>1000,20140=>1000,20141=>1000,20142=>1000,20143=>1000,20144=>1000,20147=>1000,20150=>1000,20153=>1000,20154=>1000,20155=>1000,20156=>1000,20160=>1000,20161=>1000,20162=>1000,20163=>1000,20164=>1000,20166=>1000,20167=>1000,20168=>1000,20170=>1000,20171=>1000,20173=>1000,20174=>1000,20175=>1000,20176=>1000,20180=>1000,20181=>1000,20182=>1000,20183=>1000,20184=>1000,20185=>1000,20186=>1000,20187=>1000,20189=>1000,20190=>1000,20191=>1000,20192=>1000,20193=>1000,20194=>1000,20195=>1000,20196=>1000,20197=>1000,20200=>1000,20203=>1000,20205=>1000,20206=>1000,20207=>1000,20208=>1000,20209=>1000,20210=>1000,20211=>1000,20213=>1000,20214=>1000,20215=>1000,20219=>1000,20220=>1000,20221=>1000,20222=>1000,20223=>1000,20224=>1000,20225=>1000,20226=>1000,20227=>1000,20232=>1000,20233=>1000,20234=>1000,20235=>1000,20236=>1000,20237=>1000,20238=>1000,20239=>1000,20240=>1000,20241=>1000,20242=>1000,20245=>1000,20246=>1000,20247=>1000,20249=>1000,20250=>1000,20252=>1000,20253=>1000,20267=>1000,20270=>1000,20271=>1000,20272=>1000,20273=>1000,20275=>1000,20276=>1000,20277=>1000,20278=>1000,20279=>1000,20280=>1000,20281=>1000,20282=>1000,20283=>1000,20284=>1000,20285=>1000,20286=>1000,20288=>1000,20290=>1000,20291=>1000,20294=>1000,20295=>1000,20296=>1000,20297=>1000,20299=>1000,20300=>1000,20301=>1000,20302=>1000,20303=>1000,20304=>1000,20305=>1000,20306=>1000,20307=>1000,20308=>1000,20309=>1000,20310=>1000,20311=>1000,20312=>1000,20313=>1000,20314=>1000,20315=>1000,20316=>1000,20317=>1000,20318=>1000,20319=>1000,20320=>1000,20323=>1000,20324=>1000,20329=>1000,20330=>1000,20332=>1000,20334=>1000,20335=>1000,20336=>1000,20337=>1000,20339=>1000,20341=>1000,20342=>1000,20343=>1000,20344=>1000,20345=>1000,20346=>1000,20347=>1000,20348=>1000,20349=>1000,20350=>1000,20351=>1000,20353=>1000,20354=>1000,20355=>1000,20356=>1000,20357=>1000,20358=>1000,20360=>1000,20361=>1000,20362=>1000,20363=>1000,20364=>1000,20365=>1000,20366=>1000,20367=>1000,20368=>1000,20369=>1000,20370=>1000,20371=>1000,20372=>1000,20374=>1000,20375=>1000,20376=>1000,20377=>1000,20378=>1000,20379=>1000,20381=>1000,20382=>1000,20383=>1000,20384=>1000,20385=>1000,20395=>1000,20397=>1000,20398=>1000,20399=>1000,20402=>1000,20405=>1000,20406=>1000,20407=>1000,20409=>1000,20411=>1000,20412=>1000,20413=>1000,20414=>1000,20415=>1000,20416=>1000,20417=>1000,20418=>1000,20419=>1000,20420=>1000,20421=>1000,20422=>1000,20424=>1000,20425=>1000,20426=>1000,20427=>1000,20428=>1000,20429=>1000,20430=>1000,20431=>1000,20432=>1000,20433=>1000,20434=>1000,20435=>1000,20436=>1000,20439=>1000,20440=>1000,20442=>1000,20443=>1000,20444=>1000,20445=>1000,20447=>1000,20448=>1000,20449=>1000,20450=>1000,20451=>1000,20452=>1000,20453=>1000,20454=>1000,20462=>1000,20463=>1000,20464=>1000,20465=>1000,20466=>1000,20467=>1000,20469=>1000,20470=>1000,20472=>1000,20474=>1000,20476=>1000,20477=>1000,20478=>1000,20479=>1000,20480=>1000,20481=>1000,20482=>1000,20484=>1000,20485=>1000,20486=>1000,20487=>1000,20489=>1000,20490=>1000,20491=>1000,20492=>1000,20493=>1000,20494=>1000,20495=>1000,20496=>1000,20497=>1000,20498=>1000,20499=>1000,20500=>1000,20502=>1000,20503=>1000,20504=>1000,20505=>1000,20506=>1000,20507=>1000,20508=>1000,20509=>1000,20510=>1000,20511=>1000,20513=>1000,20514=>1000,20515=>1000,20516=>1000,20517=>1000,20518=>1000,20519=>1000,20520=>1000,20521=>1000,20522=>1000,20523=>1000,20524=>1000,20525=>1000,20526=>1000,20528=>1000,20530=>1000,20531=>1000,20533=>1000,20534=>1000,20537=>1000,20539=>1000,20544=>1000,20545=>1000,20546=>1000,20547=>1000,20549=>1000,20550=>1000,20551=>1000,20552=>1000,20553=>1000,20554=>1000,20556=>1000,20558=>1000,20559=>1000,20560=>1000,20561=>1000,20562=>1000,20563=>1000,20565=>1000,20566=>1000,20567=>1000,20569=>1000,20570=>1000,20572=>1000,20575=>1000,20576=>1000,20578=>1000,20579=>1000,20581=>1000,20582=>1000,20583=>1000,20586=>1000,20588=>1000,20589=>1000,20592=>1000,20593=>1000,20594=>1000,20596=>1000,20597=>1000,20598=>1000,20599=>1000,20600=>1000,20605=>1000,20608=>1000,20609=>1000,20611=>1000,20612=>1000,20613=>1000,20614=>1000,20616=>1000,20618=>1000,20621=>1000,20622=>1000,20623=>1000,20624=>1000,20625=>1000,20626=>1000,20627=>1000,20628=>1000,20629=>1000,20630=>1000,20632=>1000,20633=>1000,20634=>1000,20635=>1000,20636=>1000,20638=>1000,20639=>1000,20640=>1000,20641=>1000,20642=>1000,20643=>1000,20650=>1000,20652=>1000,20653=>1000,20655=>1000,20656=>1000,20657=>1000,20658=>1000,20659=>1000,20660=>1000,20661=>1000,20663=>1000,20665=>1000,20666=>1000,20667=>1000,20669=>1000,20670=>1000,20672=>1000,20674=>1000,20675=>1000,20676=>1000,20677=>1000,20679=>1000,20681=>1000,20682=>1000,20684=>1000,20685=>1000,20686=>1000,20687=>1000,20688=>1000,20689=>1000,20691=>1000,20692=>1000,20693=>1000,20694=>1000,20696=>1000,20697=>1000,20698=>1000,20700=>1000,20701=>1000,20702=>1000,20703=>1000,20705=>1000,20706=>1000,20707=>1000,20708=>1000,20709=>1000,20710=>1000,20711=>1000,20712=>1000,20713=>1000,20717=>1000,20718=>1000,20719=>1000,20720=>1000,20721=>1000,20722=>1000,20723=>1000,20724=>1000,20725=>1000,20726=>1000,20729=>1000,20730=>1000,20731=>1000,20734=>1000,20736=>1000,20737=>1000,20738=>1000,20739=>1000,20740=>1000,20742=>1000,20743=>1000,20744=>1000,20745=>1000,20747=>1000,20748=>1000,20749=>1000,20750=>1000,20752=>1000,20754=>1000,20756=>1000,20757=>1000,20758=>1000,20759=>1000,20760=>1000,20761=>1000,20762=>1000,20763=>1000,20764=>1000,20765=>1000,20766=>1000,20767=>1000,20769=>1000,20771=>1000,20775=>1000,20776=>1000,20778=>1000,20780=>1000,20781=>1000,20783=>1000,20785=>1000,20786=>1000,20787=>1000,20788=>1000,20789=>1000,20791=>1000,20792=>1000,20793=>1000,20794=>1000,20795=>1000,20796=>1000,20799=>1000,20800=>1000,20801=>1000,20802=>1000,20803=>1000,20804=>1000,20805=>1000,20806=>1000,20807=>1000,20808=>1000,20809=>1000,20810=>1000,20811=>1000,20812=>1000,20813=>1000,20814=>1000,20815=>1000,20816=>1000,20818=>1000,20819=>1000,20820=>1000,20821=>1000,20823=>1000,20824=>1000,20826=>1000,20828=>1000,20831=>1000,20832=>1000,20834=>1000,20836=>1000,20837=>1000,20838=>1000,20839=>1000,20840=>1000,20841=>1000,20842=>1000,20843=>1000,20844=>1000,20845=>1000,20846=>1000,20849=>1000,20851=>1000,20852=>1000,20853=>1000,20854=>1000,20855=>1000,20856=>1000,20857=>1000,20859=>1000,20860=>1000,20862=>1000,20864=>1000,20866=>1000,20867=>1000,20868=>1000,20869=>1000,20870=>1000,20873=>1000,20874=>1000,20875=>1000,20876=>1000,20877=>1000,20878=>1000,20879=>1000,20880=>1000,20881=>1000,20882=>1000,20883=>1000,20885=>1000,20886=>1000,20887=>1000,20888=>1000,20889=>1000,20893=>1000,20896=>1000,20897=>1000,20898=>1000,20899=>1000,20900=>1000,20901=>1000,20902=>1000,20904=>1000,20905=>1000,20906=>1000,20907=>1000,20908=>1000,20909=>1000,20912=>1000,20913=>1000,20914=>1000,20915=>1000,20916=>1000,20917=>1000,20918=>1000,20919=>1000,20920=>1000,20922=>1000,20924=>1000,20925=>1000,20926=>1000,20927=>1000,20930=>1000,20931=>1000,20932=>1000,20933=>1000,20934=>1000,20936=>1000,20937=>1000,20938=>1000,20939=>1000,20940=>1000,20941=>1000,20943=>1000,20945=>1000,20946=>1000,20947=>1000,20948=>1000,20949=>1000,20950=>1000,20952=>1000,20955=>1000,20956=>1000,20957=>1000,20958=>1000,20959=>1000,20960=>1000,20961=>1000,20962=>1000,20965=>1000,20966=>1000,20967=>1000,20969=>1000,20970=>1000,20972=>1000,20973=>1000,20974=>1000,20976=>1000,20977=>1000,20978=>1000,20979=>1000,20980=>1000,20981=>1000,20982=>1000,20983=>1000,20984=>1000,20985=>1000,20986=>1000,20989=>1000,20990=>1000,20992=>1000,20993=>1000,20994=>1000,20995=>1000,20996=>1000,20997=>1000,20998=>1000,20999=>1000,21000=>1000,21002=>1000,21003=>1000,21006=>1000,21009=>1000,21010=>1000,21011=>1000,21012=>1000,21013=>1000,21014=>1000,21015=>1000,21016=>1000,21021=>1000,21026=>1000,21028=>1000,21029=>1000,21030=>1000,21031=>1000,21032=>1000,21033=>1000,21034=>1000,21035=>1000,21038=>1000,21040=>1000,21041=>1000,21042=>1000,21043=>1000,21045=>1000,21046=>1000,21047=>1000,21048=>1000,21049=>1000,21050=>1000,21051=>1000,21052=>1000,21059=>1000,21060=>1000,21061=>1000,21063=>1000,21065=>1000,21066=>1000,21067=>1000,21068=>1000,21069=>1000,21071=>1000,21076=>1000,21077=>1000,21078=>1000,21079=>1000,21080=>1000,21082=>1000,21083=>1000,21084=>1000,21085=>1000,21086=>1000,21087=>1000,21088=>1000,21089=>1000,21091=>1000,21092=>1000,21093=>1000,21094=>1000,21097=>1000,21098=>1000,21100=>1000,21102=>1000,21103=>1000,21104=>1000,21105=>1000,21106=>1000,21107=>1000,21108=>1000,21109=>1000,21111=>1000,21112=>1000,21113=>1000,21117=>1000,21119=>1000,21120=>1000,21122=>1000,21123=>1000,21124=>1000,21125=>1000,21127=>1000,21128=>1000,21129=>1000,21130=>1000,21132=>1000,21133=>1000,21137=>1000,21138=>1000,21139=>1000,21140=>1000,21141=>1000,21142=>1000,21143=>1000,21144=>1000,21146=>1000,21147=>1000,21148=>1000,21151=>1000,21152=>1000,21155=>1000,21156=>1000,21157=>1000,21158=>1000,21159=>1000,21161=>1000,21162=>1000,21163=>1000,21164=>1000,21165=>1000,21167=>1000,21168=>1000,21169=>1000,21172=>1000,21173=>1000,21174=>1000,21175=>1000,21176=>1000,21177=>1000,21178=>1000,21179=>1000,21180=>1000,21181=>1000,21182=>1000,21184=>1000,21185=>1000,21187=>1000,21188=>1000,21189=>1000,21190=>1000,21191=>1000,21192=>1000,21193=>1000,21194=>1000,21196=>1000,21197=>1000,21199=>1000,21200=>1000,21201=>1000,21202=>1000,21204=>1000,21205=>1000,21206=>1000,21207=>1000,21208=>1000,21209=>1000,21211=>1000,21212=>1000,21213=>1000,21214=>1000,21215=>1000,21216=>1000,21217=>1000,21218=>1000,21219=>1000,21220=>1000,21221=>1000,21222=>1000,21223=>1000,21224=>1000,21225=>1000,21226=>1000,21228=>1000,21232=>1000,21233=>1000,21234=>1000,21235=>1000,21236=>1000,21237=>1000,21238=>1000,21239=>1000,21240=>1000,21241=>1000,21242=>1000,21243=>1000,21246=>1000,21247=>1000,21248=>1000,21249=>1000,21250=>1000,21251=>1000,21253=>1000,21254=>1000,21255=>1000,21256=>1000,21258=>1000,21259=>1000,21260=>1000,21261=>1000,21263=>1000,21264=>1000,21265=>1000,21267=>1000,21269=>1000,21270=>1000,21271=>1000,21272=>1000,21273=>1000,21274=>1000,21275=>1000,21276=>1000,21277=>1000,21278=>1000,21279=>1000,21280=>1000,21281=>1000,21283=>1000,21284=>1000,21285=>1000,21287=>1000,21288=>1000,21289=>1000,21290=>1000,21291=>1000,21292=>1000,21293=>1000,21295=>1000,21296=>1000,21297=>1000,21298=>1000,21299=>1000,21301=>1000,21304=>1000,21305=>1000,21306=>1000,21307=>1000,21308=>1000,21309=>1000,21310=>1000,21311=>1000,21312=>1000,21313=>1000,21314=>1000,21315=>1000,21317=>1000,21318=>1000,21319=>1000,21320=>1000,21321=>1000,21322=>1000,21323=>1000,21324=>1000,21325=>1000,21329=>1000,21330=>1000,21331=>1000,21332=>1000,21335=>1000,21336=>1000,21337=>1000,21338=>1000,21339=>1000,21340=>1000,21342=>1000,21344=>1000,21345=>1000,21347=>1000,21348=>1000,21349=>1000,21350=>1000,21351=>1000,21353=>1000,21356=>1000,21357=>1000,21358=>1000,21359=>1000,21360=>1000,21361=>1000,21362=>1000,21363=>1000,21364=>1000,21365=>1000,21367=>1000,21368=>1000,21369=>1000,21370=>1000,21371=>1000,21373=>1000,21374=>1000,21375=>1000,21378=>1000,21379=>1000,21380=>1000,21383=>1000,21384=>1000,21385=>1000,21390=>1000,21395=>1000,21396=>1000,21398=>1000,21400=>1000,21401=>1000,21402=>1000,21405=>1000,21407=>1000,21408=>1000,21409=>1000,21412=>1000,21413=>1000,21414=>1000,21416=>1000,21417=>1000,21418=>1000,21419=>1000,21421=>1000,21422=>1000,21423=>1000,21424=>1000,21426=>1000,21427=>1000,21428=>1000,21429=>1000,21430=>1000,21431=>1000,21432=>1000,21434=>1000,21435=>1000,21437=>1000,21440=>1000,21441=>1000,21442=>1000,21443=>1000,21444=>1000,21445=>1000,21448=>1000,21449=>1000,21450=>1000,21451=>1000,21452=>1000,21453=>1000,21454=>1000,21455=>1000,21458=>1000,21459=>1000,21460=>1000,21461=>1000,21462=>1000,21463=>1000,21465=>1000,21466=>1000,21467=>1000,21469=>1000,21470=>1000,21471=>1000,21472=>1000,21473=>1000,21474=>1000,21475=>1000,21476=>1000,21477=>1000,21478=>1000,21479=>1000,21480=>1000,21481=>1000,21482=>1000,21483=>1000,21484=>1000,21485=>1000,21486=>1000,21487=>1000,21488=>1000,21489=>1000,21490=>1000,21491=>1000,21492=>1000,21493=>1000,21494=>1000,21495=>1000,21496=>1000,21498=>1000,21505=>1000,21506=>1000,21507=>1000,21508=>1000,21512=>1000,21513=>1000,21514=>1000,21515=>1000,21516=>1000,21517=>1000,21518=>1000,21519=>1000,21520=>1000,21521=>1000,21522=>1000,21523=>1000,21530=>1000,21531=>1000,21533=>1000,21534=>1000,21535=>1000,21536=>1000,21537=>1000,21540=>1000,21542=>1000,21543=>1000,21544=>1000,21545=>1000,21546=>1000,21547=>1000,21548=>1000,21549=>1000,21550=>1000,21551=>1000,21553=>1000,21555=>1000,21556=>1000,21557=>1000,21558=>1000,21560=>1000,21561=>1000,21563=>1000,21564=>1000,21565=>1000,21566=>1000,21567=>1000,21568=>1000,21570=>1000,21571=>1000,21572=>1000,21574=>1000,21575=>1000,21576=>1000,21577=>1000,21578=>1000,21580=>1000,21581=>1000,21582=>1000,21583=>1000,21585=>1000,21589=>1000,21598=>1000,21599=>1000,21602=>1000,21604=>1000,21606=>1000,21607=>1000,21608=>1000,21609=>1000,21610=>1000,21611=>1000,21612=>1000,21613=>1000,21614=>1000,21616=>1000,21617=>1000,21619=>1000,21620=>1000,21621=>1000,21622=>1000,21623=>1000,21627=>1000,21628=>1000,21629=>1000,21631=>1000,21632=>1000,21633=>1000,21635=>1000,21636=>1000,21637=>1000,21638=>1000,21640=>1000,21641=>1000,21642=>1000,21643=>1000,21644=>1000,21645=>1000,21646=>1000,21647=>1000,21648=>1000,21649=>1000,21650=>1000,21653=>1000,21654=>1000,21660=>1000,21663=>1000,21664=>1000,21665=>1000,21666=>1000,21668=>1000,21669=>1000,21670=>1000,21671=>1000,21672=>1000,21673=>1000,21674=>1000,21675=>1000,21676=>1000,21677=>1000,21678=>1000,21679=>1000,21681=>1000,21682=>1000,21683=>1000,21687=>1000,21688=>1000,21689=>1000,21690=>1000,21691=>1000,21692=>1000,21693=>1000,21694=>1000,21695=>1000,21696=>1000,21697=>1000,21698=>1000,21699=>1000,21700=>1000,21702=>1000,21703=>1000,21704=>1000,21705=>1000,21706=>1000,21709=>1000,21710=>1000,21720=>1000,21728=>1000,21729=>1000,21730=>1000,21733=>1000,21734=>1000,21736=>1000,21737=>1000,21738=>1000,21740=>1000,21741=>1000,21742=>1000,21743=>1000,21745=>1000,21746=>1000,21747=>1000,21750=>1000,21754=>1000,21756=>1000,21757=>1000,21758=>1000,21759=>1000,21760=>1000,21761=>1000,21764=>1000,21765=>1000,21766=>1000,21767=>1000,21768=>1000,21769=>1000,21772=>1000,21773=>1000,21774=>1000,21775=>1000,21776=>1000,21780=>1000,21781=>1000,21782=>1000,21799=>1000,21802=>1000,21803=>1000,21806=>1000,21807=>1000,21809=>1000,21810=>1000,21811=>1000,21813=>1000,21814=>1000,21816=>1000,21817=>1000,21819=>1000,21820=>1000,21821=>1000,21822=>1000,21824=>1000,21825=>1000,21828=>1000,21829=>1000,21830=>1000,21831=>1000,21833=>1000,21834=>1000,21836=>1000,21837=>1000,21839=>1000,21840=>1000,21841=>1000,21843=>1000,21846=>1000,21847=>1000,21848=>1000,21850=>1000,21851=>1000,21852=>1000,21853=>1000,21854=>1000,21856=>1000,21857=>1000,21859=>1000,21860=>1000,21862=>1000,21883=>1000,21884=>1000,21885=>1000,21886=>1000,21887=>1000,21888=>1000,21889=>1000,21890=>1000,21891=>1000,21892=>1000,21894=>1000,21895=>1000,21896=>1000,21897=>1000,21898=>1000,21899=>1000,21902=>1000,21903=>1000,21905=>1000,21906=>1000,21907=>1000,21908=>1000,21911=>1000,21912=>1000,21913=>1000,21914=>1000,21916=>1000,21917=>1000,21918=>1000,21919=>1000,21923=>1000,21924=>1000,21927=>1000,21928=>1000,21929=>1000,21930=>1000,21931=>1000,21932=>1000,21933=>1000,21934=>1000,21936=>1000,21938=>1000,21942=>1000,21951=>1000,21953=>1000,21955=>1000,21956=>1000,21957=>1000,21958=>1000,21959=>1000,21961=>1000,21963=>1000,21964=>1000,21966=>1000,21969=>1000,21970=>1000,21971=>1000,21972=>1000,21975=>1000,21976=>1000,21978=>1000,21979=>1000,21980=>1000,21981=>1000,21982=>1000,21983=>1000,21986=>1000,21987=>1000,21988=>1000,21993=>1000,21996=>1000,21998=>1000,22001=>1000,22006=>1000,22007=>1000,22008=>1000,22009=>1000,22013=>1000,22014=>1000,22015=>1000,22021=>1000,22022=>1000,22023=>1000,22024=>1000,22025=>1000,22026=>1000,22029=>1000,22030=>1000,22031=>1000,22032=>1000,22033=>1000,22034=>1000,22036=>1000,22038=>1000,22039=>1000,22040=>1000,22041=>1000,22043=>1000,22048=>1000,22056=>1000,22057=>1000,22060=>1000,22063=>1000,22064=>1000,22065=>1000,22066=>1000,22067=>1000,22068=>1000,22069=>1000,22070=>1000,22071=>1000,22072=>1000,22073=>1000,22075=>1000,22076=>1000,22077=>1000,22079=>1000,22080=>1000,22081=>1000,22082=>1000,22083=>1000,22084=>1000,22086=>1000,22087=>1000,22089=>1000,22091=>1000,22092=>1000,22093=>1000,22094=>1000,22095=>1000,22096=>1000,22099=>1000,22100=>1000,22107=>1000,22110=>1000,22112=>1000,22113=>1000,22114=>1000,22115=>1000,22116=>1000,22118=>1000,22120=>1000,22121=>1000,22122=>1000,22123=>1000,22124=>1000,22125=>1000,22127=>1000,22129=>1000,22130=>1000,22132=>1000,22133=>1000,22134=>1000,22136=>1000,22138=>1000,22144=>1000,22148=>1000,22149=>1000,22150=>1000,22151=>1000,22152=>1000,22154=>1000,22155=>1000,22156=>1000,22159=>1000,22164=>1000,22165=>1000,22169=>1000,22170=>1000,22173=>1000,22174=>1000,22175=>1000,22176=>1000,22178=>1000,22181=>1000,22182=>1000,22183=>1000,22184=>1000,22185=>1000,22187=>1000,22188=>1000,22189=>1000,22190=>1000,22193=>1000,22194=>1000,22195=>1000,22196=>1000,22198=>1000,22199=>1000,22204=>1000,22206=>1000,22208=>1000,22209=>1000,22210=>1000,22211=>1000,22213=>1000,22216=>1000,22217=>1000,22218=>1000,22219=>1000,22220=>1000,22221=>1000,22222=>1000,22223=>1000,22224=>1000,22225=>1000,22227=>1000,22231=>1000,22232=>1000,22233=>1000,22234=>1000,22235=>1000,22236=>1000,22237=>1000,22238=>1000,22239=>1000,22240=>1000,22241=>1000,22243=>1000,22244=>1000,22245=>1000,22246=>1000,22247=>1000,22248=>1000,22251=>1000,22253=>1000,22254=>1000,22256=>1000,22257=>1000,22258=>1000,22259=>1000,22262=>1000,22263=>1000,22265=>1000,22266=>1000,22269=>1000,22271=>1000,22272=>1000,22273=>1000,22274=>1000,22275=>1000,22276=>1000,22279=>1000,22280=>1000,22281=>1000,22282=>1000,22283=>1000,22284=>1000,22285=>1000,22287=>1000,22289=>1000,22290=>1000,22291=>1000,22293=>1000,22294=>1000,22296=>1000,22298=>1000,22299=>1000,22300=>1000,22301=>1000,22303=>1000,22304=>1000,22305=>1000,22306=>1000,22307=>1000,22308=>1000,22309=>1000,22310=>1000,22311=>1000,22312=>1000,22313=>1000,22314=>1000,22316=>1000,22317=>1000,22318=>1000,22319=>1000,22320=>1000,22323=>1000,22324=>1000,22327=>1000,22328=>1000,22331=>1000,22333=>1000,22334=>1000,22335=>1000,22336=>1000,22338=>1000,22341=>1000,22342=>1000,22343=>1000,22346=>1000,22348=>1000,22349=>1000,22350=>1000,22351=>1000,22352=>1000,22353=>1000,22354=>1000,22361=>1000,22367=>1000,22369=>1000,22370=>1000,22372=>1000,22373=>1000,22374=>1000,22375=>1000,22376=>1000,22377=>1000,22378=>1000,22379=>1000,22381=>1000,22382=>1000,22383=>1000,22384=>1000,22385=>1000,22387=>1000,22388=>1000,22389=>1000,22391=>1000,22393=>1000,22394=>1000,22395=>1000,22396=>1000,22398=>1000,22399=>1000,22401=>1000,22402=>1000,22403=>1000,22408=>1000,22409=>1000,22411=>1000,22412=>1000,22419=>1000,22420=>1000,22421=>1000,22423=>1000,22425=>1000,22426=>1000,22428=>1000,22429=>1000,22430=>1000,22431=>1000,22432=>1000,22433=>1000,22434=>1000,22435=>1000,22436=>1000,22439=>1000,22440=>1000,22441=>1000,22442=>1000,22444=>1000,22446=>1000,22448=>1000,22451=>1000,22456=>1000,22461=>1000,22464=>1000,22467=>1000,22470=>1000,22471=>1000,22472=>1000,22475=>1000,22476=>1000,22478=>1000,22479=>1000,22482=>1000,22483=>1000,22484=>1000,22485=>1000,22486=>1000,22487=>1000,22492=>1000,22493=>1000,22494=>1000,22495=>1000,22496=>1000,22497=>1000,22499=>1000,22500=>1000,22502=>1000,22503=>1000,22505=>1000,22509=>1000,22512=>1000,22516=>1000,22517=>1000,22518=>1000,22519=>1000,22520=>1000,22521=>1000,22522=>1000,22523=>1000,22524=>1000,22525=>1000,22526=>1000,22527=>1000,22528=>1000,22530=>1000,22531=>1000,22532=>1000,22533=>1000,22534=>1000,22536=>1000,22537=>1000,22538=>1000,22539=>1000,22540=>1000,22541=>1000,22549=>1000,22553=>1000,22555=>1000,22557=>1000,22558=>1000,22559=>1000,22560=>1000,22561=>1000,22564=>1000,22566=>1000,22567=>1000,22570=>1000,22573=>1000,22575=>1000,22576=>1000,22577=>1000,22578=>1000,22580=>1000,22581=>1000,22585=>1000,22586=>1000,22589=>1000,22591=>1000,22592=>1000,22593=>1000,22601=>1000,22602=>1000,22603=>1000,22604=>1000,22605=>1000,22607=>1000,22608=>1000,22609=>1000,22610=>1000,22612=>1000,22613=>1000,22615=>1000,22616=>1000,22617=>1000,22618=>1000,22622=>1000,22623=>1000,22625=>1000,22626=>1000,22628=>1000,22631=>1000,22632=>1000,22633=>1000,22635=>1000,22637=>1000,22640=>1000,22642=>1000,22645=>1000,22648=>1000,22649=>1000,22652=>1000,22654=>1000,22655=>1000,22656=>1000,22657=>1000,22659=>1000,22661=>1000,22663=>1000,22664=>1000,22665=>1000,22666=>1000,22667=>1000,22668=>1000,22669=>1000,22671=>1000,22672=>1000,22675=>1000,22676=>1000,22678=>1000,22679=>1000,22680=>1000,22684=>1000,22685=>1000,22686=>1000,22687=>1000,22688=>1000,22689=>1000,22690=>1000,22694=>1000,22696=>1000,22697=>1000,22698=>1000,22699=>1000,22702=>1000,22705=>1000,22706=>1000,22707=>1000,22712=>1000,22713=>1000,22714=>1000,22715=>1000,22716=>1000,22718=>1000,22721=>1000,22722=>1000,22723=>1000,22724=>1000,22725=>1000,22727=>1000,22728=>1000,22730=>1000,22732=>1000,22733=>1000,22734=>1000,22736=>1000,22737=>1000,22738=>1000,22739=>1000,22740=>1000,22741=>1000,22742=>1000,22743=>1000,22744=>1000,22745=>1000,22746=>1000,22748=>1000,22749=>1000,22750=>1000,22751=>1000,22752=>1000,22753=>1000,22754=>1000,22756=>1000,22757=>1000,22761=>1000,22763=>1000,22764=>1000,22766=>1000,22767=>1000,22768=>1000,22769=>1000,22770=>1000,22771=>1000,22772=>1000,22775=>1000,22777=>1000,22778=>1000,22779=>1000,22780=>1000,22781=>1000,22786=>1000,22789=>1000,22790=>1000,22793=>1000,22794=>1000,22795=>1000,22796=>1000,22797=>1000,22799=>1000,22800=>1000,22802=>1000,22803=>1000,22804=>1000,22805=>1000,22806=>1000,22808=>1000,22809=>1000,22810=>1000,22811=>1000,22812=>1000,22813=>1000,22815=>1000,22817=>1000,22818=>1000,22819=>1000,22820=>1000,22821=>1000,22823=>1000,22824=>1000,22825=>1000,22826=>1000,22827=>1000,22828=>1000,22829=>1000,22830=>1000,22831=>1000,22832=>1000,22833=>1000,22834=>1000,22835=>1000,22837=>1000,22838=>1000,22839=>1000,22840=>1000,22841=>1000,22845=>1000,22846=>1000,22847=>1000,22851=>1000,22852=>1000,22854=>1000,22855=>1000,22856=>1000,22857=>1000,22862=>1000,22863=>1000,22864=>1000,22865=>1000,22866=>1000,22867=>1000,22868=>1000,22869=>1000,22871=>1000,22872=>1000,22873=>1000,22874=>1000,22875=>1000,22877=>1000,22878=>1000,22879=>1000,22880=>1000,22881=>1000,22882=>1000,22883=>1000,22885=>1000,22887=>1000,22888=>1000,22889=>1000,22890=>1000,22891=>1000,22892=>1000,22893=>1000,22894=>1000,22895=>1000,22898=>1000,22899=>1000,22900=>1000,22901=>1000,22902=>1000,22904=>1000,22905=>1000,22907=>1000,22908=>1000,22909=>1000,22913=>1000,22914=>1000,22915=>1000,22916=>1000,22922=>1000,22923=>1000,22924=>1000,22925=>1000,22926=>1000,22930=>1000,22931=>1000,22933=>1000,22934=>1000,22935=>1000,22937=>1000,22939=>1000,22941=>1000,22943=>1000,22947=>1000,22948=>1000,22949=>1000,22951=>1000,22952=>1000,22956=>1000,22957=>1000,22958=>1000,22959=>1000,22960=>1000,22962=>1000,22963=>1000,22967=>1000,22969=>1000,22970=>1000,22971=>1000,22972=>1000,22974=>1000,22977=>1000,22979=>1000,22980=>1000,22982=>1000,22984=>1000,22985=>1000,22986=>1000,22987=>1000,22989=>1000,22992=>1000,22993=>1000,22994=>1000,22995=>1000,22996=>1000,23001=>1000,23002=>1000,23004=>1000,23005=>1000,23006=>1000,23007=>1000,23011=>1000,23012=>1000,23013=>1000,23014=>1000,23015=>1000,23016=>1000,23018=>1000,23019=>1000,23020=>1000,23022=>1000,23023=>1000,23025=>1000,23026=>1000,23028=>1000,23030=>1000,23031=>1000,23032=>1000,23035=>1000,23039=>1000,23040=>1000,23041=>1000,23043=>1000,23044=>1000,23049=>1000,23052=>1000,23053=>1000,23054=>1000,23057=>1000,23058=>1000,23059=>1000,23063=>1000,23064=>1000,23066=>1000,23067=>1000,23068=>1000,23070=>1000,23071=>1000,23072=>1000,23075=>1000,23076=>1000,23077=>1000,23079=>1000,23080=>1000,23081=>1000,23082=>1000,23085=>1000,23087=>1000,23088=>1000,23093=>1000,23094=>1000,23100=>1000,23104=>1000,23105=>1000,23108=>1000,23109=>1000,23110=>1000,23111=>1000,23112=>1000,23113=>1000,23116=>1000,23120=>1000,23125=>1000,23130=>1000,23134=>1000,23138=>1000,23139=>1000,23141=>1000,23142=>1000,23143=>1000,23146=>1000,23148=>1000,23149=>1000,23159=>1000,23162=>1000,23163=>1000,23166=>1000,23167=>1000,23172=>1000,23179=>1000,23184=>1000,23186=>1000,23187=>1000,23190=>1000,23193=>1000,23194=>1000,23195=>1000,23196=>1000,23198=>1000,23199=>1000,23200=>1000,23202=>1000,23207=>1000,23212=>1000,23217=>1000,23218=>1000,23219=>1000,23221=>1000,23224=>1000,23226=>1000,23227=>1000,23228=>1000,23229=>1000,23230=>1000,23231=>1000,23233=>1000,23234=>1000,23236=>1000,23238=>1000,23240=>1000,23241=>1000,23243=>1000,23244=>1000,23247=>1000,23248=>1000,23254=>1000,23255=>1000,23258=>1000,23260=>1000,23264=>1000,23265=>1000,23267=>1000,23269=>1000,23270=>1000,23273=>1000,23274=>1000,23278=>1000,23280=>1000,23285=>1000,23286=>1000,23290=>1000,23291=>1000,23293=>1000,23296=>1000,23297=>1000,23304=>1000,23305=>1000,23307=>1000,23308=>1000,23318=>1000,23319=>1000,23321=>1000,23323=>1000,23325=>1000,23329=>1000,23330=>1000,23333=>1000,23338=>1000,23340=>1000,23341=>1000,23344=>1000,23346=>1000,23348=>1000,23350=>1000,23352=>1000,23358=>1000,23360=>1000,23361=>1000,23363=>1000,23365=>1000,23371=>1000,23372=>1000,23376=>1000,23377=>1000,23378=>1000,23380=>1000,23381=>1000,23382=>1000,23383=>1000,23384=>1000,23386=>1000,23387=>1000,23388=>1000,23389=>1000,23390=>1000,23391=>1000,23395=>1000,23396=>1000,23397=>1000,23398=>1000,23400=>1000,23401=>1000,23403=>1000,23406=>1000,23407=>1000,23408=>1000,23409=>1000,23411=>1000,23413=>1000,23414=>1000,23416=>1000,23418=>1000,23420=>1000,23421=>1000,23422=>1000,23423=>1000,23424=>1000,23425=>1000,23426=>1000,23427=>1000,23428=>1000,23429=>1000,23430=>1000,23431=>1000,23432=>1000,23433=>1000,23434=>1000,23435=>1000,23436=>1000,23437=>1000,23438=>1000,23439=>1000,23440=>1000,23441=>1000,23443=>1000,23444=>1000,23445=>1000,23446=>1000,23447=>1000,23448=>1000,23449=>1000,23450=>1000,23451=>1000,23452=>1000,23453=>1000,23455=>1000,23458=>1000,23459=>1000,23460=>1000,23461=>1000,23462=>1000,23464=>1000,23465=>1000,23468=>1000,23469=>1000,23470=>1000,23471=>1000,23472=>1000,23473=>1000,23474=>1000,23475=>1000,23476=>1000,23477=>1000,23478=>1000,23479=>1000,23480=>1000,23481=>1000,23482=>1000,23484=>1000,23487=>1000,23488=>1000,23489=>1000,23490=>1000,23491=>1000,23492=>1000,23493=>1000,23494=>1000,23495=>1000,23497=>1000,23500=>1000,23501=>1000,23502=>1000,23503=>1000,23504=>1000,23506=>1000,23507=>1000,23508=>1000,23510=>1000,23511=>1000,23512=>1000,23513=>1000,23514=>1000,23515=>1000,23517=>1000,23518=>1000,23519=>1000,23520=>1000,23521=>1000,23522=>1000,23524=>1000,23525=>1000,23526=>1000,23527=>1000,23528=>1000,23529=>1000,23531=>1000,23532=>1000,23534=>1000,23535=>1000,23536=>1000,23537=>1000,23539=>1000,23540=>1000,23541=>1000,23542=>1000,23544=>1000,23546=>1000,23549=>1000,23550=>1000,23551=>1000,23553=>1000,23554=>1000,23555=>1000,23556=>1000,23557=>1000,23558=>1000,23559=>1000,23560=>1000,23561=>1000,23562=>1000,23563=>1000,23564=>1000,23565=>1000,23566=>1000,23567=>1000,23569=>1000,23570=>1000,23571=>1000,23572=>1000,23574=>1000,23575=>1000,23577=>1000,23578=>1000,23582=>1000,23583=>1000,23584=>1000,23586=>1000,23587=>1000,23588=>1000,23590=>1000,23592=>1000,23593=>1000,23594=>1000,23595=>1000,23596=>1000,23597=>1000,23598=>1000,23600=>1000,23601=>1000,23602=>1000,23605=>1000,23606=>1000,23608=>1000,23609=>1000,23610=>1000,23611=>1000,23612=>1000,23613=>1000,23614=>1000,23615=>1000,23616=>1000,23617=>1000,23621=>1000,23622=>1000,23624=>1000,23626=>1000,23627=>1000,23629=>1000,23630=>1000,23631=>1000,23632=>1000,23633=>1000,23635=>1000,23637=>1000,23641=>1000,23642=>1000,23643=>1000,23644=>1000,23646=>1000,23647=>1000,23648=>1000,23649=>1000,23650=>1000,23651=>1000,23652=>1000,23653=>1000,23655=>1000,23656=>1000,23657=>1000,23660=>1000,23661=>1000,23662=>1000,23663=>1000,23664=>1000,23665=>1000,23668=>1000,23669=>1000,23670=>1000,23673=>1000,23674=>1000,23675=>1000,23676=>1000,23677=>1000,23687=>1000,23688=>1000,23690=>1000,23692=>1000,23695=>1000,23696=>1000,23697=>1000,23698=>1000,23700=>1000,23709=>1000,23711=>1000,23712=>1000,23713=>1000,23714=>1000,23715=>1000,23718=>1000,23719=>1000,23720=>1000,23721=>1000,23722=>1000,23723=>1000,23724=>1000,23725=>1000,23729=>1000,23730=>1000,23731=>1000,23732=>1000,23733=>1000,23734=>1000,23735=>1000,23736=>1000,23738=>1000,23739=>1000,23740=>1000,23742=>1000,23749=>1000,23751=>1000,23753=>1000,23755=>1000,23760=>1000,23762=>1000,23767=>1000,23769=>1000,23773=>1000,23776=>1000,23777=>1000,23782=>1000,23784=>1000,23785=>1000,23786=>1000,23789=>1000,23790=>1000,23791=>1000,23792=>1000,23793=>1000,23794=>1000,23796=>1000,23797=>1000,23798=>1000,23802=>1000,23803=>1000,23805=>1000,23809=>1000,23814=>1000,23815=>1000,23819=>1000,23821=>1000,23822=>1000,23824=>1000,23825=>1000,23826=>1000,23828=>1000,23829=>1000,23830=>1000,23831=>1000,23832=>1000,23833=>1000,23834=>1000,23835=>1000,23837=>1000,23839=>1000,23840=>1000,23842=>1000,23843=>1000,23844=>1000,23846=>1000,23847=>1000,23849=>1000,23851=>1000,23857=>1000,23860=>1000,23865=>1000,23869=>1000,23871=>1000,23874=>1000,23875=>1000,23878=>1000,23879=>1000,23880=>1000,23882=>1000,23883=>1000,23884=>1000,23886=>1000,23888=>1000,23889=>1000,23890=>1000,23891=>1000,23893=>1000,23897=>1000,23900=>1000,23903=>1000,23904=>1000,23905=>1000,23906=>1000,23908=>1000,23913=>1000,23914=>1000,23916=>1000,23917=>1000,23919=>1000,23920=>1000,23923=>1000,23926=>1000,23929=>1000,23930=>1000,23934=>1000,23935=>1000,23937=>1000,23938=>1000,23939=>1000,23940=>1000,23943=>1000,23944=>1000,23946=>1000,23947=>1000,23948=>1000,23952=>1000,23954=>1000,23955=>1000,23956=>1000,23957=>1000,23959=>1000,23961=>1000,23963=>1000,23965=>1000,23967=>1000,23968=>1000,23970=>1000,23972=>1000,23975=>1000,23979=>1000,23980=>1000,23982=>1000,23984=>1000,23986=>1000,23988=>1000,23991=>1000,23992=>1000,23993=>1000,23994=>1000,23996=>1000,23997=>1000,24003=>1000,24007=>1000,24009=>1000,24011=>1000,24012=>1000,24013=>1000,24014=>1000,24016=>1000,24017=>1000,24018=>1000,24019=>1000,24022=>1000,24023=>1000,24024=>1000,24025=>1000,24027=>1000,24029=>1000,24030=>1000,24032=>1000,24033=>1000,24034=>1000,24035=>1000,24036=>1000,24037=>1000,24038=>1000,24039=>1000,24040=>1000,24041=>1000,24043=>1000,24046=>1000,24049=>1000,24050=>1000,24051=>1000,24052=>1000,24053=>1000,24055=>1000,24056=>1000,24057=>1000,24059=>1000,24061=>1000,24062=>1000,24063=>1000,24064=>1000,24066=>1000,24067=>1000,24070=>1000,24071=>1000,24075=>1000,24076=>1000,24077=>1000,24081=>1000,24082=>1000,24084=>1000,24085=>1000,24086=>1000,24088=>1000,24089=>1000,24090=>1000,24091=>1000,24093=>1000,24095=>1000,24096=>1000,24101=>1000,24104=>1000,24107=>1000,24109=>1000,24110=>1000,24111=>1000,24112=>1000,24114=>1000,24115=>1000,24117=>1000,24118=>1000,24119=>1000,24120=>1000,24125=>1000,24126=>1000,24128=>1000,24131=>1000,24132=>1000,24133=>1000,24135=>1000,24137=>1000,24139=>1000,24140=>1000,24142=>1000,24144=>1000,24145=>1000,24148=>1000,24149=>1000,24150=>1000,24151=>1000,24152=>1000,24155=>1000,24156=>1000,24158=>1000,24159=>1000,24161=>1000,24162=>1000,24163=>1000,24164=>1000,24168=>1000,24170=>1000,24171=>1000,24172=>1000,24173=>1000,24174=>1000,24176=>1000,24178=>1000,24179=>1000,24180=>1000,24181=>1000,24182=>1000,24183=>1000,24184=>1000,24185=>1000,24186=>1000,24187=>1000,24188=>1000,24189=>1000,24190=>1000,24191=>1000,24192=>1000,24193=>1000,24195=>1000,24196=>1000,24199=>1000,24202=>1000,24203=>1000,24206=>1000,24207=>1000,24213=>1000,24214=>1000,24215=>1000,24217=>1000,24218=>1000,24220=>1000,24224=>1000,24226=>1000,24228=>1000,24229=>1000,24230=>1000,24231=>1000,24232=>1000,24234=>1000,24235=>1000,24236=>1000,24237=>1000,24241=>1000,24243=>1000,24245=>1000,24246=>1000,24247=>1000,24248=>1000,24249=>1000,24253=>1000,24254=>1000,24255=>1000,24257=>1000,24258=>1000,24259=>1000,24262=>1000,24264=>1000,24265=>1000,24266=>1000,24267=>1000,24268=>1000,24270=>1000,24271=>1000,24272=>1000,24273=>1000,24274=>1000,24275=>1000,24276=>1000,24277=>1000,24278=>1000,24281=>1000,24282=>1000,24283=>1000,24284=>1000,24285=>1000,24286=>1000,24287=>1000,24288=>1000,24289=>1000,24290=>1000,24291=>1000,24293=>1000,24296=>1000,24297=>1000,24299=>1000,24300=>1000,24304=>1000,24305=>1000,24307=>1000,24308=>1000,24310=>1000,24311=>1000,24312=>1000,24313=>1000,24314=>1000,24315=>1000,24316=>1000,24317=>1000,24318=>1000,24319=>1000,24320=>1000,24321=>1000,24322=>1000,24323=>1000,24324=>1000,24326=>1000,24327=>1000,24328=>1000,24329=>1000,24330=>1000,24331=>1000,24332=>1000,24333=>1000,24334=>1000,24335=>1000,24336=>1000,24337=>1000,24339=>1000,24340=>1000,24341=>1000,24342=>1000,24343=>1000,24344=>1000,24345=>1000,24347=>1000,24348=>1000,24349=>1000,24350=>1000,24351=>1000,24353=>1000,24354=>1000,24355=>1000,24356=>1000,24357=>1000,24358=>1000,24359=>1000,24360=>1000,24361=>1000,24363=>1000,24364=>1000,24365=>1000,24366=>1000,24367=>1000,24368=>1000,24369=>1000,24372=>1000,24373=>1000,24374=>1000,24375=>1000,24376=>1000,24378=>1000,24379=>1000,24380=>1000,24381=>1000,24382=>1000,24383=>1000,24384=>1000,24385=>1000,24388=>1000,24389=>1000,24391=>1000,24392=>1000,24394=>1000,24396=>1000,24397=>1000,24398=>1000,24400=>1000,24401=>1000,24403=>1000,24404=>1000,24406=>1000,24407=>1000,24408=>1000,24409=>1000,24411=>1000,24412=>1000,24413=>1000,24416=>1000,24417=>1000,24418=>1000,24419=>1000,24420=>1000,24421=>1000,24422=>1000,24423=>1000,24425=>1000,24426=>1000,24427=>1000,24428=>1000,24429=>1000,24431=>1000,24432=>1000,24433=>1000,24434=>1000,24435=>1000,24436=>1000,24437=>1000,24439=>1000,24440=>1000,24441=>1000,24442=>1000,24444=>1000,24445=>1000,24446=>1000,24447=>1000,24448=>1000,24449=>1000,24450=>1000,24451=>1000,24452=>1000,24453=>1000,24455=>1000,24456=>1000,24457=>1000,24458=>1000,24459=>1000,24460=>1000,24461=>1000,24463=>1000,24464=>1000,24465=>1000,24466=>1000,24467=>1000,24470=>1000,24471=>1000,24472=>1000,24473=>1000,24476=>1000,24477=>1000,24478=>1000,24480=>1000,24481=>1000,24482=>1000,24484=>1000,24487=>1000,24488=>1000,24489=>1000,24490=>1000,24491=>1000,24492=>1000,24493=>1000,24494=>1000,24495=>1000,24496=>1000,24497=>1000,24499=>1000,24500=>1000,24501=>1000,24503=>1000,24504=>1000,24505=>1000,24508=>1000,24509=>1000,24515=>1000,24516=>1000,24517=>1000,24519=>1000,24520=>1000,24521=>1000,24523=>1000,24524=>1000,24525=>1000,24528=>1000,24529=>1000,24530=>1000,24531=>1000,24532=>1000,24534=>1000,24535=>1000,24536=>1000,24537=>1000,24540=>1000,24541=>1000,24542=>1000,24544=>1000,24545=>1000,24546=>1000,24548=>1000,24552=>1000,24553=>1000,24554=>1000,24555=>1000,24556=>1000,24557=>1000,24558=>1000,24559=>1000,24560=>1000,24561=>1000,24562=>1000,24563=>1000,24565=>1000,24566=>1000,24568=>1000,24570=>1000,24571=>1000,24572=>1000,24573=>1000,24575=>1000,24583=>1000,24586=>1000,24589=>1000,24590=>1000,24591=>1000,24592=>1000,24594=>1000,24595=>1000,24596=>1000,24597=>1000,24598=>1000,24599=>1000,24600=>1000,24601=>1000,24602=>1000,24603=>1000,24604=>1000,24605=>1000,24607=>1000,24608=>1000,24609=>1000,24610=>1000,24612=>1000,24613=>1000,24614=>1000,24615=>1000,24616=>1000,24617=>1000,24618=>1000,24619=>1000,24621=>1000,24623=>1000,24625=>1000,24627=>1000,24629=>1000,24634=>1000,24640=>1000,24641=>1000,24642=>1000,24643=>1000,24646=>1000,24647=>1000,24648=>1000,24649=>1000,24650=>1000,24651=>1000,24652=>1000,24653=>1000,24656=>1000,24657=>1000,24658=>1000,24660=>1000,24661=>1000,24662=>1000,24663=>1000,24665=>1000,24666=>1000,24669=>1000,24671=>1000,24672=>1000,24673=>1000,24674=>1000,24675=>1000,24676=>1000,24677=>1000,24679=>1000,24680=>1000,24681=>1000,24682=>1000,24683=>1000,24684=>1000,24685=>1000,24687=>1000,24688=>1000,24689=>1000,24693=>1000,24695=>1000,24702=>1000,24703=>1000,24705=>1000,24706=>1000,24707=>1000,24708=>1000,24709=>1000,24710=>1000,24712=>1000,24713=>1000,24714=>1000,24715=>1000,24716=>1000,24717=>1000,24718=>1000,24721=>1000,24722=>1000,24723=>1000,24724=>1000,24725=>1000,24726=>1000,24727=>1000,24728=>1000,24730=>1000,24731=>1000,24733=>1000,24734=>1000,24735=>1000,24736=>1000,24738=>1000,24739=>1000,24740=>1000,24741=>1000,24742=>1000,24743=>1000,24744=>1000,24745=>1000,24746=>1000,24752=>1000,24753=>1000,24754=>1000,24755=>1000,24756=>1000,24757=>1000,24758=>1000,24759=>1000,24760=>1000,24763=>1000,24764=>1000,24765=>1000,24766=>1000,24770=>1000,24772=>1000,24773=>1000,24774=>1000,24775=>1000,24776=>1000,24777=>1000,24778=>1000,24779=>1000,24782=>1000,24783=>1000,24785=>1000,24787=>1000,24788=>1000,24789=>1000,24792=>1000,24793=>1000,24794=>1000,24795=>1000,24796=>1000,24797=>1000,24798=>1000,24799=>1000,24800=>1000,24801=>1000,24802=>1000,24803=>1000,24805=>1000,24807=>1000,24808=>1000,24814=>1000,24816=>1000,24817=>1000,24818=>1000,24819=>1000,24820=>1000,24821=>1000,24822=>1000,24823=>1000,24824=>1000,24825=>1000,24826=>1000,24827=>1000,24828=>1000,24829=>1000,24832=>1000,24833=>1000,24834=>1000,24835=>1000,24838=>1000,24839=>1000,24840=>1000,24841=>1000,24842=>1000,24844=>1000,24845=>1000,24846=>1000,24847=>1000,24848=>1000,24849=>1000,24850=>1000,24851=>1000,24852=>1000,24853=>1000,24854=>1000,24855=>1000,24857=>1000,24858=>1000,24859=>1000,24860=>1000,24862=>1000,24863=>1000,24864=>1000,24865=>1000,24866=>1000,24871=>1000,24872=>1000,24874=>1000,24875=>1000,24876=>1000,24880=>1000,24881=>1000,24884=>1000,24885=>1000,24886=>1000,24887=>1000,24889=>1000,24890=>1000,24892=>1000,24893=>1000,24894=>1000,24895=>1000,24897=>1000,24898=>1000,24900=>1000,24901=>1000,24902=>1000,24903=>1000,24904=>1000,24905=>1000,24906=>1000,24907=>1000,24908=>1000,24909=>1000,24910=>1000,24915=>1000,24917=>1000,24920=>1000,24921=>1000,24922=>1000,24925=>1000,24926=>1000,24927=>1000,24928=>1000,24930=>1000,24931=>1000,24932=>1000,24933=>1000,24935=>1000,24936=>1000,24939=>1000,24940=>1000,24942=>1000,24943=>1000,24944=>1000,24945=>1000,24946=>1000,24947=>1000,24948=>1000,24949=>1000,24950=>1000,24951=>1000,24952=>1000,24955=>1000,24956=>1000,24957=>1000,24958=>1000,24959=>1000,24960=>1000,24961=>1000,24962=>1000,24963=>1000,24964=>1000,24967=>1000,24970=>1000,24971=>1000,24973=>1000,24974=>1000,24976=>1000,24977=>1000,24978=>1000,24979=>1000,24980=>1000,24982=>1000,24983=>1000,24984=>1000,24985=>1000,24986=>1000,24988=>1000,24989=>1000,24991=>1000,24992=>1000,24996=>1000,24997=>1000,24999=>1000,25000=>1000,25001=>1000,25002=>1000,25003=>1000,25004=>1000,25005=>1000,25006=>1000,25010=>1000,25014=>1000,25016=>1000,25017=>1000,25018=>1000,25020=>1000,25022=>1000,25024=>1000,25025=>1000,25026=>1000,25027=>1000,25030=>1000,25031=>1000,25032=>1000,25033=>1000,25034=>1000,25035=>1000,25036=>1000,25037=>1000,25038=>1000,25039=>1000,25040=>1000,25045=>1000,25052=>1000,25053=>1000,25054=>1000,25055=>1000,25057=>1000,25058=>1000,25059=>1000,25061=>1000,25062=>1000,25063=>1000,25064=>1000,25065=>1000,25068=>1000,25069=>1000,25071=>1000,25074=>1000,25076=>1000,25077=>1000,25078=>1000,25079=>1000,25080=>1000,25082=>1000,25084=>1000,25085=>1000,25086=>1000,25087=>1000,25088=>1000,25089=>1000,25091=>1000,25092=>1000,25095=>1000,25096=>1000,25097=>1000,25098=>1000,25100=>1000,25101=>1000,25102=>1000,25104=>1000,25105=>1000,25106=>1000,25107=>1000,25108=>1000,25109=>1000,25110=>1000,25114=>1000,25115=>1000,25116=>1000,25117=>1000,25118=>1000,25119=>1000,25120=>1000,25121=>1000,25122=>1000,25123=>1000,25126=>1000,25127=>1000,25129=>1000,25130=>1000,25131=>1000,25134=>1000,25135=>1000,25136=>1000,25137=>1000,25138=>1000,25139=>1000,25140=>1000,25142=>1000,25144=>1000,25145=>1000,25147=>1000,25149=>1000,25150=>1000,25151=>1000,25152=>1000,25153=>1000,25154=>1000,25155=>1000,25156=>1000,25158=>1000,25159=>1000,25160=>1000,25161=>1000,25163=>1000,25164=>1000,25165=>1000,25166=>1000,25168=>1000,25169=>1000,25170=>1000,25171=>1000,25172=>1000,25173=>1000,25174=>1000,25176=>1000,25178=>1000,25179=>1000,25180=>1000,25182=>1000,25184=>1000,25185=>1000,25187=>1000,25188=>1000,25192=>1000,25197=>1000,25198=>1000,25199=>1000,25201=>1000,25203=>1000,25206=>1000,25209=>1000,25210=>1000,25211=>1000,25212=>1000,25213=>1000,25214=>1000,25215=>1000,25216=>1000,25218=>1000,25219=>1000,25220=>1000,25221=>1000,25225=>1000,25226=>1000,25229=>1000,25230=>1000,25231=>1000,25232=>1000,25233=>1000,25234=>1000,25235=>1000,25236=>1000,25237=>1000,25238=>1000,25239=>1000,25240=>1000,25241=>1000,25243=>1000,25244=>1000,25246=>1000,25254=>1000,25256=>1000,25259=>1000,25260=>1000,25265=>1000,25267=>1000,25269=>1000,25270=>1000,25271=>1000,25273=>1000,25274=>1000,25275=>1000,25276=>1000,25277=>1000,25278=>1000,25279=>1000,25282=>1000,25284=>1000,25285=>1000,25286=>1000,25287=>1000,25288=>1000,25289=>1000,25290=>1000,25292=>1000,25293=>1000,25294=>1000,25295=>1000,25296=>1000,25297=>1000,25298=>1000,25299=>1000,25300=>1000,25301=>1000,25302=>1000,25303=>1000,25304=>1000,25305=>1000,25306=>1000,25307=>1000,25308=>1000,25309=>1000,25312=>1000,25313=>1000,25322=>1000,25324=>1000,25325=>1000,25326=>1000,25327=>1000,25329=>1000,25330=>1000,25331=>1000,25332=>1000,25333=>1000,25334=>1000,25335=>1000,25340=>1000,25341=>1000,25342=>1000,25343=>1000,25345=>1000,25346=>1000,25347=>1000,25348=>1000,25351=>1000,25352=>1000,25353=>1000,25354=>1000,25355=>1000,25356=>1000,25357=>1000,25360=>1000,25361=>1000,25363=>1000,25366=>1000,25368=>1000,25369=>1000,25371=>1000,25375=>1000,25383=>1000,25384=>1000,25385=>1000,25386=>1000,25387=>1000,25389=>1000,25391=>1000,25394=>1000,25397=>1000,25398=>1000,25401=>1000,25402=>1000,25403=>1000,25404=>1000,25405=>1000,25406=>1000,25407=>1000,25409=>1000,25410=>1000,25411=>1000,25412=>1000,25414=>1000,25417=>1000,25418=>1000,25419=>1000,25420=>1000,25421=>1000,25422=>1000,25423=>1000,25424=>1000,25426=>1000,25427=>1000,25428=>1000,25429=>1000,25431=>1000,25432=>1000,25433=>1000,25435=>1000,25436=>1000,25445=>1000,25446=>1000,25447=>1000,25448=>1000,25449=>1000,25451=>1000,25452=>1000,25453=>1000,25454=>1000,25457=>1000,25458=>1000,25460=>1000,25461=>1000,25462=>1000,25463=>1000,25464=>1000,25466=>1000,25467=>1000,25468=>1000,25469=>1000,25471=>1000,25472=>1000,25474=>1000,25475=>1000,25476=>1000,25479=>1000,25480=>1000,25481=>1000,25482=>1000,25484=>1000,25486=>1000,25487=>1000,25488=>1000,25490=>1000,25492=>1000,25493=>1000,25494=>1000,25496=>1000,25497=>1000,25498=>1000,25499=>1000,25502=>1000,25503=>1000,25504=>1000,25505=>1000,25506=>1000,25507=>1000,25508=>1000,25509=>1000,25510=>1000,25511=>1000,25512=>1000,25513=>1000,25514=>1000,25515=>1000,25516=>1000,25517=>1000,25518=>1000,25519=>1000,25522=>1000,25524=>1000,25525=>1000,25531=>1000,25533=>1000,25534=>1000,25536=>1000,25537=>1000,25539=>1000,25540=>1000,25541=>1000,25542=>1000,25544=>1000,25545=>1000,25550=>1000,25551=>1000,25552=>1000,25553=>1000,25554=>1000,25555=>1000,25556=>1000,25557=>1000,25558=>1000,25562=>1000,25563=>1000,25564=>1000,25568=>1000,25569=>1000,25571=>1000,25573=>1000,25577=>1000,25578=>1000,25579=>1000,25580=>1000,25581=>1000,25582=>1000,25586=>1000,25587=>1000,25588=>1000,25589=>1000,25590=>1000,25591=>1000,25592=>1000,25593=>1000,25594=>1000,25606=>1000,25609=>1000,25610=>1000,25613=>1000,25615=>1000,25616=>1000,25618=>1000,25619=>1000,25620=>1000,25622=>1000,25623=>1000,25624=>1000,25628=>1000,25630=>1000,25632=>1000,25634=>1000,25636=>1000,25637=>1000,25638=>1000,25640=>1000,25641=>1000,25642=>1000,25644=>1000,25645=>1000,25647=>1000,25648=>1000,25652=>1000,25653=>1000,25654=>1000,25658=>1000,25661=>1000,25662=>1000,25663=>1000,25666=>1000,25675=>1000,25678=>1000,25679=>1000,25681=>1000,25682=>1000,25683=>1000,25684=>1000,25688=>1000,25690=>1000,25691=>1000,25692=>1000,25693=>1000,25695=>1000,25696=>1000,25697=>1000,25699=>1000,25703=>1000,25705=>1000,25709=>1000,25711=>1000,25715=>1000,25716=>1000,25718=>1000,25720=>1000,25721=>1000,25722=>1000,25723=>1000,25725=>1000,25731=>1000,25733=>1000,25735=>1000,25736=>1000,25743=>1000,25744=>1000,25745=>1000,25746=>1000,25747=>1000,25749=>1000,25752=>1000,25753=>1000,25754=>1000,25755=>1000,25757=>1000,25758=>1000,25759=>1000,25761=>1000,25763=>1000,25764=>1000,25765=>1000,25766=>1000,25768=>1000,25769=>1000,25771=>1000,25772=>1000,25773=>1000,25774=>1000,25776=>1000,25778=>1000,25779=>1000,25785=>1000,25787=>1000,25788=>1000,25789=>1000,25790=>1000,25791=>1000,25793=>1000,25794=>1000,25796=>1000,25797=>1000,25799=>1000,25801=>1000,25802=>1000,25803=>1000,25804=>1000,25805=>1000,25806=>1000,25808=>1000,25809=>1000,25810=>1000,25812=>1000,25813=>1000,25815=>1000,25816=>1000,25818=>1000,25824=>1000,25825=>1000,25826=>1000,25827=>1000,25828=>1000,25829=>1000,25830=>1000,25831=>1000,25833=>1000,25834=>1000,25836=>1000,25837=>1000,25839=>1000,25840=>1000,25841=>1000,25842=>1000,25844=>1000,25845=>1000,25846=>1000,25847=>1000,25850=>1000,25851=>1000,25853=>1000,25854=>1000,25855=>1000,25856=>1000,25857=>1000,25860=>1000,25861=>1000,25864=>1000,25865=>1000,25866=>1000,25871=>1000,25875=>1000,25876=>1000,25878=>1000,25880=>1000,25881=>1000,25883=>1000,25884=>1000,25885=>1000,25886=>1000,25887=>1000,25890=>1000,25891=>1000,25892=>1000,25894=>1000,25897=>1000,25898=>1000,25899=>1000,25900=>1000,25902=>1000,25903=>1000,25905=>1000,25906=>1000,25908=>1000,25909=>1000,25910=>1000,25911=>1000,25912=>1000,25913=>1000,25914=>1000,25915=>1000,25916=>1000,25917=>1000,25918=>1000,25919=>1000,25923=>1000,25924=>1000,25925=>1000,25927=>1000,25928=>1000,25929=>1000,25933=>1000,25934=>1000,25935=>1000,25936=>1000,25937=>1000,25938=>1000,25940=>1000,25941=>1000,25942=>1000,25943=>1000,25944=>1000,25945=>1000,25949=>1000,25950=>1000,25951=>1000,25952=>1000,25954=>1000,25955=>1000,25958=>1000,25959=>1000,25963=>1000,25964=>1000,25968=>1000,25970=>1000,25972=>1000,25973=>1000,25975=>1000,25976=>1000,25978=>1000,25981=>1000,25985=>1000,25986=>1000,25987=>1000,25988=>1000,25989=>1000,25991=>1000,25992=>1000,25993=>1000,25994=>1000,25996=>1000,25998=>1000,26000=>1000,26001=>1000,26002=>1000,26005=>1000,26007=>1000,26008=>1000,26009=>1000,26011=>1000,26012=>1000,26013=>1000,26015=>1000,26016=>1000,26017=>1000,26019=>1000,26020=>1000,26021=>1000,26022=>1000,26023=>1000,26027=>1000,26028=>1000,26029=>1000,26030=>1000,26031=>1000,26032=>1000,26034=>1000,26035=>1000,26036=>1000,26037=>1000,26039=>1000,26040=>1000,26041=>1000,26044=>1000,26045=>1000,26046=>1000,26047=>1000,26049=>1000,26050=>1000,26051=>1000,26052=>1000,26053=>1000,26054=>1000,26056=>1000,26057=>1000,26059=>1000,26060=>1000,26062=>1000,26063=>1000,26064=>1000,26066=>1000,26068=>1000,26070=>1000,26071=>1000,26072=>1000,26073=>1000,26075=>1000,26079=>1000,26080=>1000,26081=>1000,26082=>1000,26083=>1000,26085=>1000,26086=>1000,26087=>1000,26088=>1000,26089=>1000,26092=>1000,26093=>1000,26096=>1000,26097=>1000,26098=>1000,26100=>1000,26101=>1000,26105=>1000,26106=>1000,26107=>1000,26108=>1000,26110=>1000,26111=>1000,26112=>1000,26114=>1000,26115=>1000,26116=>1000,26118=>1000,26119=>1000,26120=>1000,26121=>1000,26122=>1000,26124=>1000,26125=>1000,26126=>1000,26127=>1000,26129=>1000,26130=>1000,26131=>1000,26132=>1000,26133=>1000,26134=>1000,26140=>1000,26141=>1000,26142=>1000,26143=>1000,26144=>1000,26145=>1000,26146=>1000,26147=>1000,26148=>1000,26149=>1000,26150=>1000,26151=>1000,26152=>1000,26153=>1000,26154=>1000,26155=>1000,26156=>1000,26157=>1000,26158=>1000,26159=>1000,26160=>1000,26161=>1000,26163=>1000,26164=>1000,26165=>1000,26166=>1000,26167=>1000,26169=>1000,26170=>1000,26171=>1000,26172=>1000,26175=>1000,26176=>1000,26177=>1000,26178=>1000,26179=>1000,26180=>1000,26181=>1000,26182=>1000,26184=>1000,26185=>1000,26186=>1000,26187=>1000,26188=>1000,26190=>1000,26191=>1000,26193=>1000,26194=>1000,26199=>1000,26200=>1000,26201=>1000,26202=>1000,26203=>1000,26204=>1000,26205=>1000,26206=>1000,26207=>1000,26208=>1000,26209=>1000,26210=>1000,26211=>1000,26212=>1000,26213=>1000,26214=>1000,26215=>1000,26216=>1000,26217=>1000,26218=>1000,26219=>1000,26220=>1000,26221=>1000,26222=>1000,26223=>1000,26224=>1000,26227=>1000,26228=>1000,26229=>1000,26230=>1000,26231=>1000,26232=>1000,26233=>1000,26234=>1000,26235=>1000,26236=>1000,26238=>1000,26239=>1000,26240=>1000,26241=>1000,26243=>1000,26244=>1000,26247=>1000,26248=>1000,26249=>1000,26251=>1000,26252=>1000,26253=>1000,26254=>1000,26256=>1000,26257=>1000,26258=>1000,26262=>1000,26263=>1000,26264=>1000,26265=>1000,26266=>1000,26267=>1000,26268=>1000,26269=>1000,26271=>1000,26272=>1000,26274=>1000,26276=>1000,26278=>1000,26283=>1000,26285=>1000,26286=>1000,26289=>1000,26290=>1000,26291=>1000,26292=>1000,26293=>1000,26296=>1000,26297=>1000,26299=>1000,26300=>1000,26302=>1000,26303=>1000,26304=>1000,26305=>1000,26306=>1000,26307=>1000,26308=>1000,26310=>1000,26311=>1000,26312=>1000,26313=>1000,26316=>1000,26318=>1000,26319=>1000,26324=>1000,26326=>1000,26329=>1000,26330=>1000,26331=>1000,26332=>1000,26333=>1000,26335=>1000,26336=>1000,26342=>1000,26344=>1000,26345=>1000,26347=>1000,26348=>1000,26350=>1000,26352=>1000,26354=>1000,26355=>1000,26356=>1000,26357=>1000,26359=>1000,26360=>1000,26361=>1000,26362=>1000,26363=>1000,26364=>1000,26365=>1000,26366=>1000,26367=>1000,26368=>1000,26369=>1000,26371=>1000,26373=>1000,26375=>1000,26376=>1000,26377=>1000,26379=>1000,26380=>1000,26381=>1000,26382=>1000,26383=>1000,26384=>1000,26386=>1000,26387=>1000,26388=>1000,26389=>1000,26390=>1000,26391=>1000,26393=>1000,26395=>1000,26396=>1000,26397=>1000,26398=>1000,26399=>1000,26400=>1000,26402=>1000,26405=>1000,26406=>1000,26407=>1000,26408=>1000,26410=>1000,26411=>1000,26412=>1000,26413=>1000,26414=>1000,26417=>1000,26419=>1000,26420=>1000,26421=>1000,26422=>1000,26423=>1000,26424=>1000,26426=>1000,26429=>1000,26430=>1000,26431=>1000,26433=>1000,26435=>1000,26437=>1000,26438=>1000,26439=>1000,26440=>1000,26441=>1000,26444=>1000,26445=>1000,26446=>1000,26447=>1000,26448=>1000,26449=>1000,26451=>1000,26452=>1000,26453=>1000,26454=>1000,26457=>1000,26460=>1000,26461=>1000,26462=>1000,26463=>1000,26464=>1000,26465=>1000,26466=>1000,26467=>1000,26468=>1000,26469=>1000,26470=>1000,26474=>1000,26476=>1000,26477=>1000,26478=>1000,26479=>1000,26480=>1000,26481=>1000,26482=>1000,26483=>1000,26484=>1000,26485=>1000,26486=>1000,26487=>1000,26491=>1000,26492=>1000,26494=>1000,26495=>1000,26496=>1000,26497=>1000,26500=>1000,26501=>1000,26503=>1000,26505=>1000,26507=>1000,26508=>1000,26510=>1000,26511=>1000,26512=>1000,26513=>1000,26514=>1000,26515=>1000,26517=>1000,26518=>1000,26519=>1000,26520=>1000,26521=>1000,26522=>1000,26523=>1000,26524=>1000,26525=>1000,26528=>1000,26529=>1000,26530=>1000,26532=>1000,26534=>1000,26537=>1000,26543=>1000,26544=>1000,26545=>1000,26546=>1000,26547=>1000,26548=>1000,26549=>1000,26550=>1000,26551=>1000,26552=>1000,26553=>1000,26555=>1000,26556=>1000,26557=>1000,26558=>1000,26560=>1000,26561=>1000,26562=>1000,26563=>1000,26564=>1000,26565=>1000,26566=>1000,26568=>1000,26569=>1000,26570=>1000,26574=>1000,26575=>1000,26576=>1000,26577=>1000,26578=>1000,26579=>1000,26580=>1000,26583=>1000,26584=>1000,26585=>1000,26586=>1000,26587=>1000,26588=>1000,26589=>1000,26590=>1000,26593=>1000,26594=>1000,26596=>1000,26598=>1000,26599=>1000,26601=>1000,26604=>1000,26606=>1000,26607=>1000,26608=>1000,26609=>1000,26610=>1000,26611=>1000,26612=>1000,26613=>1000,26614=>1000,26615=>1000,26617=>1000,26618=>1000,26619=>1000,26620=>1000,26622=>1000,26623=>1000,26625=>1000,26626=>1000,26627=>1000,26628=>1000,26629=>1000,26640=>1000,26643=>1000,26644=>1000,26646=>1000,26647=>1000,26648=>1000,26649=>1000,26653=>1000,26654=>1000,26655=>1000,26657=>1000,26658=>1000,26663=>1000,26664=>1000,26665=>1000,26666=>1000,26667=>1000,26668=>1000,26669=>1000,26671=>1000,26672=>1000,26673=>1000,26674=>1000,26675=>1000,26676=>1000,26680=>1000,26681=>1000,26683=>1000,26684=>1000,26685=>1000,26686=>1000,26687=>1000,26688=>1000,26689=>1000,26690=>1000,26691=>1000,26692=>1000,26693=>1000,26694=>1000,26696=>1000,26697=>1000,26698=>1000,26700=>1000,26701=>1000,26702=>1000,26704=>1000,26705=>1000,26706=>1000,26707=>1000,26708=>1000,26709=>1000,26711=>1000,26712=>1000,26713=>1000,26715=>1000,26716=>1000,26717=>1000,26719=>1000,26723=>1000,26727=>1000,26731=>1000,26734=>1000,26735=>1000,26736=>1000,26737=>1000,26738=>1000,26740=>1000,26741=>1000,26742=>1000,26743=>1000,26745=>1000,26746=>1000,26747=>1000,26748=>1000,26750=>1000,26751=>1000,26753=>1000,26754=>1000,26755=>1000,26756=>1000,26757=>1000,26758=>1000,26760=>1000,26765=>1000,26766=>1000,26767=>1000,26768=>1000,26771=>1000,26772=>1000,26774=>1000,26775=>1000,26776=>1000,26777=>1000,26778=>1000,26779=>1000,26780=>1000,26781=>1000,26783=>1000,26784=>1000,26785=>1000,26786=>1000,26787=>1000,26789=>1000,26790=>1000,26791=>1000,26792=>1000,26793=>1000,26794=>1000,26795=>1000,26797=>1000,26798=>1000,26799=>1000,26800=>1000,26801=>1000,26802=>1000,26803=>1000,26804=>1000,26805=>1000,26806=>1000,26809=>1000,26810=>1000,26811=>1000,26812=>1000,26819=>1000,26820=>1000,26821=>1000,26822=>1000,26824=>1000,26825=>1000,26826=>1000,26827=>1000,26828=>1000,26829=>1000,26831=>1000,26832=>1000,26833=>1000,26834=>1000,26835=>1000,26836=>1000,26837=>1000,26838=>1000,26839=>1000,26840=>1000,26841=>1000,26842=>1000,26844=>1000,26845=>1000,26847=>1000,26848=>1000,26849=>1000,26851=>1000,26852=>1000,26853=>1000,26855=>1000,26856=>1000,26858=>1000,26859=>1000,26860=>1000,26861=>1000,26862=>1000,26863=>1000,26864=>1000,26865=>1000,26866=>1000,26869=>1000,26870=>1000,26871=>1000,26873=>1000,26874=>1000,26875=>1000,26876=>1000,26877=>1000,26880=>1000,26881=>1000,26883=>1000,26884=>1000,26885=>1000,26886=>1000,26887=>1000,26888=>1000,26889=>1000,26890=>1000,26891=>1000,26892=>1000,26893=>1000,26894=>1000,26895=>1000,26896=>1000,26897=>1000,26898=>1000,26899=>1000,26902=>1000,26903=>1000,26905=>1000,26906=>1000,26907=>1000,26908=>1000,26913=>1000,26914=>1000,26915=>1000,26917=>1000,26918=>1000,26920=>1000,26922=>1000,26928=>1000,26929=>1000,26931=>1000,26932=>1000,26933=>1000,26934=>1000,26936=>1000,26937=>1000,26939=>1000,26941=>1000,26943=>1000,26946=>1000,26949=>1000,26950=>1000,26953=>1000,26954=>1000,26958=>1000,26963=>1000,26964=>1000,26965=>1000,26967=>1000,26969=>1000,26970=>1000,26971=>1000,26972=>1000,26973=>1000,26974=>1000,26976=>1000,26977=>1000,26978=>1000,26979=>1000,26980=>1000,26981=>1000,26982=>1000,26984=>1000,26985=>1000,26986=>1000,26987=>1000,26988=>1000,26989=>1000,26990=>1000,26991=>1000,26992=>1000,26993=>1000,26994=>1000,26995=>1000,26996=>1000,26997=>1000,26999=>1000,27000=>1000,27001=>1000,27002=>1000,27003=>1000,27004=>1000,27005=>1000,27006=>1000,27007=>1000,27008=>1000,27009=>1000,27010=>1000,27014=>1000,27018=>1000,27021=>1000,27022=>1000,27025=>1000,27026=>1000,27028=>1000,27029=>1000,27030=>1000,27032=>1000,27035=>1000,27036=>1000,27040=>1000,27041=>1000,27045=>1000,27046=>1000,27047=>1000,27048=>1000,27051=>1000,27053=>1000,27054=>1000,27055=>1000,27056=>1000,27057=>1000,27058=>1000,27060=>1000,27063=>1000,27064=>1000,27066=>1000,27067=>1000,27068=>1000,27070=>1000,27071=>1000,27072=>1000,27073=>1000,27075=>1000,27077=>1000,27079=>1000,27080=>1000,27082=>1000,27083=>1000,27084=>1000,27085=>1000,27086=>1000,27087=>1000,27088=>1000,27089=>1000,27091=>1000,27094=>1000,27095=>1000,27096=>1000,27097=>1000,27101=>1000,27102=>1000,27106=>1000,27107=>1000,27109=>1000,27111=>1000,27112=>1000,27113=>1000,27114=>1000,27115=>1000,27117=>1000,27118=>1000,27119=>1000,27121=>1000,27122=>1000,27123=>1000,27124=>1000,27125=>1000,27126=>1000,27129=>1000,27131=>1000,27133=>1000,27134=>1000,27135=>1000,27136=>1000,27137=>1000,27138=>1000,27139=>1000,27141=>1000,27146=>1000,27147=>1000,27148=>1000,27151=>1000,27153=>1000,27154=>1000,27155=>1000,27156=>1000,27157=>1000,27159=>1000,27161=>1000,27162=>1000,27163=>1000,27165=>1000,27166=>1000,27167=>1000,27168=>1000,27169=>1000,27170=>1000,27171=>1000,27172=>1000,27176=>1000,27177=>1000,27178=>1000,27179=>1000,27182=>1000,27184=>1000,27186=>1000,27187=>1000,27188=>1000,27189=>1000,27190=>1000,27191=>1000,27192=>1000,27193=>1000,27194=>1000,27195=>1000,27197=>1000,27198=>1000,27199=>1000,27204=>1000,27205=>1000,27206=>1000,27207=>1000,27208=>1000,27209=>1000,27210=>1000,27211=>1000,27214=>1000,27216=>1000,27217=>1000,27218=>1000,27220=>1000,27221=>1000,27222=>1000,27224=>1000,27225=>1000,27227=>1000,27231=>1000,27233=>1000,27234=>1000,27236=>1000,27238=>1000,27239=>1000,27242=>1000,27243=>1000,27249=>1000,27250=>1000,27251=>1000,27256=>1000,27258=>1000,27262=>1000,27263=>1000,27264=>1000,27265=>1000,27267=>1000,27268=>1000,27270=>1000,27271=>1000,27273=>1000,27275=>1000,27277=>1000,27278=>1000,27280=>1000,27281=>1000,27284=>1000,27287=>1000,27291=>1000,27292=>1000,27293=>1000,27294=>1000,27295=>1000,27296=>1000,27297=>1000,27298=>1000,27299=>1000,27301=>1000,27306=>1000,27307=>1000,27308=>1000,27310=>1000,27311=>1000,27312=>1000,27313=>1000,27315=>1000,27316=>1000,27320=>1000,27323=>1000,27325=>1000,27326=>1000,27327=>1000,27329=>1000,27330=>1000,27331=>1000,27334=>1000,27336=>1000,27337=>1000,27340=>1000,27344=>1000,27345=>1000,27347=>1000,27348=>1000,27349=>1000,27350=>1000,27354=>1000,27355=>1000,27356=>1000,27357=>1000,27358=>1000,27359=>1000,27362=>1000,27364=>1000,27367=>1000,27368=>1000,27370=>1000,27372=>1000,27376=>1000,27377=>1000,27378=>1000,27379=>1000,27384=>1000,27386=>1000,27387=>1000,27388=>1000,27389=>1000,27394=>1000,27395=>1000,27396=>1000,27397=>1000,27398=>1000,27399=>1000,27401=>1000,27402=>1000,27403=>1000,27407=>1000,27408=>1000,27409=>1000,27410=>1000,27414=>1000,27415=>1000,27419=>1000,27421=>1000,27422=>1000,27423=>1000,27424=>1000,27425=>1000,27427=>1000,27428=>1000,27431=>1000,27432=>1000,27435=>1000,27436=>1000,27439=>1000,27442=>1000,27445=>1000,27446=>1000,27447=>1000,27448=>1000,27449=>1000,27450=>1000,27451=>1000,27453=>1000,27454=>1000,27455=>1000,27459=>1000,27462=>1000,27463=>1000,27465=>1000,27466=>1000,27468=>1000,27469=>1000,27470=>1000,27472=>1000,27474=>1000,27475=>1000,27476=>1000,27478=>1000,27480=>1000,27481=>1000,27483=>1000,27485=>1000,27487=>1000,27488=>1000,27489=>1000,27490=>1000,27491=>1000,27492=>1000,27493=>1000,27494=>1000,27495=>1000,27497=>1000,27498=>1000,27499=>1000,27500=>1000,27502=>1000,27503=>1000,27504=>1000,27506=>1000,27507=>1000,27508=>1000,27509=>1000,27511=>1000,27512=>1000,27513=>1000,27514=>1000,27515=>1000,27517=>1000,27518=>1000,27519=>1000,27520=>1000,27521=>1000,27522=>1000,27523=>1000,27524=>1000,27525=>1000,27526=>1000,27529=>1000,27530=>1000,27531=>1000,27533=>1000,27541=>1000,27542=>1000,27543=>1000,27544=>1000,27547=>1000,27550=>1000,27551=>1000,27552=>1000,27554=>1000,27555=>1000,27556=>1000,27560=>1000,27561=>1000,27562=>1000,27563=>1000,27564=>1000,27565=>1000,27566=>1000,27567=>1000,27568=>1000,27569=>1000,27570=>1000,27571=>1000,27572=>1000,27573=>1000,27575=>1000,27576=>1000,27577=>1000,27578=>1000,27579=>1000,27580=>1000,27581=>1000,27582=>1000,27583=>1000,27584=>1000,27587=>1000,27588=>1000,27589=>1000,27590=>1000,27591=>1000,27592=>1000,27593=>1000,27595=>1000,27596=>1000,27597=>1000,27598=>1000,27599=>1000,27602=>1000,27603=>1000,27604=>1000,27606=>1000,27607=>1000,27608=>1000,27610=>1000,27611=>1000,27615=>1000,27617=>1000,27619=>1000,27622=>1000,27623=>1000,27627=>1000,27628=>1000,27630=>1000,27631=>1000,27633=>1000,27635=>1000,27639=>1000,27641=>1000,27647=>1000,27650=>1000,27652=>1000,27653=>1000,27656=>1000,27657=>1000,27658=>1000,27661=>1000,27662=>1000,27663=>1000,27664=>1000,27665=>1000,27666=>1000,27667=>1000,27668=>1000,27671=>1000,27673=>1000,27675=>1000,27679=>1000,27683=>1000,27684=>1000,27686=>1000,27687=>1000,27688=>1000,27692=>1000,27694=>1000,27699=>1000,27700=>1000,27701=>1000,27702=>1000,27703=>1000,27704=>1000,27706=>1000,27707=>1000,27710=>1000,27711=>1000,27712=>1000,27713=>1000,27714=>1000,27722=>1000,27723=>1000,27725=>1000,27726=>1000,27727=>1000,27728=>1000,27730=>1000,27732=>1000,27733=>1000,27735=>1000,27737=>1000,27738=>1000,27739=>1000,27740=>1000,27741=>1000,27742=>1000,27743=>1000,27744=>1000,27746=>1000,27751=>1000,27752=>1000,27754=>1000,27755=>1000,27757=>1000,27759=>1000,27760=>1000,27762=>1000,27763=>1000,27764=>1000,27766=>1000,27768=>1000,27769=>1000,27770=>1000,27771=>1000,27773=>1000,27774=>1000,27777=>1000,27778=>1000,27779=>1000,27780=>1000,27781=>1000,27782=>1000,27783=>1000,27784=>1000,27785=>1000,27788=>1000,27789=>1000,27792=>1000,27794=>1000,27795=>1000,27796=>1000,27797=>1000,27798=>1000,27799=>1000,27800=>1000,27801=>1000,27802=>1000,27803=>1000,27804=>1000,27807=>1000,27809=>1000,27810=>1000,27818=>1000,27819=>1000,27820=>1000,27821=>1000,27822=>1000,27824=>1000,27825=>1000,27826=>1000,27827=>1000,27828=>1000,27832=>1000,27833=>1000,27834=>1000,27835=>1000,27836=>1000,27837=>1000,27838=>1000,27839=>1000,27841=>1000,27842=>1000,27844=>1000,27845=>1000,27846=>1000,27849=>1000,27850=>1000,27852=>1000,27853=>1000,27855=>1000,27856=>1000,27857=>1000,27858=>1000,27859=>1000,27860=>1000,27861=>1000,27862=>1000,27863=>1000,27865=>1000,27866=>1000,27867=>1000,27868=>1000,27869=>1000,27872=>1000,27873=>1000,27874=>1000,27875=>1000,27877=>1000,27879=>1000,27880=>1000,27881=>1000,27882=>1000,27883=>1000,27884=>1000,27885=>1000,27886=>1000,27887=>1000,27888=>1000,27889=>1000,27890=>1000,27891=>1000,27892=>1000,27899=>1000,27904=>1000,27905=>1000,27908=>1000,27911=>1000,27914=>1000,27915=>1000,27916=>1000,27918=>1000,27919=>1000,27921=>1000,27922=>1000,27923=>1000,27927=>1000,27929=>1000,27930=>1000,27931=>1000,27934=>1000,27935=>1000,27940=>1000,27941=>1000,27942=>1000,27943=>1000,27944=>1000,27945=>1000,27946=>1000,27947=>1000,27950=>1000,27951=>1000,27953=>1000,27954=>1000,27955=>1000,27956=>1000,27957=>1000,27958=>1000,27960=>1000,27961=>1000,27963=>1000,27964=>1000,27965=>1000,27966=>1000,27967=>1000,27969=>1000,27972=>1000,27973=>1000,27991=>1000,27992=>1000,27993=>1000,27994=>1000,27995=>1000,27996=>1000,27998=>1000,27999=>1000,28000=>1000,28001=>1000,28003=>1000,28004=>1000,28005=>1000,28006=>1000,28007=>1000,28009=>1000,28010=>1000,28012=>1000,28014=>1000,28015=>1000,28016=>1000,28020=>1000,28023=>1000,28024=>1000,28025=>1000,28028=>1000,28032=>1000,28033=>1000,28034=>1000,28037=>1000,28039=>1000,28040=>1000,28041=>1000,28042=>1000,28044=>1000,28045=>1000,28046=>1000,28049=>1000,28050=>1000,28051=>1000,28052=>1000,28053=>1000,28054=>1000,28055=>1000,28056=>1000,28057=>1000,28059=>1000,28060=>1000,28074=>1000,28075=>1000,28076=>1000,28078=>1000,28079=>1000,28082=>1000,28084=>1000,28085=>1000,28087=>1000,28088=>1000,28089=>1000,28092=>1000,28093=>1000,28095=>1000,28096=>1000,28098=>1000,28100=>1000,28101=>1000,28102=>1000,28103=>1000,28104=>1000,28106=>1000,28107=>1000,28108=>1000,28110=>1000,28111=>1000,28112=>1000,28113=>1000,28114=>1000,28117=>1000,28118=>1000,28120=>1000,28121=>1000,28122=>1000,28123=>1000,28125=>1000,28126=>1000,28127=>1000,28128=>1000,28129=>1000,28130=>1000,28132=>1000,28133=>1000,28134=>1000,28136=>1000,28137=>1000,28138=>1000,28139=>1000,28140=>1000,28142=>1000,28143=>1000,28144=>1000,28145=>1000,28146=>1000,28147=>1000,28148=>1000,28149=>1000,28150=>1000,28151=>1000,28152=>1000,28153=>1000,28154=>1000,28155=>1000,28156=>1000,28160=>1000,28164=>1000,28165=>1000,28167=>1000,28168=>1000,28169=>1000,28170=>1000,28171=>1000,28179=>1000,28181=>1000,28183=>1000,28185=>1000,28186=>1000,28187=>1000,28189=>1000,28190=>1000,28191=>1000,28192=>1000,28193=>1000,28194=>1000,28195=>1000,28196=>1000,28197=>1000,28198=>1000,28199=>1000,28201=>1000,28203=>1000,28204=>1000,28205=>1000,28206=>1000,28207=>1000,28210=>1000,28212=>1000,28214=>1000,28216=>1000,28217=>1000,28218=>1000,28219=>1000,28220=>1000,28222=>1000,28226=>1000,28227=>1000,28228=>1000,28229=>1000,28232=>1000,28233=>1000,28234=>1000,28235=>1000,28236=>1000,28237=>1000,28238=>1000,28239=>1000,28241=>1000,28242=>1000,28243=>1000,28244=>1000,28246=>1000,28247=>1000,28248=>1000,28251=>1000,28252=>1000,28253=>1000,28254=>1000,28255=>1000,28258=>1000,28259=>1000,28263=>1000,28264=>1000,28267=>1000,28270=>1000,28271=>1000,28274=>1000,28275=>1000,28278=>1000,28283=>1000,28285=>1000,28286=>1000,28287=>1000,28288=>1000,28290=>1000,28297=>1000,28300=>1000,28301=>1000,28303=>1000,28304=>1000,28307=>1000,28310=>1000,28312=>1000,28313=>1000,28316=>1000,28317=>1000,28319=>1000,28320=>1000,28322=>1000,28325=>1000,28327=>1000,28330=>1000,28331=>1000,28333=>1000,28334=>1000,28335=>1000,28337=>1000,28338=>1000,28339=>1000,28340=>1000,28342=>1000,28343=>1000,28346=>1000,28347=>1000,28348=>1000,28349=>1000,28351=>1000,28352=>1000,28353=>1000,28354=>1000,28355=>1000,28356=>1000,28357=>1000,28359=>1000,28360=>1000,28361=>1000,28362=>1000,28363=>1000,28364=>1000,28365=>1000,28366=>1000,28367=>1000,28369=>1000,28371=>1000,28372=>1000,28373=>1000,28377=>1000,28378=>1000,28379=>1000,28381=>1000,28382=>1000,28390=>1000,28395=>1000,28396=>1000,28397=>1000,28398=>1000,28399=>1000,28402=>1000,28404=>1000,28407=>1000,28408=>1000,28409=>1000,28411=>1000,28413=>1000,28414=>1000,28415=>1000,28417=>1000,28418=>1000,28420=>1000,28422=>1000,28424=>1000,28425=>1000,28426=>1000,28428=>1000,28429=>1000,28431=>1000,28432=>1000,28433=>1000,28435=>1000,28436=>1000,28437=>1000,28438=>1000,28440=>1000,28442=>1000,28443=>1000,28448=>1000,28450=>1000,28451=>1000,28453=>1000,28454=>1000,28457=>1000,28458=>1000,28459=>1000,28460=>1000,28461=>1000,28463=>1000,28464=>1000,28465=>1000,28466=>1000,28467=>1000,28469=>1000,28470=>1000,28472=>1000,28475=>1000,28476=>1000,28478=>1000,28479=>1000,28481=>1000,28485=>1000,28495=>1000,28497=>1000,28498=>1000,28499=>1000,28500=>1000,28503=>1000,28504=>1000,28505=>1000,28506=>1000,28507=>1000,28508=>1000,28509=>1000,28510=>1000,28511=>1000,28512=>1000,28513=>1000,28514=>1000,28516=>1000,28518=>1000,28520=>1000,28524=>1000,28525=>1000,28526=>1000,28527=>1000,28528=>1000,28532=>1000,28536=>1000,28538=>1000,28540=>1000,28541=>1000,28542=>1000,28544=>1000,28545=>1000,28546=>1000,28547=>1000,28548=>1000,28550=>1000,28551=>1000,28552=>1000,28555=>1000,28556=>1000,28557=>1000,28558=>1000,28560=>1000,28561=>1000,28562=>1000,28563=>1000,28564=>1000,28566=>1000,28567=>1000,28568=>1000,28570=>1000,28573=>1000,28575=>1000,28576=>1000,28577=>1000,28579=>1000,28580=>1000,28581=>1000,28582=>1000,28583=>1000,28584=>1000,28586=>1000,28590=>1000,28591=>1000,28592=>1000,28593=>1000,28595=>1000,28597=>1000,28598=>1000,28599=>1000,28601=>1000,28604=>1000,28606=>1000,28608=>1000,28609=>1000,28610=>1000,28611=>1000,28613=>1000,28614=>1000,28615=>1000,28616=>1000,28617=>1000,28618=>1000,28628=>1000,28629=>1000,28632=>1000,28634=>1000,28635=>1000,28638=>1000,28639=>1000,28640=>1000,28641=>1000,28644=>1000,28648=>1000,28649=>1000,28651=>1000,28652=>1000,28654=>1000,28655=>1000,28656=>1000,28657=>1000,28659=>1000,28661=>1000,28662=>1000,28665=>1000,28666=>1000,28668=>1000,28669=>1000,28670=>1000,28672=>1000,28673=>1000,28677=>1000,28678=>1000,28679=>1000,28681=>1000,28682=>1000,28683=>1000,28685=>1000,28687=>1000,28689=>1000,28693=>1000,28695=>1000,28696=>1000,28698=>1000,28699=>1000,28701=>1000,28702=>1000,28703=>1000,28704=>1000,28707=>1000,28710=>1000,28711=>1000,28712=>1000,28716=>1000,28719=>1000,28720=>1000,28722=>1000,28724=>1000,28727=>1000,28729=>1000,28730=>1000,28732=>1000,28734=>1000,28739=>1000,28740=>1000,28743=>1000,28744=>1000,28745=>1000,28746=>1000,28747=>1000,28748=>1000,28750=>1000,28753=>1000,28756=>1000,28757=>1000,28760=>1000,28765=>1000,28766=>1000,28771=>1000,28772=>1000,28773=>1000,28777=>1000,28779=>1000,28780=>1000,28782=>1000,28783=>1000,28784=>1000,28789=>1000,28790=>1000,28792=>1000,28796=>1000,28797=>1000,28798=>1000,28801=>1000,28805=>1000,28806=>1000,28809=>1000,28810=>1000,28814=>1000,28818=>1000,28820=>1000,28821=>1000,28822=>1000,28823=>1000,28824=>1000,28825=>1000,28827=>1000,28831=>1000,28836=>1000,28843=>1000,28844=>1000,28845=>1000,28846=>1000,28847=>1000,28848=>1000,28849=>1000,28851=>1000,28852=>1000,28855=>1000,28856=>1000,28857=>1000,28858=>1000,28859=>1000,28872=>1000,28874=>1000,28875=>1000,28879=>1000,28881=>1000,28883=>1000,28884=>1000,28885=>1000,28886=>1000,28888=>1000,28889=>1000,28892=>1000,28893=>1000,28895=>1000,28900=>1000,28908=>1000,28913=>1000,28921=>1000,28922=>1000,28925=>1000,28931=>1000,28932=>1000,28933=>1000,28934=>1000,28935=>1000,28936=>1000,28937=>1000,28939=>1000,28940=>1000,28943=>1000,28948=>1000,28953=>1000,28954=>1000,28956=>1000,28958=>1000,28960=>1000,28961=>1000,28966=>1000,28971=>1000,28973=>1000,28974=>1000,28975=>1000,28976=>1000,28977=>1000,28982=>1000,28984=>1000,28988=>1000,28993=>1000,28997=>1000,28998=>1000,28999=>1000,29001=>1000,29002=>1000,29003=>1000,29004=>1000,29006=>1000,29008=>1000,29009=>1000,29010=>1000,29011=>1000,29013=>1000,29014=>1000,29015=>1000,29017=>1000,29018=>1000,29020=>1000,29022=>1000,29024=>1000,29026=>1000,29028=>1000,29029=>1000,29030=>1000,29031=>1000,29032=>1000,29033=>1000,29036=>1000,29038=>1000,29049=>1000,29053=>1000,29056=>1000,29060=>1000,29061=>1000,29063=>1000,29064=>1000,29066=>1000,29068=>1000,29071=>1000,29074=>1000,29076=>1000,29077=>1000,29078=>1000,29081=>1000,29082=>1000,29083=>1000,29087=>1000,29088=>1000,29090=>1000,29096=>1000,29100=>1000,29102=>1000,29103=>1000,29104=>1000,29105=>1000,29106=>1000,29107=>1000,29113=>1000,29114=>1000,29118=>1000,29119=>1000,29120=>1000,29121=>1000,29123=>1000,29124=>1000,29128=>1000,29129=>1000,29131=>1000,29132=>1000,29134=>1000,29136=>1000,29138=>1000,29139=>1000,29140=>1000,29141=>1000,29142=>1000,29143=>1000,29145=>1000,29146=>1000,29148=>1000,29151=>1000,29152=>1000,29157=>1000,29158=>1000,29159=>1000,29164=>1000,29165=>1000,29166=>1000,29172=>1000,29173=>1000,29176=>1000,29177=>1000,29179=>1000,29180=>1000,29182=>1000,29183=>1000,29184=>1000,29190=>1000,29191=>1000,29192=>1000,29193=>1000,29197=>1000,29200=>1000,29203=>1000,29205=>1000,29207=>1000,29210=>1000,29211=>1000,29213=>1000,29215=>1000,29220=>1000,29224=>1000,29226=>1000,29227=>1000,29228=>1000,29229=>1000,29231=>1000,29232=>1000,29234=>1000,29236=>1000,29237=>1000,29238=>1000,29240=>1000,29241=>1000,29242=>1000,29243=>1000,29244=>1000,29245=>1000,29246=>1000,29247=>1000,29248=>1000,29249=>1000,29250=>1000,29251=>1000,29253=>1000,29254=>1000,29255=>1000,29256=>1000,29259=>1000,29260=>1000,29262=>1000,29263=>1000,29264=>1000,29266=>1000,29267=>1000,29269=>1000,29270=>1000,29271=>1000,29272=>1000,29273=>1000,29274=>1000,29275=>1000,29276=>1000,29277=>1000,29278=>1000,29279=>1000,29280=>1000,29281=>1000,29282=>1000,29283=>1000,29287=>1000,29288=>1000,29289=>1000,29291=>1000,29294=>1000,29295=>1000,29297=>1000,29298=>1000,29300=>1000,29303=>1000,29304=>1000,29305=>1000,29307=>1000,29308=>1000,29309=>1000,29310=>1000,29311=>1000,29312=>1000,29313=>1000,29314=>1000,29316=>1000,29319=>1000,29321=>1000,29325=>1000,29326=>1000,29330=>1000,29331=>1000,29334=>1000,29339=>1000,29344=>1000,29346=>1000,29351=>1000,29352=>1000,29356=>1000,29357=>1000,29358=>1000,29359=>1000,29360=>1000,29361=>1000,29362=>1000,29364=>1000,29366=>1000,29369=>1000,29374=>1000,29376=>1000,29377=>1000,29378=>1000,29379=>1000,29380=>1000,29382=>1000,29383=>1000,29385=>1000,29388=>1000,29390=>1000,29392=>1000,29394=>1000,29397=>1000,29398=>1000,29399=>1000,29400=>1000,29401=>1000,29403=>1000,29407=>1000,29408=>1000,29409=>1000,29410=>1000,29413=>1000,29417=>1000,29420=>1000,29421=>1000,29427=>1000,29428=>1000,29431=>1000,29432=>1000,29433=>1000,29434=>1000,29435=>1000,29436=>1000,29437=>1000,29438=>1000,29442=>1000,29444=>1000,29445=>1000,29447=>1000,29450=>1000,29451=>1000,29453=>1000,29458=>1000,29459=>1000,29462=>1000,29463=>1000,29464=>1000,29465=>1000,29467=>1000,29468=>1000,29469=>1000,29470=>1000,29471=>1000,29474=>1000,29476=>1000,29477=>1000,29479=>1000,29480=>1000,29481=>1000,29482=>1000,29483=>1000,29484=>1000,29486=>1000,29487=>1000,29489=>1000,29490=>1000,29491=>1000,29492=>1000,29493=>1000,29494=>1000,29495=>1000,29497=>1000,29498=>1000,29499=>1000,29501=>1000,29502=>1000,29503=>1000,29507=>1000,29508=>1000,29509=>1000,29517=>1000,29518=>1000,29519=>1000,29520=>1000,29522=>1000,29526=>1000,29527=>1000,29528=>1000,29533=>1000,29534=>1000,29535=>1000,29536=>1000,29539=>1000,29542=>1000,29543=>1000,29544=>1000,29545=>1000,29546=>1000,29547=>1000,29548=>1000,29550=>1000,29551=>1000,29552=>1000,29553=>1000,29554=>1000,29557=>1000,29559=>1000,29560=>1000,29561=>1000,29562=>1000,29563=>1000,29564=>1000,29568=>1000,29569=>1000,29571=>1000,29572=>1000,29573=>1000,29574=>1000,29575=>1000,29577=>1000,29578=>1000,29579=>1000,29582=>1000,29584=>1000,29587=>1000,29588=>1000,29589=>1000,29590=>1000,29591=>1000,29592=>1000,29596=>1000,29598=>1000,29599=>1000,29600=>1000,29602=>1000,29605=>1000,29606=>1000,29608=>1000,29609=>1000,29610=>1000,29611=>1000,29613=>1000,29618=>1000,29619=>1000,29621=>1000,29623=>1000,29625=>1000,29626=>1000,29627=>1000,29628=>1000,29629=>1000,29631=>1000,29632=>1000,29634=>1000,29637=>1000,29638=>1000,29640=>1000,29641=>1000,29642=>1000,29643=>1000,29644=>1000,29645=>1000,29646=>1000,29647=>1000,29650=>1000,29651=>1000,29654=>1000,29657=>1000,29661=>1000,29662=>1000,29664=>1000,29665=>1000,29667=>1000,29668=>1000,29669=>1000,29670=>1000,29671=>1000,29673=>1000,29674=>1000,29677=>1000,29678=>1000,29681=>1000,29684=>1000,29685=>1000,29687=>1000,29688=>1000,29689=>1000,29690=>1000,29691=>1000,29693=>1000,29694=>1000,29695=>1000,29696=>1000,29697=>1000,29699=>1000,29700=>1000,29701=>1000,29702=>1000,29703=>1000,29705=>1000,29706=>1000,29713=>1000,29715=>1000,29722=>1000,29723=>1000,29729=>1000,29730=>1000,29732=>1000,29733=>1000,29734=>1000,29736=>1000,29737=>1000,29738=>1000,29739=>1000,29740=>1000,29741=>1000,29742=>1000,29743=>1000,29744=>1000,29745=>1000,29746=>1000,29747=>1000,29748=>1000,29749=>1000,29750=>1000,29753=>1000,29754=>1000,29759=>1000,29760=>1000,29761=>1000,29763=>1000,29764=>1000,29766=>1000,29767=>1000,29771=>1000,29773=>1000,29777=>1000,29778=>1000,29779=>1000,29781=>1000,29783=>1000,29785=>1000,29786=>1000,29787=>1000,29788=>1000,29789=>1000,29790=>1000,29791=>1000,29792=>1000,29794=>1000,29795=>1000,29796=>1000,29798=>1000,29799=>1000,29800=>1000,29801=>1000,29802=>1000,29803=>1000,29805=>1000,29806=>1000,29807=>1000,29808=>1000,29809=>1000,29810=>1000,29811=>1000,29814=>1000,29822=>1000,29824=>1000,29825=>1000,29827=>1000,29829=>1000,29830=>1000,29831=>1000,29832=>1000,29833=>1000,29835=>1000,29839=>1000,29840=>1000,29841=>1000,29842=>1000,29847=>1000,29848=>1000,29849=>1000,29850=>1000,29852=>1000,29854=>1000,29855=>1000,29856=>1000,29857=>1000,29858=>1000,29859=>1000,29861=>1000,29862=>1000,29863=>1000,29864=>1000,29865=>1000,29866=>1000,29867=>1000,29870=>1000,29871=>1000,29872=>1000,29873=>1000,29874=>1000,29877=>1000,29881=>1000,29882=>1000,29883=>1000,29885=>1000,29887=>1000,29896=>1000,29897=>1000,29898=>1000,29900=>1000,29903=>1000,29904=>1000,29907=>1000,29908=>1000,29910=>1000,29912=>1000,29914=>1000,29915=>1000,29916=>1000,29918=>1000,29919=>1000,29920=>1000,29922=>1000,29923=>1000,29924=>1000,29926=>1000,29927=>1000,29928=>1000,29929=>1000,29930=>1000,29931=>1000,29934=>1000,29935=>1000,29936=>1000,29937=>1000,29938=>1000,29940=>1000,29942=>1000,29943=>1000,29944=>1000,29946=>1000,29947=>1000,29948=>1000,29951=>1000,29953=>1000,29955=>1000,29956=>1000,29957=>1000,29958=>1000,29964=>1000,29965=>1000,29966=>1000,29969=>1000,29970=>1000,29971=>1000,29973=>1000,29974=>1000,29975=>1000,29976=>1000,29978=>1000,29980=>1000,29982=>1000,29983=>1000,29984=>1000,29985=>1000,29986=>1000,29987=>1000,29988=>1000,29989=>1000,29990=>1000,29991=>1000,29992=>1000,29993=>1000,29994=>1000,29995=>1000,29996=>1000,29999=>1000,30000=>1000,30001=>1000,30002=>1000,30003=>1000,30006=>1000,30007=>1000,30008=>1000,30009=>1000,30010=>1000,30011=>1000,30012=>1000,30013=>1000,30014=>1000,30015=>1000,30016=>1000,30019=>1000,30020=>1000,30022=>1000,30023=>1000,30024=>1000,30025=>1000,30026=>1000,30027=>1000,30028=>1000,30029=>1000,30030=>1000,30031=>1000,30032=>1000,30033=>1000,30034=>1000,30036=>1000,30039=>1000,30041=>1000,30042=>1000,30043=>1000,30044=>1000,30045=>1000,30046=>1000,30047=>1000,30048=>1000,30049=>1000,30050=>1000,30052=>1000,30053=>1000,30054=>1000,30055=>1000,30057=>1000,30058=>1000,30059=>1000,30060=>1000,30061=>1000,30063=>1000,30064=>1000,30065=>1000,30066=>1000,30067=>1000,30068=>1000,30069=>1000,30070=>1000,30071=>1000,30072=>1000,30073=>1000,30074=>1000,30075=>1000,30076=>1000,30077=>1000,30078=>1000,30079=>1000,30081=>1000,30082=>1000,30085=>1000,30086=>1000,30087=>1000,30089=>1000,30090=>1000,30091=>1000,30092=>1000,30094=>1000,30095=>1000,30096=>1000,30097=>1000,30098=>1000,30099=>1000,30100=>1000,30101=>1000,30105=>1000,30106=>1000,30108=>1000,30109=>1000,30114=>1000,30115=>1000,30116=>1000,30117=>1000,30123=>1000,30128=>1000,30129=>1000,30130=>1000,30131=>1000,30132=>1000,30133=>1000,30135=>1000,30136=>1000,30137=>1000,30138=>1000,30140=>1000,30141=>1000,30142=>1000,30143=>1000,30144=>1000,30145=>1000,30146=>1000,30147=>1000,30148=>1000,30149=>1000,30150=>1000,30151=>1000,30154=>1000,30156=>1000,30157=>1000,30158=>1000,30159=>1000,30162=>1000,30163=>1000,30164=>1000,30165=>1000,30167=>1000,30168=>1000,30169=>1000,30171=>1000,30172=>1000,30173=>1000,30174=>1000,30175=>1000,30176=>1000,30177=>1000,30178=>1000,30179=>1000,30180=>1000,30183=>1000,30185=>1000,30188=>1000,30190=>1000,30191=>1000,30192=>1000,30193=>1000,30194=>1000,30195=>1000,30196=>1000,30201=>1000,30202=>1000,30204=>1000,30206=>1000,30207=>1000,30208=>1000,30209=>1000,30210=>1000,30211=>1000,30212=>1000,30215=>1000,30216=>1000,30217=>1000,30218=>1000,30219=>1000,30220=>1000,30221=>1000,30223=>1000,30226=>1000,30227=>1000,30229=>1000,30230=>1000,30232=>1000,30233=>1000,30235=>1000,30236=>1000,30237=>1000,30238=>1000,30239=>1000,30240=>1000,30241=>1000,30242=>1000,30243=>1000,30244=>1000,30245=>1000,30246=>1000,30247=>1000,30248=>1000,30249=>1000,30253=>1000,30256=>1000,30258=>1000,30259=>1000,30260=>1000,30261=>1000,30264=>1000,30265=>1000,30266=>1000,30267=>1000,30268=>1000,30272=>1000,30273=>1000,30274=>1000,30275=>1000,30276=>1000,30277=>1000,30278=>1000,30279=>1000,30280=>1000,30281=>1000,30282=>1000,30283=>1000,30284=>1000,30286=>1000,30290=>1000,30293=>1000,30294=>1000,30296=>1000,30297=>1000,30300=>1000,30303=>1000,30305=>1000,30306=>1000,30308=>1000,30309=>1000,30311=>1000,30312=>1000,30313=>1000,30314=>1000,30316=>1000,30317=>1000,30318=>1000,30319=>1000,30320=>1000,30321=>1000,30322=>1000,30324=>1000,30326=>1000,30328=>1000,30330=>1000,30331=>1000,30332=>1000,30333=>1000,30334=>1000,30336=>1000,30337=>1000,30338=>1000,30339=>1000,30340=>1000,30341=>1000,30342=>1000,30343=>1000,30344=>1000,30347=>1000,30348=>1000,30349=>1000,30350=>1000,30352=>1000,30355=>1000,30357=>1000,30358=>1000,30361=>1000,30362=>1000,30363=>1000,30364=>1000,30365=>1000,30366=>1000,30367=>1000,30368=>1000,30369=>1000,30370=>1000,30371=>1000,30372=>1000,30373=>1000,30374=>1000,30375=>1000,30376=>1000,30378=>1000,30381=>1000,30382=>1000,30383=>1000,30384=>1000,30388=>1000,30390=>1000,30391=>1000,30392=>1000,30393=>1000,30394=>1000,30397=>1000,30399=>1000,30401=>1000,30402=>1000,30403=>1000,30405=>1000,30406=>1000,30408=>1000,30409=>1000,30410=>1000,30411=>1000,30412=>1000,30413=>1000,30414=>1000,30418=>1000,30420=>1000,30422=>1000,30423=>1000,30425=>1000,30427=>1000,30428=>1000,30430=>1000,30431=>1000,30432=>1000,30433=>1000,30435=>1000,30436=>1000,30437=>1000,30438=>1000,30439=>1000,30440=>1000,30442=>1000,30443=>1000,30444=>1000,30446=>1000,30448=>1000,30449=>1000,30450=>1000,30452=>1000,30454=>1000,30456=>1000,30457=>1000,30459=>1000,30460=>1000,30462=>1000,30464=>1000,30465=>1000,30468=>1000,30470=>1000,30471=>1000,30472=>1000,30473=>1000,30474=>1000,30475=>1000,30476=>1000,30478=>1000,30482=>1000,30484=>1000,30485=>1000,30487=>1000,30489=>1000,30490=>1000,30491=>1000,30492=>1000,30494=>1000,30495=>1000,30496=>1000,30498=>1000,30500=>1000,30501=>1000,30502=>1000,30504=>1000,30505=>1000,30509=>1000,30510=>1000,30511=>1000,30516=>1000,30517=>1000,30518=>1000,30519=>1000,30520=>1000,30521=>1000,30522=>1000,30524=>1000,30525=>1000,30526=>1000,30528=>1000,30530=>1000,30533=>1000,30534=>1000,30535=>1000,30538=>1000,30541=>1000,30542=>1000,30543=>1000,30546=>1000,30550=>1000,30551=>1000,30552=>1000,30554=>1000,30555=>1000,30556=>1000,30558=>1000,30559=>1000,30560=>1000,30561=>1000,30562=>1000,30563=>1000,30564=>1000,30565=>1000,30566=>1000,30567=>1000,30568=>1000,30570=>1000,30571=>1000,30572=>1000,30576=>1000,30578=>1000,30579=>1000,30580=>1000,30585=>1000,30586=>1000,30588=>1000,30589=>1000,30590=>1000,30591=>1000,30592=>1000,30596=>1000,30603=>1000,30604=>1000,30605=>1000,30606=>1000,30609=>1000,30612=>1000,30613=>1000,30614=>1000,30618=>1000,30622=>1000,30623=>1000,30624=>1000,30626=>1000,30628=>1000,30629=>1000,30631=>1000,30633=>1000,30634=>1000,30636=>1000,30637=>1000,30638=>1000,30639=>1000,30640=>1000,30641=>1000,30643=>1000,30645=>1000,30646=>1000,30647=>1000,30649=>1000,30651=>1000,30652=>1000,30653=>1000,30654=>1000,30655=>1000,30659=>1000,30663=>1000,30665=>1000,30669=>1000,30673=>1000,30674=>1000,30677=>1000,30679=>1000,30681=>1000,30682=>1000,30683=>1000,30684=>1000,30686=>1000,30687=>1000,30688=>1000,30690=>1000,30691=>1000,30692=>1000,30693=>1000,30694=>1000,30695=>1000,30697=>1000,30698=>1000,30700=>1000,30701=>1000,30702=>1000,30703=>1000,30704=>1000,30705=>1000,30707=>1000,30708=>1000,30712=>1000,30715=>1000,30716=>1000,30722=>1000,30725=>1000,30726=>1000,30729=>1000,30732=>1000,30733=>1000,30734=>1000,30737=>1000,30738=>1000,30740=>1000,30741=>1000,30745=>1000,30749=>1000,30752=>1000,30753=>1000,30754=>1000,30755=>1000,30757=>1000,30758=>1000,30759=>1000,30764=>1000,30765=>1000,30766=>1000,30768=>1000,30770=>1000,30772=>1000,30773=>1000,30775=>1000,30778=>1000,30783=>1000,30787=>1000,30788=>1000,30789=>1000,30791=>1000,30792=>1000,30796=>1000,30798=>1000,30799=>1000,30801=>1000,30802=>1000,30812=>1000,30813=>1000,30814=>1000,30816=>1000,30817=>1000,30819=>1000,30820=>1000,30824=>1000,30826=>1000,30827=>1000,30828=>1000,30830=>1000,30831=>1000,30834=>1000,30836=>1000,30842=>1000,30844=>1000,30846=>1000,30849=>1000,30854=>1000,30855=>1000,30858=>1000,30860=>1000,30861=>1000,30862=>1000,30863=>1000,30865=>1000,30867=>1000,30868=>1000,30869=>1000,30871=>1000,30872=>1000,30874=>1000,30877=>1000,30878=>1000,30879=>1000,30881=>1000,30883=>1000,30884=>1000,30887=>1000,30888=>1000,30889=>1000,30890=>1000,30892=>1000,30893=>1000,30895=>1000,30896=>1000,30897=>1000,30898=>1000,30899=>1000,30901=>1000,30906=>1000,30907=>1000,30908=>1000,30909=>1000,30910=>1000,30911=>1000,30913=>1000,30917=>1000,30918=>1000,30919=>1000,30920=>1000,30921=>1000,30922=>1000,30923=>1000,30924=>1000,30926=>1000,30928=>1000,30929=>1000,30930=>1000,30931=>1000,30932=>1000,30933=>1000,30934=>1000,30938=>1000,30939=>1000,30943=>1000,30944=>1000,30945=>1000,30948=>1000,30950=>1000,30951=>1000,30952=>1000,30954=>1000,30956=>1000,30959=>1000,30962=>1000,30963=>1000,30964=>1000,30966=>1000,30967=>1000,30969=>1000,30970=>1000,30971=>1000,30973=>1000,30974=>1000,30975=>1000,30976=>1000,30977=>1000,30982=>1000,30983=>1000,30988=>1000,30990=>1000,30992=>1000,30993=>1000,30994=>1000,31001=>1000,31002=>1000,31003=>1000,31004=>1000,31006=>1000,31007=>1000,31008=>1000,31013=>1000,31014=>1000,31015=>1000,31016=>1000,31017=>1000,31018=>1000,31019=>1000,31020=>1000,31021=>1000,31022=>1000,31024=>1000,31025=>1000,31028=>1000,31029=>1000,31034=>1000,31035=>1000,31036=>1000,31037=>1000,31038=>1000,31039=>1000,31040=>1000,31041=>1000,31042=>1000,31044=>1000,31045=>1000,31046=>1000,31047=>1000,31048=>1000,31049=>1000,31050=>1000,31051=>1000,31055=>1000,31056=>1000,31057=>1000,31059=>1000,31060=>1000,31061=>1000,31062=>1000,31063=>1000,31064=>1000,31066=>1000,31067=>1000,31068=>1000,31069=>1000,31070=>1000,31071=>1000,31072=>1000,31074=>1000,31077=>1000,31079=>1000,31080=>1000,31081=>1000,31083=>1000,31085=>1000,31090=>1000,31095=>1000,31097=>1000,31098=>1000,31099=>1000,31100=>1000,31102=>1000,31103=>1000,31104=>1000,31105=>1000,31108=>1000,31109=>1000,31114=>1000,31115=>1000,31116=>1000,31117=>1000,31118=>1000,31119=>1000,31121=>1000,31123=>1000,31124=>1000,31125=>1000,31126=>1000,31128=>1000,31131=>1000,31132=>1000,31133=>1000,31137=>1000,31142=>1000,31143=>1000,31144=>1000,31145=>1000,31146=>1000,31147=>1000,31150=>1000,31151=>1000,31152=>1000,31153=>1000,31155=>1000,31156=>1000,31160=>1000,31161=>1000,31162=>1000,31163=>1000,31165=>1000,31166=>1000,31167=>1000,31168=>1000,31169=>1000,31170=>1000,31172=>1000,31175=>1000,31176=>1000,31177=>1000,31178=>1000,31179=>1000,31180=>1000,31181=>1000,31183=>1000,31185=>1000,31186=>1000,31188=>1000,31189=>1000,31190=>1000,31192=>1000,31194=>1000,31197=>1000,31198=>1000,31199=>1000,31200=>1000,31201=>1000,31202=>1000,31203=>1000,31204=>1000,31205=>1000,31206=>1000,31207=>1000,31209=>1000,31210=>1000,31211=>1000,31212=>1000,31213=>1000,31216=>1000,31217=>1000,31224=>1000,31227=>1000,31228=>1000,31232=>1000,31234=>1000,31235=>1000,31237=>1000,31239=>1000,31240=>1000,31241=>1000,31242=>1000,31243=>1000,31244=>1000,31245=>1000,31246=>1000,31249=>1000,31252=>1000,31253=>1000,31255=>1000,31256=>1000,31257=>1000,31258=>1000,31259=>1000,31260=>1000,31262=>1000,31263=>1000,31264=>1000,31265=>1000,31271=>1000,31275=>1000,31277=>1000,31278=>1000,31279=>1000,31280=>1000,31281=>1000,31282=>1000,31284=>1000,31285=>1000,31287=>1000,31288=>1000,31289=>1000,31290=>1000,31291=>1000,31292=>1000,31293=>1000,31294=>1000,31295=>1000,31296=>1000,31298=>1000,31299=>1000,31300=>1000,31301=>1000,31302=>1000,31303=>1000,31304=>1000,31305=>1000,31308=>1000,31309=>1000,31310=>1000,31311=>1000,31312=>1000,31317=>1000,31318=>1000,31319=>1000,31321=>1000,31324=>1000,31325=>1000,31327=>1000,31328=>1000,31329=>1000,31330=>1000,31331=>1000,31333=>1000,31335=>1000,31337=>1000,31338=>1000,31339=>1000,31341=>1000,31344=>1000,31348=>1000,31349=>1000,31350=>1000,31352=>1000,31353=>1000,31354=>1000,31357=>1000,31358=>1000,31359=>1000,31360=>1000,31361=>1000,31362=>1000,31363=>1000,31364=>1000,31365=>1000,31366=>1000,31368=>1000,31370=>1000,31371=>1000,31376=>1000,31377=>1000,31378=>1000,31379=>1000,31380=>1000,31381=>1000,31382=>1000,31383=>1000,31384=>1000,31390=>1000,31391=>1000,31392=>1000,31395=>1000,31401=>1000,31402=>1000,31404=>1000,31406=>1000,31407=>1000,31408=>1000,31411=>1000,31413=>1000,31414=>1000,31417=>1000,31418=>1000,31419=>1000,31420=>1000,31421=>1000,31422=>1000,31423=>1000,31427=>1000,31428=>1000,31429=>1000,31430=>1000,31431=>1000,31432=>1000,31433=>1000,31434=>1000,31435=>1000,31436=>1000,31437=>1000,31438=>1000,31439=>1000,31441=>1000,31442=>1000,31443=>1000,31445=>1000,31449=>1000,31450=>1000,31451=>1000,31452=>1000,31453=>1000,31455=>1000,31456=>1000,31457=>1000,31458=>1000,31459=>1000,31461=>1000,31462=>1000,31463=>1000,31464=>1000,31465=>1000,31466=>1000,31467=>1000,31468=>1000,31469=>1000,31471=>1000,31472=>1000,31473=>1000,31476=>1000,31478=>1000,31480=>1000,31481=>1000,31482=>1000,31483=>1000,31485=>1000,31486=>1000,31487=>1000,31490=>1000,31492=>1000,31494=>1000,31495=>1000,31496=>1000,31498=>1000,31499=>1000,31503=>1000,31505=>1000,31506=>1000,31508=>1000,31512=>1000,31513=>1000,31515=>1000,31518=>1000,31519=>1000,31520=>1000,31523=>1000,31525=>1000,31526=>1000,31527=>1000,31528=>1000,31529=>1000,31530=>1000,31531=>1000,31532=>1000,31533=>1000,31534=>1000,31535=>1000,31536=>1000,31537=>1000,31539=>1000,31540=>1000,31541=>1000,31542=>1000,31545=>1000,31547=>1000,31549=>1000,31551=>1000,31552=>1000,31553=>1000,31557=>1000,31558=>1000,31559=>1000,31560=>1000,31561=>1000,31563=>1000,31564=>1000,31565=>1000,31566=>1000,31567=>1000,31568=>1000,31569=>1000,31570=>1000,31571=>1000,31572=>1000,31573=>1000,31574=>1000,31581=>1000,31584=>1000,31588=>1000,31589=>1000,31590=>1000,31591=>1000,31593=>1000,31594=>1000,31596=>1000,31597=>1000,31598=>1000,31599=>1000,31600=>1000,31601=>1000,31602=>1000,31603=>1000,31604=>1000,31605=>1000,31607=>1000,31609=>1000,31610=>1000,31615=>1000,31620=>1000,31622=>1000,31623=>1000,31625=>1000,31627=>1000,31629=>1000,31630=>1000,31631=>1000,31632=>1000,31633=>1000,31634=>1000,31636=>1000,31637=>1000,31638=>1000,31639=>1000,31640=>1000,31641=>1000,31642=>1000,31643=>1000,31644=>1000,31645=>1000,31646=>1000,31647=>1000,31648=>1000,31649=>1000,31653=>1000,31658=>1000,31660=>1000,31661=>1000,31663=>1000,31664=>1000,31665=>1000,31666=>1000,31668=>1000,31669=>1000,31670=>1000,31672=>1000,31674=>1000,31675=>1000,31676=>1000,31677=>1000,31680=>1000,31681=>1000,31682=>1000,31684=>1000,31685=>1000,31686=>1000,31687=>1000,31688=>1000,31689=>1000,31690=>1000,31691=>1000,31692=>1000,31695=>1000,31700=>1000,31702=>1000,31703=>1000,31705=>1000,31706=>1000,31707=>1000,31709=>1000,31712=>1000,31716=>1000,31717=>1000,31718=>1000,31720=>1000,31721=>1000,31722=>1000,31725=>1000,31728=>1000,31730=>1000,31731=>1000,31732=>1000,31733=>1000,31734=>1000,31735=>1000,31736=>1000,31737=>1000,31738=>1000,31740=>1000,31742=>1000,31744=>1000,31745=>1000,31746=>1000,31747=>1000,31748=>1000,31750=>1000,31751=>1000,31753=>1000,31755=>1000,31756=>1000,31757=>1000,31758=>1000,31759=>1000,31761=>1000,31762=>1000,31763=>1000,31764=>1000,31767=>1000,31769=>1000,31771=>1000,31774=>1000,31775=>1000,31776=>1000,31777=>1000,31779=>1000,31781=>1000,31782=>1000,31783=>1000,31784=>1000,31786=>1000,31787=>1000,31788=>1000,31791=>1000,31793=>1000,31795=>1000,31796=>1000,31798=>1000,31799=>1000,31800=>1000,31801=>1000,31802=>1000,31805=>1000,31806=>1000,31807=>1000,31808=>1000,31810=>1000,31811=>1000,31813=>1000,31814=>1000,31818=>1000,31820=>1000,31821=>1000,31823=>1000,31824=>1000,31825=>1000,31826=>1000,31827=>1000,31828=>1000,31829=>1000,31830=>1000,31831=>1000,31832=>1000,31833=>1000,31834=>1000,31835=>1000,31836=>1000,31837=>1000,31838=>1000,31839=>1000,31840=>1000,31841=>1000,31843=>1000,31844=>1000,31845=>1000,31847=>1000,31849=>1000,31852=>1000,31853=>1000,31854=>1000,31855=>1000,31856=>1000,31858=>1000,31859=>1000,31861=>1000,31865=>1000,31867=>1000,31868=>1000,31869=>1000,31870=>1000,31873=>1000,31874=>1000,31875=>1000,31878=>1000,31879=>1000,31881=>1000,31883=>1000,31885=>1000,31887=>1000,31888=>1000,31890=>1000,31892=>1000,31893=>1000,31895=>1000,31896=>1000,31899=>1000,31902=>1000,31903=>1000,31904=>1000,31905=>1000,31906=>1000,31908=>1000,31909=>1000,31910=>1000,31911=>1000,31912=>1000,31915=>1000,31917=>1000,31918=>1000,31920=>1000,31921=>1000,31922=>1000,31923=>1000,31926=>1000,31927=>1000,31929=>1000,31930=>1000,31931=>1000,31932=>1000,31933=>1000,31934=>1000,31935=>1000,31936=>1000,31938=>1000,31940=>1000,31941=>1000,31943=>1000,31944=>1000,31945=>1000,31946=>1000,31949=>1000,31950=>1000,31951=>1000,31954=>1000,31955=>1000,31956=>1000,31957=>1000,31958=>1000,31959=>1000,31960=>1000,31961=>1000,31962=>1000,31964=>1000,31965=>1000,31966=>1000,31967=>1000,31968=>1000,31970=>1000,31974=>1000,31975=>1000,31977=>1000,31979=>1000,31983=>1000,31986=>1000,31988=>1000,31989=>1000,31990=>1000,31992=>1000,31993=>1000,31994=>1000,31995=>1000,31998=>1000,32000=>1000,32002=>1000,32003=>1000,32004=>1000,32005=>1000,32006=>1000,32007=>1000,32008=>1000,32009=>1000,32010=>1000,32011=>1000,32013=>1000,32015=>1000,32016=>1000,32017=>1000,32018=>1000,32019=>1000,32020=>1000,32021=>1000,32022=>1000,32023=>1000,32024=>1000,32025=>1000,32026=>1000,32027=>1000,32028=>1000,32029=>1000,32030=>1000,32032=>1000,32033=>1000,32034=>1000,32035=>1000,32038=>1000,32042=>1000,32043=>1000,32044=>1000,32045=>1000,32046=>1000,32047=>1000,32048=>1000,32049=>1000,32050=>1000,32051=>1000,32053=>1000,32057=>1000,32058=>1000,32060=>1000,32061=>1000,32062=>1000,32063=>1000,32064=>1000,32065=>1000,32066=>1000,32067=>1000,32068=>1000,32069=>1000,32070=>1000,32071=>1000,32072=>1000,32075=>1000,32076=>1000,32077=>1000,32078=>1000,32079=>1000,32080=>1000,32081=>1000,32083=>1000,32085=>1000,32086=>1000,32087=>1000,32089=>1000,32090=>1000,32091=>1000,32092=>1000,32093=>1000,32094=>1000,32097=>1000,32098=>1000,32099=>1000,32101=>1000,32102=>1000,32103=>1000,32104=>1000,32106=>1000,32110=>1000,32112=>1000,32113=>1000,32114=>1000,32115=>1000,32117=>1000,32118=>1000,32120=>1000,32121=>1000,32122=>1000,32123=>1000,32125=>1000,32127=>1000,32129=>1000,32130=>1000,32131=>1000,32133=>1000,32134=>1000,32136=>1000,32137=>1000,32139=>1000,32140=>1000,32141=>1000,32143=>1000,32145=>1000,32147=>1000,32150=>1000,32151=>1000,32153=>1000,32154=>1000,32155=>1000,32156=>1000,32157=>1000,32158=>1000,32159=>1000,32160=>1000,32162=>1000,32163=>1000,32166=>1000,32167=>1000,32170=>1000,32171=>1000,32172=>1000,32173=>1000,32174=>1000,32175=>1000,32176=>1000,32177=>1000,32178=>1000,32179=>1000,32180=>1000,32181=>1000,32182=>1000,32183=>1000,32184=>1000,32185=>1000,32186=>1000,32187=>1000,32189=>1000,32190=>1000,32191=>1000,32192=>1000,32194=>1000,32195=>1000,32196=>1000,32197=>1000,32198=>1000,32199=>1000,32202=>1000,32203=>1000,32204=>1000,32205=>1000,32206=>1000,32207=>1000,32208=>1000,32209=>1000,32210=>1000,32213=>1000,32214=>1000,32215=>1000,32216=>1000,32217=>1000,32218=>1000,32220=>1000,32221=>1000,32222=>1000,32224=>1000,32225=>1000,32226=>1000,32227=>1000,32228=>1000,32229=>1000,32230=>1000,32232=>1000,32233=>1000,32234=>1000,32235=>1000,32236=>1000,32237=>1000,32239=>1000,32241=>1000,32242=>1000,32244=>1000,32245=>1000,32246=>1000,32249=>1000,32250=>1000,32251=>1000,32256=>1000,32257=>1000,32260=>1000,32261=>1000,32264=>1000,32265=>1000,32266=>1000,32267=>1000,32272=>1000,32273=>1000,32274=>1000,32277=>1000,32279=>1000,32283=>1000,32284=>1000,32285=>1000,32286=>1000,32287=>1000,32288=>1000,32289=>1000,32290=>1000,32291=>1000,32294=>1000,32295=>1000,32296=>1000,32299=>1000,32300=>1000,32301=>1000,32302=>1000,32303=>1000,32305=>1000,32306=>1000,32307=>1000,32309=>1000,32310=>1000,32311=>1000,32313=>1000,32314=>1000,32315=>1000,32317=>1000,32318=>1000,32319=>1000,32321=>1000,32323=>1000,32324=>1000,32325=>1000,32326=>1000,32327=>1000,32328=>1000,32330=>1000,32331=>1000,32333=>1000,32334=>1000,32336=>1000,32338=>1000,32340=>1000,32341=>1000,32342=>1000,32344=>1000,32345=>1000,32346=>1000,32349=>1000,32350=>1000,32351=>1000,32353=>1000,32354=>1000,32357=>1000,32358=>1000,32359=>1000,32361=>1000,32362=>1000,32363=>1000,32365=>1000,32366=>1000,32367=>1000,32368=>1000,32371=>1000,32373=>1000,32376=>1000,32377=>1000,32379=>1000,32380=>1000,32381=>1000,32382=>1000,32383=>1000,32385=>1000,32386=>1000,32387=>1000,32390=>1000,32391=>1000,32392=>1000,32393=>1000,32394=>1000,32396=>1000,32397=>1000,32398=>1000,32399=>1000,32400=>1000,32401=>1000,32402=>1000,32403=>1000,32404=>1000,32405=>1000,32406=>1000,32408=>1000,32410=>1000,32411=>1000,32412=>1000,32413=>1000,32414=>1000,32415=>1000,32566=>1000,32568=>1000,32570=>1000,32571=>1000,32572=>1000,32573=>1000,32574=>1000,32575=>1000,32579=>1000,32580=>1000,32581=>1000,32583=>1000,32588=>1000,32589=>1000,32590=>1000,32591=>1000,32592=>1000,32593=>1000,32594=>1000,32595=>1000,32596=>1000,32597=>1000,32600=>1000,32603=>1000,32604=>1000,32605=>1000,32607=>1000,32608=>1000,32609=>1000,32611=>1000,32612=>1000,32613=>1000,32614=>1000,32615=>1000,32616=>1000,32617=>1000,32618=>1000,32619=>1000,32621=>1000,32622=>1000,32624=>1000,32625=>1000,32626=>1000,32629=>1000,32631=>1000,32632=>1000,32633=>1000,32637=>1000,32638=>1000,32639=>1000,32640=>1000,32642=>1000,32643=>1000,32645=>1000,32646=>1000,32647=>1000,32648=>1000,32650=>1000,32651=>1000,32652=>1000,32653=>1000,32654=>1000,32655=>1000,32656=>1000,32657=>1000,32660=>1000,32662=>1000,32663=>1000,32666=>1000,32668=>1000,32669=>1000,32670=>1000,32673=>1000,32674=>1000,32675=>1000,32676=>1000,32678=>1000,32680=>1000,32681=>1000,32682=>1000,32685=>1000,32686=>1000,32687=>1000,32690=>1000,32692=>1000,32694=>1000,32696=>1000,32697=>1000,32700=>1000,32701=>1000,32703=>1000,32704=>1000,32705=>1000,32707=>1000,32709=>1000,32710=>1000,32712=>1000,32714=>1000,32716=>1000,32718=>1000,32719=>1000,32722=>1000,32724=>1000,32725=>1000,32731=>1000,32735=>1000,32736=>1000,32737=>1000,32739=>1000,32741=>1000,32742=>1000,32744=>1000,32745=>1000,32747=>1000,32748=>1000,32750=>1000,32751=>1000,32752=>1000,32754=>1000,32755=>1000,32761=>1000,32762=>1000,32763=>1000,32764=>1000,32765=>1000,32766=>1000,32767=>1000,32768=>1000,32769=>1000,32770=>1000,32771=>1000,32772=>1000,32773=>1000,32774=>1000,32775=>1000,32776=>1000,32778=>1000,32779=>1000,32780=>1000,32781=>1000,32782=>1000,32783=>1000,32784=>1000,32785=>1000,32786=>1000,32787=>1000,32788=>1000,32789=>1000,32790=>1000,32791=>1000,32792=>1000,32793=>1000,32796=>1000,32797=>1000,32798=>1000,32799=>1000,32800=>1000,32801=>1000,32804=>1000,32806=>1000,32808=>1000,32812=>1000,32814=>1000,32816=>1000,32819=>1000,32820=>1000,32821=>1000,32822=>1000,32823=>1000,32825=>1000,32826=>1000,32827=>1000,32828=>1000,32829=>1000,32830=>1000,32831=>1000,32832=>1000,32835=>1000,32836=>1000,32838=>1000,32842=>1000,32850=>1000,32854=>1000,32856=>1000,32858=>1000,32862=>1000,32863=>1000,32864=>1000,32865=>1000,32866=>1000,32868=>1000,32870=>1000,32872=>1000,32877=>1000,32879=>1000,32880=>1000,32881=>1000,32882=>1000,32883=>1000,32884=>1000,32885=>1000,32886=>1000,32887=>1000,32889=>1000,32891=>1000,32893=>1000,32894=>1000,32895=>1000,32896=>1000,32897=>1000,32900=>1000,32901=>1000,32902=>1000,32903=>1000,32904=>1000,32905=>1000,32907=>1000,32908=>1000,32910=>1000,32915=>1000,32918=>1000,32920=>1000,32921=>1000,32922=>1000,32923=>1000,32924=>1000,32925=>1000,32926=>1000,32929=>1000,32930=>1000,32932=>1000,32933=>1000,32934=>1000,32935=>1000,32937=>1000,32938=>1000,32939=>1000,32940=>1000,32941=>1000,32943=>1000,32945=>1000,32946=>1000,32948=>1000,32952=>1000,32953=>1000,32954=>1000,32963=>1000,32964=>1000,32965=>1000,32966=>1000,32968=>1000,32970=>1000,32972=>1000,32973=>1000,32974=>1000,32975=>1000,32978=>1000,32980=>1000,32981=>1000,32982=>1000,32983=>1000,32984=>1000,32985=>1000,32986=>1000,32987=>1000,32989=>1000,32990=>1000,32992=>1000,32993=>1000,32996=>1000,32997=>1000,32998=>1000,33005=>1000,33006=>1000,33007=>1000,33008=>1000,33009=>1000,33010=>1000,33011=>1000,33012=>1000,33013=>1000,33014=>1000,33015=>1000,33016=>1000,33017=>1000,33018=>1000,33019=>1000,33020=>1000,33021=>1000,33022=>1000,33025=>1000,33026=>1000,33027=>1000,33029=>1000,33030=>1000,33031=>1000,33032=>1000,33033=>1000,33034=>1000,33035=>1000,33037=>1000,33046=>1000,33047=>1000,33048=>1000,33050=>1000,33051=>1000,33052=>1000,33054=>1000,33056=>1000,33059=>1000,33060=>1000,33063=>1000,33065=>1000,33067=>1000,33068=>1000,33071=>1000,33072=>1000,33073=>1000,33075=>1000,33077=>1000,33081=>1000,33082=>1000,33084=>1000,33085=>1000,33086=>1000,33089=>1000,33093=>1000,33094=>1000,33095=>1000,33098=>1000,33099=>1000,33100=>1000,33102=>1000,33104=>1000,33105=>1000,33106=>1000,33107=>1000,33108=>1000,33109=>1000,33111=>1000,33119=>1000,33120=>1000,33121=>1000,33125=>1000,33126=>1000,33127=>1000,33128=>1000,33129=>1000,33131=>1000,33133=>1000,33134=>1000,33135=>1000,33136=>1000,33137=>1000,33139=>1000,33140=>1000,33143=>1000,33144=>1000,33145=>1000,33146=>1000,33151=>1000,33152=>1000,33153=>1000,33154=>1000,33155=>1000,33156=>1000,33157=>1000,33158=>1000,33160=>1000,33162=>1000,33163=>1000,33166=>1000,33167=>1000,33168=>1000,33171=>1000,33173=>1000,33174=>1000,33176=>1000,33178=>1000,33179=>1000,33180=>1000,33181=>1000,33182=>1000,33184=>1000,33186=>1000,33187=>1000,33188=>1000,33192=>1000,33193=>1000,33198=>1000,33200=>1000,33202=>1000,33203=>1000,33204=>1000,33205=>1000,33208=>1000,33210=>1000,33211=>1000,33213=>1000,33214=>1000,33215=>1000,33216=>1000,33217=>1000,33218=>1000,33219=>1000,33221=>1000,33222=>1000,33224=>1000,33225=>1000,33226=>1000,33227=>1000,33229=>1000,33230=>1000,33231=>1000,33233=>1000,33235=>1000,33237=>1000,33238=>1000,33239=>1000,33240=>1000,33241=>1000,33242=>1000,33243=>1000,33245=>1000,33246=>1000,33247=>1000,33248=>1000,33249=>1000,33251=>1000,33252=>1000,33253=>1000,33255=>1000,33256=>1000,33258=>1000,33259=>1000,33260=>1000,33261=>1000,33263=>1000,33264=>1000,33265=>1000,33266=>1000,33267=>1000,33268=>1000,33269=>1000,33270=>1000,33272=>1000,33273=>1000,33274=>1000,33275=>1000,33276=>1000,33277=>1000,33278=>1000,33279=>1000,33280=>1000,33281=>1000,33282=>1000,33283=>1000,33284=>1000,33285=>1000,33287=>1000,33288=>1000,33289=>1000,33290=>1000,33291=>1000,33292=>1000,33293=>1000,33294=>1000,33295=>1000,33296=>1000,33298=>1000,33299=>1000,33300=>1000,33302=>1000,33303=>1000,33304=>1000,33305=>1000,33306=>1000,33307=>1000,33308=>1000,33309=>1000,33310=>1000,33311=>1000,33313=>1000,33314=>1000,33320=>1000,33321=>1000,33322=>1000,33323=>1000,33324=>1000,33326=>1000,33330=>1000,33331=>1000,33332=>1000,33333=>1000,33334=>1000,33335=>1000,33336=>1000,33337=>1000,33338=>1000,33340=>1000,33344=>1000,33347=>1000,33348=>1000,33349=>1000,33350=>1000,33351=>1000,33353=>1000,33355=>1000,33358=>1000,33359=>1000,33361=>1000,33366=>1000,33367=>1000,33368=>1000,33369=>1000,33370=>1000,33372=>1000,33373=>1000,33375=>1000,33376=>1000,33378=>1000,33379=>1000,33380=>1000,33382=>1000,33383=>1000,33384=>1000,33386=>1000,33387=>1000,33389=>1000,33390=>1000,33391=>1000,33393=>1000,33394=>1000,33396=>1000,33398=>1000,33399=>1000,33400=>1000,33401=>1000,33403=>1000,33405=>1000,33406=>1000,33407=>1000,33408=>1000,33409=>1000,33411=>1000,33412=>1000,33415=>1000,33417=>1000,33418=>1000,33419=>1000,33421=>1000,33422=>1000,33425=>1000,33426=>1000,33427=>1000,33428=>1000,33430=>1000,33432=>1000,33433=>1000,33434=>1000,33435=>1000,33437=>1000,33439=>1000,33440=>1000,33441=>1000,33443=>1000,33444=>1000,33445=>1000,33446=>1000,33447=>1000,33448=>1000,33449=>1000,33450=>1000,33451=>1000,33452=>1000,33453=>1000,33454=>1000,33455=>1000,33456=>1000,33457=>1000,33458=>1000,33459=>1000,33460=>1000,33463=>1000,33464=>1000,33465=>1000,33466=>1000,33467=>1000,33468=>1000,33469=>1000,33470=>1000,33471=>1000,33477=>1000,33478=>1000,33488=>1000,33489=>1000,33490=>1000,33491=>1000,33492=>1000,33493=>1000,33495=>1000,33497=>1000,33498=>1000,33499=>1000,33500=>1000,33502=>1000,33503=>1000,33504=>1000,33505=>1000,33506=>1000,33507=>1000,33508=>1000,33509=>1000,33510=>1000,33511=>1000,33512=>1000,33514=>1000,33515=>1000,33517=>1000,33519=>1000,33521=>1000,33523=>1000,33524=>1000,33526=>1000,33527=>1000,33529=>1000,33530=>1000,33531=>1000,33533=>1000,33534=>1000,33536=>1000,33537=>1000,33538=>1000,33539=>1000,33540=>1000,33541=>1000,33542=>1000,33543=>1000,33544=>1000,33545=>1000,33546=>1000,33547=>1000,33548=>1000,33550=>1000,33558=>1000,33559=>1000,33560=>1000,33563=>1000,33564=>1000,33565=>1000,33566=>1000,33567=>1000,33569=>1000,33570=>1000,33571=>1000,33576=>1000,33579=>1000,33580=>1000,33581=>1000,33582=>1000,33583=>1000,33584=>1000,33585=>1000,33586=>1000,33587=>1000,33588=>1000,33589=>1000,33590=>1000,33591=>1000,33592=>1000,33593=>1000,33594=>1000,33596=>1000,33597=>1000,33600=>1000,33602=>1000,33603=>1000,33604=>1000,33605=>1000,33606=>1000,33607=>1000,33609=>1000,33610=>1000,33613=>1000,33614=>1000,33615=>1000,33616=>1000,33617=>1000,33618=>1000,33619=>1000,33620=>1000,33621=>1000,33622=>1000,33623=>1000,33624=>1000,33626=>1000,33634=>1000,33635=>1000,33648=>1000,33651=>1000,33653=>1000,33655=>1000,33656=>1000,33659=>1000,33660=>1000,33661=>1000,33663=>1000,33664=>1000,33666=>1000,33668=>1000,33669=>1000,33670=>1000,33671=>1000,33673=>1000,33674=>1000,33677=>1000,33678=>1000,33682=>1000,33683=>1000,33684=>1000,33685=>1000,33686=>1000,33688=>1000,33689=>1000,33690=>1000,33691=>1000,33692=>1000,33693=>1000,33694=>1000,33695=>1000,33696=>1000,33698=>1000,33702=>1000,33703=>1000,33704=>1000,33705=>1000,33706=>1000,33707=>1000,33708=>1000,33709=>1000,33713=>1000,33717=>1000,33725=>1000,33726=>1000,33727=>1000,33728=>1000,33729=>1000,33733=>1000,33735=>1000,33737=>1000,33738=>1000,33740=>1000,33742=>1000,33743=>1000,33744=>1000,33745=>1000,33747=>1000,33748=>1000,33750=>1000,33752=>1000,33756=>1000,33757=>1000,33759=>1000,33760=>1000,33761=>1000,33765=>1000,33768=>1000,33769=>1000,33770=>1000,33771=>1000,33775=>1000,33776=>1000,33777=>1000,33778=>1000,33780=>1000,33782=>1000,33783=>1000,33784=>1000,33785=>1000,33787=>1000,33788=>1000,33789=>1000,33793=>1000,33795=>1000,33796=>1000,33798=>1000,33799=>1000,33802=>1000,33803=>1000,33804=>1000,33805=>1000,33806=>1000,33807=>1000,33809=>1000,33811=>1000,33813=>1000,33815=>1000,33817=>1000,33824=>1000,33826=>1000,33833=>1000,33834=>1000,33836=>1000,33839=>1000,33841=>1000,33845=>1000,33848=>1000,33849=>1000,33852=>1000,33853=>1000,33861=>1000,33862=>1000,33863=>1000,33864=>1000,33865=>1000,33866=>1000,33869=>1000,33870=>1000,33871=>1000,33873=>1000,33874=>1000,33878=>1000,33879=>1000,33880=>1000,33881=>1000,33882=>1000,33883=>1000,33884=>1000,33887=>1000,33888=>1000,33889=>1000,33890=>1000,33891=>1000,33892=>1000,33893=>1000,33894=>1000,33895=>1000,33897=>1000,33898=>1000,33899=>1000,33900=>1000,33901=>1000,33902=>1000,33903=>1000,33904=>1000,33905=>1000,33907=>1000,33908=>1000,33909=>1000,33910=>1000,33911=>1000,33912=>1000,33913=>1000,33914=>1000,33916=>1000,33917=>1000,33921=>1000,33922=>1000,33924=>1000,33925=>1000,33931=>1000,33936=>1000,33938=>1000,33939=>1000,33940=>1000,33941=>1000,33943=>1000,33945=>1000,33948=>1000,33950=>1000,33951=>1000,33953=>1000,33958=>1000,33960=>1000,33961=>1000,33962=>1000,33965=>1000,33967=>1000,33969=>1000,33970=>1000,33972=>1000,33976=>1000,33977=>1000,33978=>1000,33979=>1000,33980=>1000,33981=>1000,33982=>1000,33983=>1000,33984=>1000,33985=>1000,33986=>1000,33988=>1000,33990=>1000,33991=>1000,33992=>1000,33993=>1000,33994=>1000,33995=>1000,33996=>1000,33997=>1000,33998=>1000,33999=>1000,34000=>1000,34001=>1000,34003=>1000,34006=>1000,34009=>1000,34010=>1000,34012=>1000,34023=>1000,34026=>1000,34028=>1000,34030=>1000,34031=>1000,34032=>1000,34033=>1000,34034=>1000,34036=>1000,34039=>1000,34042=>1000,34043=>1000,34044=>1000,34045=>1000,34047=>1000,34048=>1000,34050=>1000,34051=>1000,34054=>1000,34055=>1000,34060=>1000,34062=>1000,34064=>1000,34065=>1000,34067=>1000,34068=>1000,34069=>1000,34071=>1000,34072=>1000,34074=>1000,34075=>1000,34076=>1000,34078=>1000,34079=>1000,34081=>1000,34082=>1000,34083=>1000,34084=>1000,34085=>1000,34086=>1000,34087=>1000,34090=>1000,34091=>1000,34092=>1000,34093=>1000,34095=>1000,34098=>1000,34099=>1000,34100=>1000,34101=>1000,34102=>1000,34109=>1000,34110=>1000,34111=>1000,34112=>1000,34113=>1000,34115=>1000,34118=>1000,34120=>1000,34121=>1000,34122=>1000,34123=>1000,34126=>1000,34127=>1000,34128=>1000,34129=>1000,34130=>1000,34131=>1000,34133=>1000,34134=>1000,34135=>1000,34136=>1000,34137=>1000,34138=>1000,34140=>1000,34141=>1000,34142=>1000,34143=>1000,34144=>1000,34145=>1000,34146=>1000,34147=>1000,34148=>1000,34152=>1000,34153=>1000,34154=>1000,34155=>1000,34157=>1000,34159=>1000,34167=>1000,34169=>1000,34170=>1000,34171=>1000,34173=>1000,34174=>1000,34175=>1000,34176=>1000,34177=>1000,34180=>1000,34181=>1000,34182=>1000,34183=>1000,34184=>1000,34185=>1000,34186=>1000,34187=>1000,34188=>1000,34191=>1000,34192=>1000,34193=>1000,34195=>1000,34196=>1000,34199=>1000,34200=>1000,34201=>1000,34203=>1000,34204=>1000,34205=>1000,34207=>1000,34208=>1000,34210=>1000,34212=>1000,34213=>1000,34214=>1000,34215=>1000,34216=>1000,34217=>1000,34218=>1000,34219=>1000,34220=>1000,34221=>1000,34222=>1000,34223=>1000,34224=>1000,34228=>1000,34230=>1000,34231=>1000,34232=>1000,34233=>1000,34234=>1000,34236=>1000,34237=>1000,34238=>1000,34239=>1000,34241=>1000,34242=>1000,34247=>1000,34249=>1000,34250=>1000,34251=>1000,34253=>1000,34254=>1000,34255=>1000,34256=>1000,34261=>1000,34264=>1000,34265=>1000,34266=>1000,34268=>1000,34269=>1000,34271=>1000,34272=>1000,34273=>1000,34276=>1000,34277=>1000,34278=>1000,34280=>1000,34281=>1000,34282=>1000,34285=>1000,34291=>1000,34292=>1000,34294=>1000,34295=>1000,34297=>1000,34298=>1000,34299=>1000,34300=>1000,34302=>1000,34303=>1000,34304=>1000,34306=>1000,34308=>1000,34309=>1000,34310=>1000,34311=>1000,34314=>1000,34315=>1000,34317=>1000,34318=>1000,34320=>1000,34321=>1000,34322=>1000,34323=>1000,34326=>1000,34327=>1000,34328=>1000,34329=>1000,34330=>1000,34331=>1000,34334=>1000,34337=>1000,34338=>1000,34340=>1000,34343=>1000,34345=>1000,34349=>1000,34351=>1000,34352=>1000,34358=>1000,34360=>1000,34361=>1000,34362=>1000,34364=>1000,34365=>1000,34367=>1000,34368=>1000,34369=>1000,34370=>1000,34374=>1000,34381=>1000,34382=>1000,34384=>1000,34386=>1000,34387=>1000,34388=>1000,34389=>1000,34390=>1000,34391=>1000,34392=>1000,34393=>1000,34394=>1000,34395=>1000,34396=>1000,34397=>1000,34398=>1000,34399=>1000,34400=>1000,34401=>1000,34402=>1000,34403=>1000,34404=>1000,34407=>1000,34409=>1000,34411=>1000,34412=>1000,34415=>1000,34417=>1000,34421=>1000,34422=>1000,34423=>1000,34425=>1000,34426=>1000,34427=>1000,34429=>1000,34439=>1000,34440=>1000,34441=>1000,34442=>1000,34443=>1000,34444=>1000,34445=>1000,34449=>1000,34451=>1000,34453=>1000,34454=>1000,34456=>1000,34458=>1000,34460=>1000,34461=>1000,34465=>1000,34467=>1000,34468=>1000,34470=>1000,34471=>1000,34472=>1000,34473=>1000,34474=>1000,34475=>1000,34477=>1000,34479=>1000,34480=>1000,34481=>1000,34483=>1000,34484=>1000,34485=>1000,34486=>1000,34487=>1000,34488=>1000,34489=>1000,34495=>1000,34496=>1000,34497=>1000,34499=>1000,34500=>1000,34501=>1000,34502=>1000,34503=>1000,34505=>1000,34507=>1000,34509=>1000,34510=>1000,34513=>1000,34514=>1000,34516=>1000,34517=>1000,34519=>1000,34521=>1000,34522=>1000,34523=>1000,34524=>1000,34526=>1000,34527=>1000,34528=>1000,34531=>1000,34532=>1000,34533=>1000,34534=>1000,34535=>1000,34537=>1000,34540=>1000,34541=>1000,34542=>1000,34543=>1000,34552=>1000,34553=>1000,34554=>1000,34555=>1000,34556=>1000,34557=>1000,34558=>1000,34560=>1000,34562=>1000,34563=>1000,34564=>1000,34565=>1000,34566=>1000,34567=>1000,34568=>1000,34569=>1000,34570=>1000,34571=>1000,34573=>1000,34574=>1000,34575=>1000,34576=>1000,34577=>1000,34578=>1000,34579=>1000,34580=>1000,34584=>1000,34585=>1000,34586=>1000,34588=>1000,34590=>1000,34591=>1000,34593=>1000,34594=>1000,34595=>1000,34597=>1000,34600=>1000,34601=>1000,34606=>1000,34607=>1000,34609=>1000,34610=>1000,34612=>1000,34615=>1000,34617=>1000,34618=>1000,34619=>1000,34620=>1000,34621=>1000,34622=>1000,34623=>1000,34624=>1000,34627=>1000,34629=>1000,34633=>1000,34635=>1000,34636=>1000,34637=>1000,34638=>1000,34641=>1000,34643=>1000,34645=>1000,34647=>1000,34648=>1000,34649=>1000,34653=>1000,34655=>1000,34656=>1000,34657=>1000,34659=>1000,34660=>1000,34661=>1000,34662=>1000,34664=>1000,34666=>1000,34670=>1000,34671=>1000,34673=>1000,34674=>1000,34676=>1000,34678=>1000,34680=>1000,34683=>1000,34684=>1000,34687=>1000,34690=>1000,34691=>1000,34692=>1000,34693=>1000,34694=>1000,34695=>1000,34696=>1000,34697=>1000,34699=>1000,34700=>1000,34701=>1000,34702=>1000,34704=>1000,34707=>1000,34709=>1000,34711=>1000,34712=>1000,34713=>1000,34718=>1000,34719=>1000,34720=>1000,34722=>1000,34723=>1000,34727=>1000,34731=>1000,34732=>1000,34733=>1000,34734=>1000,34735=>1000,34737=>1000,34739=>1000,34741=>1000,34746=>1000,34747=>1000,34749=>1000,34750=>1000,34751=>1000,34752=>1000,34753=>1000,34756=>1000,34758=>1000,34759=>1000,34760=>1000,34761=>1000,34762=>1000,34763=>1000,34766=>1000,34768=>1000,34770=>1000,34773=>1000,34774=>1000,34777=>1000,34778=>1000,34780=>1000,34783=>1000,34784=>1000,34786=>1000,34787=>1000,34788=>1000,34789=>1000,34790=>1000,34794=>1000,34795=>1000,34796=>1000,34797=>1000,34799=>1000,34801=>1000,34802=>1000,34803=>1000,34805=>1000,34806=>1000,34807=>1000,34808=>1000,34809=>1000,34810=>1000,34811=>1000,34814=>1000,34815=>1000,34817=>1000,34819=>1000,34821=>1000,34822=>1000,34823=>1000,34825=>1000,34826=>1000,34827=>1000,34829=>1000,34830=>1000,34831=>1000,34832=>1000,34833=>1000,34834=>1000,34835=>1000,34836=>1000,34837=>1000,34838=>1000,34840=>1000,34841=>1000,34842=>1000,34843=>1000,34844=>1000,34846=>1000,34847=>1000,34849=>1000,34850=>1000,34851=>1000,34855=>1000,34856=>1000,34861=>1000,34862=>1000,34864=>1000,34865=>1000,34866=>1000,34869=>1000,34870=>1000,34873=>1000,34874=>1000,34875=>1000,34876=>1000,34880=>1000,34881=>1000,34882=>1000,34883=>1000,34884=>1000,34885=>1000,34886=>1000,34888=>1000,34889=>1000,34890=>1000,34891=>1000,34892=>1000,34893=>1000,34894=>1000,34897=>1000,34898=>1000,34899=>1000,34901=>1000,34902=>1000,34903=>1000,34904=>1000,34905=>1000,34906=>1000,34907=>1000,34908=>1000,34909=>1000,34910=>1000,34911=>1000,34912=>1000,34913=>1000,34914=>1000,34915=>1000,34916=>1000,34920=>1000,34921=>1000,34923=>1000,34926=>1000,34927=>1000,34928=>1000,34929=>1000,34930=>1000,34933=>1000,34935=>1000,34937=>1000,34939=>1000,34941=>1000,34942=>1000,34943=>1000,34944=>1000,34945=>1000,34946=>1000,34952=>1000,34955=>1000,34957=>1000,34962=>1000,34966=>1000,34967=>1000,34968=>1000,34969=>1000,34970=>1000,34971=>1000,34972=>1000,34974=>1000,34975=>1000,34976=>1000,34978=>1000,34980=>1000,34984=>1000,34986=>1000,34987=>1000,34990=>1000,34992=>1000,34993=>1000,34996=>1000,34997=>1000,34999=>1000,35002=>1000,35004=>1000,35005=>1000,35006=>1000,35007=>1000,35008=>1000,35009=>1000,35010=>1000,35011=>1000,35012=>1000,35013=>1000,35014=>1000,35018=>1000,35019=>1000,35020=>1000,35021=>1000,35022=>1000,35023=>1000,35025=>1000,35026=>1000,35027=>1000,35028=>1000,35029=>1000,35032=>1000,35033=>1000,35035=>1000,35036=>1000,35037=>1000,35038=>1000,35039=>1000,35040=>1000,35041=>1000,35047=>1000,35048=>1000,35055=>1000,35056=>1000,35057=>1000,35058=>1000,35059=>1000,35060=>1000,35061=>1000,35063=>1000,35064=>1000,35065=>1000,35068=>1000,35069=>1000,35070=>1000,35073=>1000,35074=>1000,35076=>1000,35078=>1000,35079=>1000,35082=>1000,35084=>1000,35085=>1000,35086=>1000,35087=>1000,35088=>1000,35090=>1000,35091=>1000,35093=>1000,35094=>1000,35096=>1000,35097=>1000,35098=>1000,35100=>1000,35101=>1000,35102=>1000,35104=>1000,35109=>1000,35110=>1000,35111=>1000,35112=>1000,35114=>1000,35115=>1000,35120=>1000,35121=>1000,35122=>1000,35125=>1000,35126=>1000,35127=>1000,35128=>1000,35129=>1000,35130=>1000,35131=>1000,35134=>1000,35136=>1000,35137=>1000,35138=>1000,35139=>1000,35140=>1000,35141=>1000,35142=>1000,35145=>1000,35148=>1000,35149=>1000,35151=>1000,35154=>1000,35158=>1000,35159=>1000,35162=>1000,35163=>1000,35164=>1000,35166=>1000,35167=>1000,35168=>1000,35169=>1000,35170=>1000,35171=>1000,35172=>1000,35174=>1000,35178=>1000,35179=>1000,35181=>1000,35182=>1000,35183=>1000,35184=>1000,35186=>1000,35187=>1000,35188=>1000,35189=>1000,35191=>1000,35194=>1000,35195=>1000,35196=>1000,35197=>1000,35198=>1000,35199=>1000,35200=>1000,35201=>1000,35203=>1000,35206=>1000,35207=>1000,35208=>1000,35209=>1000,35210=>1000,35211=>1000,35213=>1000,35215=>1000,35216=>1000,35219=>1000,35220=>1000,35221=>1000,35222=>1000,35223=>1000,35224=>1000,35226=>1000,35227=>1000,35228=>1000,35231=>1000,35232=>1000,35233=>1000,35237=>1000,35238=>1000,35239=>1000,35241=>1000,35242=>1000,35244=>1000,35247=>1000,35248=>1000,35250=>1000,35251=>1000,35252=>1000,35253=>1000,35254=>1000,35255=>1000,35258=>1000,35260=>1000,35261=>1000,35263=>1000,35264=>1000,35265=>1000,35282=>1000,35284=>1000,35285=>1000,35286=>1000,35287=>1000,35288=>1000,35290=>1000,35292=>1000,35293=>1000,35299=>1000,35301=>1000,35302=>1000,35303=>1000,35305=>1000,35307=>1000,35309=>1000,35313=>1000,35315=>1000,35316=>1000,35318=>1000,35320=>1000,35321=>1000,35325=>1000,35327=>1000,35328=>1000,35329=>1000,35330=>1000,35331=>1000,35332=>1000,35333=>1000,35335=>1000,35336=>1000,35338=>1000,35340=>1000,35342=>1000,35343=>1000,35344=>1000,35345=>1000,35346=>1000,35347=>1000,35348=>1000,35349=>1000,35350=>1000,35351=>1000,35352=>1000,35355=>1000,35357=>1000,35358=>1000,35359=>1000,35360=>1000,35361=>1000,35362=>1000,35363=>1000,35364=>1000,35365=>1000,35366=>1000,35370=>1000,35371=>1000,35372=>1000,35373=>1000,35375=>1000,35377=>1000,35379=>1000,35380=>1000,35381=>1000,35382=>1000,35383=>1000,35386=>1000,35387=>1000,35388=>1000,35389=>1000,35390=>1000,35392=>1000,35393=>1000,35395=>1000,35397=>1000,35398=>1000,35399=>1000,35400=>1000,35401=>1000,35405=>1000,35406=>1000,35408=>1000,35409=>1000,35410=>1000,35411=>1000,35412=>1000,35413=>1000,35414=>1000,35415=>1000,35416=>1000,35419=>1000,35420=>1000,35421=>1000,35422=>1000,35424=>1000,35425=>1000,35426=>1000,35427=>1000,35429=>1000,35430=>1000,35431=>1000,35433=>1000,35435=>1000,35436=>1000,35437=>1000,35438=>1000,35440=>1000,35441=>1000,35442=>1000,35443=>1000,35445=>1000,35446=>1000,35447=>1000,35449=>1000,35450=>1000,35451=>1000,35452=>1000,35454=>1000,35455=>1000,35456=>1000,35458=>1000,35459=>1000,35460=>1000,35461=>1000,35462=>1000,35463=>1000,35465=>1000,35467=>1000,35468=>1000,35469=>1000,35471=>1000,35472=>1000,35473=>1000,35474=>1000,35475=>1000,35477=>1000,35478=>1000,35479=>1000,35480=>1000,35481=>1000,35482=>1000,35486=>1000,35487=>1000,35488=>1000,35489=>1000,35491=>1000,35492=>1000,35493=>1000,35494=>1000,35495=>1000,35496=>1000,35497=>1000,35498=>1000,35500=>1000,35501=>1000,35502=>1000,35503=>1000,35504=>1000,35506=>1000,35507=>1000,35510=>1000,35511=>1000,35513=>1000,35515=>1000,35516=>1000,35518=>1000,35519=>1000,35522=>1000,35523=>1000,35524=>1000,35526=>1000,35527=>1000,35528=>1000,35529=>1000,35530=>1000,35531=>1000,35532=>1000,35533=>1000,35535=>1000,35536=>1000,35537=>1000,35538=>1000,35539=>1000,35540=>1000,35541=>1000,35542=>1000,35543=>1000,35546=>1000,35547=>1000,35548=>1000,35549=>1000,35550=>1000,35551=>1000,35552=>1000,35553=>1000,35554=>1000,35556=>1000,35558=>1000,35559=>1000,35563=>1000,35564=>1000,35565=>1000,35566=>1000,35568=>1000,35569=>1000,35571=>1000,35572=>1000,35573=>1000,35574=>1000,35575=>1000,35576=>1000,35578=>1000,35580=>1000,35582=>1000,35583=>1000,35584=>1000,35585=>1000,35586=>1000,35588=>1000,35589=>1000,35590=>1000,35591=>1000,35594=>1000,35595=>1000,35596=>1000,35597=>1000,35598=>1000,35599=>1000,35600=>1000,35601=>1000,35604=>1000,35606=>1000,35607=>1000,35609=>1000,35610=>1000,35611=>1000,35612=>1000,35613=>1000,35614=>1000,35615=>1000,35616=>1000,35617=>1000,35622=>1000,35624=>1000,35627=>1000,35628=>1000,35629=>1000,35632=>1000,35635=>1000,35639=>1000,35641=>1000,35644=>1000,35646=>1000,35649=>1000,35650=>1000,35651=>1000,35652=>1000,35653=>1000,35654=>1000,35656=>1000,35657=>1000,35660=>1000,35661=>1000,35662=>1000,35663=>1000,35665=>1000,35666=>1000,35667=>1000,35668=>1000,35670=>1000,35672=>1000,35673=>1000,35674=>1000,35675=>1000,35676=>1000,35678=>1000,35679=>1000,35683=>1000,35686=>1000,35689=>1000,35691=>1000,35692=>1000,35693=>1000,35695=>1000,35696=>1000,35697=>1000,35698=>1000,35700=>1000,35702=>1000,35703=>1000,35704=>1000,35705=>1000,35708=>1000,35709=>1000,35710=>1000,35711=>1000,35712=>1000,35713=>1000,35715=>1000,35716=>1000,35717=>1000,35722=>1000,35723=>1000,35724=>1000,35725=>1000,35726=>1000,35727=>1000,35728=>1000,35730=>1000,35731=>1000,35732=>1000,35733=>1000,35734=>1000,35737=>1000,35738=>1000,35740=>1000,35741=>1000,35742=>1000,35743=>1000,35744=>1000,35895=>1000,35896=>1000,35897=>1000,35898=>1000,35901=>1000,35902=>1000,35903=>1000,35905=>1000,35909=>1000,35910=>1000,35911=>1000,35912=>1000,35913=>1000,35914=>1000,35915=>1000,35916=>1000,35918=>1000,35919=>1000,35920=>1000,35921=>1000,35923=>1000,35924=>1000,35925=>1000,35927=>1000,35928=>1000,35929=>1000,35930=>1000,35931=>1000,35933=>1000,35937=>1000,35938=>1000,35939=>1000,35940=>1000,35942=>1000,35944=>1000,35945=>1000,35946=>1000,35947=>1000,35948=>1000,35949=>1000,35955=>1000,35957=>1000,35958=>1000,35960=>1000,35961=>1000,35962=>1000,35963=>1000,35964=>1000,35966=>1000,35970=>1000,35973=>1000,35974=>1000,35975=>1000,35977=>1000,35978=>1000,35979=>1000,35980=>1000,35981=>1000,35982=>1000,35984=>1000,35986=>1000,35987=>1000,35988=>1000,35992=>1000,35993=>1000,35995=>1000,35996=>1000,35997=>1000,35998=>1000,35999=>1000,36000=>1000,36001=>1000,36002=>1000,36004=>1000,36007=>1000,36008=>1000,36009=>1000,36010=>1000,36011=>1000,36012=>1000,36013=>1000,36014=>1000,36015=>1000,36016=>1000,36018=>1000,36019=>1000,36020=>1000,36022=>1000,36023=>1000,36024=>1000,36025=>1000,36026=>1000,36027=>1000,36028=>1000,36029=>1000,36031=>1000,36032=>1000,36033=>1000,36034=>1000,36035=>1000,36036=>1000,36037=>1000,36038=>1000,36039=>1000,36040=>1000,36041=>1000,36042=>1000,36043=>1000,36045=>1000,36046=>1000,36047=>1000,36049=>1000,36050=>1000,36051=>1000,36053=>1000,36054=>1000,36057=>1000,36058=>1000,36059=>1000,36060=>1000,36061=>1000,36062=>1000,36064=>1000,36065=>1000,36066=>1000,36067=>1000,36068=>1000,36070=>1000,36072=>1000,36074=>1000,36076=>1000,36077=>1000,36079=>1000,36080=>1000,36081=>1000,36082=>1000,36084=>1000,36085=>1000,36087=>1000,36088=>1000,36090=>1000,36091=>1000,36092=>1000,36093=>1000,36094=>1000,36095=>1000,36097=>1000,36099=>1000,36100=>1000,36101=>1000,36103=>1000,36104=>1000,36105=>1000,36106=>1000,36107=>1000,36109=>1000,36110=>1000,36111=>1000,36112=>1000,36114=>1000,36115=>1000,36116=>1000,36118=>1000,36119=>1000,36123=>1000,36124=>1000,36125=>1000,36196=>1000,36197=>1000,36198=>1000,36199=>1000,36201=>1000,36203=>1000,36204=>1000,36205=>1000,36206=>1000,36208=>1000,36209=>1000,36211=>1000,36212=>1000,36214=>1000,36215=>1000,36223=>1000,36225=>1000,36226=>1000,36228=>1000,36229=>1000,36232=>1000,36234=>1000,36237=>1000,36240=>1000,36241=>1000,36245=>1000,36249=>1000,36254=>1000,36255=>1000,36256=>1000,36259=>1000,36262=>1000,36264=>1000,36267=>1000,36268=>1000,36271=>1000,36274=>1000,36275=>1000,36277=>1000,36279=>1000,36281=>1000,36282=>1000,36283=>1000,36284=>1000,36286=>1000,36288=>1000,36290=>1000,36293=>1000,36294=>1000,36295=>1000,36296=>1000,36298=>1000,36299=>1000,36300=>1000,36302=>1000,36303=>1000,36305=>1000,36308=>1000,36309=>1000,36310=>1000,36311=>1000,36313=>1000,36314=>1000,36315=>1000,36317=>1000,36319=>1000,36321=>1000,36323=>1000,36324=>1000,36325=>1000,36327=>1000,36328=>1000,36330=>1000,36331=>1000,36332=>1000,36335=>1000,36336=>1000,36337=>1000,36338=>1000,36339=>1000,36340=>1000,36341=>1000,36348=>1000,36349=>1000,36351=>1000,36353=>1000,36356=>1000,36357=>1000,36358=>1000,36360=>1000,36361=>1000,36362=>1000,36363=>1000,36364=>1000,36367=>1000,36368=>1000,36369=>1000,36372=>1000,36374=>1000,36381=>1000,36382=>1000,36383=>1000,36384=>1000,36385=>1000,36386=>1000,36387=>1000,36390=>1000,36391=>1000,36394=>1000,36400=>1000,36401=>1000,36403=>1000,36404=>1000,36405=>1000,36406=>1000,36407=>1000,36408=>1000,36409=>1000,36413=>1000,36416=>1000,36417=>1000,36418=>1000,36420=>1000,36423=>1000,36424=>1000,36425=>1000,36426=>1000,36427=>1000,36428=>1000,36429=>1000,36430=>1000,36431=>1000,36432=>1000,36436=>1000,36437=>1000,36441=>1000,36443=>1000,36444=>1000,36445=>1000,36446=>1000,36447=>1000,36448=>1000,36449=>1000,36450=>1000,36451=>1000,36452=>1000,36457=>1000,36460=>1000,36461=>1000,36463=>1000,36464=>1000,36465=>1000,36466=>1000,36468=>1000,36469=>1000,36470=>1000,36471=>1000,36473=>1000,36474=>1000,36475=>1000,36476=>1000,36481=>1000,36482=>1000,36483=>1000,36484=>1000,36485=>1000,36487=>1000,36489=>1000,36490=>1000,36491=>1000,36493=>1000,36496=>1000,36497=>1000,36498=>1000,36499=>1000,36500=>1000,36501=>1000,36504=>1000,36505=>1000,36506=>1000,36507=>1000,36509=>1000,36510=>1000,36513=>1000,36514=>1000,36519=>1000,36521=>1000,36522=>1000,36523=>1000,36524=>1000,36525=>1000,36526=>1000,36527=>1000,36528=>1000,36529=>1000,36531=>1000,36533=>1000,36534=>1000,36538=>1000,36539=>1000,36542=>1000,36544=>1000,36545=>1000,36547=>1000,36548=>1000,36549=>1000,36550=>1000,36551=>1000,36552=>1000,36554=>1000,36555=>1000,36556=>1000,36557=>1000,36559=>1000,36561=>1000,36562=>1000,36564=>1000,36571=>1000,36572=>1000,36575=>1000,36578=>1000,36579=>1000,36584=>1000,36587=>1000,36589=>1000,36590=>1000,36592=>1000,36593=>1000,36599=>1000,36600=>1000,36601=>1000,36602=>1000,36603=>1000,36604=>1000,36605=>1000,36606=>1000,36608=>1000,36610=>1000,36611=>1000,36613=>1000,36615=>1000,36616=>1000,36617=>1000,36618=>1000,36620=>1000,36623=>1000,36624=>1000,36626=>1000,36627=>1000,36628=>1000,36629=>1000,36630=>1000,36631=>1000,36632=>1000,36633=>1000,36635=>1000,36636=>1000,36637=>1000,36638=>1000,36639=>1000,36640=>1000,36641=>1000,36643=>1000,36645=>1000,36646=>1000,36647=>1000,36648=>1000,36649=>1000,36650=>1000,36651=>1000,36652=>1000,36653=>1000,36654=>1000,36655=>1000,36659=>1000,36660=>1000,36661=>1000,36662=>1000,36663=>1000,36664=>1000,36665=>1000,36666=>1000,36667=>1000,36670=>1000,36671=>1000,36672=>1000,36673=>1000,36674=>1000,36675=>1000,36676=>1000,36677=>1000,36678=>1000,36679=>1000,36681=>1000,36682=>1000,36684=>1000,36685=>1000,36686=>1000,36687=>1000,36689=>1000,36690=>1000,36691=>1000,36692=>1000,36693=>1000,36695=>1000,36696=>1000,36700=>1000,36701=>1000,36702=>1000,36703=>1000,36705=>1000,36706=>1000,36707=>1000,36708=>1000,36709=>1000,36710=>1000,36763=>1000,36764=>1000,36765=>1000,36766=>1000,36767=>1000,36768=>1000,36769=>1000,36770=>1000,36771=>1000,36772=>1000,36773=>1000,36774=>1000,36775=>1000,36776=>1000,36781=>1000,36782=>1000,36783=>1000,36784=>1000,36785=>1000,36786=>1000,36788=>1000,36789=>1000,36790=>1000,36791=>1000,36792=>1000,36794=>1000,36795=>1000,36796=>1000,36798=>1000,36799=>1000,36800=>1000,36801=>1000,36802=>1000,36804=>1000,36805=>1000,36806=>1000,36808=>1000,36810=>1000,36811=>1000,36813=>1000,36814=>1000,36816=>1000,36817=>1000,36818=>1000,36819=>1000,36820=>1000,36821=>1000,36826=>1000,36832=>1000,36834=>1000,36835=>1000,36836=>1000,36837=>1000,36838=>1000,36840=>1000,36841=>1000,36842=>1000,36843=>1000,36845=>1000,36846=>1000,36847=>1000,36848=>1000,36849=>1000,36852=>1000,36853=>1000,36854=>1000,36855=>1000,36856=>1000,36857=>1000,36858=>1000,36859=>1000,36861=>1000,36862=>1000,36864=>1000,36865=>1000,36866=>1000,36867=>1000,36868=>1000,36869=>1000,36870=>1000,36872=>1000,36875=>1000,36876=>1000,36877=>1000,36878=>1000,36879=>1000,36880=>1000,36881=>1000,36883=>1000,36884=>1000,36885=>1000,36886=>1000,36887=>1000,36888=>1000,36889=>1000,36890=>1000,36891=>1000,36893=>1000,36894=>1000,36895=>1000,36896=>1000,36897=>1000,36898=>1000,36899=>1000,36903=>1000,36904=>1000,36905=>1000,36906=>1000,36908=>1000,36909=>1000,36910=>1000,36911=>1000,36913=>1000,36914=>1000,36915=>1000,36916=>1000,36917=>1000,36918=>1000,36919=>1000,36920=>1000,36921=>1000,36924=>1000,36926=>1000,36927=>1000,36929=>1000,36930=>1000,36931=>1000,36932=>1000,36933=>1000,36935=>1000,36937=>1000,36938=>1000,36939=>1000,36940=>1000,36941=>1000,36942=>1000,36943=>1000,36944=>1000,36945=>1000,36946=>1000,36947=>1000,36948=>1000,36949=>1000,36950=>1000,36952=>1000,36953=>1000,36955=>1000,36956=>1000,36957=>1000,36958=>1000,36960=>1000,36961=>1000,36962=>1000,36963=>1000,36965=>1000,36966=>1000,36967=>1000,36968=>1000,36969=>1000,36972=>1000,36973=>1000,36974=>1000,36975=>1000,36976=>1000,36978=>1000,36980=>1000,36981=>1000,36982=>1000,36983=>1000,36984=>1000,36985=>1000,36986=>1000,36988=>1000,36989=>1000,36991=>1000,36992=>1000,36993=>1000,36994=>1000,36995=>1000,36996=>1000,36997=>1000,36999=>1000,37000=>1000,37001=>1000,37002=>1000,37003=>1000,37004=>1000,37006=>1000,37007=>1000,37008=>1000,37009=>1000,37013=>1000,37015=>1000,37016=>1000,37017=>1000,37019=>1000,37024=>1000,37025=>1000,37026=>1000,37027=>1000,37029=>1000,37030=>1000,37032=>1000,37034=>1000,37039=>1000,37040=>1000,37041=>1000,37042=>1000,37043=>1000,37044=>1000,37045=>1000,37046=>1000,37048=>1000,37053=>1000,37054=>1000,37057=>1000,37059=>1000,37060=>1000,37061=>1000,37063=>1000,37064=>1000,37065=>1000,37066=>1000,37068=>1000,37070=>1000,37074=>1000,37077=>1000,37079=>1000,37080=>1000,37081=>1000,37083=>1000,37084=>1000,37085=>1000,37086=>1000,37087=>1000,37089=>1000,37090=>1000,37092=>1000,37093=>1000,37096=>1000,37099=>1000,37101=>1000,37103=>1000,37104=>1000,37106=>1000,37108=>1000,37109=>1000,37110=>1000,37111=>1000,37117=>1000,37118=>1000,37119=>1000,37120=>1000,37122=>1000,37124=>1000,37125=>1000,37126=>1000,37128=>1000,37133=>1000,37136=>1000,37138=>1000,37140=>1000,37141=>1000,37142=>1000,37143=>1000,37144=>1000,37145=>1000,37146=>1000,37148=>1000,37150=>1000,37152=>1000,37154=>1000,37155=>1000,37157=>1000,37159=>1000,37161=>1000,37165=>1000,37166=>1000,37167=>1000,37168=>1000,37169=>1000,37170=>1000,37172=>1000,37174=>1000,37175=>1000,37177=>1000,37178=>1000,37180=>1000,37181=>1000,37187=>1000,37190=>1000,37191=>1000,37192=>1000,37193=>1000,37194=>1000,37195=>1000,37196=>1000,37197=>1000,37198=>1000,37199=>1000,37202=>1000,37203=>1000,37204=>1000,37206=>1000,37207=>1000,37208=>1000,37209=>1000,37210=>1000,37211=>1000,37217=>1000,37218=>1000,37219=>1000,37220=>1000,37221=>1000,37223=>1000,37225=>1000,37226=>1000,37228=>1000,37229=>1000,37234=>1000,37235=>1000,37236=>1000,37237=>1000,37239=>1000,37240=>1000,37241=>1000,37242=>1000,37243=>1000,37249=>1000,37250=>1000,37251=>1000,37253=>1000,37254=>1000,37255=>1000,37257=>1000,37258=>1000,37259=>1000,37261=>1000,37262=>1000,37264=>1000,37265=>1000,37266=>1000,37267=>1000,37268=>1000,37269=>1000,37271=>1000,37272=>1000,37276=>1000,37278=>1000,37281=>1000,37282=>1000,37284=>1000,37286=>1000,37288=>1000,37290=>1000,37291=>1000,37292=>1000,37293=>1000,37294=>1000,37295=>1000,37296=>1000,37297=>1000,37298=>1000,37299=>1000,37300=>1000,37301=>1000,37302=>1000,37304=>1000,37306=>1000,37307=>1000,37308=>1000,37309=>1000,37311=>1000,37312=>1000,37313=>1000,37314=>1000,37315=>1000,37316=>1000,37317=>1000,37318=>1000,37319=>1000,37320=>1000,37321=>1000,37323=>1000,37324=>1000,37325=>1000,37326=>1000,37327=>1000,37328=>1000,37329=>1000,37331=>1000,37332=>1000,37334=>1000,37335=>1000,37336=>1000,37337=>1000,37338=>1000,37339=>1000,37340=>1000,37341=>1000,37342=>1000,37343=>1000,37345=>1000,37347=>1000,37348=>1000,37349=>1000,37350=>1000,37351=>1000,37353=>1000,37354=>1000,37356=>1000,37357=>1000,37358=>1000,37359=>1000,37360=>1000,37361=>1000,37365=>1000,37366=>1000,37367=>1000,37369=>1000,37371=>1000,37372=>1000,37373=>1000,37375=>1000,37376=>1000,37377=>1000,37380=>1000,37381=>1000,37382=>1000,37383=>1000,37385=>1000,37386=>1000,37388=>1000,37389=>1000,37390=>1000,37392=>1000,37393=>1000,37394=>1000,37395=>1000,37396=>1000,37397=>1000,37398=>1000,37399=>1000,37400=>1000,37404=>1000,37405=>1000,37406=>1000,37411=>1000,37412=>1000,37413=>1000,37414=>1000,37416=>1000,37417=>1000,37420=>1000,37422=>1000,37423=>1000,37424=>1000,37427=>1000,37428=>1000,37429=>1000,37430=>1000,37431=>1000,37432=>1000,37433=>1000,37434=>1000,37436=>1000,37438=>1000,37439=>1000,37440=>1000,37442=>1000,37443=>1000,37444=>1000,37445=>1000,37446=>1000,37447=>1000,37448=>1000,37449=>1000,37450=>1000,37451=>1000,37453=>1000,37454=>1000,37455=>1000,37456=>1000,37457=>1000,37462=>1000,37463=>1000,37464=>1000,37465=>1000,37466=>1000,37467=>1000,37468=>1000,37469=>1000,37470=>1000,37472=>1000,37473=>1000,37474=>1000,37476=>1000,37477=>1000,37478=>1000,37479=>1000,37480=>1000,37481=>1000,37486=>1000,37487=>1000,37488=>1000,37489=>1000,37493=>1000,37494=>1000,37495=>1000,37496=>1000,37497=>1000,37499=>1000,37500=>1000,37501=>1000,37502=>1000,37503=>1000,37504=>1000,37507=>1000,37509=>1000,37512=>1000,37513=>1000,37514=>1000,37517=>1000,37518=>1000,37521=>1000,37522=>1000,37523=>1000,37525=>1000,37526=>1000,37527=>1000,37528=>1000,37529=>1000,37530=>1000,37531=>1000,37532=>1000,37535=>1000,37536=>1000,37540=>1000,37541=>1000,37543=>1000,37544=>1000,37547=>1000,37549=>1000,37551=>1000,37554=>1000,37555=>1000,37558=>1000,37559=>1000,37560=>1000,37561=>1000,37562=>1000,37563=>1000,37564=>1000,37565=>1000,37567=>1000,37568=>1000,37569=>1000,37570=>1000,37571=>1000,37573=>1000,37574=>1000,37575=>1000,37576=>1000,37579=>1000,37580=>1000,37581=>1000,37582=>1000,37583=>1000,37584=>1000,37586=>1000,37587=>1000,37589=>1000,37591=>1000,37592=>1000,37593=>1000,37596=>1000,37597=>1000,37599=>1000,37600=>1000,37601=>1000,37603=>1000,37604=>1000,37605=>1000,37607=>1000,37608=>1000,37609=>1000,37610=>1000,37612=>1000,37613=>1000,37614=>1000,37616=>1000,37618=>1000,37619=>1000,37623=>1000,37624=>1000,37625=>1000,37626=>1000,37627=>1000,37628=>1000,37631=>1000,37632=>1000,37634=>1000,37636=>1000,37638=>1000,37640=>1000,37645=>1000,37647=>1000,37648=>1000,37649=>1000,37652=>1000,37653=>1000,37656=>1000,37657=>1000,37658=>1000,37660=>1000,37661=>1000,37662=>1000,37663=>1000,37664=>1000,37665=>1000,37666=>1000,37667=>1000,37668=>1000,37669=>1000,37670=>1000,37671=>1000,37672=>1000,37673=>1000,37674=>1000,37675=>1000,37676=>1000,37678=>1000,37679=>1000,37682=>1000,37683=>1000,37684=>1000,37685=>1000,37686=>1000,37687=>1000,37690=>1000,37691=>1000,37700=>1000,37703=>1000,37704=>1000,37705=>1000,37706=>1000,37707=>1000,37709=>1000,37712=>1000,37713=>1000,37714=>1000,37716=>1000,37717=>1000,37718=>1000,37719=>1000,37720=>1000,37722=>1000,37723=>1000,37724=>1000,37726=>1000,37728=>1000,37732=>1000,37733=>1000,37735=>1000,37737=>1000,37738=>1000,37739=>1000,37740=>1000,37741=>1000,37742=>1000,37743=>1000,37744=>1000,37745=>1000,37747=>1000,37748=>1000,37749=>1000,37750=>1000,37754=>1000,37756=>1000,37757=>1000,37758=>1000,37759=>1000,37760=>1000,37761=>1000,37762=>1000,37768=>1000,37770=>1000,37771=>1000,37772=>1000,37773=>1000,37775=>1000,37778=>1000,37780=>1000,37781=>1000,37782=>1000,37783=>1000,37784=>1000,37786=>1000,37787=>1000,37790=>1000,37793=>1000,37795=>1000,37796=>1000,37798=>1000,37799=>1000,37800=>1000,37801=>1000,37803=>1000,37804=>1000,37805=>1000,37806=>1000,37808=>1000,37812=>1000,37813=>1000,37814=>1000,37817=>1000,37818=>1000,37819=>1000,37825=>1000,37827=>1000,37828=>1000,37829=>1000,37830=>1000,37831=>1000,37832=>1000,37833=>1000,37834=>1000,37835=>1000,37836=>1000,37837=>1000,37840=>1000,37841=>1000,37843=>1000,37846=>1000,37847=>1000,37848=>1000,37849=>1000,37852=>1000,37853=>1000,37854=>1000,37855=>1000,37857=>1000,37858=>1000,37860=>1000,37861=>1000,37862=>1000,37863=>1000,37864=>1000,37873=>1000,37877=>1000,37879=>1000,37880=>1000,37881=>1000,37882=>1000,37883=>1000,37885=>1000,37889=>1000,37890=>1000,37891=>1000,37892=>1000,37895=>1000,37896=>1000,37897=>1000,37901=>1000,37902=>1000,37903=>1000,37904=>1000,37907=>1000,37908=>1000,37909=>1000,37910=>1000,37911=>1000,37912=>1000,37913=>1000,37914=>1000,37919=>1000,37921=>1000,37931=>1000,37934=>1000,37935=>1000,37937=>1000,37938=>1000,37939=>1000,37940=>1000,37941=>1000,37942=>1000,37944=>1000,37946=>1000,37947=>1000,37949=>1000,37951=>1000,37953=>1000,37955=>1000,37956=>1000,37957=>1000,37960=>1000,37962=>1000,37964=>1000,37969=>1000,37970=>1000,37971=>1000,37973=>1000,37977=>1000,37978=>1000,37979=>1000,37980=>1000,37982=>1000,37983=>1000,37984=>1000,37985=>1000,37986=>1000,37987=>1000,37992=>1000,37994=>1000,37995=>1000,37997=>1000,37998=>1000,37999=>1000,38000=>1000,38001=>1000,38002=>1000,38005=>1000,38007=>1000,38012=>1000,38013=>1000,38014=>1000,38015=>1000,38017=>1000,38019=>1000,38020=>1000,38021=>1000,38263=>1000,38264=>1000,38265=>1000,38270=>1000,38271=>1000,38272=>1000,38274=>1000,38275=>1000,38276=>1000,38278=>1000,38279=>1000,38280=>1000,38281=>1000,38282=>1000,38283=>1000,38284=>1000,38285=>1000,38286=>1000,38287=>1000,38289=>1000,38290=>1000,38291=>1000,38292=>1000,38294=>1000,38296=>1000,38297=>1000,38301=>1000,38302=>1000,38303=>1000,38304=>1000,38305=>1000,38306=>1000,38307=>1000,38308=>1000,38309=>1000,38310=>1000,38311=>1000,38312=>1000,38313=>1000,38315=>1000,38316=>1000,38317=>1000,38321=>1000,38322=>1000,38324=>1000,38326=>1000,38329=>1000,38330=>1000,38331=>1000,38332=>1000,38333=>1000,38334=>1000,38335=>1000,38339=>1000,38342=>1000,38343=>1000,38344=>1000,38345=>1000,38346=>1000,38347=>1000,38348=>1000,38349=>1000,38352=>1000,38353=>1000,38354=>1000,38355=>1000,38356=>1000,38357=>1000,38358=>1000,38360=>1000,38361=>1000,38362=>1000,38364=>1000,38365=>1000,38366=>1000,38367=>1000,38368=>1000,38369=>1000,38370=>1000,38372=>1000,38373=>1000,38374=>1000,38376=>1000,38428=>1000,38429=>1000,38430=>1000,38433=>1000,38434=>1000,38436=>1000,38437=>1000,38438=>1000,38440=>1000,38442=>1000,38444=>1000,38446=>1000,38447=>1000,38449=>1000,38450=>1000,38451=>1000,38452=>1000,38455=>1000,38456=>1000,38457=>1000,38458=>1000,38459=>1000,38460=>1000,38461=>1000,38463=>1000,38464=>1000,38465=>1000,38466=>1000,38468=>1000,38475=>1000,38476=>1000,38477=>1000,38479=>1000,38480=>1000,38482=>1000,38484=>1000,38486=>1000,38487=>1000,38488=>1000,38491=>1000,38492=>1000,38493=>1000,38494=>1000,38495=>1000,38497=>1000,38498=>1000,38499=>1000,38500=>1000,38501=>1000,38502=>1000,38506=>1000,38508=>1000,38510=>1000,38512=>1000,38514=>1000,38515=>1000,38516=>1000,38517=>1000,38518=>1000,38519=>1000,38520=>1000,38522=>1000,38523=>1000,38524=>1000,38525=>1000,38526=>1000,38527=>1000,38529=>1000,38530=>1000,38531=>1000,38532=>1000,38533=>1000,38534=>1000,38536=>1000,38537=>1000,38538=>1000,38539=>1000,38541=>1000,38542=>1000,38543=>1000,38545=>1000,38548=>1000,38549=>1000,38550=>1000,38551=>1000,38552=>1000,38553=>1000,38554=>1000,38555=>1000,38556=>1000,38557=>1000,38559=>1000,38560=>1000,38563=>1000,38564=>1000,38565=>1000,38566=>1000,38567=>1000,38568=>1000,38569=>1000,38570=>1000,38574=>1000,38575=>1000,38576=>1000,38577=>1000,38578=>1000,38579=>1000,38580=>1000,38582=>1000,38583=>1000,38584=>1000,38585=>1000,38586=>1000,38587=>1000,38588=>1000,38589=>1000,38592=>1000,38593=>1000,38596=>1000,38597=>1000,38598=>1000,38599=>1000,38601=>1000,38602=>1000,38603=>1000,38604=>1000,38605=>1000,38606=>1000,38609=>1000,38610=>1000,38613=>1000,38614=>1000,38616=>1000,38617=>1000,38618=>1000,38619=>1000,38620=>1000,38621=>1000,38622=>1000,38623=>1000,38626=>1000,38627=>1000,38632=>1000,38633=>1000,38634=>1000,38635=>1000,38639=>1000,38640=>1000,38641=>1000,38642=>1000,38646=>1000,38647=>1000,38649=>1000,38650=>1000,38651=>1000,38656=>1000,38658=>1000,38659=>1000,38660=>1000,38661=>1000,38662=>1000,38663=>1000,38664=>1000,38665=>1000,38666=>1000,38669=>1000,38670=>1000,38671=>1000,38673=>1000,38675=>1000,38676=>1000,38678=>1000,38681=>1000,38682=>1000,38683=>1000,38684=>1000,38685=>1000,38686=>1000,38689=>1000,38690=>1000,38691=>1000,38692=>1000,38695=>1000,38696=>1000,38698=>1000,38704=>1000,38705=>1000,38706=>1000,38707=>1000,38710=>1000,38712=>1000,38713=>1000,38715=>1000,38717=>1000,38718=>1000,38721=>1000,38722=>1000,38723=>1000,38724=>1000,38726=>1000,38727=>1000,38728=>1000,38729=>1000,38730=>1000,38733=>1000,38734=>1000,38735=>1000,38737=>1000,38738=>1000,38741=>1000,38742=>1000,38743=>1000,38744=>1000,38745=>1000,38746=>1000,38747=>1000,38748=>1000,38750=>1000,38752=>1000,38753=>1000,38754=>1000,38755=>1000,38756=>1000,38758=>1000,38759=>1000,38760=>1000,38761=>1000,38762=>1000,38763=>1000,38765=>1000,38766=>1000,38769=>1000,38771=>1000,38772=>1000,38774=>1000,38775=>1000,38776=>1000,38777=>1000,38778=>1000,38779=>1000,38780=>1000,38781=>1000,38783=>1000,38784=>1000,38785=>1000,38788=>1000,38789=>1000,38790=>1000,38793=>1000,38795=>1000,38797=>1000,38799=>1000,38800=>1000,38805=>1000,38806=>1000,38807=>1000,38808=>1000,38809=>1000,38810=>1000,38812=>1000,38814=>1000,38815=>1000,38816=>1000,38818=>1000,38819=>1000,38822=>1000,38824=>1000,38827=>1000,38828=>1000,38829=>1000,38830=>1000,38833=>1000,38834=>1000,38835=>1000,38836=>1000,38837=>1000,38838=>1000,38840=>1000,38841=>1000,38842=>1000,38844=>1000,38846=>1000,38847=>1000,38849=>1000,38851=>1000,38852=>1000,38853=>1000,38854=>1000,38855=>1000,38856=>1000,38857=>1000,38858=>1000,38859=>1000,38860=>1000,38861=>1000,38862=>1000,38864=>1000,38865=>1000,38867=>1000,38868=>1000,38871=>1000,38872=>1000,38873=>1000,38875=>1000,38876=>1000,38877=>1000,38878=>1000,38880=>1000,38881=>1000,38884=>1000,38886=>1000,38893=>1000,38894=>1000,38895=>1000,38897=>1000,38898=>1000,38899=>1000,38900=>1000,38901=>1000,38902=>1000,38903=>1000,38904=>1000,38906=>1000,38907=>1000,38911=>1000,38913=>1000,38914=>1000,38915=>1000,38916=>1000,38917=>1000,38918=>1000,38919=>1000,38920=>1000,38922=>1000,38924=>1000,38925=>1000,38926=>1000,38927=>1000,38928=>1000,38929=>1000,38930=>1000,38931=>1000,38932=>1000,38934=>1000,38935=>1000,38936=>1000,38937=>1000,38938=>1000,38940=>1000,38942=>1000,38944=>1000,38945=>1000,38947=>1000,38948=>1000,38949=>1000,38950=>1000,38955=>1000,38956=>1000,38957=>1000,38958=>1000,38959=>1000,38960=>1000,38962=>1000,38963=>1000,38964=>1000,38965=>1000,38967=>1000,38968=>1000,38969=>1000,38971=>1000,38972=>1000,38973=>1000,38974=>1000,38980=>1000,38982=>1000,38983=>1000,38986=>1000,38987=>1000,38988=>1000,38989=>1000,38990=>1000,38991=>1000,38993=>1000,38994=>1000,38995=>1000,38996=>1000,38997=>1000,38998=>1000,38999=>1000,39000=>1000,39001=>1000,39002=>1000,39003=>1000,39006=>1000,39010=>1000,39011=>1000,39013=>1000,39014=>1000,39015=>1000,39018=>1000,39019=>1000,39020=>1000,39023=>1000,39024=>1000,39025=>1000,39027=>1000,39028=>1000,39029=>1000,39080=>1000,39082=>1000,39083=>1000,39085=>1000,39086=>1000,39087=>1000,39088=>1000,39089=>1000,39092=>1000,39094=>1000,39095=>1000,39096=>1000,39098=>1000,39099=>1000,39100=>1000,39103=>1000,39106=>1000,39107=>1000,39108=>1000,39109=>1000,39110=>1000,39111=>1000,39112=>1000,39115=>1000,39116=>1000,39118=>1000,39131=>1000,39132=>1000,39134=>1000,39135=>1000,39136=>1000,39137=>1000,39138=>1000,39139=>1000,39141=>1000,39142=>1000,39143=>1000,39145=>1000,39146=>1000,39147=>1000,39149=>1000,39150=>1000,39151=>1000,39152=>1000,39153=>1000,39154=>1000,39155=>1000,39156=>1000,39158=>1000,39164=>1000,39165=>1000,39166=>1000,39170=>1000,39171=>1000,39173=>1000,39175=>1000,39176=>1000,39177=>1000,39178=>1000,39180=>1000,39184=>1000,39185=>1000,39186=>1000,39187=>1000,39188=>1000,39189=>1000,39190=>1000,39191=>1000,39192=>1000,39194=>1000,39195=>1000,39196=>1000,39197=>1000,39198=>1000,39199=>1000,39200=>1000,39201=>1000,39202=>1000,39204=>1000,39206=>1000,39207=>1000,39208=>1000,39211=>1000,39212=>1000,39214=>1000,39217=>1000,39218=>1000,39219=>1000,39220=>1000,39221=>1000,39225=>1000,39226=>1000,39227=>1000,39228=>1000,39229=>1000,39230=>1000,39232=>1000,39233=>1000,39234=>1000,39237=>1000,39238=>1000,39239=>1000,39240=>1000,39241=>1000,39243=>1000,39244=>1000,39245=>1000,39246=>1000,39248=>1000,39249=>1000,39250=>1000,39252=>1000,39253=>1000,39255=>1000,39256=>1000,39257=>1000,39259=>1000,39260=>1000,39262=>1000,39263=>1000,39264=>1000,39267=>1000,39318=>1000,39319=>1000,39320=>1000,39321=>1000,39323=>1000,39325=>1000,39326=>1000,39327=>1000,39331=>1000,39333=>1000,39334=>1000,39336=>1000,39340=>1000,39341=>1000,39342=>1000,39344=>1000,39345=>1000,39346=>1000,39347=>1000,39348=>1000,39349=>1000,39353=>1000,39354=>1000,39356=>1000,39357=>1000,39359=>1000,39361=>1000,39363=>1000,39364=>1000,39365=>1000,39366=>1000,39368=>1000,39369=>1000,39376=>1000,39377=>1000,39378=>1000,39379=>1000,39380=>1000,39381=>1000,39384=>1000,39385=>1000,39386=>1000,39387=>1000,39388=>1000,39389=>1000,39390=>1000,39391=>1000,39393=>1000,39394=>1000,39399=>1000,39402=>1000,39403=>1000,39404=>1000,39405=>1000,39406=>1000,39408=>1000,39409=>1000,39410=>1000,39412=>1000,39413=>1000,39416=>1000,39417=>1000,39419=>1000,39420=>1000,39421=>1000,39422=>1000,39423=>1000,39425=>1000,39426=>1000,39427=>1000,39428=>1000,39429=>1000,39432=>1000,39434=>1000,39435=>1000,39436=>1000,39438=>1000,39439=>1000,39440=>1000,39441=>1000,39442=>1000,39443=>1000,39446=>1000,39449=>1000,39450=>1000,39454=>1000,39456=>1000,39458=>1000,39459=>1000,39460=>1000,39463=>1000,39464=>1000,39467=>1000,39469=>1000,39470=>1000,39472=>1000,39473=>1000,39475=>1000,39477=>1000,39478=>1000,39479=>1000,39480=>1000,39486=>1000,39488=>1000,39489=>1000,39490=>1000,39491=>1000,39492=>1000,39493=>1000,39495=>1000,39498=>1000,39499=>1000,39500=>1000,39501=>1000,39502=>1000,39505=>1000,39506=>1000,39508=>1000,39509=>1000,39510=>1000,39511=>1000,39512=>1000,39514=>1000,39515=>1000,39517=>1000,39519=>1000,39522=>1000,39524=>1000,39525=>1000,39529=>1000,39530=>1000,39531=>1000,39532=>1000,39592=>1000,39594=>1000,39596=>1000,39597=>1000,39598=>1000,39599=>1000,39600=>1000,39602=>1000,39604=>1000,39605=>1000,39606=>1000,39607=>1000,39608=>1000,39609=>1000,39611=>1000,39612=>1000,39613=>1000,39614=>1000,39615=>1000,39616=>1000,39617=>1000,39619=>1000,39620=>1000,39622=>1000,39624=>1000,39630=>1000,39631=>1000,39632=>1000,39633=>1000,39634=>1000,39635=>1000,39636=>1000,39637=>1000,39638=>1000,39639=>1000,39640=>1000,39641=>1000,39643=>1000,39644=>1000,39646=>1000,39647=>1000,39648=>1000,39650=>1000,39651=>1000,39652=>1000,39653=>1000,39654=>1000,39655=>1000,39657=>1000,39658=>1000,39659=>1000,39660=>1000,39661=>1000,39662=>1000,39663=>1000,39665=>1000,39666=>1000,39667=>1000,39668=>1000,39669=>1000,39671=>1000,39673=>1000,39674=>1000,39675=>1000,39677=>1000,39679=>1000,39680=>1000,39681=>1000,39682=>1000,39683=>1000,39684=>1000,39685=>1000,39686=>1000,39688=>1000,39689=>1000,39691=>1000,39692=>1000,39693=>1000,39694=>1000,39696=>1000,39698=>1000,39702=>1000,39704=>1000,39705=>1000,39706=>1000,39707=>1000,39708=>1000,39709=>1000,39711=>1000,39712=>1000,39714=>1000,39715=>1000,39717=>1000,39718=>1000,39719=>1000,39720=>1000,39721=>1000,39722=>1000,39723=>1000,39724=>1000,39725=>1000,39726=>1000,39727=>1000,39729=>1000,39730=>1000,39731=>1000,39732=>1000,39733=>1000,39735=>1000,39737=>1000,39738=>1000,39739=>1000,39740=>1000,39741=>1000,39745=>1000,39746=>1000,39747=>1000,39748=>1000,39749=>1000,39752=>1000,39755=>1000,39756=>1000,39757=>1000,39758=>1000,39759=>1000,39761=>1000,39764=>1000,39765=>1000,39766=>1000,39767=>1000,39768=>1000,39770=>1000,39771=>1000,39774=>1000,39777=>1000,39779=>1000,39781=>1000,39782=>1000,39784=>1000,39786=>1000,39787=>1000,39788=>1000,39789=>1000,39790=>1000,39791=>1000,39794=>1000,39795=>1000,39796=>1000,39797=>1000,39798=>1000,39799=>1000,39800=>1000,39801=>1000,39807=>1000,39808=>1000,39811=>1000,39812=>1000,39813=>1000,39814=>1000,39815=>1000,39817=>1000,39818=>1000,39819=>1000,39821=>1000,39822=>1000,39823=>1000,39824=>1000,39825=>1000,39826=>1000,39827=>1000,39828=>1000,39830=>1000,39831=>1000,39834=>1000,39837=>1000,39838=>1000,39839=>1000,39840=>1000,39846=>1000,39847=>1000,39848=>1000,39849=>1000,39850=>1000,39851=>1000,39852=>1000,39853=>1000,39854=>1000,39856=>1000,39857=>1000,39858=>1000,39860=>1000,39863=>1000,39864=>1000,39865=>1000,39867=>1000,39868=>1000,39870=>1000,39871=>1000,39872=>1000,39873=>1000,39878=>1000,39879=>1000,39880=>1000,39881=>1000,39882=>1000,39886=>1000,39887=>1000,39888=>1000,39889=>1000,39890=>1000,39892=>1000,39894=>1000,39895=>1000,39896=>1000,39899=>1000,39901=>1000,39903=>1000,39905=>1000,39906=>1000,39907=>1000,39908=>1000,39909=>1000,39911=>1000,39912=>1000,39914=>1000,39915=>1000,39918=>1000,39919=>1000,39920=>1000,39921=>1000,39922=>1000,39923=>1000,39925=>1000,39927=>1000,39928=>1000,39929=>1000,39930=>1000,39933=>1000,39935=>1000,39936=>1000,39938=>1000,39940=>1000,39942=>1000,39944=>1000,39945=>1000,39946=>1000,39947=>1000,39948=>1000,39949=>1000,39951=>1000,39952=>1000,39953=>1000,39954=>1000,39955=>1000,39956=>1000,39957=>1000,39958=>1000,39960=>1000,39961=>1000,39962=>1000,39963=>1000,39964=>1000,39965=>1000,39966=>1000,39969=>1000,39970=>1000,39971=>1000,39972=>1000,39973=>1000,39974=>1000,39975=>1000,39976=>1000,39977=>1000,39978=>1000,39981=>1000,39982=>1000,39983=>1000,39984=>1000,39985=>1000,39986=>1000,39989=>1000,39990=>1000,39991=>1000,39993=>1000,39994=>1000,39995=>1000,39997=>1000,39998=>1000,40001=>1000,40003=>1000,40004=>1000,40005=>1000,40006=>1000,40007=>1000,40008=>1000,40009=>1000,40010=>1000,40014=>1000,40015=>1000,40016=>1000,40018=>1000,40019=>1000,40020=>1000,40022=>1000,40023=>1000,40024=>1000,40026=>1000,40027=>1000,40028=>1000,40029=>1000,40030=>1000,40031=>1000,40032=>1000,40033=>1000,40035=>1000,40037=>1000,40039=>1000,40040=>1000,40041=>1000,40042=>1000,40043=>1000,40045=>1000,40046=>1000,40048=>1000,40050=>1000,40053=>1000,40054=>1000,40055=>1000,40056=>1000,40058=>1000,40059=>1000,40060=>1000,40165=>1000,40166=>1000,40167=>1000,40169=>1000,40171=>1000,40172=>1000,40176=>1000,40178=>1000,40179=>1000,40180=>1000,40182=>1000,40183=>1000,40185=>1000,40194=>1000,40195=>1000,40198=>1000,40199=>1000,40200=>1000,40201=>1000,40203=>1000,40206=>1000,40209=>1000,40210=>1000,40213=>1000,40215=>1000,40216=>1000,40219=>1000,40220=>1000,40221=>1000,40222=>1000,40223=>1000,40227=>1000,40230=>1000,40232=>1000,40234=>1000,40235=>1000,40236=>1000,40239=>1000,40240=>1000,40242=>1000,40243=>1000,40244=>1000,40250=>1000,40251=>1000,40252=>1000,40253=>1000,40254=>1000,40255=>1000,40257=>1000,40258=>1000,40259=>1000,40260=>1000,40261=>1000,40262=>1000,40263=>1000,40264=>1000,40266=>1000,40272=>1000,40273=>1000,40274=>1000,40275=>1000,40276=>1000,40281=>1000,40284=>1000,40285=>1000,40286=>1000,40287=>1000,40288=>1000,40289=>1000,40290=>1000,40291=>1000,40292=>1000,40293=>1000,40297=>1000,40298=>1000,40299=>1000,40300=>1000,40303=>1000,40304=>1000,40306=>1000,40307=>1000,40310=>1000,40311=>1000,40314=>1000,40315=>1000,40316=>1000,40318=>1000,40323=>1000,40324=>1000,40326=>1000,40327=>1000,40329=>1000,40330=>1000,40333=>1000,40334=>1000,40335=>1000,40338=>1000,40339=>1000,40341=>1000,40342=>1000,40343=>1000,40344=>1000,40345=>1000,40346=>1000,40353=>1000,40356=>1000,40361=>1000,40362=>1000,40363=>1000,40364=>1000,40366=>1000,40367=>1000,40369=>1000,40370=>1000,40372=>1000,40373=>1000,40376=>1000,40377=>1000,40378=>1000,40379=>1000,40380=>1000,40381=>1000,40383=>1000,40384=>1000,40385=>1000,40386=>1000,40387=>1000,40388=>1000,40390=>1000,40391=>1000,40393=>1000,40394=>1000,40399=>1000,40403=>1000,40404=>1000,40405=>1000,40406=>1000,40407=>1000,40409=>1000,40410=>1000,40414=>1000,40415=>1000,40416=>1000,40419=>1000,40421=>1000,40422=>1000,40423=>1000,40425=>1000,40427=>1000,40429=>1000,40430=>1000,40431=>1000,40432=>1000,40434=>1000,40435=>1000,40436=>1000,40440=>1000,40441=>1000,40442=>1000,40445=>1000,40446=>1000,40450=>1000,40455=>1000,40458=>1000,40461=>1000,40462=>1000,40464=>1000,40465=>1000,40466=>1000,40469=>1000,40470=>1000,40473=>1000,40474=>1000,40475=>1000,40476=>1000,40477=>1000,40478=>1000,40479=>1000,40565=>1000,40568=>1000,40569=>1000,40570=>1000,40571=>1000,40572=>1000,40573=>1000,40575=>1000,40576=>1000,40577=>1000,40578=>1000,40579=>1000,40580=>1000,40581=>1000,40583=>1000,40584=>1000,40587=>1000,40588=>1000,40590=>1000,40591=>1000,40593=>1000,40594=>1000,40595=>1000,40597=>1000,40598=>1000,40599=>1000,40600=>1000,40603=>1000,40605=>1000,40606=>1000,40607=>1000,40612=>1000,40613=>1000,40614=>1000,40616=>1000,40617=>1000,40618=>1000,40620=>1000,40621=>1000,40622=>1000,40623=>1000,40624=>1000,40627=>1000,40628=>1000,40629=>1000,40632=>1000,40633=>1000,40634=>1000,40635=>1000,40636=>1000,40637=>1000,40638=>1000,40639=>1000,40643=>1000,40644=>1000,40646=>1000,40648=>1000,40651=>1000,40652=>1000,40653=>1000,40654=>1000,40655=>1000,40656=>1000,40657=>1000,40658=>1000,40660=>1000,40661=>1000,40664=>1000,40665=>1000,40667=>1000,40668=>1000,40669=>1000,40670=>1000,40671=>1000,40672=>1000,40676=>1000,40677=>1000,40679=>1000,40680=>1000,40684=>1000,40685=>1000,40686=>1000,40687=>1000,40688=>1000,40689=>1000,40690=>1000,40692=>1000,40693=>1000,40694=>1000,40695=>1000,40696=>1000,40697=>1000,40699=>1000,40700=>1000,40701=>1000,40702=>1000,40703=>1000,40706=>1000,40707=>1000,40711=>1000,40712=>1000,40713=>1000,40718=>1000,40719=>1000,40720=>1000,40721=>1000,40722=>1000,40723=>1000,40724=>1000,40725=>1000,40726=>1000,40727=>1000,40729=>1000,40730=>1000,40731=>1000,40735=>1000,40736=>1000,40737=>1000,40738=>1000,40742=>1000,40746=>1000,40747=>1000,40748=>1000,40751=>1000,40753=>1000,40754=>1000,40756=>1000,40759=>1000,40761=>1000,40762=>1000,40763=>1000,40764=>1000,40765=>1000,40766=>1000,40767=>1000,40769=>1000,40771=>1000,40772=>1000,40773=>1000,40774=>1000,40775=>1000,40778=>1000,40779=>1000,40782=>1000,40783=>1000,40784=>1000,40786=>1000,40787=>1000,40788=>1000,40789=>1000,40790=>1000,40791=>1000,40792=>1000,40794=>1000,40797=>1000,40798=>1000,40799=>1000,40800=>1000,40801=>1000,40802=>1000,40803=>1000,40806=>1000,40807=>1000,40808=>1000,40809=>1000,40810=>1000,40812=>1000,40813=>1000,40814=>1000,40815=>1000,40816=>1000,40817=>1000,40818=>1000,40819=>1000,40821=>1000,40822=>1000,40823=>1000,40826=>1000,40829=>1000,40831=>1000,40845=>1000,40847=>1000,40848=>1000,40849=>1000,40850=>1000,40852=>1000,40853=>1000,40854=>1000,40855=>1000,40857=>1000,40860=>1000,40861=>1000,40862=>1000,40863=>1000,40864=>1000,40865=>1000,40866=>1000,40867=>1000,40869=>1000,40884=>1000,40892=>1000,40893=>1000,40894=>1000,40895=>1000,40896=>1000,40897=>1000,40898=>1000,40900=>1000,40902=>1000,40908=>1000,63744=>1000,63745=>1000,63746=>1000,63747=>1000,63748=>1000,63749=>1000,63750=>1000,63751=>1000,63752=>1000,63753=>1000,63754=>1000,63755=>1000,63756=>1000,63757=>1000,63758=>1000,63759=>1000,63760=>1000,63761=>1000,63762=>1000,63763=>1000,63764=>1000,63765=>1000,63766=>1000,63767=>1000,63768=>1000,63769=>1000,63770=>1000,63771=>1000,63772=>1000,63773=>1000,63774=>1000,63775=>1000,63776=>1000,63777=>1000,63778=>1000,63779=>1000,63780=>1000,63781=>1000,63782=>1000,63783=>1000,63784=>1000,63785=>1000,63786=>1000,63787=>1000,63788=>1000,63789=>1000,63790=>1000,63791=>1000,63792=>1000,63793=>1000,63794=>1000,63795=>1000,63796=>1000,63797=>1000,63798=>1000,63799=>1000,63800=>1000,63801=>1000,63802=>1000,63803=>1000,63804=>1000,63805=>1000,63806=>1000,63807=>1000,63808=>1000,63809=>1000,63810=>1000,63811=>1000,63812=>1000,63813=>1000,63814=>1000,63815=>1000,63816=>1000,63817=>1000,63818=>1000,63819=>1000,63820=>1000,63821=>1000,63822=>1000,63823=>1000,63824=>1000,63825=>1000,63826=>1000,63827=>1000,63828=>1000,63829=>1000,63830=>1000,63831=>1000,63832=>1000,63833=>1000,63835=>1000,63836=>1000,63837=>1000,63838=>1000,63839=>1000,63840=>1000,63841=>1000,63842=>1000,63843=>1000,63844=>1000,63845=>1000,63846=>1000,63847=>1000,63848=>1000,63849=>1000,63850=>1000,63851=>1000,63852=>1000,63853=>1000,63854=>1000,63855=>1000,63856=>1000,63857=>1000,63858=>1000,63859=>1000,63860=>1000,63861=>1000,63862=>1000,63863=>1000,63864=>1000,63865=>1000,63866=>1000,63867=>1000,63868=>1000,63869=>1000,63870=>1000,63871=>1000,63872=>1000,63873=>1000,63874=>1000,63875=>1000,63876=>1000,63877=>1000,63878=>1000,63879=>1000,63880=>1000,63881=>1000,63882=>1000,63883=>1000,63884=>1000,63885=>1000,63886=>1000,63887=>1000,63888=>1000,63889=>1000,63890=>1000,63891=>1000,63892=>1000,63893=>1000,63894=>1000,63895=>1000,63896=>1000,63897=>1000,63898=>1000,63899=>1000,63900=>1000,63901=>1000,63902=>1000,63903=>1000,63904=>1000,63905=>1000,63906=>1000,63907=>1000,63908=>1000,63909=>1000,63910=>1000,63911=>1000,63912=>1000,63913=>1000,63914=>1000,63915=>1000,63916=>1000,63917=>1000,63918=>1000,63919=>1000,63920=>1000,63921=>1000,63922=>1000,63923=>1000,63924=>1000,63925=>1000,63926=>1000,63927=>1000,63928=>1000,63929=>1000,63930=>1000,63931=>1000,63932=>1000,63933=>1000,63934=>1000,63935=>1000,63936=>1000,63937=>1000,63938=>1000,63939=>1000,63940=>1000,63941=>1000,63942=>1000,63943=>1000,63944=>1000,63945=>1000,63946=>1000,63947=>1000,63948=>1000,63949=>1000,63950=>1000,63951=>1000,63952=>1000,63953=>1000,63954=>1000,63955=>1000,63956=>1000,63957=>1000,63958=>1000,63959=>1000,63960=>1000,63961=>1000,63962=>1000,63963=>1000,63964=>1000,63965=>1000,63966=>1000,63967=>1000,63968=>1000,63969=>1000,63970=>1000,63971=>1000,63972=>1000,63973=>1000,63974=>1000,63975=>1000,63976=>1000,63977=>1000,63978=>1000,63979=>1000,63980=>1000,63981=>1000,63982=>1000,63983=>1000,63984=>1000,63985=>1000,63986=>1000,63988=>1000,63989=>1000,63990=>1000,63991=>1000,63992=>1000,63993=>1000,63994=>1000,63995=>1000,63996=>1000,63997=>1000,63998=>1000,63999=>1000,64000=>1000,64001=>1000,64002=>1000,64003=>1000,64004=>1000,64005=>1000,64006=>1000,64007=>1000,64008=>1000,64009=>1000,64010=>1000,64011=>1000,64014=>1000,64015=>1000,64016=>1000,64017=>1000,64018=>1000,64019=>1000,64020=>1000,64021=>1000,64022=>1000,64023=>1000,64024=>1000,64025=>1000,64026=>1000,64027=>1000,64028=>1000,64029=>1000,64030=>1000,64031=>1000,64032=>1000,64033=>1000,64034=>1000,64035=>1000,64036=>1000,64037=>1000,64038=>1000,64039=>1000,64040=>1000,64041=>1000,64042=>1000,64043=>1000,64044=>1000,64045=>1000,64046=>1000,64047=>1000,64048=>1000,64049=>1000,64050=>1000,64051=>1000,64052=>1000,64053=>1000,64054=>1000,64055=>1000,64056=>1000,64057=>1000,64058=>1000,64059=>1000,64060=>1000,64061=>1000,64062=>1000,64063=>1000,64064=>1000,64065=>1000,64066=>1000,64067=>1000,64068=>1000,64069=>1000,64070=>1000,64071=>1000,64072=>1000,64073=>1000,64074=>1000,64075=>1000,64076=>1000,64077=>1000,64078=>1000,64079=>1000,64080=>1000,64081=>1000,64082=>1000,64083=>1000,64084=>1000,64085=>1000,64086=>1000,64087=>1000,64088=>1000,64089=>1000,64090=>1000,64091=>1000,64092=>1000,64093=>1000,64094=>1000,64095=>1000,64096=>1000,64097=>1000,64098=>1000,64099=>1000,64100=>1000,64101=>1000,64102=>1000,64103=>1000,64104=>1000,64105=>1000,64106=>1000,64107=>1000,64108=>1000,64109=>1000,64256=>720,64257=>675,64258=>687,64259=>1024,64260=>1036,65040=>1000,65041=>1000,65042=>1000,65043=>1000,65044=>1000,65045=>1000,65046=>1000,65047=>1000,65048=>1000,65049=>1000,65072=>1000,65073=>1000,65074=>1000,65075=>1000,65076=>1000,65077=>1000,65078=>1000,65079=>1000,65080=>1000,65081=>1000,65082=>1000,65083=>1000,65084=>1000,65085=>1000,65086=>1000,65087=>1000,65088=>1000,65089=>1000,65090=>1000,65091=>1000,65092=>1000,65093=>1000,65094=>1000,65095=>1000,65096=>1000,65097=>1000,65098=>1000,65099=>1000,65100=>1000,65101=>1000,65102=>1000,65103=>1000,65104=>1000,65105=>1000,65106=>1000,65108=>1000,65109=>1000,65110=>1000,65111=>1000,65112=>1000,65113=>1000,65114=>1000,65115=>1000,65116=>1000,65117=>1000,65118=>1000,65119=>1000,65120=>1000,65121=>1000,65122=>1000,65123=>1000,65124=>1000,65125=>1000,65126=>1000,65128=>1000,65129=>1000,65130=>1000,65131=>1000,65281=>1000,65282=>1000,65283=>1000,65284=>1000,65285=>1000,65286=>1000,65287=>1000,65288=>1000,65289=>1000,65290=>1000,65291=>1000,65292=>1000,65293=>1000,65294=>1000,65295=>1000,65296=>1000,65297=>1000,65298=>1000,65299=>1000,65300=>1000,65301=>1000,65302=>1000,65303=>1000,65304=>1000,65305=>1000,65306=>1000,65307=>1000,65308=>1000,65309=>1000,65310=>1000,65311=>1000,65312=>1000,65313=>1000,65314=>1000,65315=>1000,65316=>1000,65317=>1000,65318=>1000,65319=>1000,65320=>1000,65321=>1000,65322=>1000,65323=>1000,65324=>1000,65325=>1000,65326=>1000,65327=>1000,65328=>1000,65329=>1000,65330=>1000,65331=>1000,65332=>1000,65333=>1000,65334=>1000,65335=>1000,65336=>1000,65337=>1000,65338=>1000,65339=>1000,65340=>1000,65341=>1000,65342=>1000,65343=>1000,65344=>1000,65345=>1000,65346=>1000,65347=>1000,65348=>1000,65349=>1000,65350=>1000,65351=>1000,65352=>1000,65353=>1000,65354=>1000,65355=>1000,65356=>1000,65357=>1000,65358=>1000,65359=>1000,65360=>1000,65361=>1000,65362=>1000,65363=>1000,65364=>1000,65365=>1000,65366=>1000,65367=>1000,65368=>1000,65369=>1000,65370=>1000,65371=>1000,65372=>1000,65373=>1000,65374=>1000,65375=>1000,65376=>1000,65377=>500,65378=>500,65379=>500,65380=>500,65381=>500,65382=>500,65383=>500,65384=>500,65385=>500,65386=>500,65387=>500,65388=>500,65389=>500,65390=>500,65391=>500,65392=>500,65393=>500,65394=>500,65395=>500,65396=>500,65397=>500,65398=>500,65399=>500,65400=>500,65401=>500,65402=>500,65403=>500,65404=>500,65405=>500,65406=>500,65407=>500,65408=>500,65409=>500,65410=>500,65411=>500,65412=>500,65413=>500,65414=>500,65415=>500,65416=>500,65417=>500,65418=>500,65419=>500,65420=>500,65421=>500,65422=>500,65423=>500,65424=>500,65425=>500,65426=>500,65427=>500,65428=>500,65429=>500,65430=>500,65431=>500,65432=>500,65433=>500,65434=>500,65435=>500,65436=>500,65437=>500,65438=>500,65439=>500,65441=>920,65442=>920,65443=>920,65444=>920,65445=>920,65446=>920,65447=>920,65448=>920,65449=>920,65450=>920,65451=>920,65452=>920,65453=>920,65454=>920,65455=>920,65456=>920,65457=>920,65458=>920,65459=>920,65460=>920,65461=>920,65462=>920,65463=>920,65464=>920,65465=>920,65466=>920,65467=>920,65468=>920,65469=>920,65470=>920,65474=>920,65475=>920,65476=>920,65477=>920,65478=>920,65479=>920,65482=>920,65483=>920,65484=>920,65485=>920,65486=>920,65487=>920,65490=>920,65491=>920,65492=>920,65493=>920,65494=>920,65495=>920,65498=>920,65499=>920,65500=>920,65504=>1000,65505=>1000,65506=>1000,65507=>1000,65508=>1000,65509=>1000,65510=>1000,65512=>500,65513=>500,65514=>500,65515=>500,65516=>500,65517=>500,65518=>500); +// --- EOF --- diff --git a/fonts/Noto_Sans_JP/notosansjpb.z b/fonts/Noto_Sans_JP/notosansjpb.z new file mode 100644 index 0000000..a16b70a Binary files /dev/null and b/fonts/Noto_Sans_JP/notosansjpb.z differ diff --git a/fonts/Noto_Sans_TC/LICENSE.txt b/fonts/Noto_Sans_TC/LICENSE.txt new file mode 100644 index 0000000..e660570 --- /dev/null +++ b/fonts/Noto_Sans_TC/LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source' + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/fonts/Noto_Sans_TC/NotoSansTC-Bold.ttf b/fonts/Noto_Sans_TC/NotoSansTC-Bold.ttf new file mode 100644 index 0000000..6b7fa41 Binary files /dev/null and b/fonts/Noto_Sans_TC/NotoSansTC-Bold.ttf differ diff --git a/fonts/Noto_Sans_TC/NotoSansTC-Regular.ttf b/fonts/Noto_Sans_TC/NotoSansTC-Regular.ttf new file mode 100644 index 0000000..e838ef5 Binary files /dev/null and b/fonts/Noto_Sans_TC/NotoSansTC-Regular.ttf differ diff --git a/fonts/Noto_Sans_TC/notosanstc.ctg.z b/fonts/Noto_Sans_TC/notosanstc.ctg.z new file mode 100644 index 0000000..21afa31 Binary files /dev/null and b/fonts/Noto_Sans_TC/notosanstc.ctg.z differ diff --git a/fonts/Noto_Sans_TC/notosanstc.php b/fonts/Noto_Sans_TC/notosanstc.php new file mode 100644 index 0000000..9960332 --- /dev/null +++ b/fonts/Noto_Sans_TC/notosanstc.php @@ -0,0 +1,15 @@ +32,'FontBBox'=>'[-1002 -1048 2928 1808]','ItalicAngle'=>0,'Ascent'=>1160,'Descent'=>-288,'Leading'=>0,'CapHeight'=>733,'XHeight'=>543,'StemV'=>70,'StemH'=>30,'AvgWidth'=>986,'MaxWidth'=>3000,'MissingWidth'=>1000); +$cw=array(0=>1000,32=>224,33=>323,34=>474,35=>555,36=>555,37=>921,38=>680,39=>278,40=>338,41=>338,42=>467,43=>555,44=>278,45=>347,46=>278,47=>392,48=>555,49=>555,50=>555,51=>555,52=>555,53=>555,54=>555,55=>555,56=>555,57=>555,58=>278,59=>278,60=>555,61=>555,62=>555,63=>474,64=>946,65=>608,66=>657,67=>638,68=>688,69=>589,70=>552,71=>689,72=>728,73=>293,74=>535,75=>646,76=>543,77=>812,78=>723,79=>742,80=>633,81=>742,82=>635,83=>596,84=>599,85=>721,86=>575,87=>878,88=>573,89=>531,90=>603,91=>338,92=>392,93=>338,94=>555,95=>559,96=>606,97=>563,98=>618,99=>510,100=>620,101=>554,102=>325,103=>564,104=>607,105=>275,106=>275,107=>552,108=>284,109=>926,110=>610,111=>606,112=>620,113=>620,114=>388,115=>468,116=>377,117=>607,118=>521,119=>802,120=>498,121=>521,122=>475,123=>338,124=>270,125=>338,126=>555,160=>224,161=>323,162=>555,163=>555,164=>555,165=>555,166=>270,167=>1000,168=>606,169=>832,170=>386,171=>479,172=>555,173=>347,174=>473,175=>606,176=>370,177=>1000,178=>411,179=>411,180=>606,181=>628,182=>1000,183=>1000,184=>606,185=>411,186=>407,187=>479,188=>873,189=>903,190=>889,191=>474,192=>608,193=>608,194=>608,195=>608,196=>608,197=>608,198=>918,199=>638,200=>589,201=>589,202=>589,203=>589,204=>293,205=>293,206=>293,207=>293,208=>712,209=>723,210=>742,211=>742,212=>742,213=>742,214=>742,215=>1000,216=>742,217=>721,218=>721,219=>721,220=>721,221=>531,222=>652,223=>643,224=>563,225=>563,226=>563,227=>563,228=>563,229=>563,230=>877,231=>510,232=>554,233=>554,234=>554,235=>554,236=>275,237=>275,238=>275,239=>275,240=>608,241=>610,242=>606,243=>606,244=>606,245=>606,246=>606,247=>1000,248=>606,249=>607,250=>607,251=>607,252=>607,253=>521,254=>620,255=>521,256=>608,257=>563,258=>608,259=>563,272=>712,273=>620,274=>589,275=>554,282=>589,283=>554,296=>293,297=>275,298=>293,299=>275,323=>723,324=>610,327=>723,328=>610,332=>742,333=>606,334=>742,335=>606,338=>947,339=>937,360=>721,361=>607,362=>721,363=>607,364=>721,365=>607,402=>555,416=>742,417=>606,431=>736,432=>607,461=>608,462=>563,463=>293,464=>275,465=>742,466=>606,467=>721,468=>607,469=>721,470=>607,471=>721,472=>607,473=>721,474=>607,475=>721,476=>607,504=>723,505=>610,593=>625,609=>620,699=>278,711=>600,713=>1000,714=>600,715=>600,729=>500,746=>600,747=>600,768=>0,769=>0,772=>0,775=>0,780=>0,913=>608,914=>657,915=>557,916=>656,917=>589,918=>603,919=>728,920=>742,921=>293,922=>646,923=>575,924=>812,925=>723,926=>595,927=>742,928=>721,929=>633,931=>601,932=>599,933=>531,934=>803,935=>573,936=>780,937=>758,945=>625,946=>631,947=>540,948=>594,949=>501,950=>473,951=>604,952=>583,953=>292,954=>551,955=>552,956=>628,957=>528,958=>481,959=>597,960=>654,961=>613,962=>483,963=>609,964=>514,965=>569,966=>760,967=>536,968=>769,969=>782,1025=>589,1040=>608,1041=>648,1042=>657,1043=>557,1044=>712,1045=>589,1046=>898,1047=>620,1048=>733,1049=>733,1050=>648,1051=>704,1052=>812,1053=>728,1054=>742,1055=>721,1056=>633,1057=>638,1058=>599,1059=>575,1060=>818,1061=>573,1062=>718,1063=>668,1064=>966,1065=>976,1066=>805,1067=>891,1068=>648,1069=>638,1070=>1014,1071=>650,1072=>563,1073=>608,1074=>567,1075=>459,1076=>594,1077=>554,1078=>760,1079=>510,1080=>631,1081=>631,1082=>556,1083=>593,1084=>707,1085=>629,1086=>606,1087=>618,1088=>620,1089=>510,1090=>514,1091=>521,1092=>820,1093=>498,1094=>619,1095=>572,1096=>837,1097=>845,1098=>665,1099=>753,1100=>548,1101=>510,1102=>825,1103=>574,1105=>554,7742=>812,7743=>926,7840=>608,7841=>563,7842=>608,7843=>563,7844=>608,7845=>563,7846=>608,7847=>563,7848=>608,7849=>563,7850=>608,7851=>563,7852=>608,7853=>563,7854=>608,7855=>563,7856=>608,7857=>563,7858=>608,7859=>563,7860=>608,7861=>563,7862=>608,7863=>563,7864=>589,7865=>554,7866=>589,7867=>554,7868=>589,7869=>554,7870=>589,7871=>554,7872=>589,7873=>554,7874=>589,7875=>554,7876=>589,7877=>554,7878=>589,7879=>554,7880=>293,7881=>275,7882=>293,7883=>275,7884=>742,7885=>606,7886=>742,7887=>606,7888=>742,7889=>606,7890=>742,7891=>606,7892=>742,7893=>606,7894=>742,7895=>606,7896=>742,7897=>606,7898=>742,7899=>606,7900=>742,7901=>606,7902=>742,7903=>606,7904=>742,7905=>606,7906=>742,7907=>606,7908=>721,7909=>607,7910=>721,7911=>607,7912=>736,7913=>607,7914=>736,7915=>607,7916=>736,7917=>607,7918=>736,7919=>607,7920=>736,7921=>607,7922=>531,7923=>521,7924=>531,7925=>521,7926=>531,7927=>521,7928=>531,7929=>521,8194=>500,8195=>1000,8208=>1000,8209=>347,8210=>536,8211=>536,8212=>894,8213=>1000,8214=>1000,8216=>1000,8217=>1000,8218=>278,8220=>1000,8221=>1000,8222=>474,8224=>1000,8225=>1000,8226=>1000,8229=>1000,8230=>1000,8231=>1000,8240=>1000,8242=>278,8243=>474,8245=>1000,8249=>302,8250=>302,8251=>1000,8252=>613,8258=>1000,8263=>910,8264=>758,8265=>758,8273=>1000,8308=>411,8361=>555,8363=>555,8364=>555,8413=>0,8414=>0,8448=>1000,8451=>1000,8453=>1000,8457=>1000,8458=>1000,8463=>1000,8467=>457,8470=>997,8481=>1000,8482=>711,8486=>1000,8487=>1000,8491=>1000,8494=>894,8501=>1000,8507=>1000,8544=>1000,8545=>1000,8546=>1000,8547=>1000,8548=>1000,8549=>1000,8550=>1000,8551=>1000,8552=>1000,8553=>1000,8554=>1000,8555=>1000,8560=>1000,8561=>1000,8562=>1000,8563=>1000,8564=>1000,8565=>1000,8566=>1000,8567=>1000,8568=>1000,8569=>1000,8570=>1000,8571=>1000,8592=>1000,8593=>1000,8594=>1000,8595=>1000,8596=>1000,8597=>1000,8598=>1000,8599=>1000,8600=>1000,8601=>1000,8632=>1000,8633=>1000,8644=>1000,8645=>1000,8646=>1000,8651=>1000,8652=>1000,8656=>1000,8658=>1000,8660=>1000,8678=>1000,8679=>1000,8680=>1000,8681=>1000,8693=>1000,8704=>1000,8706=>1000,8707=>1000,8709=>1000,8710=>1000,8711=>1000,8712=>1000,8713=>1000,8714=>1000,8715=>1000,8719=>1000,8721=>1000,8722=>555,8723=>1000,8725=>1000,8730=>1000,8733=>1000,8734=>1000,8735=>1000,8736=>1000,8739=>1000,8741=>1000,8742=>1000,8743=>1000,8744=>1000,8745=>1000,8746=>1000,8747=>1000,8748=>1000,8749=>1000,8750=>1000,8756=>1000,8757=>1000,8758=>1000,8759=>1000,8765=>1000,8771=>1000,8773=>1000,8776=>1000,8780=>1000,8800=>1000,8801=>1000,8802=>1000,8804=>1000,8805=>1000,8806=>1000,8807=>1000,8810=>1000,8811=>1000,8814=>1000,8815=>1000,8818=>1000,8819=>1000,8822=>1000,8823=>1000,8834=>1000,8835=>1000,8836=>1000,8837=>1000,8838=>1000,8839=>1000,8842=>1000,8843=>1000,8853=>1000,8854=>1000,8855=>1000,8856=>1000,8857=>1000,8864=>1000,8869=>1000,8895=>1000,8922=>1000,8923=>1000,8943=>1000,8965=>1000,8966=>1000,8967=>1000,8978=>1000,8984=>1000,9001=>1000,9002=>1000,9136=>1000,9137=>1000,9150=>1000,9151=>1000,9152=>1000,9153=>1000,9154=>1000,9155=>1000,9156=>1000,9157=>1000,9158=>1000,9159=>1000,9160=>1000,9161=>1000,9162=>1000,9163=>1000,9164=>1000,9166=>1000,9178=>1000,9179=>1000,9251=>1000,9312=>1000,9313=>1000,9314=>1000,9315=>1000,9316=>1000,9317=>1000,9318=>1000,9319=>1000,9320=>1000,9321=>1000,9322=>1000,9323=>1000,9324=>1000,9325=>1000,9326=>1000,9327=>1000,9328=>1000,9329=>1000,9330=>1000,9331=>1000,9332=>1000,9333=>1000,9334=>1000,9335=>1000,9336=>1000,9337=>1000,9338=>1000,9339=>1000,9340=>1000,9341=>1000,9342=>1000,9343=>1000,9344=>1000,9345=>1000,9346=>1000,9347=>1000,9348=>1000,9349=>1000,9350=>1000,9351=>1000,9352=>1000,9353=>1000,9354=>1000,9355=>1000,9356=>1000,9357=>1000,9358=>1000,9359=>1000,9360=>1000,9361=>1000,9362=>1000,9363=>1000,9364=>1000,9365=>1000,9366=>1000,9367=>1000,9368=>1000,9369=>1000,9370=>1000,9371=>1000,9372=>1000,9373=>1000,9374=>1000,9375=>1000,9376=>1000,9377=>1000,9378=>1000,9379=>1000,9380=>1000,9381=>1000,9382=>1000,9383=>1000,9384=>1000,9385=>1000,9386=>1000,9387=>1000,9388=>1000,9389=>1000,9390=>1000,9391=>1000,9392=>1000,9393=>1000,9394=>1000,9395=>1000,9396=>1000,9397=>1000,9398=>1000,9399=>1000,9400=>1000,9401=>1000,9402=>1000,9403=>1000,9404=>1000,9405=>1000,9406=>1000,9407=>1000,9408=>1000,9409=>1000,9410=>1000,9411=>1000,9412=>1000,9413=>1000,9414=>1000,9415=>1000,9416=>1000,9417=>1000,9418=>1000,9419=>1000,9420=>1000,9421=>1000,9422=>1000,9423=>1000,9424=>1000,9425=>1000,9426=>1000,9427=>1000,9428=>1000,9429=>1000,9430=>1000,9431=>1000,9432=>1000,9433=>1000,9434=>1000,9435=>1000,9436=>1000,9437=>1000,9438=>1000,9439=>1000,9440=>1000,9441=>1000,9442=>1000,9443=>1000,9444=>1000,9445=>1000,9446=>1000,9447=>1000,9448=>1000,9449=>1000,9450=>1000,9451=>1000,9452=>1000,9453=>1000,9454=>1000,9455=>1000,9456=>1000,9457=>1000,9458=>1000,9459=>1000,9460=>1000,9461=>1000,9462=>1000,9463=>1000,9464=>1000,9465=>1000,9466=>1000,9467=>1000,9468=>1000,9469=>1000,9470=>1000,9471=>1000,9472=>1000,9473=>1000,9474=>1000,9475=>1000,9476=>1000,9477=>1000,9478=>1000,9479=>1000,9480=>1000,9481=>1000,9482=>1000,9483=>1000,9484=>1000,9485=>1000,9486=>1000,9487=>1000,9488=>1000,9489=>1000,9490=>1000,9491=>1000,9492=>1000,9493=>1000,9494=>1000,9495=>1000,9496=>1000,9497=>1000,9498=>1000,9499=>1000,9500=>1000,9501=>1000,9502=>1000,9503=>1000,9504=>1000,9505=>1000,9506=>1000,9507=>1000,9508=>1000,9509=>1000,9510=>1000,9511=>1000,9512=>1000,9513=>1000,9514=>1000,9515=>1000,9516=>1000,9517=>1000,9518=>1000,9519=>1000,9520=>1000,9521=>1000,9522=>1000,9523=>1000,9524=>1000,9525=>1000,9526=>1000,9527=>1000,9528=>1000,9529=>1000,9530=>1000,9531=>1000,9532=>1000,9533=>1000,9534=>1000,9535=>1000,9536=>1000,9537=>1000,9538=>1000,9539=>1000,9540=>1000,9541=>1000,9542=>1000,9543=>1000,9544=>1000,9545=>1000,9546=>1000,9547=>1000,9548=>1000,9549=>1000,9550=>1000,9551=>1000,9552=>1000,9553=>1000,9554=>1000,9555=>1000,9556=>1000,9557=>1000,9558=>1000,9559=>1000,9560=>1000,9561=>1000,9562=>1000,9563=>1000,9564=>1000,9565=>1000,9566=>1000,9567=>1000,9568=>1000,9569=>1000,9570=>1000,9571=>1000,9572=>1000,9573=>1000,9574=>1000,9575=>1000,9576=>1000,9577=>1000,9578=>1000,9579=>1000,9580=>1000,9581=>1000,9582=>1000,9583=>1000,9584=>1000,9585=>1000,9586=>1000,9587=>1000,9588=>1000,9589=>1000,9590=>1000,9591=>1000,9592=>1000,9593=>1000,9594=>1000,9595=>1000,9596=>1000,9597=>1000,9598=>1000,9599=>1000,9600=>1000,9601=>1000,9602=>1000,9603=>1000,9604=>1000,9605=>1000,9606=>1000,9607=>1000,9608=>1000,9609=>1000,9610=>1000,9611=>1000,9612=>1000,9613=>1000,9614=>1000,9615=>1000,9616=>1000,9617=>1000,9618=>1000,9619=>1000,9620=>1000,9621=>1000,9622=>1000,9623=>1000,9624=>1000,9625=>1000,9626=>1000,9627=>1000,9628=>1000,9629=>1000,9630=>1000,9631=>1000,9632=>1000,9633=>1000,9634=>1000,9635=>1000,9636=>1000,9637=>1000,9638=>1000,9639=>1000,9640=>1000,9641=>1000,9642=>1000,9643=>1000,9649=>1000,9650=>1000,9651=>1000,9654=>1000,9655=>1000,9660=>1000,9661=>1000,9664=>1000,9665=>1000,9670=>1000,9671=>1000,9673=>1000,9674=>1000,9675=>1000,9676=>1000,9678=>1000,9679=>1000,9680=>1000,9681=>1000,9682=>1000,9683=>1000,9698=>1000,9699=>1000,9700=>1000,9701=>1000,9702=>1000,9711=>1000,9728=>1000,9729=>1000,9730=>1000,9731=>1000,9733=>1000,9734=>1000,9737=>1000,9742=>1000,9743=>1000,9750=>1000,9751=>1000,9756=>1000,9757=>1000,9758=>1000,9759=>1000,9775=>1000,9792=>1000,9793=>1000,9794=>1000,9824=>1000,9825=>1000,9826=>1000,9827=>1000,9828=>1000,9829=>1000,9830=>1000,9831=>1000,9832=>1000,9833=>1000,9834=>1000,9835=>1000,9836=>1000,9837=>1000,9838=>1000,9839=>1000,9842=>1000,9843=>1000,9844=>1000,9845=>1000,9846=>1000,9847=>1000,9848=>1000,9849=>1000,9850=>1000,9851=>1000,9852=>1000,9853=>1000,9888=>1000,9917=>1000,9918=>1000,9986=>1000,10003=>683,10010=>1000,10045=>1000,10047=>1000,10048=>1000,10070=>1000,10102=>1000,10103=>1000,10104=>1000,10105=>1000,10106=>1000,10107=>1000,10108=>1000,10109=>1000,10110=>1000,10111=>1000,10112=>1000,10113=>1000,10114=>1000,10115=>1000,10116=>1000,10117=>1000,10118=>1000,10119=>1000,10120=>1000,10121=>1000,10122=>1000,10123=>1000,10124=>1000,10125=>1000,10126=>1000,10127=>1000,10128=>1000,10129=>1000,10130=>1000,10131=>1000,10145=>1000,10548=>1000,10549=>1000,10687=>1000,10746=>1000,10747=>1000,11013=>1000,11014=>1000,11015=>1000,11034=>1000,11157=>1000,11834=>1676,11835=>2459,11904=>1000,11905=>1000,11906=>1000,11907=>1000,11908=>1000,11909=>1000,11910=>1000,11911=>1000,11912=>1000,11913=>1000,11914=>1000,11915=>1000,11916=>1000,11917=>1000,11918=>1000,11919=>1000,11920=>1000,11921=>1000,11922=>1000,11923=>1000,11924=>1000,11925=>1000,11926=>1000,11927=>1000,11928=>1000,11929=>1000,11931=>1000,11932=>1000,11933=>1000,11934=>1000,11935=>1000,11936=>1000,11937=>1000,11938=>1000,11939=>1000,11940=>1000,11941=>1000,11942=>1000,11943=>1000,11944=>1000,11945=>1000,11946=>1000,11947=>1000,11948=>1000,11949=>1000,11950=>1000,11951=>1000,11952=>1000,11953=>1000,11954=>1000,11955=>1000,11956=>1000,11957=>1000,11958=>1000,11959=>1000,11960=>1000,11961=>1000,11962=>1000,11963=>1000,11964=>1000,11965=>1000,11966=>1000,11967=>1000,11968=>1000,11969=>1000,11970=>1000,11971=>1000,11972=>1000,11973=>1000,11974=>1000,11975=>1000,11976=>1000,11977=>1000,11978=>1000,11979=>1000,11980=>1000,11981=>1000,11982=>1000,11983=>1000,11984=>1000,11985=>1000,11986=>1000,11987=>1000,11988=>1000,11989=>1000,11990=>1000,11991=>1000,11992=>1000,11993=>1000,11994=>1000,11995=>1000,11996=>1000,11997=>1000,11998=>1000,11999=>1000,12000=>1000,12001=>1000,12002=>1000,12003=>1000,12004=>1000,12005=>1000,12006=>1000,12007=>1000,12008=>1000,12009=>1000,12010=>1000,12011=>1000,12012=>1000,12013=>1000,12014=>1000,12015=>1000,12016=>1000,12017=>1000,12018=>1000,12019=>1000,12032=>1000,12033=>1000,12034=>1000,12035=>1000,12036=>1000,12037=>1000,12038=>1000,12039=>1000,12040=>1000,12041=>1000,12042=>1000,12043=>1000,12044=>1000,12045=>1000,12046=>1000,12047=>1000,12048=>1000,12049=>1000,12050=>1000,12051=>1000,12052=>1000,12053=>1000,12054=>1000,12055=>1000,12056=>1000,12057=>1000,12058=>1000,12059=>1000,12060=>1000,12061=>1000,12062=>1000,12063=>1000,12064=>1000,12065=>1000,12066=>1000,12067=>1000,12068=>1000,12069=>1000,12070=>1000,12071=>1000,12072=>1000,12073=>1000,12074=>1000,12075=>1000,12076=>1000,12077=>1000,12078=>1000,12079=>1000,12080=>1000,12081=>1000,12082=>1000,12083=>1000,12084=>1000,12085=>1000,12086=>1000,12087=>1000,12088=>1000,12089=>1000,12090=>1000,12091=>1000,12092=>1000,12093=>1000,12094=>1000,12095=>1000,12096=>1000,12097=>1000,12098=>1000,12099=>1000,12100=>1000,12101=>1000,12102=>1000,12103=>1000,12104=>1000,12105=>1000,12106=>1000,12107=>1000,12108=>1000,12109=>1000,12110=>1000,12111=>1000,12112=>1000,12113=>1000,12114=>1000,12115=>1000,12116=>1000,12117=>1000,12118=>1000,12119=>1000,12120=>1000,12121=>1000,12122=>1000,12123=>1000,12124=>1000,12125=>1000,12126=>1000,12127=>1000,12128=>1000,12129=>1000,12130=>1000,12131=>1000,12132=>1000,12133=>1000,12134=>1000,12135=>1000,12136=>1000,12137=>1000,12138=>1000,12139=>1000,12140=>1000,12141=>1000,12142=>1000,12143=>1000,12144=>1000,12145=>1000,12146=>1000,12147=>1000,12148=>1000,12149=>1000,12150=>1000,12151=>1000,12152=>1000,12153=>1000,12154=>1000,12155=>1000,12156=>1000,12157=>1000,12158=>1000,12159=>1000,12160=>1000,12161=>1000,12162=>1000,12163=>1000,12164=>1000,12165=>1000,12166=>1000,12167=>1000,12168=>1000,12169=>1000,12170=>1000,12171=>1000,12172=>1000,12173=>1000,12174=>1000,12175=>1000,12176=>1000,12177=>1000,12178=>1000,12179=>1000,12180=>1000,12181=>1000,12182=>1000,12183=>1000,12184=>1000,12185=>1000,12186=>1000,12187=>1000,12188=>1000,12189=>1000,12190=>1000,12191=>1000,12192=>1000,12193=>1000,12194=>1000,12195=>1000,12196=>1000,12197=>1000,12198=>1000,12199=>1000,12200=>1000,12201=>1000,12202=>1000,12203=>1000,12204=>1000,12205=>1000,12206=>1000,12207=>1000,12208=>1000,12209=>1000,12210=>1000,12211=>1000,12212=>1000,12213=>1000,12214=>1000,12215=>1000,12216=>1000,12217=>1000,12218=>1000,12219=>1000,12220=>1000,12221=>1000,12222=>1000,12223=>1000,12224=>1000,12225=>1000,12226=>1000,12227=>1000,12228=>1000,12229=>1000,12230=>1000,12231=>1000,12232=>1000,12233=>1000,12234=>1000,12235=>1000,12236=>1000,12237=>1000,12238=>1000,12239=>1000,12240=>1000,12241=>1000,12242=>1000,12243=>1000,12244=>1000,12245=>1000,12272=>1000,12273=>1000,12274=>1000,12275=>1000,12276=>1000,12277=>1000,12278=>1000,12279=>1000,12280=>1000,12281=>1000,12282=>1000,12283=>1000,12288=>1000,12289=>1000,12290=>1000,12291=>1000,12292=>1000,12293=>1000,12294=>1000,12295=>1000,12296=>1000,12297=>1000,12298=>1000,12299=>1000,12300=>1000,12301=>1000,12302=>1000,12303=>1000,12304=>1000,12305=>1000,12306=>1000,12307=>1000,12308=>1000,12309=>1000,12310=>1000,12311=>1000,12312=>1000,12313=>1000,12314=>1000,12315=>1000,12316=>1000,12317=>1000,12318=>1000,12319=>1000,12320=>1000,12321=>1000,12322=>1000,12323=>1000,12324=>1000,12325=>1000,12326=>1000,12327=>1000,12328=>1000,12329=>1000,12330=>0,12331=>0,12332=>0,12333=>0,12334=>250,12335=>250,12336=>1000,12337=>1000,12338=>1000,12339=>1000,12340=>1000,12341=>1000,12342=>1000,12343=>1000,12344=>1000,12345=>1000,12346=>1000,12347=>1000,12348=>1000,12349=>1000,12350=>1000,12351=>1000,12353=>1000,12354=>1000,12355=>1000,12356=>1000,12357=>1000,12358=>1000,12359=>1000,12360=>1000,12361=>1000,12362=>1000,12363=>1000,12364=>1000,12365=>1000,12366=>1000,12367=>1000,12368=>1000,12369=>1000,12370=>1000,12371=>1000,12372=>1000,12373=>1000,12374=>1000,12375=>1000,12376=>1000,12377=>1000,12378=>1000,12379=>1000,12380=>1000,12381=>1000,12382=>1000,12383=>1000,12384=>1000,12385=>1000,12386=>1000,12387=>1000,12388=>1000,12389=>1000,12390=>1000,12391=>1000,12392=>1000,12393=>1000,12394=>1000,12395=>1000,12396=>1000,12397=>1000,12398=>1000,12399=>1000,12400=>1000,12401=>1000,12402=>1000,12403=>1000,12404=>1000,12405=>1000,12406=>1000,12407=>1000,12408=>1000,12409=>1000,12410=>1000,12411=>1000,12412=>1000,12413=>1000,12414=>1000,12415=>1000,12416=>1000,12417=>1000,12418=>1000,12419=>1000,12420=>1000,12421=>1000,12422=>1000,12423=>1000,12424=>1000,12425=>1000,12426=>1000,12427=>1000,12428=>1000,12429=>1000,12430=>1000,12431=>1000,12432=>1000,12433=>1000,12434=>1000,12435=>1000,12436=>1000,12437=>1000,12438=>1000,12441=>0,12442=>0,12443=>1000,12444=>1000,12445=>1000,12446=>1000,12447=>1000,12448=>1000,12449=>1000,12450=>1000,12451=>1000,12452=>1000,12453=>1000,12454=>1000,12455=>1000,12456=>1000,12457=>1000,12458=>1000,12459=>1000,12460=>1000,12461=>1000,12462=>1000,12463=>1000,12464=>1000,12465=>1000,12466=>1000,12467=>1000,12468=>1000,12469=>1000,12470=>1000,12471=>1000,12472=>1000,12473=>1000,12474=>1000,12475=>1000,12476=>1000,12477=>1000,12478=>1000,12479=>1000,12480=>1000,12481=>1000,12482=>1000,12483=>1000,12484=>1000,12485=>1000,12486=>1000,12487=>1000,12488=>1000,12489=>1000,12490=>1000,12491=>1000,12492=>1000,12493=>1000,12494=>1000,12495=>1000,12496=>1000,12497=>1000,12498=>1000,12499=>1000,12500=>1000,12501=>1000,12502=>1000,12503=>1000,12504=>1000,12505=>1000,12506=>1000,12507=>1000,12508=>1000,12509=>1000,12510=>1000,12511=>1000,12512=>1000,12513=>1000,12514=>1000,12515=>1000,12516=>1000,12517=>1000,12518=>1000,12519=>1000,12520=>1000,12521=>1000,12522=>1000,12523=>1000,12524=>1000,12525=>1000,12526=>1000,12527=>1000,12528=>1000,12529=>1000,12530=>1000,12531=>1000,12532=>1000,12533=>1000,12534=>1000,12535=>1000,12536=>1000,12537=>1000,12538=>1000,12539=>1000,12540=>1000,12541=>1000,12542=>1000,12543=>1000,12549=>1000,12550=>1000,12551=>1000,12552=>1000,12553=>1000,12554=>1000,12555=>1000,12556=>1000,12557=>1000,12558=>1000,12559=>1000,12560=>1000,12561=>1000,12562=>1000,12563=>1000,12564=>1000,12565=>1000,12566=>1000,12567=>1000,12568=>1000,12569=>1000,12570=>1000,12571=>1000,12572=>1000,12573=>1000,12574=>1000,12575=>1000,12576=>1000,12577=>1000,12578=>1000,12579=>1000,12580=>1000,12581=>1000,12582=>1000,12583=>1000,12584=>1000,12585=>1000,12586=>1000,12587=>1000,12588=>1000,12589=>1000,12590=>1000,12591=>1000,12593=>920,12594=>920,12595=>920,12596=>920,12597=>920,12598=>920,12599=>920,12600=>920,12601=>920,12602=>920,12603=>920,12604=>920,12605=>920,12606=>920,12607=>920,12608=>920,12609=>920,12610=>920,12611=>920,12612=>920,12613=>920,12614=>920,12615=>920,12616=>920,12617=>920,12618=>920,12619=>920,12620=>920,12621=>920,12622=>920,12623=>920,12624=>920,12625=>920,12626=>920,12627=>920,12628=>920,12629=>920,12630=>920,12631=>920,12632=>920,12633=>920,12634=>920,12635=>920,12636=>920,12637=>920,12638=>920,12639=>920,12640=>920,12641=>920,12642=>920,12643=>920,12645=>920,12646=>920,12647=>920,12648=>920,12649=>920,12650=>920,12651=>920,12652=>920,12653=>920,12654=>920,12655=>920,12656=>920,12657=>920,12658=>920,12659=>920,12660=>920,12661=>920,12662=>920,12663=>920,12664=>920,12665=>920,12666=>920,12667=>920,12668=>920,12669=>920,12670=>920,12671=>920,12672=>920,12673=>920,12674=>920,12675=>920,12676=>920,12677=>920,12678=>920,12679=>920,12680=>920,12681=>920,12682=>920,12683=>920,12684=>920,12685=>920,12686=>920,12688=>1000,12689=>1000,12690=>1000,12691=>1000,12692=>1000,12693=>1000,12694=>1000,12695=>1000,12696=>1000,12697=>1000,12698=>1000,12699=>1000,12700=>1000,12701=>1000,12702=>1000,12703=>1000,12704=>1000,12705=>1000,12706=>1000,12707=>1000,12708=>1000,12709=>1000,12710=>1000,12711=>1000,12712=>1000,12713=>1000,12714=>1000,12715=>1000,12716=>1000,12717=>1000,12718=>1000,12719=>1000,12720=>1000,12721=>1000,12722=>1000,12723=>1000,12724=>600,12725=>600,12726=>600,12727=>600,12728=>1000,12729=>1000,12730=>1000,12731=>600,12736=>1000,12737=>1000,12738=>1000,12739=>1000,12740=>1000,12741=>1000,12742=>1000,12743=>1000,12744=>1000,12745=>1000,12746=>1000,12747=>1000,12748=>1000,12749=>1000,12750=>1000,12751=>1000,12752=>1000,12753=>1000,12754=>1000,12755=>1000,12756=>1000,12757=>1000,12758=>1000,12759=>1000,12760=>1000,12761=>1000,12762=>1000,12763=>1000,12764=>1000,12765=>1000,12766=>1000,12767=>1000,12768=>1000,12769=>1000,12770=>1000,12771=>1000,12784=>1000,12785=>1000,12786=>1000,12787=>1000,12788=>1000,12789=>1000,12790=>1000,12791=>1000,12792=>1000,12793=>1000,12794=>1000,12795=>1000,12796=>1000,12797=>1000,12798=>1000,12799=>1000,12800=>1000,12801=>1000,12802=>1000,12803=>1000,12804=>1000,12805=>1000,12806=>1000,12807=>1000,12808=>1000,12809=>1000,12810=>1000,12811=>1000,12812=>1000,12813=>1000,12814=>1000,12815=>1000,12816=>1000,12817=>1000,12818=>1000,12819=>1000,12820=>1000,12821=>1000,12822=>1000,12823=>1000,12824=>1000,12825=>1000,12826=>1000,12827=>1000,12828=>1000,12829=>1000,12830=>1000,12832=>1000,12833=>1000,12834=>1000,12835=>1000,12836=>1000,12837=>1000,12838=>1000,12839=>1000,12840=>1000,12841=>1000,12842=>1000,12843=>1000,12844=>1000,12845=>1000,12846=>1000,12847=>1000,12848=>1000,12849=>1000,12850=>1000,12851=>1000,12852=>1000,12853=>1000,12854=>1000,12855=>1000,12856=>1000,12857=>1000,12858=>1000,12859=>1000,12860=>1000,12861=>1000,12862=>1000,12863=>1000,12864=>1000,12865=>1000,12866=>1000,12867=>1000,12868=>1000,12869=>1000,12870=>1000,12871=>1000,12872=>1000,12873=>1000,12874=>1000,12875=>1000,12876=>1000,12877=>1000,12878=>1000,12879=>1000,12880=>1000,12881=>1000,12882=>1000,12883=>1000,12884=>1000,12885=>1000,12886=>1000,12887=>1000,12888=>1000,12889=>1000,12890=>1000,12891=>1000,12892=>1000,12893=>1000,12894=>1000,12895=>1000,12896=>1000,12897=>1000,12898=>1000,12899=>1000,12900=>1000,12901=>1000,12902=>1000,12903=>1000,12904=>1000,12905=>1000,12906=>1000,12907=>1000,12908=>1000,12909=>1000,12910=>1000,12911=>1000,12912=>1000,12913=>1000,12914=>1000,12915=>1000,12916=>1000,12917=>1000,12918=>1000,12919=>1000,12920=>1000,12921=>1000,12922=>1000,12923=>1000,12924=>1000,12925=>1000,12926=>1000,12927=>1000,12928=>1000,12929=>1000,12930=>1000,12931=>1000,12932=>1000,12933=>1000,12934=>1000,12935=>1000,12936=>1000,12937=>1000,12938=>1000,12939=>1000,12940=>1000,12941=>1000,12942=>1000,12943=>1000,12944=>1000,12945=>1000,12946=>1000,12947=>1000,12948=>1000,12949=>1000,12950=>1000,12951=>1000,12952=>1000,12953=>1000,12954=>1000,12955=>1000,12956=>1000,12957=>1000,12958=>1000,12959=>1000,12960=>1000,12961=>1000,12962=>1000,12963=>1000,12964=>1000,12965=>1000,12966=>1000,12967=>1000,12968=>1000,12969=>1000,12970=>1000,12971=>1000,12972=>1000,12973=>1000,12974=>1000,12975=>1000,12976=>1000,12977=>1000,12978=>1000,12979=>1000,12980=>1000,12981=>1000,12982=>1000,12983=>1000,12984=>1000,12985=>1000,12986=>1000,12987=>1000,12988=>1000,12989=>1000,12990=>1000,12991=>1000,12992=>1000,12993=>1000,12994=>1000,12995=>1000,12996=>1000,12997=>1000,12998=>1000,12999=>1000,13000=>1000,13001=>1000,13002=>1000,13003=>1000,13004=>1000,13005=>1000,13006=>1000,13007=>1000,13008=>1000,13009=>1000,13010=>1000,13011=>1000,13012=>1000,13013=>1000,13014=>1000,13015=>1000,13016=>1000,13017=>1000,13018=>1000,13019=>1000,13020=>1000,13021=>1000,13022=>1000,13023=>1000,13024=>1000,13025=>1000,13026=>1000,13027=>1000,13028=>1000,13029=>1000,13030=>1000,13031=>1000,13032=>1000,13033=>1000,13034=>1000,13035=>1000,13036=>1000,13037=>1000,13038=>1000,13039=>1000,13040=>1000,13041=>1000,13042=>1000,13043=>1000,13044=>1000,13045=>1000,13046=>1000,13047=>1000,13048=>1000,13049=>1000,13050=>1000,13051=>1000,13052=>1000,13053=>1000,13054=>1000,13055=>1000,13056=>1000,13057=>1000,13058=>1000,13059=>1000,13060=>1000,13061=>1000,13062=>1000,13063=>1000,13064=>1000,13065=>1000,13066=>1000,13067=>1000,13068=>1000,13069=>1000,13070=>1000,13071=>1000,13072=>1000,13073=>1000,13074=>1000,13075=>1000,13076=>1000,13077=>1000,13078=>1000,13079=>1000,13080=>1000,13081=>1000,13082=>1000,13083=>1000,13084=>1000,13085=>1000,13086=>1000,13087=>1000,13088=>1000,13089=>1000,13090=>1000,13091=>1000,13092=>1000,13093=>1000,13094=>1000,13095=>1000,13096=>1000,13097=>1000,13098=>1000,13099=>1000,13101=>1000,13102=>1000,13103=>1000,13104=>1000,13105=>1000,13106=>1000,13107=>1000,13108=>1000,13109=>1000,13110=>1000,13111=>1000,13112=>1000,13113=>1000,13114=>1000,13115=>1000,13116=>1000,13117=>1000,13118=>1000,13119=>1000,13120=>1000,13121=>1000,13122=>1000,13123=>1000,13124=>1000,13125=>1000,13126=>1000,13127=>1000,13128=>1000,13129=>1000,13130=>1000,13131=>1000,13132=>1000,13133=>1000,13134=>1000,13135=>1000,13136=>1000,13137=>1000,13138=>1000,13139=>1000,13140=>1000,13141=>1000,13142=>1000,13143=>1000,13144=>1000,13145=>1000,13146=>1000,13147=>1000,13148=>1000,13149=>1000,13150=>1000,13151=>1000,13152=>1000,13153=>1000,13154=>1000,13155=>1000,13156=>1000,13157=>1000,13158=>1000,13159=>1000,13160=>1000,13161=>1000,13162=>1000,13163=>1000,13164=>1000,13165=>1000,13166=>1000,13167=>1000,13168=>1000,13169=>1000,13170=>1000,13171=>1000,13172=>1000,13173=>1000,13174=>1000,13175=>1000,13176=>1000,13177=>1000,13178=>1000,13179=>1000,13180=>1000,13181=>1000,13182=>1000,13183=>1000,13184=>1000,13185=>1000,13186=>1000,13187=>1000,13188=>1000,13189=>1000,13190=>1000,13191=>1000,13192=>1000,13193=>1000,13194=>1000,13195=>1000,13196=>1000,13197=>1000,13198=>1000,13199=>1000,13200=>1000,13201=>1000,13202=>1000,13203=>1000,13204=>1000,13205=>1000,13206=>1000,13207=>1000,13208=>1000,13209=>1000,13210=>1000,13211=>1000,13212=>1000,13213=>1000,13214=>1000,13215=>1000,13216=>1000,13217=>1000,13218=>1000,13219=>1000,13220=>1000,13221=>1000,13222=>1000,13223=>1000,13224=>1000,13225=>1000,13226=>1000,13227=>1000,13228=>1000,13229=>1000,13230=>1000,13231=>1000,13232=>1000,13233=>1000,13234=>1000,13235=>1000,13236=>1000,13237=>1000,13238=>1000,13239=>1000,13240=>1000,13241=>1000,13242=>1000,13243=>1000,13244=>1000,13245=>1000,13246=>1000,13247=>1000,13248=>1000,13249=>1000,13250=>1000,13251=>1000,13252=>1000,13253=>1000,13254=>1000,13255=>1000,13256=>1000,13257=>1000,13258=>1000,13259=>1000,13260=>1000,13261=>1000,13262=>1000,13263=>1000,13264=>1000,13265=>1000,13266=>1000,13267=>1000,13268=>1000,13269=>1000,13270=>1000,13271=>1000,13272=>1000,13273=>1000,13274=>1000,13275=>1000,13276=>1000,13277=>1000,13278=>1000,13279=>1000,13280=>1000,13281=>1000,13282=>1000,13283=>1000,13284=>1000,13285=>1000,13286=>1000,13287=>1000,13288=>1000,13289=>1000,13290=>1000,13291=>1000,13292=>1000,13293=>1000,13294=>1000,13295=>1000,13296=>1000,13297=>1000,13298=>1000,13299=>1000,13300=>1000,13301=>1000,13302=>1000,13303=>1000,13304=>1000,13305=>1000,13306=>1000,13307=>1000,13308=>1000,13309=>1000,13310=>1000,13311=>1000,13365=>1000,13376=>1000,13386=>1000,13388=>1000,13412=>1000,13427=>1000,13434=>1000,13437=>1000,13438=>1000,13459=>1000,13462=>1000,13477=>1000,13487=>1000,13500=>1000,13505=>1000,13512=>1000,13535=>1000,13540=>1000,13542=>1000,13563=>1000,13574=>1000,13630=>1000,13649=>1000,13651=>1000,13657=>1000,13665=>1000,13677=>1000,13680=>1000,13682=>1000,13687=>1000,13688=>1000,13700=>1000,13719=>1000,13720=>1000,13729=>1000,13733=>1000,13741=>1000,13759=>1000,13761=>1000,13765=>1000,13767=>1000,13770=>1000,13774=>1000,13778=>1000,13782=>1000,13787=>1000,13789=>1000,13809=>1000,13810=>1000,13811=>1000,13819=>1000,13822=>1000,13833=>1000,13848=>1000,13850=>1000,13859=>1000,13861=>1000,13869=>1000,13877=>1000,13881=>1000,13886=>1000,13895=>1000,13896=>1000,13897=>1000,13902=>1000,13919=>1000,13921=>1000,13946=>1000,13953=>1000,13978=>1000,13989=>1000,13994=>1000,13996=>1000,14000=>1000,14001=>1000,14005=>1000,14009=>1000,14012=>1000,14017=>1000,14019=>1000,14020=>1000,14021=>1000,14023=>1000,14024=>1000,14035=>1000,14036=>1000,14038=>1000,14045=>1000,14049=>1000,14050=>1000,14053=>1000,14054=>1000,14069=>1000,14081=>1000,14083=>1000,14088=>1000,14090=>1000,14093=>1000,14108=>1000,14114=>1000,14115=>1000,14117=>1000,14124=>1000,14125=>1000,14128=>1000,14130=>1000,14131=>1000,14138=>1000,14144=>1000,14147=>1000,14178=>1000,14191=>1000,14231=>1000,14240=>1000,14265=>1000,14270=>1000,14294=>1000,14322=>1000,14328=>1000,14331=>1000,14351=>1000,14361=>1000,14368=>1000,14381=>1000,14390=>1000,14392=>1000,14435=>1000,14453=>1000,14496=>1000,14531=>1000,14540=>1000,14545=>1000,14548=>1000,14586=>1000,14600=>1000,14612=>1000,14631=>1000,14642=>1000,14655=>1000,14669=>1000,14691=>1000,14712=>1000,14720=>1000,14729=>1000,14730=>1000,14738=>1000,14745=>1000,14747=>1000,14753=>1000,14756=>1000,14776=>1000,14812=>1000,14818=>1000,14821=>1000,14828=>1000,14840=>1000,14843=>1000,14846=>1000,14849=>1000,14851=>1000,14854=>1000,14871=>1000,14872=>1000,14889=>1000,14890=>1000,14900=>1000,14923=>1000,14930=>1000,14935=>1000,14940=>1000,14942=>1000,14950=>1000,14951=>1000,14999=>1000,15019=>1000,15037=>1000,15066=>1000,15070=>1000,15072=>1000,15088=>1000,15090=>1000,15093=>1000,15099=>1000,15118=>1000,15129=>1000,15138=>1000,15147=>1000,15161=>1000,15170=>1000,15192=>1000,15200=>1000,15217=>1000,15218=>1000,15227=>1000,15228=>1000,15232=>1000,15253=>1000,15254=>1000,15257=>1000,15265=>1000,15292=>1000,15294=>1000,15298=>1000,15300=>1000,15319=>1000,15325=>1000,15340=>1000,15346=>1000,15347=>1000,15348=>1000,15373=>1000,15377=>1000,15381=>1000,15384=>1000,15444=>1000,15499=>1000,15563=>1000,15565=>1000,15569=>1000,15574=>1000,15580=>1000,15595=>1000,15599=>1000,15634=>1000,15635=>1000,15645=>1000,15666=>1000,15675=>1000,15686=>1000,15692=>1000,15694=>1000,15697=>1000,15711=>1000,15714=>1000,15721=>1000,15722=>1000,15727=>1000,15733=>1000,15741=>1000,15749=>1000,15752=>1000,15754=>1000,15759=>1000,15761=>1000,15781=>1000,15789=>1000,15796=>1000,15807=>1000,15814=>1000,15815=>1000,15817=>1000,15820=>1000,15821=>1000,15827=>1000,15835=>1000,15847=>1000,15848=>1000,15851=>1000,15859=>1000,15860=>1000,15863=>1000,15868=>1000,15869=>1000,15878=>1000,15936=>1000,15939=>1000,15944=>1000,15957=>1000,15988=>1000,16040=>1000,16041=>1000,16042=>1000,16045=>1000,16049=>1000,16056=>1000,16063=>1000,16066=>1000,16071=>1000,16074=>1000,16076=>1000,16080=>1000,16081=>1000,16086=>1000,16087=>1000,16090=>1000,16091=>1000,16094=>1000,16097=>1000,16098=>1000,16103=>1000,16105=>1000,16107=>1000,16108=>1000,16112=>1000,16115=>1000,16116=>1000,16122=>1000,16124=>1000,16127=>1000,16128=>1000,16132=>1000,16134=>1000,16135=>1000,16142=>1000,16211=>1000,16216=>1000,16217=>1000,16227=>1000,16252=>1000,16275=>1000,16320=>1000,16328=>1000,16343=>1000,16348=>1000,16357=>1000,16365=>1000,16377=>1000,16378=>1000,16388=>1000,16393=>1000,16413=>1000,16441=>1000,16453=>1000,16467=>1000,16471=>1000,16482=>1000,16485=>1000,16490=>1000,16495=>1000,16497=>1000,16552=>1000,16564=>1000,16571=>1000,16575=>1000,16584=>1000,16600=>1000,16607=>1000,16632=>1000,16634=>1000,16642=>1000,16643=>1000,16644=>1000,16649=>1000,16654=>1000,16689=>1000,16690=>1000,16743=>1000,16748=>1000,16750=>1000,16764=>1000,16767=>1000,16769=>1000,16784=>1000,16818=>1000,16836=>1000,16842=>1000,16847=>1000,16859=>1000,16877=>1000,16879=>1000,16889=>1000,16913=>1000,16931=>1000,16960=>1000,16992=>1000,17002=>1000,17014=>1000,17018=>1000,17036=>1000,17044=>1000,17058=>1000,17077=>1000,17081=>1000,17084=>1000,17140=>1000,17147=>1000,17148=>1000,17162=>1000,17195=>1000,17262=>1000,17303=>1000,17306=>1000,17338=>1000,17345=>1000,17369=>1000,17375=>1000,17389=>1000,17392=>1000,17394=>1000,17409=>1000,17410=>1000,17427=>1000,17445=>1000,17453=>1000,17530=>1000,17551=>1000,17553=>1000,17567=>1000,17568=>1000,17570=>1000,17584=>1000,17591=>1000,17597=>1000,17600=>1000,17603=>1000,17605=>1000,17614=>1000,17629=>1000,17630=>1000,17631=>1000,17633=>1000,17636=>1000,17641=>1000,17642=>1000,17643=>1000,17644=>1000,17652=>1000,17667=>1000,17668=>1000,17673=>1000,17675=>1000,17686=>1000,17691=>1000,17693=>1000,17703=>1000,17710=>1000,17715=>1000,17718=>1000,17723=>1000,17725=>1000,17727=>1000,17731=>1000,17745=>1000,17746=>1000,17749=>1000,17752=>1000,17756=>1000,17761=>1000,17762=>1000,17770=>1000,17773=>1000,17783=>1000,17784=>1000,17797=>1000,17830=>1000,17843=>1000,17882=>1000,17897=>1000,17898=>1000,17923=>1000,17926=>1000,17935=>1000,17941=>1000,17943=>1000,18011=>1000,18042=>1000,18048=>1000,18081=>1000,18094=>1000,18107=>1000,18127=>1000,18128=>1000,18165=>1000,18167=>1000,18195=>1000,18200=>1000,18230=>1000,18244=>1000,18254=>1000,18255=>1000,18300=>1000,18328=>1000,18342=>1000,18389=>1000,18413=>1000,18420=>1000,18432=>1000,18443=>1000,18487=>1000,18525=>1000,18545=>1000,18587=>1000,18605=>1000,18606=>1000,18640=>1000,18653=>1000,18669=>1000,18675=>1000,18682=>1000,18694=>1000,18705=>1000,18718=>1000,18725=>1000,18730=>1000,18733=>1000,18735=>1000,18736=>1000,18741=>1000,18748=>1000,18750=>1000,18757=>1000,18769=>1000,18771=>1000,18789=>1000,18794=>1000,18802=>1000,18825=>1000,18849=>1000,18855=>1000,18911=>1000,18917=>1000,18919=>1000,18959=>1000,18973=>1000,18980=>1000,18997=>1000,19094=>1000,19108=>1000,19124=>1000,19128=>1000,19153=>1000,19172=>1000,19199=>1000,19216=>1000,19225=>1000,19232=>1000,19244=>1000,19255=>1000,19311=>1000,19312=>1000,19314=>1000,19323=>1000,19326=>1000,19342=>1000,19344=>1000,19347=>1000,19350=>1000,19351=>1000,19357=>1000,19389=>1000,19390=>1000,19392=>1000,19460=>1000,19463=>1000,19470=>1000,19506=>1000,19515=>1000,19518=>1000,19520=>1000,19527=>1000,19543=>1000,19547=>1000,19565=>1000,19575=>1000,19579=>1000,19581=>1000,19585=>1000,19589=>1000,19620=>1000,19630=>1000,19632=>1000,19639=>1000,19661=>1000,19681=>1000,19682=>1000,19693=>1000,19719=>1000,19721=>1000,19728=>1000,19764=>1000,19830=>1000,19831=>1000,19849=>1000,19857=>1000,19868=>1000,19968=>1000,19969=>1000,19971=>1000,19972=>1000,19975=>1000,19976=>1000,19977=>1000,19978=>1000,19979=>1000,19980=>1000,19981=>1000,19982=>1000,19983=>1000,19984=>1000,19985=>1000,19988=>1000,19989=>1000,19990=>1000,19992=>1000,19993=>1000,19994=>1000,19996=>1000,19998=>1000,19999=>1000,20001=>1000,20002=>1000,20004=>1000,20006=>1000,20008=>1000,20010=>1000,20011=>1000,20012=>1000,20013=>1000,20014=>1000,20015=>1000,20016=>1000,20017=>1000,20018=>1000,20019=>1000,20022=>1000,20023=>1000,20024=>1000,20025=>1000,20027=>1000,20028=>1000,20029=>1000,20031=>1000,20034=>1000,20035=>1000,20037=>1000,20039=>1000,20040=>1000,20041=>1000,20043=>1000,20045=>1000,20046=>1000,20047=>1000,20050=>1000,20051=>1000,20054=>1000,20056=>1000,20057=>1000,20058=>1000,20059=>1000,20060=>1000,20061=>1000,20062=>1000,20063=>1000,20073=>1000,20074=>1000,20083=>1000,20088=>1000,20094=>1000,20095=>1000,20096=>1000,20097=>1000,20098=>1000,20099=>1000,20100=>1000,20101=>1000,20102=>1000,20103=>1000,20104=>1000,20105=>1000,20107=>1000,20108=>1000,20109=>1000,20110=>1000,20113=>1000,20114=>1000,20115=>1000,20116=>1000,20117=>1000,20120=>1000,20121=>1000,20122=>1000,20123=>1000,20126=>1000,20127=>1000,20128=>1000,20129=>1000,20130=>1000,20131=>1000,20132=>1000,20133=>1000,20134=>1000,20136=>1000,20139=>1000,20140=>1000,20141=>1000,20142=>1000,20147=>1000,20150=>1000,20151=>1000,20153=>1000,20154=>1000,20155=>1000,20156=>1000,20159=>1000,20160=>1000,20161=>1000,20162=>1000,20163=>1000,20164=>1000,20166=>1000,20167=>1000,20168=>1000,20169=>1000,20170=>1000,20171=>1000,20173=>1000,20174=>1000,20180=>1000,20181=>1000,20182=>1000,20183=>1000,20184=>1000,20185=>1000,20186=>1000,20188=>1000,20189=>1000,20190=>1000,20191=>1000,20193=>1000,20195=>1000,20196=>1000,20197=>1000,20200=>1000,20201=>1000,20202=>1000,20203=>1000,20206=>1000,20208=>1000,20209=>1000,20210=>1000,20211=>1000,20212=>1000,20213=>1000,20214=>1000,20215=>1000,20216=>1000,20219=>1000,20221=>1000,20223=>1000,20224=>1000,20225=>1000,20226=>1000,20227=>1000,20228=>1000,20229=>1000,20232=>1000,20233=>1000,20234=>1000,20235=>1000,20237=>1000,20238=>1000,20239=>1000,20240=>1000,20241=>1000,20242=>1000,20243=>1000,20244=>1000,20245=>1000,20247=>1000,20248=>1000,20249=>1000,20250=>1000,20253=>1000,20258=>1000,20264=>1000,20265=>1000,20268=>1000,20269=>1000,20271=>1000,20272=>1000,20274=>1000,20275=>1000,20276=>1000,20278=>1000,20279=>1000,20280=>1000,20281=>1000,20282=>1000,20283=>1000,20284=>1000,20285=>1000,20286=>1000,20287=>1000,20289=>1000,20290=>1000,20291=>1000,20293=>1000,20294=>1000,20295=>1000,20296=>1000,20297=>1000,20299=>1000,20300=>1000,20301=>1000,20302=>1000,20303=>1000,20304=>1000,20305=>1000,20306=>1000,20307=>1000,20308=>1000,20309=>1000,20310=>1000,20311=>1000,20312=>1000,20313=>1000,20314=>1000,20315=>1000,20316=>1000,20317=>1000,20318=>1000,20319=>1000,20320=>1000,20321=>1000,20322=>1000,20323=>1000,20324=>1000,20327=>1000,20329=>1000,20330=>1000,20331=>1000,20332=>1000,20334=>1000,20335=>1000,20336=>1000,20338=>1000,20339=>1000,20340=>1000,20341=>1000,20342=>1000,20343=>1000,20344=>1000,20345=>1000,20346=>1000,20347=>1000,20348=>1000,20349=>1000,20350=>1000,20351=>1000,20352=>1000,20353=>1000,20354=>1000,20355=>1000,20356=>1000,20357=>1000,20358=>1000,20359=>1000,20360=>1000,20361=>1000,20362=>1000,20363=>1000,20365=>1000,20367=>1000,20368=>1000,20369=>1000,20370=>1000,20372=>1000,20373=>1000,20374=>1000,20375=>1000,20376=>1000,20378=>1000,20379=>1000,20380=>1000,20381=>1000,20382=>1000,20386=>1000,20392=>1000,20395=>1000,20398=>1000,20399=>1000,20400=>1000,20402=>1000,20403=>1000,20404=>1000,20405=>1000,20406=>1000,20407=>1000,20409=>1000,20410=>1000,20411=>1000,20413=>1000,20415=>1000,20416=>1000,20417=>1000,20418=>1000,20419=>1000,20420=>1000,20421=>1000,20423=>1000,20424=>1000,20425=>1000,20426=>1000,20427=>1000,20428=>1000,20429=>1000,20430=>1000,20431=>1000,20432=>1000,20433=>1000,20435=>1000,20436=>1000,20438=>1000,20439=>1000,20440=>1000,20441=>1000,20442=>1000,20443=>1000,20444=>1000,20445=>1000,20446=>1000,20447=>1000,20448=>1000,20449=>1000,20452=>1000,20453=>1000,20460=>1000,20462=>1000,20463=>1000,20464=>1000,20465=>1000,20466=>1000,20467=>1000,20468=>1000,20469=>1000,20470=>1000,20471=>1000,20472=>1000,20473=>1000,20474=>1000,20477=>1000,20478=>1000,20480=>1000,20483=>1000,20485=>1000,20486=>1000,20487=>1000,20488=>1000,20489=>1000,20491=>1000,20492=>1000,20493=>1000,20494=>1000,20495=>1000,20497=>1000,20498=>1000,20499=>1000,20500=>1000,20501=>1000,20502=>1000,20503=>1000,20504=>1000,20505=>1000,20506=>1000,20507=>1000,20508=>1000,20510=>1000,20511=>1000,20512=>1000,20513=>1000,20514=>1000,20515=>1000,20517=>1000,20518=>1000,20519=>1000,20520=>1000,20521=>1000,20522=>1000,20523=>1000,20524=>1000,20525=>1000,20526=>1000,20527=>1000,20528=>1000,20529=>1000,20531=>1000,20532=>1000,20533=>1000,20535=>1000,20539=>1000,20540=>1000,20544=>1000,20545=>1000,20547=>1000,20549=>1000,20550=>1000,20551=>1000,20552=>1000,20553=>1000,20554=>1000,20555=>1000,20556=>1000,20557=>1000,20558=>1000,20559=>1000,20561=>1000,20563=>1000,20565=>1000,20566=>1000,20567=>1000,20568=>1000,20570=>1000,20571=>1000,20572=>1000,20573=>1000,20574=>1000,20575=>1000,20576=>1000,20577=>1000,20578=>1000,20579=>1000,20580=>1000,20581=>1000,20582=>1000,20584=>1000,20585=>1000,20586=>1000,20587=>1000,20588=>1000,20589=>1000,20590=>1000,20591=>1000,20592=>1000,20594=>1000,20595=>1000,20596=>1000,20597=>1000,20598=>1000,20599=>1000,20602=>1000,20605=>1000,20608=>1000,20609=>1000,20610=>1000,20611=>1000,20613=>1000,20615=>1000,20616=>1000,20619=>1000,20620=>1000,20621=>1000,20622=>1000,20624=>1000,20625=>1000,20626=>1000,20628=>1000,20629=>1000,20630=>1000,20632=>1000,20633=>1000,20634=>1000,20635=>1000,20636=>1000,20637=>1000,20638=>1000,20642=>1000,20643=>1000,20646=>1000,20652=>1000,20653=>1000,20654=>1000,20655=>1000,20656=>1000,20657=>1000,20658=>1000,20659=>1000,20660=>1000,20661=>1000,20662=>1000,20663=>1000,20664=>1000,20666=>1000,20667=>1000,20668=>1000,20669=>1000,20670=>1000,20671=>1000,20673=>1000,20674=>1000,20676=>1000,20677=>1000,20678=>1000,20679=>1000,20680=>1000,20681=>1000,20682=>1000,20683=>1000,20685=>1000,20686=>1000,20687=>1000,20688=>1000,20689=>1000,20691=>1000,20692=>1000,20693=>1000,20694=>1000,20695=>1000,20697=>1000,20698=>1000,20699=>1000,20701=>1000,20703=>1000,20704=>1000,20705=>1000,20707=>1000,20708=>1000,20709=>1000,20710=>1000,20711=>1000,20712=>1000,20713=>1000,20714=>1000,20716=>1000,20717=>1000,20718=>1000,20719=>1000,20720=>1000,20721=>1000,20723=>1000,20724=>1000,20725=>1000,20726=>1000,20728=>1000,20729=>1000,20731=>1000,20732=>1000,20733=>1000,20734=>1000,20735=>1000,20736=>1000,20737=>1000,20738=>1000,20739=>1000,20740=>1000,20741=>1000,20742=>1000,20743=>1000,20744=>1000,20745=>1000,20746=>1000,20747=>1000,20748=>1000,20749=>1000,20750=>1000,20752=>1000,20753=>1000,20754=>1000,20755=>1000,20756=>1000,20757=>1000,20759=>1000,20760=>1000,20762=>1000,20764=>1000,20767=>1000,20768=>1000,20769=>1000,20770=>1000,20772=>1000,20773=>1000,20774=>1000,20777=>1000,20778=>1000,20779=>1000,20781=>1000,20782=>1000,20784=>1000,20785=>1000,20786=>1000,20787=>1000,20788=>1000,20789=>1000,20791=>1000,20792=>1000,20793=>1000,20794=>1000,20795=>1000,20796=>1000,20797=>1000,20799=>1000,20800=>1000,20801=>1000,20803=>1000,20804=>1000,20805=>1000,20806=>1000,20807=>1000,20808=>1000,20809=>1000,20811=>1000,20812=>1000,20813=>1000,20817=>1000,20818=>1000,20820=>1000,20821=>1000,20822=>1000,20823=>1000,20825=>1000,20826=>1000,20827=>1000,20828=>1000,20829=>1000,20830=>1000,20831=>1000,20832=>1000,20833=>1000,20834=>1000,20835=>1000,20837=>1000,20839=>1000,20840=>1000,20841=>1000,20842=>1000,20843=>1000,20844=>1000,20845=>1000,20846=>1000,20849=>1000,20852=>1000,20853=>1000,20854=>1000,20855=>1000,20856=>1000,20857=>1000,20860=>1000,20864=>1000,20866=>1000,20870=>1000,20871=>1000,20872=>1000,20873=>1000,20874=>1000,20877=>1000,20879=>1000,20881=>1000,20882=>1000,20883=>1000,20884=>1000,20885=>1000,20886=>1000,20887=>1000,20888=>1000,20890=>1000,20892=>1000,20894=>1000,20896=>1000,20898=>1000,20900=>1000,20901=>1000,20903=>1000,20904=>1000,20906=>1000,20907=>1000,20908=>1000,20910=>1000,20912=>1000,20913=>1000,20914=>1000,20915=>1000,20916=>1000,20917=>1000,20918=>1000,20919=>1000,20920=>1000,20921=>1000,20924=>1000,20925=>1000,20926=>1000,20931=>1000,20932=>1000,20933=>1000,20934=>1000,20935=>1000,20936=>1000,20937=>1000,20938=>1000,20939=>1000,20940=>1000,20941=>1000,20942=>1000,20943=>1000,20944=>1000,20945=>1000,20946=>1000,20947=>1000,20948=>1000,20951=>1000,20952=>1000,20955=>1000,20956=>1000,20957=>1000,20958=>1000,20959=>1000,20960=>1000,20961=>1000,20962=>1000,20964=>1000,20973=>1000,20976=>1000,20977=>1000,20979=>1000,20980=>1000,20981=>1000,20982=>1000,20984=>1000,20985=>1000,20986=>1000,20988=>1000,20989=>1000,20990=>1000,20992=>1000,20993=>1000,20994=>1000,20995=>1000,20997=>1000,20998=>1000,20999=>1000,21000=>1000,21001=>1000,21002=>1000,21003=>1000,21004=>1000,21006=>1000,21008=>1000,21009=>1000,21010=>1000,21011=>1000,21014=>1000,21015=>1000,21020=>1000,21021=>1000,21022=>1000,21023=>1000,21024=>1000,21025=>1000,21028=>1000,21029=>1000,21030=>1000,21031=>1000,21032=>1000,21033=>1000,21034=>1000,21038=>1000,21040=>1000,21041=>1000,21042=>1000,21043=>1000,21044=>1000,21045=>1000,21046=>1000,21047=>1000,21048=>1000,21050=>1000,21051=>1000,21052=>1000,21057=>1000,21059=>1000,21060=>1000,21062=>1000,21063=>1000,21065=>1000,21066=>1000,21067=>1000,21068=>1000,21069=>1000,21070=>1000,21071=>1000,21074=>1000,21076=>1000,21077=>1000,21078=>1000,21079=>1000,21081=>1000,21082=>1000,21083=>1000,21084=>1000,21085=>1000,21086=>1000,21087=>1000,21088=>1000,21089=>1000,21090=>1000,21096=>1000,21097=>1000,21098=>1000,21099=>1000,21100=>1000,21101=>1000,21102=>1000,21103=>1000,21106=>1000,21107=>1000,21108=>1000,21109=>1000,21111=>1000,21112=>1000,21113=>1000,21114=>1000,21115=>1000,21116=>1000,21117=>1000,21119=>1000,21120=>1000,21121=>1000,21122=>1000,21123=>1000,21124=>1000,21127=>1000,21128=>1000,21129=>1000,21130=>1000,21131=>1000,21132=>1000,21133=>1000,21135=>1000,21136=>1000,21137=>1000,21139=>1000,21140=>1000,21142=>1000,21143=>1000,21144=>1000,21145=>1000,21146=>1000,21147=>1000,21151=>1000,21152=>1000,21153=>1000,21155=>1000,21156=>1000,21158=>1000,21160=>1000,21161=>1000,21162=>1000,21163=>1000,21164=>1000,21165=>1000,21166=>1000,21173=>1000,21177=>1000,21179=>1000,21180=>1000,21182=>1000,21184=>1000,21185=>1000,21186=>1000,21187=>1000,21189=>1000,21191=>1000,21193=>1000,21196=>1000,21197=>1000,21200=>1000,21201=>1000,21202=>1000,21203=>1000,21205=>1000,21206=>1000,21207=>1000,21208=>1000,21209=>1000,21211=>1000,21213=>1000,21214=>1000,21215=>1000,21216=>1000,21217=>1000,21218=>1000,21219=>1000,21220=>1000,21222=>1000,21225=>1000,21227=>1000,21231=>1000,21232=>1000,21233=>1000,21235=>1000,21236=>1000,21237=>1000,21239=>1000,21240=>1000,21241=>1000,21242=>1000,21243=>1000,21244=>1000,21246=>1000,21247=>1000,21249=>1000,21253=>1000,21254=>1000,21256=>1000,21257=>1000,21258=>1000,21259=>1000,21261=>1000,21262=>1000,21263=>1000,21264=>1000,21265=>1000,21266=>1000,21269=>1000,21270=>1000,21271=>1000,21273=>1000,21274=>1000,21276=>1000,21277=>1000,21279=>1000,21280=>1000,21281=>1000,21282=>1000,21283=>1000,21284=>1000,21287=>1000,21290=>1000,21292=>1000,21293=>1000,21295=>1000,21296=>1000,21297=>1000,21298=>1000,21299=>1000,21300=>1000,21303=>1000,21304=>1000,21305=>1000,21307=>1000,21308=>1000,21309=>1000,21310=>1000,21311=>1000,21312=>1000,21313=>1000,21314=>1000,21315=>1000,21316=>1000,21317=>1000,21319=>1000,21320=>1000,21321=>1000,21322=>1000,21324=>1000,21325=>1000,21326=>1000,21329=>1000,21330=>1000,21331=>1000,21332=>1000,21335=>1000,21338=>1000,21340=>1000,21341=>1000,21342=>1000,21343=>1000,21344=>1000,21345=>1000,21347=>1000,21348=>1000,21350=>1000,21351=>1000,21353=>1000,21356=>1000,21357=>1000,21358=>1000,21359=>1000,21360=>1000,21361=>1000,21362=>1000,21363=>1000,21364=>1000,21365=>1000,21367=>1000,21368=>1000,21369=>1000,21371=>1000,21372=>1000,21373=>1000,21374=>1000,21375=>1000,21378=>1000,21380=>1000,21386=>1000,21390=>1000,21391=>1000,21394=>1000,21395=>1000,21396=>1000,21398=>1000,21399=>1000,21400=>1000,21401=>1000,21402=>1000,21404=>1000,21405=>1000,21406=>1000,21407=>1000,21408=>1000,21410=>1000,21412=>1000,21413=>1000,21414=>1000,21415=>1000,21416=>1000,21417=>1000,21418=>1000,21419=>1000,21420=>1000,21421=>1000,21422=>1000,21424=>1000,21426=>1000,21428=>1000,21430=>1000,21433=>1000,21435=>1000,21441=>1000,21442=>1000,21443=>1000,21445=>1000,21448=>1000,21449=>1000,21450=>1000,21451=>1000,21452=>1000,21453=>1000,21456=>1000,21457=>1000,21458=>1000,21460=>1000,21462=>1000,21463=>1000,21464=>1000,21465=>1000,21466=>1000,21467=>1000,21471=>1000,21472=>1000,21473=>1000,21474=>1000,21475=>1000,21476=>1000,21477=>1000,21478=>1000,21480=>1000,21481=>1000,21482=>1000,21483=>1000,21484=>1000,21485=>1000,21486=>1000,21487=>1000,21488=>1000,21489=>1000,21490=>1000,21491=>1000,21493=>1000,21494=>1000,21495=>1000,21496=>1000,21499=>1000,21500=>1000,21502=>1000,21505=>1000,21507=>1000,21508=>1000,21510=>1000,21511=>1000,21512=>1000,21513=>1000,21514=>1000,21515=>1000,21516=>1000,21517=>1000,21518=>1000,21519=>1000,21520=>1000,21521=>1000,21522=>1000,21523=>1000,21524=>1000,21526=>1000,21528=>1000,21529=>1000,21530=>1000,21531=>1000,21532=>1000,21533=>1000,21534=>1000,21535=>1000,21536=>1000,21537=>1000,21539=>1000,21540=>1000,21541=>1000,21542=>1000,21543=>1000,21544=>1000,21545=>1000,21546=>1000,21547=>1000,21548=>1000,21549=>1000,21550=>1000,21551=>1000,21552=>1000,21553=>1000,21554=>1000,21555=>1000,21556=>1000,21557=>1000,21558=>1000,21559=>1000,21560=>1000,21561=>1000,21563=>1000,21564=>1000,21565=>1000,21566=>1000,21567=>1000,21568=>1000,21569=>1000,21570=>1000,21571=>1000,21573=>1000,21574=>1000,21575=>1000,21576=>1000,21578=>1000,21579=>1000,21580=>1000,21581=>1000,21582=>1000,21583=>1000,21588=>1000,21600=>1000,21601=>1000,21602=>1000,21603=>1000,21604=>1000,21605=>1000,21606=>1000,21607=>1000,21608=>1000,21609=>1000,21610=>1000,21611=>1000,21612=>1000,21613=>1000,21615=>1000,21616=>1000,21617=>1000,21618=>1000,21619=>1000,21620=>1000,21621=>1000,21622=>1000,21623=>1000,21624=>1000,21626=>1000,21627=>1000,21628=>1000,21629=>1000,21630=>1000,21631=>1000,21632=>1000,21633=>1000,21634=>1000,21636=>1000,21637=>1000,21638=>1000,21639=>1000,21640=>1000,21643=>1000,21644=>1000,21645=>1000,21646=>1000,21647=>1000,21648=>1000,21649=>1000,21650=>1000,21651=>1000,21652=>1000,21653=>1000,21654=>1000,21655=>1000,21656=>1000,21658=>1000,21660=>1000,21662=>1000,21664=>1000,21665=>1000,21666=>1000,21667=>1000,21668=>1000,21669=>1000,21670=>1000,21671=>1000,21672=>1000,21673=>1000,21674=>1000,21675=>1000,21676=>1000,21677=>1000,21678=>1000,21679=>1000,21680=>1000,21681=>1000,21682=>1000,21683=>1000,21684=>1000,21686=>1000,21687=>1000,21688=>1000,21689=>1000,21690=>1000,21691=>1000,21692=>1000,21693=>1000,21694=>1000,21695=>1000,21696=>1000,21697=>1000,21698=>1000,21699=>1000,21700=>1000,21701=>1000,21702=>1000,21703=>1000,21704=>1000,21705=>1000,21707=>1000,21708=>1000,21709=>1000,21710=>1000,21711=>1000,21712=>1000,21718=>1000,21722=>1000,21726=>1000,21728=>1000,21729=>1000,21730=>1000,21731=>1000,21732=>1000,21733=>1000,21734=>1000,21735=>1000,21736=>1000,21737=>1000,21738=>1000,21739=>1000,21741=>1000,21742=>1000,21743=>1000,21745=>1000,21746=>1000,21747=>1000,21751=>1000,21752=>1000,21754=>1000,21755=>1000,21756=>1000,21757=>1000,21759=>1000,21761=>1000,21762=>1000,21763=>1000,21764=>1000,21765=>1000,21766=>1000,21767=>1000,21768=>1000,21769=>1000,21770=>1000,21771=>1000,21772=>1000,21773=>1000,21774=>1000,21775=>1000,21776=>1000,21777=>1000,21778=>1000,21779=>1000,21780=>1000,21783=>1000,21784=>1000,21786=>1000,21790=>1000,21795=>1000,21797=>1000,21798=>1000,21799=>1000,21800=>1000,21802=>1000,21803=>1000,21804=>1000,21805=>1000,21806=>1000,21807=>1000,21808=>1000,21809=>1000,21810=>1000,21811=>1000,21812=>1000,21813=>1000,21814=>1000,21815=>1000,21816=>1000,21817=>1000,21819=>1000,21820=>1000,21822=>1000,21823=>1000,21824=>1000,21825=>1000,21827=>1000,21828=>1000,21829=>1000,21830=>1000,21831=>1000,21832=>1000,21833=>1000,21834=>1000,21835=>1000,21837=>1000,21838=>1000,21839=>1000,21840=>1000,21841=>1000,21842=>1000,21843=>1000,21845=>1000,21846=>1000,21847=>1000,21852=>1000,21853=>1000,21854=>1000,21855=>1000,21857=>1000,21858=>1000,21859=>1000,21860=>1000,21861=>1000,21862=>1000,21865=>1000,21866=>1000,21867=>1000,21873=>1000,21874=>1000,21875=>1000,21877=>1000,21878=>1000,21879=>1000,21881=>1000,21883=>1000,21884=>1000,21885=>1000,21886=>1000,21887=>1000,21888=>1000,21889=>1000,21890=>1000,21891=>1000,21892=>1000,21894=>1000,21895=>1000,21896=>1000,21897=>1000,21898=>1000,21899=>1000,21900=>1000,21901=>1000,21902=>1000,21903=>1000,21904=>1000,21905=>1000,21906=>1000,21907=>1000,21908=>1000,21909=>1000,21912=>1000,21913=>1000,21914=>1000,21916=>1000,21917=>1000,21919=>1000,21921=>1000,21922=>1000,21923=>1000,21924=>1000,21925=>1000,21926=>1000,21927=>1000,21928=>1000,21929=>1000,21930=>1000,21931=>1000,21932=>1000,21933=>1000,21934=>1000,21936=>1000,21937=>1000,21938=>1000,21939=>1000,21940=>1000,21941=>1000,21945=>1000,21946=>1000,21947=>1000,21948=>1000,21951=>1000,21952=>1000,21953=>1000,21954=>1000,21955=>1000,21956=>1000,21957=>1000,21958=>1000,21959=>1000,21960=>1000,21961=>1000,21962=>1000,21963=>1000,21964=>1000,21965=>1000,21966=>1000,21967=>1000,21968=>1000,21969=>1000,21970=>1000,21971=>1000,21972=>1000,21973=>1000,21974=>1000,21975=>1000,21976=>1000,21977=>1000,21978=>1000,21979=>1000,21980=>1000,21981=>1000,21982=>1000,21983=>1000,21985=>1000,21986=>1000,21987=>1000,21988=>1000,21989=>1000,21990=>1000,21991=>1000,21992=>1000,21993=>1000,21994=>1000,21996=>1000,21998=>1000,21999=>1000,22000=>1000,22001=>1000,22002=>1000,22005=>1000,22006=>1000,22007=>1000,22009=>1000,22010=>1000,22011=>1000,22012=>1000,22013=>1000,22014=>1000,22015=>1000,22016=>1000,22017=>1000,22018=>1000,22020=>1000,22021=>1000,22022=>1000,22024=>1000,22025=>1000,22028=>1000,22029=>1000,22030=>1000,22031=>1000,22032=>1000,22033=>1000,22034=>1000,22035=>1000,22036=>1000,22037=>1000,22038=>1000,22039=>1000,22043=>1000,22044=>1000,22045=>1000,22046=>1000,22047=>1000,22048=>1000,22049=>1000,22050=>1000,22051=>1000,22053=>1000,22055=>1000,22057=>1000,22058=>1000,22060=>1000,22061=>1000,22062=>1000,22063=>1000,22064=>1000,22066=>1000,22067=>1000,22068=>1000,22069=>1000,22070=>1000,22071=>1000,22072=>1000,22073=>1000,22074=>1000,22075=>1000,22077=>1000,22078=>1000,22079=>1000,22080=>1000,22081=>1000,22082=>1000,22083=>1000,22085=>1000,22086=>1000,22088=>1000,22089=>1000,22090=>1000,22092=>1000,22093=>1000,22094=>1000,22095=>1000,22096=>1000,22098=>1000,22099=>1000,22100=>1000,22103=>1000,22104=>1000,22105=>1000,22106=>1000,22109=>1000,22110=>1000,22112=>1000,22113=>1000,22114=>1000,22115=>1000,22116=>1000,22117=>1000,22118=>1000,22120=>1000,22121=>1000,22122=>1000,22123=>1000,22124=>1000,22125=>1000,22126=>1000,22127=>1000,22128=>1000,22129=>1000,22130=>1000,22131=>1000,22132=>1000,22134=>1000,22135=>1000,22136=>1000,22137=>1000,22138=>1000,22139=>1000,22140=>1000,22142=>1000,22143=>1000,22144=>1000,22145=>1000,22146=>1000,22147=>1000,22148=>1000,22149=>1000,22150=>1000,22151=>1000,22153=>1000,22154=>1000,22155=>1000,22156=>1000,22157=>1000,22158=>1000,22159=>1000,22160=>1000,22162=>1000,22163=>1000,22165=>1000,22167=>1000,22168=>1000,22169=>1000,22170=>1000,22172=>1000,22173=>1000,22174=>1000,22175=>1000,22177=>1000,22180=>1000,22181=>1000,22182=>1000,22183=>1000,22184=>1000,22186=>1000,22187=>1000,22188=>1000,22189=>1000,22190=>1000,22191=>1000,22193=>1000,22194=>1000,22195=>1000,22196=>1000,22197=>1000,22198=>1000,22199=>1000,22201=>1000,22204=>1000,22205=>1000,22206=>1000,22207=>1000,22208=>1000,22209=>1000,22210=>1000,22211=>1000,22213=>1000,22214=>1000,22216=>1000,22217=>1000,22218=>1000,22219=>1000,22220=>1000,22221=>1000,22225=>1000,22227=>1000,22228=>1000,22230=>1000,22231=>1000,22234=>1000,22235=>1000,22237=>1000,22238=>1000,22239=>1000,22240=>1000,22241=>1000,22242=>1000,22244=>1000,22245=>1000,22247=>1000,22250=>1000,22251=>1000,22253=>1000,22254=>1000,22255=>1000,22256=>1000,22257=>1000,22263=>1000,22265=>1000,22266=>1000,22267=>1000,22269=>1000,22271=>1000,22272=>1000,22273=>1000,22274=>1000,22275=>1000,22276=>1000,22279=>1000,22280=>1000,22281=>1000,22282=>1000,22283=>1000,22284=>1000,22285=>1000,22290=>1000,22291=>1000,22292=>1000,22293=>1000,22294=>1000,22296=>1000,22298=>1000,22299=>1000,22300=>1000,22301=>1000,22302=>1000,22303=>1000,22304=>1000,22306=>1000,22307=>1000,22312=>1000,22313=>1000,22314=>1000,22316=>1000,22317=>1000,22318=>1000,22319=>1000,22320=>1000,22322=>1000,22323=>1000,22324=>1000,22331=>1000,22333=>1000,22334=>1000,22335=>1000,22336=>1000,22337=>1000,22338=>1000,22339=>1000,22341=>1000,22342=>1000,22343=>1000,22345=>1000,22346=>1000,22347=>1000,22348=>1000,22349=>1000,22350=>1000,22351=>1000,22352=>1000,22353=>1000,22354=>1000,22356=>1000,22359=>1000,22363=>1000,22367=>1000,22369=>1000,22370=>1000,22372=>1000,22374=>1000,22375=>1000,22376=>1000,22377=>1000,22378=>1000,22379=>1000,22381=>1000,22383=>1000,22384=>1000,22385=>1000,22386=>1000,22387=>1000,22388=>1000,22389=>1000,22390=>1000,22391=>1000,22394=>1000,22395=>1000,22396=>1000,22397=>1000,22398=>1000,22399=>1000,22400=>1000,22402=>1000,22403=>1000,22408=>1000,22410=>1000,22411=>1000,22412=>1000,22413=>1000,22415=>1000,22416=>1000,22419=>1000,22420=>1000,22421=>1000,22423=>1000,22424=>1000,22425=>1000,22426=>1000,22427=>1000,22428=>1000,22429=>1000,22430=>1000,22431=>1000,22432=>1000,22433=>1000,22434=>1000,22435=>1000,22436=>1000,22437=>1000,22439=>1000,22442=>1000,22446=>1000,22451=>1000,22452=>1000,22453=>1000,22454=>1000,22456=>1000,22457=>1000,22458=>1000,22459=>1000,22460=>1000,22461=>1000,22462=>1000,22463=>1000,22465=>1000,22466=>1000,22467=>1000,22468=>1000,22470=>1000,22471=>1000,22472=>1000,22475=>1000,22476=>1000,22478=>1000,22479=>1000,22480=>1000,22482=>1000,22484=>1000,22485=>1000,22487=>1000,22492=>1000,22493=>1000,22494=>1000,22495=>1000,22496=>1000,22497=>1000,22498=>1000,22499=>1000,22500=>1000,22501=>1000,22502=>1000,22503=>1000,22505=>1000,22508=>1000,22509=>1000,22510=>1000,22511=>1000,22512=>1000,22513=>1000,22514=>1000,22515=>1000,22516=>1000,22517=>1000,22518=>1000,22519=>1000,22520=>1000,22521=>1000,22522=>1000,22523=>1000,22524=>1000,22525=>1000,22526=>1000,22528=>1000,22529=>1000,22530=>1000,22531=>1000,22532=>1000,22533=>1000,22534=>1000,22535=>1000,22536=>1000,22537=>1000,22538=>1000,22539=>1000,22540=>1000,22541=>1000,22542=>1000,22544=>1000,22546=>1000,22548=>1000,22552=>1000,22553=>1000,22555=>1000,22556=>1000,22557=>1000,22558=>1000,22560=>1000,22561=>1000,22562=>1000,22563=>1000,22564=>1000,22565=>1000,22566=>1000,22567=>1000,22568=>1000,22569=>1000,22570=>1000,22572=>1000,22573=>1000,22574=>1000,22575=>1000,22576=>1000,22577=>1000,22578=>1000,22579=>1000,22580=>1000,22581=>1000,22582=>1000,22583=>1000,22584=>1000,22585=>1000,22586=>1000,22587=>1000,22589=>1000,22591=>1000,22592=>1000,22596=>1000,22599=>1000,22600=>1000,22601=>1000,22602=>1000,22603=>1000,22604=>1000,22605=>1000,22606=>1000,22607=>1000,22609=>1000,22610=>1000,22611=>1000,22612=>1000,22613=>1000,22615=>1000,22616=>1000,22617=>1000,22618=>1000,22619=>1000,22620=>1000,22621=>1000,22622=>1000,22623=>1000,22626=>1000,22627=>1000,22628=>1000,22629=>1000,22632=>1000,22633=>1000,22635=>1000,22636=>1000,22637=>1000,22639=>1000,22641=>1000,22642=>1000,22643=>1000,22644=>1000,22645=>1000,22646=>1000,22649=>1000,22650=>1000,22651=>1000,22652=>1000,22653=>1000,22654=>1000,22655=>1000,22656=>1000,22657=>1000,22658=>1000,22659=>1000,22661=>1000,22662=>1000,22663=>1000,22664=>1000,22665=>1000,22666=>1000,22667=>1000,22670=>1000,22671=>1000,22672=>1000,22673=>1000,22674=>1000,22675=>1000,22676=>1000,22678=>1000,22680=>1000,22681=>1000,22682=>1000,22684=>1000,22685=>1000,22686=>1000,22687=>1000,22688=>1000,22689=>1000,22691=>1000,22693=>1000,22694=>1000,22695=>1000,22696=>1000,22697=>1000,22698=>1000,22699=>1000,22700=>1000,22702=>1000,22703=>1000,22704=>1000,22705=>1000,22707=>1000,22709=>1000,22710=>1000,22714=>1000,22715=>1000,22716=>1000,22717=>1000,22718=>1000,22719=>1000,22721=>1000,22722=>1000,22725=>1000,22726=>1000,22727=>1000,22728=>1000,22729=>1000,22731=>1000,22734=>1000,22735=>1000,22736=>1000,22737=>1000,22738=>1000,22739=>1000,22740=>1000,22741=>1000,22742=>1000,22744=>1000,22745=>1000,22746=>1000,22747=>1000,22748=>1000,22749=>1000,22750=>1000,22751=>1000,22752=>1000,22754=>1000,22755=>1000,22756=>1000,22759=>1000,22760=>1000,22761=>1000,22763=>1000,22764=>1000,22767=>1000,22768=>1000,22770=>1000,22771=>1000,22772=>1000,22777=>1000,22778=>1000,22779=>1000,22780=>1000,22781=>1000,22782=>1000,22783=>1000,22786=>1000,22787=>1000,22788=>1000,22789=>1000,22790=>1000,22791=>1000,22794=>1000,22796=>1000,22797=>1000,22798=>1000,22799=>1000,22801=>1000,22802=>1000,22804=>1000,22805=>1000,22806=>1000,22807=>1000,22809=>1000,22810=>1000,22812=>1000,22813=>1000,22815=>1000,22816=>1000,22818=>1000,22820=>1000,22821=>1000,22823=>1000,22825=>1000,22826=>1000,22827=>1000,22828=>1000,22829=>1000,22830=>1000,22831=>1000,22833=>1000,22834=>1000,22836=>1000,22839=>1000,22840=>1000,22844=>1000,22846=>1000,22848=>1000,22852=>1000,22853=>1000,22855=>1000,22856=>1000,22857=>1000,22858=>1000,22862=>1000,22863=>1000,22864=>1000,22865=>1000,22867=>1000,22868=>1000,22869=>1000,22871=>1000,22872=>1000,22874=>1000,22876=>1000,22880=>1000,22881=>1000,22882=>1000,22885=>1000,22887=>1000,22889=>1000,22890=>1000,22891=>1000,22892=>1000,22893=>1000,22894=>1000,22896=>1000,22897=>1000,22898=>1000,22899=>1000,22900=>1000,22901=>1000,22902=>1000,22903=>1000,22904=>1000,22905=>1000,22907=>1000,22908=>1000,22909=>1000,22910=>1000,22911=>1000,22912=>1000,22913=>1000,22914=>1000,22915=>1000,22916=>1000,22917=>1000,22921=>1000,22922=>1000,22925=>1000,22926=>1000,22927=>1000,22928=>1000,22930=>1000,22931=>1000,22932=>1000,22934=>1000,22935=>1000,22936=>1000,22937=>1000,22938=>1000,22941=>1000,22942=>1000,22943=>1000,22944=>1000,22945=>1000,22946=>1000,22947=>1000,22948=>1000,22949=>1000,22950=>1000,22951=>1000,22952=>1000,22956=>1000,22958=>1000,22959=>1000,22960=>1000,22961=>1000,22962=>1000,22963=>1000,22964=>1000,22965=>1000,22966=>1000,22967=>1000,22968=>1000,22969=>1000,22970=>1000,22971=>1000,22972=>1000,22973=>1000,22974=>1000,22975=>1000,22976=>1000,22977=>1000,22979=>1000,22980=>1000,22981=>1000,22982=>1000,22983=>1000,22984=>1000,22985=>1000,22986=>1000,22987=>1000,22988=>1000,22989=>1000,22990=>1000,22991=>1000,22992=>1000,22993=>1000,22994=>1000,22995=>1000,22996=>1000,22998=>1000,23000=>1000,23001=>1000,23002=>1000,23003=>1000,23004=>1000,23005=>1000,23006=>1000,23008=>1000,23009=>1000,23011=>1000,23012=>1000,23013=>1000,23014=>1000,23016=>1000,23017=>1000,23018=>1000,23019=>1000,23020=>1000,23021=>1000,23022=>1000,23023=>1000,23024=>1000,23025=>1000,23026=>1000,23027=>1000,23028=>1000,23029=>1000,23030=>1000,23031=>1000,23032=>1000,23033=>1000,23034=>1000,23035=>1000,23036=>1000,23037=>1000,23038=>1000,23039=>1000,23040=>1000,23041=>1000,23042=>1000,23043=>1000,23049=>1000,23050=>1000,23051=>1000,23052=>1000,23053=>1000,23055=>1000,23057=>1000,23058=>1000,23059=>1000,23061=>1000,23062=>1000,23063=>1000,23064=>1000,23065=>1000,23066=>1000,23067=>1000,23068=>1000,23070=>1000,23071=>1000,23072=>1000,23073=>1000,23075=>1000,23076=>1000,23077=>1000,23079=>1000,23081=>1000,23082=>1000,23083=>1000,23084=>1000,23085=>1000,23086=>1000,23091=>1000,23093=>1000,23094=>1000,23095=>1000,23096=>1000,23097=>1000,23100=>1000,23101=>1000,23102=>1000,23104=>1000,23105=>1000,23106=>1000,23107=>1000,23108=>1000,23109=>1000,23110=>1000,23111=>1000,23112=>1000,23113=>1000,23114=>1000,23116=>1000,23117=>1000,23120=>1000,23121=>1000,23122=>1000,23123=>1000,23124=>1000,23125=>1000,23126=>1000,23127=>1000,23128=>1000,23129=>1000,23130=>1000,23131=>1000,23132=>1000,23133=>1000,23134=>1000,23135=>1000,23136=>1000,23137=>1000,23138=>1000,23139=>1000,23140=>1000,23141=>1000,23142=>1000,23143=>1000,23144=>1000,23145=>1000,23146=>1000,23147=>1000,23148=>1000,23149=>1000,23150=>1000,23152=>1000,23153=>1000,23159=>1000,23160=>1000,23161=>1000,23162=>1000,23163=>1000,23164=>1000,23165=>1000,23166=>1000,23167=>1000,23169=>1000,23170=>1000,23171=>1000,23172=>1000,23174=>1000,23176=>1000,23178=>1000,23179=>1000,23180=>1000,23182=>1000,23183=>1000,23184=>1000,23185=>1000,23186=>1000,23187=>1000,23188=>1000,23189=>1000,23190=>1000,23191=>1000,23193=>1000,23194=>1000,23195=>1000,23196=>1000,23197=>1000,23198=>1000,23199=>1000,23200=>1000,23201=>1000,23202=>1000,23204=>1000,23205=>1000,23206=>1000,23207=>1000,23209=>1000,23210=>1000,23211=>1000,23212=>1000,23214=>1000,23215=>1000,23216=>1000,23217=>1000,23218=>1000,23219=>1000,23220=>1000,23221=>1000,23222=>1000,23223=>1000,23224=>1000,23225=>1000,23226=>1000,23227=>1000,23228=>1000,23229=>1000,23230=>1000,23231=>1000,23232=>1000,23233=>1000,23234=>1000,23235=>1000,23236=>1000,23238=>1000,23239=>1000,23240=>1000,23241=>1000,23242=>1000,23243=>1000,23244=>1000,23245=>1000,23246=>1000,23247=>1000,23249=>1000,23251=>1000,23253=>1000,23254=>1000,23255=>1000,23256=>1000,23257=>1000,23258=>1000,23259=>1000,23260=>1000,23261=>1000,23262=>1000,23263=>1000,23264=>1000,23265=>1000,23266=>1000,23267=>1000,23268=>1000,23269=>1000,23270=>1000,23272=>1000,23273=>1000,23274=>1000,23275=>1000,23276=>1000,23277=>1000,23278=>1000,23280=>1000,23282=>1000,23283=>1000,23284=>1000,23285=>1000,23286=>1000,23287=>1000,23288=>1000,23289=>1000,23290=>1000,23291=>1000,23293=>1000,23294=>1000,23295=>1000,23297=>1000,23298=>1000,23299=>1000,23301=>1000,23303=>1000,23304=>1000,23305=>1000,23307=>1000,23308=>1000,23309=>1000,23311=>1000,23312=>1000,23313=>1000,23315=>1000,23316=>1000,23317=>1000,23318=>1000,23319=>1000,23321=>1000,23322=>1000,23323=>1000,23325=>1000,23326=>1000,23327=>1000,23328=>1000,23329=>1000,23331=>1000,23332=>1000,23333=>1000,23334=>1000,23335=>1000,23336=>1000,23338=>1000,23339=>1000,23340=>1000,23341=>1000,23342=>1000,23343=>1000,23344=>1000,23346=>1000,23348=>1000,23352=>1000,23356=>1000,23357=>1000,23358=>1000,23359=>1000,23360=>1000,23361=>1000,23363=>1000,23364=>1000,23365=>1000,23366=>1000,23367=>1000,23368=>1000,23370=>1000,23371=>1000,23372=>1000,23373=>1000,23374=>1000,23375=>1000,23376=>1000,23377=>1000,23379=>1000,23380=>1000,23381=>1000,23382=>1000,23383=>1000,23384=>1000,23386=>1000,23387=>1000,23388=>1000,23389=>1000,23391=>1000,23394=>1000,23395=>1000,23396=>1000,23397=>1000,23398=>1000,23400=>1000,23401=>1000,23403=>1000,23404=>1000,23405=>1000,23406=>1000,23408=>1000,23409=>1000,23410=>1000,23411=>1000,23412=>1000,23413=>1000,23414=>1000,23415=>1000,23416=>1000,23418=>1000,23419=>1000,23420=>1000,23421=>1000,23423=>1000,23424=>1000,23425=>1000,23426=>1000,23427=>1000,23428=>1000,23429=>1000,23431=>1000,23432=>1000,23433=>1000,23435=>1000,23436=>1000,23438=>1000,23439=>1000,23440=>1000,23442=>1000,23443=>1000,23445=>1000,23446=>1000,23447=>1000,23448=>1000,23449=>1000,23450=>1000,23451=>1000,23452=>1000,23453=>1000,23454=>1000,23455=>1000,23458=>1000,23459=>1000,23460=>1000,23461=>1000,23462=>1000,23463=>1000,23464=>1000,23466=>1000,23468=>1000,23469=>1000,23470=>1000,23472=>1000,23475=>1000,23476=>1000,23477=>1000,23478=>1000,23479=>1000,23480=>1000,23481=>1000,23487=>1000,23488=>1000,23489=>1000,23490=>1000,23491=>1000,23492=>1000,23493=>1000,23494=>1000,23495=>1000,23498=>1000,23499=>1000,23500=>1000,23501=>1000,23502=>1000,23504=>1000,23505=>1000,23506=>1000,23507=>1000,23508=>1000,23509=>1000,23510=>1000,23511=>1000,23512=>1000,23513=>1000,23515=>1000,23518=>1000,23519=>1000,23520=>1000,23521=>1000,23522=>1000,23523=>1000,23524=>1000,23525=>1000,23526=>1000,23527=>1000,23528=>1000,23529=>1000,23530=>1000,23531=>1000,23532=>1000,23534=>1000,23535=>1000,23536=>1000,23537=>1000,23538=>1000,23539=>1000,23541=>1000,23542=>1000,23544=>1000,23546=>1000,23551=>1000,23553=>1000,23555=>1000,23556=>1000,23557=>1000,23559=>1000,23560=>1000,23561=>1000,23562=>1000,23563=>1000,23564=>1000,23565=>1000,23566=>1000,23567=>1000,23568=>1000,23569=>1000,23570=>1000,23571=>1000,23572=>1000,23573=>1000,23574=>1000,23578=>1000,23580=>1000,23582=>1000,23583=>1000,23584=>1000,23586=>1000,23587=>1000,23588=>1000,23589=>1000,23592=>1000,23594=>1000,23596=>1000,23600=>1000,23601=>1000,23603=>1000,23607=>1000,23608=>1000,23609=>1000,23610=>1000,23611=>1000,23612=>1000,23614=>1000,23615=>1000,23616=>1000,23617=>1000,23620=>1000,23621=>1000,23622=>1000,23623=>1000,23624=>1000,23625=>1000,23626=>1000,23627=>1000,23628=>1000,23629=>1000,23630=>1000,23631=>1000,23632=>1000,23633=>1000,23635=>1000,23636=>1000,23637=>1000,23638=>1000,23640=>1000,23641=>1000,23644=>1000,23645=>1000,23646=>1000,23648=>1000,23650=>1000,23651=>1000,23652=>1000,23653=>1000,23655=>1000,23656=>1000,23657=>1000,23658=>1000,23660=>1000,23661=>1000,23662=>1000,23663=>1000,23665=>1000,23667=>1000,23668=>1000,23672=>1000,23673=>1000,23674=>1000,23675=>1000,23676=>1000,23678=>1000,23685=>1000,23686=>1000,23688=>1000,23689=>1000,23690=>1000,23691=>1000,23692=>1000,23693=>1000,23695=>1000,23696=>1000,23697=>1000,23698=>1000,23699=>1000,23700=>1000,23701=>1000,23705=>1000,23706=>1000,23708=>1000,23709=>1000,23710=>1000,23711=>1000,23712=>1000,23713=>1000,23714=>1000,23715=>1000,23716=>1000,23717=>1000,23718=>1000,23719=>1000,23720=>1000,23721=>1000,23722=>1000,23723=>1000,23724=>1000,23725=>1000,23726=>1000,23727=>1000,23728=>1000,23729=>1000,23731=>1000,23733=>1000,23734=>1000,23735=>1000,23736=>1000,23738=>1000,23745=>1000,23746=>1000,23750=>1000,23751=>1000,23752=>1000,23753=>1000,23754=>1000,23755=>1000,23756=>1000,23758=>1000,23759=>1000,23760=>1000,23761=>1000,23762=>1000,23763=>1000,23764=>1000,23765=>1000,23766=>1000,23767=>1000,23768=>1000,23769=>1000,23770=>1000,23771=>1000,23774=>1000,23775=>1000,23781=>1000,23784=>1000,23785=>1000,23786=>1000,23788=>1000,23789=>1000,23790=>1000,23791=>1000,23792=>1000,23793=>1000,23796=>1000,23797=>1000,23798=>1000,23799=>1000,23800=>1000,23801=>1000,23803=>1000,23804=>1000,23805=>1000,23807=>1000,23808=>1000,23809=>1000,23814=>1000,23815=>1000,23819=>1000,23820=>1000,23821=>1000,23822=>1000,23823=>1000,23824=>1000,23825=>1000,23826=>1000,23828=>1000,23829=>1000,23830=>1000,23831=>1000,23832=>1000,23833=>1000,23834=>1000,23835=>1000,23837=>1000,23838=>1000,23839=>1000,23840=>1000,23842=>1000,23843=>1000,23844=>1000,23845=>1000,23846=>1000,23847=>1000,23848=>1000,23849=>1000,23852=>1000,23854=>1000,23855=>1000,23856=>1000,23857=>1000,23858=>1000,23859=>1000,23860=>1000,23861=>1000,23862=>1000,23863=>1000,23864=>1000,23865=>1000,23866=>1000,23868=>1000,23869=>1000,23870=>1000,23871=>1000,23872=>1000,23873=>1000,23874=>1000,23875=>1000,23877=>1000,23878=>1000,23879=>1000,23880=>1000,23881=>1000,23882=>1000,23883=>1000,23884=>1000,23886=>1000,23888=>1000,23889=>1000,23890=>1000,23893=>1000,23894=>1000,23895=>1000,23897=>1000,23899=>1000,23902=>1000,23906=>1000,23907=>1000,23909=>1000,23911=>1000,23912=>1000,23913=>1000,23915=>1000,23916=>1000,23919=>1000,23920=>1000,23921=>1000,23922=>1000,23924=>1000,23927=>1000,23928=>1000,23929=>1000,23930=>1000,23931=>1000,23932=>1000,23933=>1000,23934=>1000,23935=>1000,23936=>1000,23937=>1000,23938=>1000,23940=>1000,23941=>1000,23942=>1000,23943=>1000,23944=>1000,23945=>1000,23946=>1000,23947=>1000,23949=>1000,23950=>1000,23954=>1000,23955=>1000,23956=>1000,23957=>1000,23959=>1000,23961=>1000,23962=>1000,23964=>1000,23965=>1000,23966=>1000,23967=>1000,23968=>1000,23969=>1000,23970=>1000,23972=>1000,23975=>1000,23976=>1000,23977=>1000,23978=>1000,23979=>1000,23980=>1000,23981=>1000,23982=>1000,23983=>1000,23984=>1000,23985=>1000,23986=>1000,23988=>1000,23989=>1000,23990=>1000,23991=>1000,23992=>1000,23993=>1000,23994=>1000,23996=>1000,23997=>1000,24000=>1000,24001=>1000,24002=>1000,24003=>1000,24006=>1000,24007=>1000,24009=>1000,24011=>1000,24013=>1000,24015=>1000,24017=>1000,24018=>1000,24020=>1000,24021=>1000,24022=>1000,24023=>1000,24024=>1000,24027=>1000,24029=>1000,24030=>1000,24031=>1000,24032=>1000,24033=>1000,24034=>1000,24037=>1000,24038=>1000,24039=>1000,24040=>1000,24043=>1000,24046=>1000,24048=>1000,24049=>1000,24050=>1000,24051=>1000,24052=>1000,24053=>1000,24055=>1000,24057=>1000,24061=>1000,24062=>1000,24063=>1000,24066=>1000,24067=>1000,24068=>1000,24070=>1000,24073=>1000,24074=>1000,24075=>1000,24076=>1000,24078=>1000,24081=>1000,24082=>1000,24084=>1000,24085=>1000,24086=>1000,24087=>1000,24088=>1000,24089=>1000,24090=>1000,24091=>1000,24093=>1000,24095=>1000,24096=>1000,24097=>1000,24098=>1000,24099=>1000,24100=>1000,24101=>1000,24104=>1000,24105=>1000,24107=>1000,24109=>1000,24110=>1000,24115=>1000,24116=>1000,24118=>1000,24119=>1000,24120=>1000,24125=>1000,24126=>1000,24128=>1000,24129=>1000,24130=>1000,24131=>1000,24132=>1000,24133=>1000,24136=>1000,24138=>1000,24139=>1000,24140=>1000,24141=>1000,24142=>1000,24143=>1000,24147=>1000,24148=>1000,24149=>1000,24151=>1000,24152=>1000,24153=>1000,24155=>1000,24156=>1000,24157=>1000,24158=>1000,24159=>1000,24160=>1000,24161=>1000,24162=>1000,24163=>1000,24166=>1000,24167=>1000,24168=>1000,24169=>1000,24170=>1000,24171=>1000,24172=>1000,24173=>1000,24174=>1000,24175=>1000,24176=>1000,24178=>1000,24179=>1000,24180=>1000,24181=>1000,24182=>1000,24184=>1000,24185=>1000,24186=>1000,24187=>1000,24188=>1000,24189=>1000,24190=>1000,24191=>1000,24192=>1000,24194=>1000,24195=>1000,24196=>1000,24198=>1000,24199=>1000,24200=>1000,24201=>1000,24202=>1000,24203=>1000,24204=>1000,24205=>1000,24207=>1000,24210=>1000,24213=>1000,24214=>1000,24215=>1000,24217=>1000,24218=>1000,24219=>1000,24220=>1000,24224=>1000,24226=>1000,24227=>1000,24228=>1000,24229=>1000,24230=>1000,24231=>1000,24232=>1000,24234=>1000,24235=>1000,24236=>1000,24237=>1000,24238=>1000,24240=>1000,24241=>1000,24242=>1000,24243=>1000,24244=>1000,24245=>1000,24246=>1000,24247=>1000,24248=>1000,24249=>1000,24253=>1000,24254=>1000,24257=>1000,24258=>1000,24260=>1000,24261=>1000,24262=>1000,24263=>1000,24264=>1000,24265=>1000,24266=>1000,24267=>1000,24268=>1000,24269=>1000,24270=>1000,24272=>1000,24273=>1000,24274=>1000,24275=>1000,24276=>1000,24277=>1000,24278=>1000,24279=>1000,24280=>1000,24281=>1000,24282=>1000,24283=>1000,24284=>1000,24285=>1000,24286=>1000,24287=>1000,24288=>1000,24289=>1000,24290=>1000,24291=>1000,24293=>1000,24294=>1000,24295=>1000,24296=>1000,24297=>1000,24300=>1000,24302=>1000,24303=>1000,24305=>1000,24306=>1000,24307=>1000,24308=>1000,24310=>1000,24311=>1000,24312=>1000,24313=>1000,24314=>1000,24315=>1000,24316=>1000,24318=>1000,24319=>1000,24321=>1000,24322=>1000,24324=>1000,24325=>1000,24327=>1000,24328=>1000,24330=>1000,24331=>1000,24332=>1000,24333=>1000,24334=>1000,24335=>1000,24338=>1000,24339=>1000,24340=>1000,24341=>1000,24343=>1000,24344=>1000,24346=>1000,24347=>1000,24349=>1000,24351=>1000,24354=>1000,24355=>1000,24356=>1000,24357=>1000,24358=>1000,24359=>1000,24360=>1000,24361=>1000,24365=>1000,24366=>1000,24368=>1000,24369=>1000,24371=>1000,24373=>1000,24374=>1000,24375=>1000,24376=>1000,24378=>1000,24379=>1000,24380=>1000,24384=>1000,24387=>1000,24388=>1000,24389=>1000,24390=>1000,24392=>1000,24393=>1000,24394=>1000,24395=>1000,24396=>1000,24397=>1000,24398=>1000,24399=>1000,24400=>1000,24401=>1000,24404=>1000,24406=>1000,24407=>1000,24408=>1000,24409=>1000,24412=>1000,24413=>1000,24414=>1000,24417=>1000,24418=>1000,24419=>1000,24420=>1000,24421=>1000,24423=>1000,24425=>1000,24426=>1000,24427=>1000,24428=>1000,24429=>1000,24431=>1000,24432=>1000,24433=>1000,24434=>1000,24435=>1000,24436=>1000,24438=>1000,24439=>1000,24440=>1000,24441=>1000,24443=>1000,24444=>1000,24445=>1000,24446=>1000,24447=>1000,24448=>1000,24449=>1000,24450=>1000,24451=>1000,24453=>1000,24454=>1000,24455=>1000,24456=>1000,24457=>1000,24458=>1000,24459=>1000,24460=>1000,24464=>1000,24465=>1000,24466=>1000,24470=>1000,24471=>1000,24472=>1000,24473=>1000,24475=>1000,24476=>1000,24478=>1000,24479=>1000,24480=>1000,24481=>1000,24484=>1000,24485=>1000,24486=>1000,24487=>1000,24488=>1000,24489=>1000,24490=>1000,24491=>1000,24492=>1000,24493=>1000,24494=>1000,24495=>1000,24497=>1000,24498=>1000,24501=>1000,24502=>1000,24503=>1000,24505=>1000,24506=>1000,24507=>1000,24508=>1000,24509=>1000,24510=>1000,24511=>1000,24512=>1000,24513=>1000,24514=>1000,24515=>1000,24516=>1000,24517=>1000,24521=>1000,24524=>1000,24525=>1000,24527=>1000,24528=>1000,24529=>1000,24530=>1000,24532=>1000,24533=>1000,24534=>1000,24535=>1000,24536=>1000,24537=>1000,24539=>1000,24541=>1000,24542=>1000,24543=>1000,24544=>1000,24545=>1000,24547=>1000,24548=>1000,24549=>1000,24552=>1000,24554=>1000,24555=>1000,24557=>1000,24558=>1000,24559=>1000,24561=>1000,24563=>1000,24564=>1000,24565=>1000,24567=>1000,24568=>1000,24570=>1000,24571=>1000,24573=>1000,24575=>1000,24576=>1000,24585=>1000,24586=>1000,24587=>1000,24588=>1000,24589=>1000,24590=>1000,24591=>1000,24592=>1000,24593=>1000,24594=>1000,24595=>1000,24596=>1000,24597=>1000,24598=>1000,24599=>1000,24601=>1000,24602=>1000,24603=>1000,24604=>1000,24605=>1000,24606=>1000,24608=>1000,24609=>1000,24610=>1000,24611=>1000,24612=>1000,24613=>1000,24614=>1000,24615=>1000,24616=>1000,24617=>1000,24618=>1000,24619=>1000,24620=>1000,24621=>1000,24622=>1000,24623=>1000,24625=>1000,24626=>1000,24627=>1000,24628=>1000,24629=>1000,24631=>1000,24633=>1000,24635=>1000,24640=>1000,24641=>1000,24642=>1000,24643=>1000,24644=>1000,24645=>1000,24646=>1000,24647=>1000,24649=>1000,24650=>1000,24651=>1000,24652=>1000,24653=>1000,24656=>1000,24658=>1000,24659=>1000,24660=>1000,24661=>1000,24664=>1000,24665=>1000,24666=>1000,24667=>1000,24669=>1000,24670=>1000,24671=>1000,24674=>1000,24675=>1000,24676=>1000,24677=>1000,24678=>1000,24679=>1000,24680=>1000,24681=>1000,24682=>1000,24683=>1000,24684=>1000,24685=>1000,24686=>1000,24687=>1000,24688=>1000,24690=>1000,24693=>1000,24695=>1000,24702=>1000,24703=>1000,24704=>1000,24705=>1000,24707=>1000,24708=>1000,24709=>1000,24710=>1000,24711=>1000,24712=>1000,24713=>1000,24714=>1000,24716=>1000,24717=>1000,24718=>1000,24720=>1000,24722=>1000,24724=>1000,24725=>1000,24726=>1000,24727=>1000,24730=>1000,24731=>1000,24732=>1000,24733=>1000,24734=>1000,24735=>1000,24736=>1000,24738=>1000,24739=>1000,24740=>1000,24742=>1000,24743=>1000,24744=>1000,24752=>1000,24753=>1000,24754=>1000,24755=>1000,24756=>1000,24757=>1000,24758=>1000,24759=>1000,24760=>1000,24761=>1000,24762=>1000,24763=>1000,24764=>1000,24765=>1000,24766=>1000,24767=>1000,24768=>1000,24769=>1000,24771=>1000,24772=>1000,24773=>1000,24774=>1000,24775=>1000,24776=>1000,24777=>1000,24778=>1000,24779=>1000,24780=>1000,24781=>1000,24782=>1000,24783=>1000,24785=>1000,24787=>1000,24788=>1000,24789=>1000,24791=>1000,24792=>1000,24793=>1000,24794=>1000,24795=>1000,24796=>1000,24797=>1000,24798=>1000,24799=>1000,24800=>1000,24801=>1000,24802=>1000,24803=>1000,24804=>1000,24806=>1000,24807=>1000,24808=>1000,24809=>1000,24816=>1000,24817=>1000,24818=>1000,24819=>1000,24820=>1000,24821=>1000,24822=>1000,24823=>1000,24824=>1000,24825=>1000,24826=>1000,24827=>1000,24828=>1000,24829=>1000,24830=>1000,24831=>1000,24832=>1000,24833=>1000,24835=>1000,24836=>1000,24837=>1000,24838=>1000,24839=>1000,24840=>1000,24841=>1000,24842=>1000,24843=>1000,24844=>1000,24845=>1000,24846=>1000,24847=>1000,24848=>1000,24850=>1000,24851=>1000,24852=>1000,24853=>1000,24854=>1000,24856=>1000,24857=>1000,24858=>1000,24859=>1000,24860=>1000,24861=>1000,24863=>1000,24864=>1000,24866=>1000,24867=>1000,24871=>1000,24872=>1000,24873=>1000,24875=>1000,24876=>1000,24878=>1000,24879=>1000,24880=>1000,24882=>1000,24884=>1000,24886=>1000,24887=>1000,24891=>1000,24893=>1000,24894=>1000,24895=>1000,24896=>1000,24897=>1000,24898=>1000,24900=>1000,24901=>1000,24902=>1000,24903=>1000,24904=>1000,24905=>1000,24906=>1000,24907=>1000,24908=>1000,24909=>1000,24910=>1000,24911=>1000,24912=>1000,24914=>1000,24915=>1000,24916=>1000,24917=>1000,24918=>1000,24920=>1000,24921=>1000,24922=>1000,24923=>1000,24924=>1000,24925=>1000,24926=>1000,24927=>1000,24928=>1000,24929=>1000,24930=>1000,24931=>1000,24932=>1000,24933=>1000,24934=>1000,24935=>1000,24936=>1000,24938=>1000,24939=>1000,24940=>1000,24942=>1000,24943=>1000,24944=>1000,24945=>1000,24946=>1000,24947=>1000,24948=>1000,24949=>1000,24950=>1000,24951=>1000,24953=>1000,24954=>1000,24956=>1000,24957=>1000,24958=>1000,24960=>1000,24961=>1000,24962=>1000,24963=>1000,24967=>1000,24969=>1000,24970=>1000,24971=>1000,24972=>1000,24973=>1000,24974=>1000,24976=>1000,24977=>1000,24978=>1000,24979=>1000,24980=>1000,24981=>1000,24982=>1000,24984=>1000,24985=>1000,24986=>1000,24987=>1000,24988=>1000,24989=>1000,24991=>1000,24993=>1000,24994=>1000,24996=>1000,24999=>1000,25000=>1000,25001=>1000,25002=>1000,25003=>1000,25004=>1000,25005=>1000,25006=>1000,25007=>1000,25008=>1000,25009=>1000,25010=>1000,25011=>1000,25012=>1000,25013=>1000,25014=>1000,25015=>1000,25016=>1000,25017=>1000,25018=>1000,25020=>1000,25022=>1000,25023=>1000,25024=>1000,25025=>1000,25026=>1000,25027=>1000,25029=>1000,25030=>1000,25031=>1000,25032=>1000,25033=>1000,25034=>1000,25035=>1000,25036=>1000,25037=>1000,25039=>1000,25040=>1000,25043=>1000,25046=>1000,25048=>1000,25050=>1000,25054=>1000,25055=>1000,25056=>1000,25058=>1000,25059=>1000,25060=>1000,25061=>1000,25062=>1000,25063=>1000,25064=>1000,25065=>1000,25066=>1000,25067=>1000,25069=>1000,25070=>1000,25072=>1000,25073=>1000,25074=>1000,25077=>1000,25078=>1000,25079=>1000,25080=>1000,25081=>1000,25082=>1000,25083=>1000,25084=>1000,25085=>1000,25086=>1000,25087=>1000,25088=>1000,25089=>1000,25091=>1000,25092=>1000,25095=>1000,25096=>1000,25097=>1000,25098=>1000,25100=>1000,25101=>1000,25102=>1000,25104=>1000,25105=>1000,25106=>1000,25108=>1000,25109=>1000,25110=>1000,25113=>1000,25114=>1000,25115=>1000,25119=>1000,25120=>1000,25121=>1000,25122=>1000,25123=>1000,25124=>1000,25125=>1000,25127=>1000,25129=>1000,25130=>1000,25131=>1000,25132=>1000,25133=>1000,25134=>1000,25136=>1000,25138=>1000,25139=>1000,25140=>1000,25142=>1000,25143=>1000,25145=>1000,25146=>1000,25149=>1000,25150=>1000,25151=>1000,25152=>1000,25153=>1000,25154=>1000,25155=>1000,25158=>1000,25159=>1000,25160=>1000,25161=>1000,25162=>1000,25163=>1000,25164=>1000,25165=>1000,25166=>1000,25168=>1000,25169=>1000,25170=>1000,25171=>1000,25172=>1000,25176=>1000,25177=>1000,25178=>1000,25179=>1000,25180=>1000,25182=>1000,25184=>1000,25185=>1000,25186=>1000,25187=>1000,25188=>1000,25189=>1000,25190=>1000,25192=>1000,25197=>1000,25198=>1000,25199=>1000,25200=>1000,25201=>1000,25202=>1000,25203=>1000,25204=>1000,25206=>1000,25207=>1000,25209=>1000,25210=>1000,25211=>1000,25212=>1000,25213=>1000,25214=>1000,25215=>1000,25216=>1000,25217=>1000,25218=>1000,25219=>1000,25220=>1000,25221=>1000,25222=>1000,25223=>1000,25224=>1000,25225=>1000,25226=>1000,25228=>1000,25230=>1000,25231=>1000,25232=>1000,25233=>1000,25234=>1000,25235=>1000,25236=>1000,25237=>1000,25238=>1000,25239=>1000,25240=>1000,25245=>1000,25252=>1000,25254=>1000,25256=>1000,25257=>1000,25258=>1000,25259=>1000,25260=>1000,25261=>1000,25262=>1000,25263=>1000,25264=>1000,25265=>1000,25267=>1000,25268=>1000,25269=>1000,25270=>1000,25272=>1000,25273=>1000,25275=>1000,25276=>1000,25277=>1000,25278=>1000,25279=>1000,25281=>1000,25282=>1000,25283=>1000,25284=>1000,25285=>1000,25286=>1000,25287=>1000,25288=>1000,25289=>1000,25290=>1000,25291=>1000,25292=>1000,25293=>1000,25294=>1000,25295=>1000,25296=>1000,25297=>1000,25298=>1000,25299=>1000,25300=>1000,25301=>1000,25302=>1000,25303=>1000,25304=>1000,25305=>1000,25306=>1000,25307=>1000,25308=>1000,25311=>1000,25317=>1000,25323=>1000,25324=>1000,25325=>1000,25326=>1000,25327=>1000,25328=>1000,25329=>1000,25330=>1000,25331=>1000,25332=>1000,25333=>1000,25334=>1000,25335=>1000,25336=>1000,25337=>1000,25338=>1000,25339=>1000,25340=>1000,25341=>1000,25342=>1000,25343=>1000,25344=>1000,25345=>1000,25346=>1000,25347=>1000,25351=>1000,25352=>1000,25353=>1000,25355=>1000,25356=>1000,25357=>1000,25358=>1000,25359=>1000,25360=>1000,25361=>1000,25363=>1000,25364=>1000,25365=>1000,25366=>1000,25368=>1000,25384=>1000,25385=>1000,25386=>1000,25387=>1000,25388=>1000,25389=>1000,25390=>1000,25391=>1000,25393=>1000,25394=>1000,25395=>1000,25396=>1000,25397=>1000,25398=>1000,25399=>1000,25400=>1000,25401=>1000,25402=>1000,25403=>1000,25404=>1000,25405=>1000,25406=>1000,25408=>1000,25409=>1000,25410=>1000,25411=>1000,25412=>1000,25413=>1000,25414=>1000,25415=>1000,25416=>1000,25417=>1000,25418=>1000,25419=>1000,25420=>1000,25421=>1000,25422=>1000,25423=>1000,25424=>1000,25425=>1000,25428=>1000,25429=>1000,25430=>1000,25431=>1000,25432=>1000,25433=>1000,25434=>1000,25437=>1000,25444=>1000,25445=>1000,25447=>1000,25448=>1000,25449=>1000,25451=>1000,25452=>1000,25453=>1000,25454=>1000,25455=>1000,25456=>1000,25457=>1000,25458=>1000,25461=>1000,25462=>1000,25463=>1000,25464=>1000,25465=>1000,25466=>1000,25467=>1000,25468=>1000,25469=>1000,25471=>1000,25472=>1000,25473=>1000,25474=>1000,25475=>1000,25476=>1000,25477=>1000,25479=>1000,25480=>1000,25481=>1000,25482=>1000,25483=>1000,25484=>1000,25485=>1000,25486=>1000,25487=>1000,25488=>1000,25489=>1000,25490=>1000,25492=>1000,25494=>1000,25495=>1000,25496=>1000,25497=>1000,25499=>1000,25500=>1000,25501=>1000,25502=>1000,25503=>1000,25504=>1000,25505=>1000,25506=>1000,25507=>1000,25508=>1000,25509=>1000,25511=>1000,25512=>1000,25513=>1000,25514=>1000,25515=>1000,25516=>1000,25517=>1000,25518=>1000,25519=>1000,25520=>1000,25521=>1000,25529=>1000,25533=>1000,25534=>1000,25536=>1000,25537=>1000,25538=>1000,25539=>1000,25540=>1000,25541=>1000,25542=>1000,25543=>1000,25544=>1000,25545=>1000,25546=>1000,25547=>1000,25548=>1000,25549=>1000,25550=>1000,25551=>1000,25552=>1000,25553=>1000,25554=>1000,25555=>1000,25557=>1000,25558=>1000,25559=>1000,25560=>1000,25561=>1000,25562=>1000,25563=>1000,25564=>1000,25565=>1000,25566=>1000,25567=>1000,25568=>1000,25569=>1000,25570=>1000,25571=>1000,25572=>1000,25573=>1000,25574=>1000,25575=>1000,25576=>1000,25577=>1000,25578=>1000,25579=>1000,25581=>1000,25582=>1000,25583=>1000,25584=>1000,25585=>1000,25586=>1000,25587=>1000,25588=>1000,25589=>1000,25590=>1000,25592=>1000,25593=>1000,25595=>1000,25596=>1000,25598=>1000,25606=>1000,25607=>1000,25609=>1000,25610=>1000,25611=>1000,25612=>1000,25613=>1000,25614=>1000,25615=>1000,25616=>1000,25618=>1000,25619=>1000,25620=>1000,25621=>1000,25622=>1000,25623=>1000,25624=>1000,25626=>1000,25627=>1000,25628=>1000,25630=>1000,25631=>1000,25632=>1000,25633=>1000,25634=>1000,25635=>1000,25636=>1000,25637=>1000,25638=>1000,25639=>1000,25640=>1000,25642=>1000,25643=>1000,25644=>1000,25645=>1000,25646=>1000,25647=>1000,25648=>1000,25650=>1000,25651=>1000,25652=>1000,25653=>1000,25654=>1000,25655=>1000,25656=>1000,25657=>1000,25658=>1000,25659=>1000,25661=>1000,25662=>1000,25663=>1000,25664=>1000,25665=>1000,25667=>1000,25675=>1000,25677=>1000,25678=>1000,25680=>1000,25681=>1000,25682=>1000,25683=>1000,25684=>1000,25688=>1000,25689=>1000,25690=>1000,25691=>1000,25692=>1000,25693=>1000,25694=>1000,25695=>1000,25696=>1000,25697=>1000,25701=>1000,25702=>1000,25703=>1000,25704=>1000,25705=>1000,25707=>1000,25708=>1000,25709=>1000,25710=>1000,25711=>1000,25712=>1000,25713=>1000,25714=>1000,25715=>1000,25716=>1000,25717=>1000,25718=>1000,25719=>1000,25720=>1000,25721=>1000,25722=>1000,25723=>1000,25724=>1000,25725=>1000,25727=>1000,25730=>1000,25733=>1000,25735=>1000,25736=>1000,25737=>1000,25738=>1000,25739=>1000,25740=>1000,25741=>1000,25743=>1000,25744=>1000,25745=>1000,25746=>1000,25747=>1000,25749=>1000,25750=>1000,25751=>1000,25752=>1000,25753=>1000,25754=>1000,25756=>1000,25757=>1000,25758=>1000,25759=>1000,25760=>1000,25762=>1000,25763=>1000,25764=>1000,25765=>1000,25766=>1000,25769=>1000,25771=>1000,25772=>1000,25773=>1000,25774=>1000,25775=>1000,25776=>1000,25777=>1000,25778=>1000,25779=>1000,25780=>1000,25782=>1000,25787=>1000,25788=>1000,25789=>1000,25790=>1000,25791=>1000,25792=>1000,25793=>1000,25794=>1000,25795=>1000,25796=>1000,25797=>1000,25799=>1000,25801=>1000,25802=>1000,25803=>1000,25805=>1000,25806=>1000,25807=>1000,25808=>1000,25810=>1000,25811=>1000,25812=>1000,25814=>1000,25815=>1000,25816=>1000,25817=>1000,25818=>1000,25819=>1000,25821=>1000,25824=>1000,25825=>1000,25826=>1000,25827=>1000,25828=>1000,25829=>1000,25830=>1000,25831=>1000,25832=>1000,25833=>1000,25834=>1000,25835=>1000,25836=>1000,25837=>1000,25839=>1000,25840=>1000,25841=>1000,25842=>1000,25843=>1000,25844=>1000,25847=>1000,25848=>1000,25850=>1000,25851=>1000,25852=>1000,25853=>1000,25854=>1000,25855=>1000,25856=>1000,25857=>1000,25859=>1000,25860=>1000,25862=>1000,25863=>1000,25865=>1000,25866=>1000,25868=>1000,25869=>1000,25870=>1000,25871=>1000,25872=>1000,25873=>1000,25875=>1000,25876=>1000,25877=>1000,25878=>1000,25879=>1000,25880=>1000,25881=>1000,25883=>1000,25884=>1000,25885=>1000,25886=>1000,25887=>1000,25888=>1000,25889=>1000,25890=>1000,25891=>1000,25892=>1000,25893=>1000,25894=>1000,25897=>1000,25898=>1000,25899=>1000,25900=>1000,25901=>1000,25902=>1000,25903=>1000,25904=>1000,25906=>1000,25907=>1000,25908=>1000,25909=>1000,25910=>1000,25911=>1000,25912=>1000,25913=>1000,25915=>1000,25917=>1000,25918=>1000,25919=>1000,25921=>1000,25923=>1000,25925=>1000,25926=>1000,25928=>1000,25929=>1000,25930=>1000,25933=>1000,25935=>1000,25937=>1000,25939=>1000,25940=>1000,25941=>1000,25942=>1000,25943=>1000,25944=>1000,25945=>1000,25946=>1000,25948=>1000,25949=>1000,25950=>1000,25951=>1000,25954=>1000,25955=>1000,25956=>1000,25957=>1000,25958=>1000,25959=>1000,25960=>1000,25962=>1000,25963=>1000,25964=>1000,25965=>1000,25967=>1000,25970=>1000,25971=>1000,25972=>1000,25973=>1000,25974=>1000,25975=>1000,25976=>1000,25977=>1000,25978=>1000,25979=>1000,25980=>1000,25983=>1000,25984=>1000,25985=>1000,25986=>1000,25987=>1000,25988=>1000,25989=>1000,25990=>1000,25991=>1000,25992=>1000,25993=>1000,25995=>1000,25996=>1000,26000=>1000,26001=>1000,26002=>1000,26004=>1000,26005=>1000,26006=>1000,26007=>1000,26009=>1000,26011=>1000,26012=>1000,26013=>1000,26014=>1000,26015=>1000,26016=>1000,26017=>1000,26018=>1000,26020=>1000,26021=>1000,26023=>1000,26024=>1000,26026=>1000,26027=>1000,26028=>1000,26030=>1000,26031=>1000,26032=>1000,26034=>1000,26035=>1000,26037=>1000,26038=>1000,26039=>1000,26040=>1000,26041=>1000,26043=>1000,26044=>1000,26045=>1000,26046=>1000,26047=>1000,26049=>1000,26050=>1000,26051=>1000,26052=>1000,26053=>1000,26054=>1000,26059=>1000,26060=>1000,26061=>1000,26062=>1000,26063=>1000,26064=>1000,26065=>1000,26066=>1000,26067=>1000,26068=>1000,26070=>1000,26071=>1000,26074=>1000,26075=>1000,26077=>1000,26078=>1000,26079=>1000,26080=>1000,26081=>1000,26082=>1000,26083=>1000,26085=>1000,26086=>1000,26088=>1000,26089=>1000,26092=>1000,26093=>1000,26094=>1000,26095=>1000,26096=>1000,26097=>1000,26098=>1000,26099=>1000,26100=>1000,26101=>1000,26106=>1000,26107=>1000,26108=>1000,26109=>1000,26111=>1000,26112=>1000,26114=>1000,26115=>1000,26116=>1000,26117=>1000,26118=>1000,26119=>1000,26120=>1000,26121=>1000,26122=>1000,26123=>1000,26124=>1000,26125=>1000,26126=>1000,26127=>1000,26128=>1000,26129=>1000,26130=>1000,26131=>1000,26132=>1000,26133=>1000,26136=>1000,26140=>1000,26141=>1000,26142=>1000,26143=>1000,26144=>1000,26145=>1000,26146=>1000,26147=>1000,26148=>1000,26149=>1000,26150=>1000,26151=>1000,26152=>1000,26155=>1000,26157=>1000,26158=>1000,26159=>1000,26160=>1000,26161=>1000,26162=>1000,26163=>1000,26164=>1000,26165=>1000,26166=>1000,26169=>1000,26170=>1000,26177=>1000,26178=>1000,26179=>1000,26180=>1000,26181=>1000,26183=>1000,26184=>1000,26185=>1000,26186=>1000,26187=>1000,26188=>1000,26189=>1000,26191=>1000,26193=>1000,26194=>1000,26195=>1000,26199=>1000,26201=>1000,26202=>1000,26203=>1000,26204=>1000,26205=>1000,26206=>1000,26207=>1000,26208=>1000,26209=>1000,26210=>1000,26211=>1000,26212=>1000,26213=>1000,26214=>1000,26215=>1000,26216=>1000,26218=>1000,26219=>1000,26220=>1000,26222=>1000,26223=>1000,26224=>1000,26225=>1000,26226=>1000,26227=>1000,26228=>1000,26230=>1000,26231=>1000,26232=>1000,26233=>1000,26234=>1000,26235=>1000,26236=>1000,26237=>1000,26238=>1000,26240=>1000,26244=>1000,26245=>1000,26246=>1000,26247=>1000,26248=>1000,26249=>1000,26250=>1000,26251=>1000,26252=>1000,26253=>1000,26254=>1000,26256=>1000,26257=>1000,26258=>1000,26260=>1000,26261=>1000,26262=>1000,26263=>1000,26264=>1000,26265=>1000,26266=>1000,26269=>1000,26271=>1000,26272=>1000,26273=>1000,26274=>1000,26276=>1000,26280=>1000,26281=>1000,26282=>1000,26283=>1000,26285=>1000,26286=>1000,26287=>1000,26288=>1000,26289=>1000,26290=>1000,26291=>1000,26292=>1000,26293=>1000,26294=>1000,26295=>1000,26296=>1000,26297=>1000,26298=>1000,26299=>1000,26301=>1000,26302=>1000,26303=>1000,26304=>1000,26308=>1000,26310=>1000,26311=>1000,26312=>1000,26313=>1000,26314=>1000,26315=>1000,26316=>1000,26317=>1000,26318=>1000,26319=>1000,26322=>1000,26326=>1000,26328=>1000,26329=>1000,26330=>1000,26331=>1000,26332=>1000,26333=>1000,26334=>1000,26336=>1000,26339=>1000,26340=>1000,26342=>1000,26343=>1000,26344=>1000,26345=>1000,26347=>1000,26348=>1000,26349=>1000,26350=>1000,26352=>1000,26353=>1000,26354=>1000,26355=>1000,26356=>1000,26358=>1000,26359=>1000,26360=>1000,26361=>1000,26364=>1000,26366=>1000,26367=>1000,26368=>1000,26369=>1000,26370=>1000,26371=>1000,26372=>1000,26373=>1000,26376=>1000,26377=>1000,26378=>1000,26379=>1000,26380=>1000,26381=>1000,26382=>1000,26383=>1000,26384=>1000,26386=>1000,26387=>1000,26388=>1000,26389=>1000,26390=>1000,26391=>1000,26392=>1000,26393=>1000,26395=>1000,26397=>1000,26398=>1000,26399=>1000,26400=>1000,26401=>1000,26402=>1000,26403=>1000,26405=>1000,26406=>1000,26407=>1000,26408=>1000,26410=>1000,26411=>1000,26412=>1000,26413=>1000,26414=>1000,26417=>1000,26419=>1000,26420=>1000,26421=>1000,26422=>1000,26424=>1000,26425=>1000,26426=>1000,26427=>1000,26428=>1000,26429=>1000,26430=>1000,26431=>1000,26436=>1000,26437=>1000,26438=>1000,26439=>1000,26440=>1000,26441=>1000,26443=>1000,26444=>1000,26445=>1000,26446=>1000,26447=>1000,26448=>1000,26449=>1000,26451=>1000,26453=>1000,26454=>1000,26455=>1000,26457=>1000,26458=>1000,26460=>1000,26461=>1000,26462=>1000,26463=>1000,26464=>1000,26465=>1000,26466=>1000,26471=>1000,26474=>1000,26475=>1000,26476=>1000,26477=>1000,26478=>1000,26479=>1000,26480=>1000,26481=>1000,26482=>1000,26483=>1000,26484=>1000,26485=>1000,26486=>1000,26487=>1000,26488=>1000,26489=>1000,26490=>1000,26491=>1000,26492=>1000,26493=>1000,26494=>1000,26495=>1000,26497=>1000,26498=>1000,26499=>1000,26500=>1000,26501=>1000,26502=>1000,26503=>1000,26505=>1000,26507=>1000,26508=>1000,26509=>1000,26510=>1000,26511=>1000,26512=>1000,26513=>1000,26514=>1000,26515=>1000,26516=>1000,26517=>1000,26519=>1000,26520=>1000,26521=>1000,26522=>1000,26524=>1000,26525=>1000,26527=>1000,26528=>1000,26532=>1000,26540=>1000,26542=>1000,26543=>1000,26544=>1000,26545=>1000,26546=>1000,26547=>1000,26548=>1000,26549=>1000,26550=>1000,26551=>1000,26552=>1000,26553=>1000,26554=>1000,26555=>1000,26559=>1000,26560=>1000,26561=>1000,26562=>1000,26563=>1000,26564=>1000,26565=>1000,26566=>1000,26568=>1000,26569=>1000,26570=>1000,26571=>1000,26572=>1000,26573=>1000,26574=>1000,26575=>1000,26576=>1000,26577=>1000,26578=>1000,26579=>1000,26580=>1000,26582=>1000,26583=>1000,26584=>1000,26585=>1000,26586=>1000,26587=>1000,26588=>1000,26589=>1000,26590=>1000,26591=>1000,26594=>1000,26595=>1000,26596=>1000,26597=>1000,26598=>1000,26599=>1000,26601=>1000,26602=>1000,26603=>1000,26604=>1000,26605=>1000,26606=>1000,26607=>1000,26608=>1000,26609=>1000,26610=>1000,26611=>1000,26612=>1000,26613=>1000,26614=>1000,26615=>1000,26616=>1000,26617=>1000,26618=>1000,26620=>1000,26622=>1000,26623=>1000,26624=>1000,26625=>1000,26626=>1000,26627=>1000,26628=>1000,26637=>1000,26640=>1000,26642=>1000,26643=>1000,26644=>1000,26646=>1000,26647=>1000,26648=>1000,26650=>1000,26651=>1000,26652=>1000,26653=>1000,26654=>1000,26655=>1000,26656=>1000,26657=>1000,26658=>1000,26661=>1000,26662=>1000,26664=>1000,26665=>1000,26666=>1000,26667=>1000,26669=>1000,26670=>1000,26671=>1000,26673=>1000,26674=>1000,26675=>1000,26676=>1000,26677=>1000,26678=>1000,26679=>1000,26680=>1000,26681=>1000,26682=>1000,26683=>1000,26684=>1000,26685=>1000,26686=>1000,26688=>1000,26689=>1000,26690=>1000,26691=>1000,26692=>1000,26693=>1000,26694=>1000,26695=>1000,26696=>1000,26697=>1000,26698=>1000,26699=>1000,26700=>1000,26701=>1000,26702=>1000,26703=>1000,26704=>1000,26705=>1000,26707=>1000,26708=>1000,26709=>1000,26710=>1000,26717=>1000,26725=>1000,26731=>1000,26733=>1000,26734=>1000,26735=>1000,26737=>1000,26738=>1000,26740=>1000,26741=>1000,26742=>1000,26743=>1000,26744=>1000,26745=>1000,26747=>1000,26748=>1000,26749=>1000,26750=>1000,26751=>1000,26752=>1000,26753=>1000,26754=>1000,26755=>1000,26756=>1000,26757=>1000,26758=>1000,26759=>1000,26760=>1000,26761=>1000,26762=>1000,26763=>1000,26764=>1000,26767=>1000,26768=>1000,26769=>1000,26770=>1000,26771=>1000,26772=>1000,26774=>1000,26775=>1000,26776=>1000,26779=>1000,26780=>1000,26781=>1000,26783=>1000,26784=>1000,26785=>1000,26786=>1000,26787=>1000,26788=>1000,26790=>1000,26791=>1000,26792=>1000,26793=>1000,26794=>1000,26795=>1000,26796=>1000,26797=>1000,26798=>1000,26799=>1000,26800=>1000,26801=>1000,26802=>1000,26803=>1000,26804=>1000,26805=>1000,26806=>1000,26809=>1000,26813=>1000,26817=>1000,26819=>1000,26820=>1000,26821=>1000,26822=>1000,26823=>1000,26824=>1000,26825=>1000,26826=>1000,26827=>1000,26828=>1000,26829=>1000,26830=>1000,26832=>1000,26833=>1000,26834=>1000,26835=>1000,26836=>1000,26837=>1000,26838=>1000,26839=>1000,26840=>1000,26842=>1000,26844=>1000,26845=>1000,26846=>1000,26847=>1000,26848=>1000,26849=>1000,26851=>1000,26852=>1000,26854=>1000,26855=>1000,26856=>1000,26857=>1000,26858=>1000,26859=>1000,26860=>1000,26862=>1000,26863=>1000,26864=>1000,26865=>1000,26866=>1000,26867=>1000,26868=>1000,26869=>1000,26870=>1000,26871=>1000,26872=>1000,26873=>1000,26874=>1000,26875=>1000,26876=>1000,26877=>1000,26880=>1000,26881=>1000,26882=>1000,26883=>1000,26884=>1000,26885=>1000,26886=>1000,26887=>1000,26888=>1000,26889=>1000,26890=>1000,26891=>1000,26892=>1000,26893=>1000,26894=>1000,26895=>1000,26896=>1000,26897=>1000,26898=>1000,26899=>1000,26900=>1000,26901=>1000,26903=>1000,26904=>1000,26905=>1000,26906=>1000,26907=>1000,26917=>1000,26922=>1000,26924=>1000,26927=>1000,26928=>1000,26930=>1000,26931=>1000,26932=>1000,26933=>1000,26934=>1000,26935=>1000,26936=>1000,26937=>1000,26939=>1000,26940=>1000,26941=>1000,26942=>1000,26943=>1000,26944=>1000,26945=>1000,26946=>1000,26947=>1000,26948=>1000,26949=>1000,26950=>1000,26952=>1000,26953=>1000,26954=>1000,26955=>1000,26956=>1000,26958=>1000,26959=>1000,26961=>1000,26962=>1000,26963=>1000,26964=>1000,26965=>1000,26966=>1000,26967=>1000,26968=>1000,26969=>1000,26970=>1000,26971=>1000,26972=>1000,26973=>1000,26974=>1000,26975=>1000,26976=>1000,26977=>1000,26978=>1000,26979=>1000,26980=>1000,26981=>1000,26982=>1000,26983=>1000,26984=>1000,26985=>1000,26986=>1000,26987=>1000,26988=>1000,26989=>1000,26990=>1000,26991=>1000,26992=>1000,26993=>1000,26994=>1000,26995=>1000,26996=>1000,26997=>1000,26998=>1000,26999=>1000,27000=>1000,27001=>1000,27002=>1000,27003=>1000,27008=>1000,27010=>1000,27011=>1000,27013=>1000,27014=>1000,27018=>1000,27021=>1000,27022=>1000,27024=>1000,27025=>1000,27027=>1000,27028=>1000,27029=>1000,27030=>1000,27031=>1000,27032=>1000,27033=>1000,27034=>1000,27035=>1000,27036=>1000,27038=>1000,27039=>1000,27040=>1000,27041=>1000,27042=>1000,27043=>1000,27044=>1000,27045=>1000,27046=>1000,27047=>1000,27048=>1000,27049=>1000,27050=>1000,27051=>1000,27052=>1000,27053=>1000,27054=>1000,27055=>1000,27056=>1000,27057=>1000,27058=>1000,27059=>1000,27060=>1000,27061=>1000,27062=>1000,27063=>1000,27065=>1000,27067=>1000,27068=>1000,27069=>1000,27070=>1000,27071=>1000,27072=>1000,27073=>1000,27074=>1000,27075=>1000,27076=>1000,27078=>1000,27081=>1000,27082=>1000,27083=>1000,27084=>1000,27085=>1000,27086=>1000,27087=>1000,27088=>1000,27089=>1000,27091=>1000,27092=>1000,27093=>1000,27094=>1000,27097=>1000,27105=>1000,27106=>1000,27108=>1000,27109=>1000,27110=>1000,27111=>1000,27112=>1000,27113=>1000,27115=>1000,27116=>1000,27117=>1000,27118=>1000,27121=>1000,27122=>1000,27123=>1000,27124=>1000,27126=>1000,27127=>1000,27128=>1000,27129=>1000,27130=>1000,27131=>1000,27132=>1000,27133=>1000,27134=>1000,27135=>1000,27136=>1000,27137=>1000,27138=>1000,27139=>1000,27140=>1000,27141=>1000,27142=>1000,27143=>1000,27144=>1000,27145=>1000,27146=>1000,27147=>1000,27148=>1000,27149=>1000,27151=>1000,27153=>1000,27155=>1000,27156=>1000,27157=>1000,27158=>1000,27159=>1000,27160=>1000,27161=>1000,27162=>1000,27163=>1000,27164=>1000,27165=>1000,27166=>1000,27167=>1000,27168=>1000,27169=>1000,27171=>1000,27173=>1000,27174=>1000,27175=>1000,27176=>1000,27177=>1000,27179=>1000,27180=>1000,27181=>1000,27186=>1000,27187=>1000,27188=>1000,27189=>1000,27192=>1000,27193=>1000,27194=>1000,27195=>1000,27196=>1000,27197=>1000,27198=>1000,27199=>1000,27200=>1000,27201=>1000,27203=>1000,27204=>1000,27205=>1000,27206=>1000,27207=>1000,27208=>1000,27209=>1000,27211=>1000,27212=>1000,27213=>1000,27214=>1000,27215=>1000,27216=>1000,27217=>1000,27218=>1000,27219=>1000,27220=>1000,27221=>1000,27222=>1000,27223=>1000,27224=>1000,27225=>1000,27226=>1000,27227=>1000,27229=>1000,27230=>1000,27231=>1000,27232=>1000,27233=>1000,27234=>1000,27235=>1000,27236=>1000,27237=>1000,27238=>1000,27239=>1000,27240=>1000,27241=>1000,27242=>1000,27243=>1000,27245=>1000,27247=>1000,27249=>1000,27252=>1000,27254=>1000,27258=>1000,27262=>1000,27263=>1000,27264=>1000,27265=>1000,27266=>1000,27267=>1000,27268=>1000,27269=>1000,27271=>1000,27273=>1000,27274=>1000,27276=>1000,27277=>1000,27278=>1000,27279=>1000,27280=>1000,27281=>1000,27282=>1000,27283=>1000,27284=>1000,27285=>1000,27286=>1000,27287=>1000,27289=>1000,27290=>1000,27291=>1000,27292=>1000,27293=>1000,27294=>1000,27295=>1000,27296=>1000,27297=>1000,27298=>1000,27299=>1000,27300=>1000,27301=>1000,27302=>1000,27303=>1000,27304=>1000,27307=>1000,27308=>1000,27309=>1000,27310=>1000,27311=>1000,27313=>1000,27314=>1000,27315=>1000,27316=>1000,27317=>1000,27318=>1000,27319=>1000,27320=>1000,27321=>1000,27322=>1000,27323=>1000,27325=>1000,27326=>1000,27330=>1000,27331=>1000,27333=>1000,27334=>1000,27335=>1000,27336=>1000,27337=>1000,27338=>1000,27339=>1000,27340=>1000,27341=>1000,27343=>1000,27344=>1000,27345=>1000,27347=>1000,27348=>1000,27352=>1000,27353=>1000,27354=>1000,27355=>1000,27356=>1000,27357=>1000,27358=>1000,27359=>1000,27360=>1000,27361=>1000,27365=>1000,27367=>1000,27368=>1000,27370=>1000,27371=>1000,27372=>1000,27374=>1000,27375=>1000,27376=>1000,27377=>1000,27379=>1000,27382=>1000,27384=>1000,27385=>1000,27386=>1000,27387=>1000,27388=>1000,27392=>1000,27394=>1000,27395=>1000,27396=>1000,27397=>1000,27400=>1000,27401=>1000,27402=>1000,27403=>1000,27407=>1000,27408=>1000,27409=>1000,27410=>1000,27411=>1000,27414=>1000,27415=>1000,27416=>1000,27417=>1000,27418=>1000,27421=>1000,27422=>1000,27424=>1000,27425=>1000,27427=>1000,27429=>1000,27432=>1000,27436=>1000,27437=>1000,27439=>1000,27441=>1000,27442=>1000,27443=>1000,27444=>1000,27445=>1000,27446=>1000,27447=>1000,27448=>1000,27449=>1000,27450=>1000,27451=>1000,27452=>1000,27453=>1000,27454=>1000,27455=>1000,27457=>1000,27458=>1000,27459=>1000,27461=>1000,27462=>1000,27463=>1000,27464=>1000,27465=>1000,27466=>1000,27467=>1000,27468=>1000,27469=>1000,27470=>1000,27472=>1000,27473=>1000,27474=>1000,27476=>1000,27477=>1000,27478=>1000,27479=>1000,27481=>1000,27483=>1000,27484=>1000,27486=>1000,27487=>1000,27488=>1000,27489=>1000,27490=>1000,27491=>1000,27492=>1000,27493=>1000,27494=>1000,27495=>1000,27498=>1000,27501=>1000,27503=>1000,27506=>1000,27508=>1000,27510=>1000,27511=>1000,27512=>1000,27513=>1000,27514=>1000,27515=>1000,27518=>1000,27519=>1000,27520=>1000,27521=>1000,27522=>1000,27523=>1000,27524=>1000,27526=>1000,27528=>1000,27529=>1000,27530=>1000,27532=>1000,27533=>1000,27534=>1000,27535=>1000,27537=>1000,27540=>1000,27541=>1000,27542=>1000,27543=>1000,27544=>1000,27545=>1000,27547=>1000,27550=>1000,27551=>1000,27552=>1000,27554=>1000,27555=>1000,27556=>1000,27557=>1000,27558=>1000,27559=>1000,27562=>1000,27563=>1000,27565=>1000,27566=>1000,27567=>1000,27568=>1000,27570=>1000,27571=>1000,27573=>1000,27574=>1000,27575=>1000,27578=>1000,27580=>1000,27581=>1000,27583=>1000,27584=>1000,27585=>1000,27587=>1000,27588=>1000,27589=>1000,27590=>1000,27591=>1000,27592=>1000,27593=>1000,27594=>1000,27595=>1000,27596=>1000,27597=>1000,27599=>1000,27600=>1000,27602=>1000,27603=>1000,27604=>1000,27606=>1000,27607=>1000,27608=>1000,27610=>1000,27611=>1000,27612=>1000,27614=>1000,27616=>1000,27617=>1000,27618=>1000,27619=>1000,27620=>1000,27622=>1000,27623=>1000,27624=>1000,27626=>1000,27627=>1000,27628=>1000,27631=>1000,27632=>1000,27634=>1000,27635=>1000,27639=>1000,27640=>1000,27641=>1000,27642=>1000,27643=>1000,27644=>1000,27645=>1000,27646=>1000,27647=>1000,27648=>1000,27649=>1000,27650=>1000,27651=>1000,27652=>1000,27653=>1000,27654=>1000,27656=>1000,27657=>1000,27659=>1000,27660=>1000,27661=>1000,27663=>1000,27664=>1000,27665=>1000,27667=>1000,27668=>1000,27669=>1000,27670=>1000,27672=>1000,27673=>1000,27674=>1000,27675=>1000,27676=>1000,27677=>1000,27679=>1000,27680=>1000,27681=>1000,27683=>1000,27684=>1000,27685=>1000,27686=>1000,27687=>1000,27688=>1000,27690=>1000,27691=>1000,27692=>1000,27694=>1000,27695=>1000,27696=>1000,27697=>1000,27698=>1000,27699=>1000,27700=>1000,27701=>1000,27702=>1000,27703=>1000,27704=>1000,27705=>1000,27706=>1000,27707=>1000,27709=>1000,27710=>1000,27711=>1000,27712=>1000,27713=>1000,27714=>1000,27715=>1000,27718=>1000,27721=>1000,27722=>1000,27723=>1000,27724=>1000,27725=>1000,27726=>1000,27727=>1000,27728=>1000,27730=>1000,27732=>1000,27733=>1000,27735=>1000,27736=>1000,27737=>1000,27738=>1000,27739=>1000,27740=>1000,27741=>1000,27742=>1000,27743=>1000,27744=>1000,27745=>1000,27749=>1000,27750=>1000,27751=>1000,27752=>1000,27753=>1000,27754=>1000,27755=>1000,27757=>1000,27758=>1000,27759=>1000,27760=>1000,27761=>1000,27762=>1000,27763=>1000,27764=>1000,27765=>1000,27766=>1000,27768=>1000,27769=>1000,27770=>1000,27771=>1000,27773=>1000,27774=>1000,27775=>1000,27776=>1000,27777=>1000,27778=>1000,27779=>1000,27780=>1000,27781=>1000,27782=>1000,27783=>1000,27784=>1000,27785=>1000,27786=>1000,27787=>1000,27788=>1000,27789=>1000,27790=>1000,27791=>1000,27792=>1000,27794=>1000,27795=>1000,27796=>1000,27797=>1000,27798=>1000,27800=>1000,27801=>1000,27802=>1000,27803=>1000,27804=>1000,27805=>1000,27807=>1000,27810=>1000,27818=>1000,27819=>1000,27820=>1000,27821=>1000,27822=>1000,27823=>1000,27824=>1000,27825=>1000,27826=>1000,27827=>1000,27828=>1000,27830=>1000,27831=>1000,27832=>1000,27833=>1000,27834=>1000,27835=>1000,27836=>1000,27837=>1000,27838=>1000,27839=>1000,27840=>1000,27841=>1000,27842=>1000,27843=>1000,27844=>1000,27845=>1000,27846=>1000,27847=>1000,27849=>1000,27850=>1000,27851=>1000,27852=>1000,27853=>1000,27854=>1000,27855=>1000,27856=>1000,27857=>1000,27858=>1000,27859=>1000,27860=>1000,27861=>1000,27862=>1000,27863=>1000,27865=>1000,27866=>1000,27867=>1000,27868=>1000,27869=>1000,27870=>1000,27871=>1000,27872=>1000,27873=>1000,27874=>1000,27875=>1000,27877=>1000,27879=>1000,27880=>1000,27881=>1000,27882=>1000,27883=>1000,27884=>1000,27885=>1000,27886=>1000,27887=>1000,27888=>1000,27889=>1000,27890=>1000,27891=>1000,27893=>1000,27897=>1000,27903=>1000,27904=>1000,27905=>1000,27906=>1000,27907=>1000,27908=>1000,27909=>1000,27910=>1000,27911=>1000,27912=>1000,27913=>1000,27914=>1000,27915=>1000,27916=>1000,27917=>1000,27918=>1000,27919=>1000,27920=>1000,27921=>1000,27922=>1000,27926=>1000,27927=>1000,27928=>1000,27929=>1000,27930=>1000,27931=>1000,27933=>1000,27934=>1000,27935=>1000,27936=>1000,27938=>1000,27940=>1000,27941=>1000,27942=>1000,27943=>1000,27944=>1000,27945=>1000,27946=>1000,27947=>1000,27948=>1000,27949=>1000,27950=>1000,27951=>1000,27952=>1000,27953=>1000,27954=>1000,27955=>1000,27956=>1000,27957=>1000,27958=>1000,27959=>1000,27960=>1000,27961=>1000,27962=>1000,27963=>1000,27964=>1000,27965=>1000,27966=>1000,27967=>1000,27968=>1000,27969=>1000,27970=>1000,27982=>1000,27991=>1000,27992=>1000,27993=>1000,27994=>1000,27995=>1000,27996=>1000,27998=>1000,27999=>1000,28000=>1000,28001=>1000,28002=>1000,28003=>1000,28004=>1000,28005=>1000,28006=>1000,28007=>1000,28008=>1000,28009=>1000,28010=>1000,28012=>1000,28013=>1000,28014=>1000,28015=>1000,28016=>1000,28017=>1000,28018=>1000,28020=>1000,28021=>1000,28022=>1000,28023=>1000,28024=>1000,28025=>1000,28026=>1000,28027=>1000,28028=>1000,28029=>1000,28030=>1000,28031=>1000,28032=>1000,28033=>1000,28034=>1000,28035=>1000,28036=>1000,28037=>1000,28038=>1000,28039=>1000,28040=>1000,28041=>1000,28042=>1000,28043=>1000,28044=>1000,28045=>1000,28046=>1000,28047=>1000,28048=>1000,28049=>1000,28050=>1000,28051=>1000,28052=>1000,28053=>1000,28054=>1000,28055=>1000,28056=>1000,28058=>1000,28068=>1000,28069=>1000,28074=>1000,28075=>1000,28076=>1000,28078=>1000,28079=>1000,28081=>1000,28082=>1000,28083=>1000,28084=>1000,28085=>1000,28087=>1000,28088=>1000,28089=>1000,28090=>1000,28091=>1000,28092=>1000,28093=>1000,28094=>1000,28095=>1000,28096=>1000,28098=>1000,28100=>1000,28101=>1000,28102=>1000,28103=>1000,28104=>1000,28105=>1000,28106=>1000,28107=>1000,28108=>1000,28109=>1000,28111=>1000,28112=>1000,28113=>1000,28114=>1000,28115=>1000,28116=>1000,28117=>1000,28118=>1000,28119=>1000,28120=>1000,28121=>1000,28122=>1000,28123=>1000,28124=>1000,28125=>1000,28126=>1000,28127=>1000,28128=>1000,28129=>1000,28130=>1000,28131=>1000,28132=>1000,28133=>1000,28134=>1000,28136=>1000,28137=>1000,28138=>1000,28139=>1000,28140=>1000,28141=>1000,28142=>1000,28143=>1000,28144=>1000,28145=>1000,28146=>1000,28147=>1000,28148=>1000,28149=>1000,28150=>1000,28151=>1000,28153=>1000,28154=>1000,28155=>1000,28156=>1000,28157=>1000,28158=>1000,28160=>1000,28162=>1000,28163=>1000,28164=>1000,28165=>1000,28170=>1000,28175=>1000,28181=>1000,28184=>1000,28185=>1000,28186=>1000,28187=>1000,28188=>1000,28189=>1000,28191=>1000,28192=>1000,28193=>1000,28194=>1000,28195=>1000,28196=>1000,28197=>1000,28198=>1000,28199=>1000,28200=>1000,28201=>1000,28202=>1000,28203=>1000,28204=>1000,28205=>1000,28206=>1000,28207=>1000,28208=>1000,28209=>1000,28210=>1000,28211=>1000,28212=>1000,28213=>1000,28214=>1000,28216=>1000,28217=>1000,28218=>1000,28219=>1000,28220=>1000,28221=>1000,28222=>1000,28223=>1000,28224=>1000,28225=>1000,28227=>1000,28228=>1000,28229=>1000,28230=>1000,28231=>1000,28233=>1000,28234=>1000,28235=>1000,28237=>1000,28238=>1000,28239=>1000,28240=>1000,28241=>1000,28242=>1000,28243=>1000,28244=>1000,28245=>1000,28246=>1000,28247=>1000,28248=>1000,28249=>1000,28250=>1000,28251=>1000,28252=>1000,28253=>1000,28254=>1000,28255=>1000,28256=>1000,28257=>1000,28258=>1000,28259=>1000,28260=>1000,28261=>1000,28262=>1000,28263=>1000,28264=>1000,28265=>1000,28267=>1000,28270=>1000,28271=>1000,28273=>1000,28274=>1000,28275=>1000,28276=>1000,28278=>1000,28279=>1000,28280=>1000,28281=>1000,28284=>1000,28294=>1000,28296=>1000,28297=>1000,28299=>1000,28301=>1000,28302=>1000,28303=>1000,28304=>1000,28306=>1000,28307=>1000,28308=>1000,28310=>1000,28311=>1000,28312=>1000,28313=>1000,28314=>1000,28315=>1000,28316=>1000,28317=>1000,28318=>1000,28319=>1000,28320=>1000,28321=>1000,28322=>1000,28323=>1000,28324=>1000,28325=>1000,28326=>1000,28327=>1000,28330=>1000,28331=>1000,28334=>1000,28335=>1000,28336=>1000,28337=>1000,28338=>1000,28339=>1000,28340=>1000,28341=>1000,28342=>1000,28343=>1000,28344=>1000,28345=>1000,28346=>1000,28347=>1000,28348=>1000,28349=>1000,28350=>1000,28351=>1000,28352=>1000,28353=>1000,28354=>1000,28355=>1000,28356=>1000,28357=>1000,28358=>1000,28359=>1000,28360=>1000,28361=>1000,28362=>1000,28363=>1000,28364=>1000,28365=>1000,28366=>1000,28367=>1000,28368=>1000,28369=>1000,28370=>1000,28371=>1000,28372=>1000,28373=>1000,28374=>1000,28376=>1000,28377=>1000,28378=>1000,28379=>1000,28380=>1000,28381=>1000,28386=>1000,28392=>1000,28393=>1000,28395=>1000,28396=>1000,28397=>1000,28398=>1000,28399=>1000,28401=>1000,28402=>1000,28404=>1000,28405=>1000,28406=>1000,28407=>1000,28408=>1000,28409=>1000,28410=>1000,28411=>1000,28412=>1000,28413=>1000,28414=>1000,28415=>1000,28416=>1000,28417=>1000,28418=>1000,28419=>1000,28420=>1000,28421=>1000,28422=>1000,28423=>1000,28424=>1000,28425=>1000,28426=>1000,28427=>1000,28428=>1000,28429=>1000,28430=>1000,28431=>1000,28434=>1000,28435=>1000,28436=>1000,28437=>1000,28438=>1000,28439=>1000,28440=>1000,28441=>1000,28442=>1000,28444=>1000,28446=>1000,28447=>1000,28448=>1000,28449=>1000,28450=>1000,28451=>1000,28452=>1000,28453=>1000,28454=>1000,28455=>1000,28457=>1000,28458=>1000,28459=>1000,28460=>1000,28461=>1000,28462=>1000,28463=>1000,28464=>1000,28465=>1000,28466=>1000,28467=>1000,28468=>1000,28469=>1000,28470=>1000,28471=>1000,28472=>1000,28473=>1000,28474=>1000,28475=>1000,28476=>1000,28477=>1000,28478=>1000,28479=>1000,28480=>1000,28481=>1000,28483=>1000,28484=>1000,28494=>1000,28495=>1000,28496=>1000,28497=>1000,28498=>1000,28499=>1000,28500=>1000,28501=>1000,28502=>1000,28503=>1000,28504=>1000,28506=>1000,28507=>1000,28508=>1000,28509=>1000,28510=>1000,28511=>1000,28512=>1000,28513=>1000,28514=>1000,28515=>1000,28516=>1000,28518=>1000,28519=>1000,28521=>1000,28522=>1000,28523=>1000,28524=>1000,28525=>1000,28526=>1000,28527=>1000,28528=>1000,28530=>1000,28531=>1000,28532=>1000,28534=>1000,28535=>1000,28536=>1000,28537=>1000,28538=>1000,28539=>1000,28540=>1000,28541=>1000,28542=>1000,28543=>1000,28544=>1000,28545=>1000,28546=>1000,28548=>1000,28549=>1000,28550=>1000,28551=>1000,28552=>1000,28553=>1000,28554=>1000,28555=>1000,28556=>1000,28557=>1000,28558=>1000,28560=>1000,28562=>1000,28563=>1000,28564=>1000,28565=>1000,28566=>1000,28567=>1000,28573=>1000,28574=>1000,28575=>1000,28576=>1000,28577=>1000,28578=>1000,28579=>1000,28580=>1000,28581=>1000,28582=>1000,28583=>1000,28584=>1000,28585=>1000,28586=>1000,28587=>1000,28588=>1000,28589=>1000,28590=>1000,28591=>1000,28592=>1000,28593=>1000,28594=>1000,28595=>1000,28596=>1000,28597=>1000,28598=>1000,28600=>1000,28601=>1000,28602=>1000,28603=>1000,28604=>1000,28605=>1000,28606=>1000,28607=>1000,28608=>1000,28609=>1000,28610=>1000,28611=>1000,28612=>1000,28614=>1000,28615=>1000,28616=>1000,28617=>1000,28618=>1000,28619=>1000,28620=>1000,28621=>1000,28622=>1000,28623=>1000,28627=>1000,28628=>1000,28629=>1000,28632=>1000,28633=>1000,28634=>1000,28635=>1000,28636=>1000,28637=>1000,28638=>1000,28639=>1000,28640=>1000,28641=>1000,28642=>1000,28643=>1000,28644=>1000,28646=>1000,28647=>1000,28648=>1000,28649=>1000,28651=>1000,28652=>1000,28653=>1000,28654=>1000,28655=>1000,28656=>1000,28657=>1000,28658=>1000,28660=>1000,28662=>1000,28663=>1000,28664=>1000,28666=>1000,28667=>1000,28668=>1000,28670=>1000,28671=>1000,28672=>1000,28673=>1000,28675=>1000,28676=>1000,28677=>1000,28678=>1000,28679=>1000,28681=>1000,28682=>1000,28683=>1000,28684=>1000,28685=>1000,28686=>1000,28687=>1000,28689=>1000,28692=>1000,28693=>1000,28694=>1000,28695=>1000,28696=>1000,28697=>1000,28698=>1000,28699=>1000,28700=>1000,28701=>1000,28702=>1000,28703=>1000,28704=>1000,28705=>1000,28706=>1000,28707=>1000,28708=>1000,28710=>1000,28711=>1000,28712=>1000,28713=>1000,28714=>1000,28715=>1000,28716=>1000,28719=>1000,28720=>1000,28721=>1000,28722=>1000,28723=>1000,28724=>1000,28725=>1000,28727=>1000,28728=>1000,28729=>1000,28730=>1000,28731=>1000,28732=>1000,28734=>1000,28735=>1000,28736=>1000,28737=>1000,28738=>1000,28739=>1000,28740=>1000,28741=>1000,28742=>1000,28744=>1000,28745=>1000,28746=>1000,28747=>1000,28748=>1000,28749=>1000,28752=>1000,28753=>1000,28754=>1000,28756=>1000,28757=>1000,28758=>1000,28759=>1000,28760=>1000,28762=>1000,28763=>1000,28764=>1000,28765=>1000,28766=>1000,28767=>1000,28768=>1000,28769=>1000,28770=>1000,28771=>1000,28772=>1000,28773=>1000,28774=>1000,28775=>1000,28776=>1000,28777=>1000,28778=>1000,28779=>1000,28780=>1000,28782=>1000,28783=>1000,28784=>1000,28785=>1000,28788=>1000,28789=>1000,28790=>1000,28791=>1000,28792=>1000,28793=>1000,28794=>1000,28796=>1000,28797=>1000,28798=>1000,28799=>1000,28801=>1000,28802=>1000,28803=>1000,28804=>1000,28805=>1000,28806=>1000,28809=>1000,28810=>1000,28811=>1000,28814=>1000,28815=>1000,28817=>1000,28818=>1000,28819=>1000,28820=>1000,28821=>1000,28822=>1000,28824=>1000,28825=>1000,28826=>1000,28831=>1000,28832=>1000,28833=>1000,28835=>1000,28836=>1000,28837=>1000,28838=>1000,28839=>1000,28841=>1000,28843=>1000,28844=>1000,28845=>1000,28846=>1000,28847=>1000,28848=>1000,28849=>1000,28851=>1000,28852=>1000,28853=>1000,28855=>1000,28856=>1000,28857=>1000,28858=>1000,28859=>1000,28860=>1000,28861=>1000,28862=>1000,28864=>1000,28868=>1000,28869=>1000,28870=>1000,28871=>1000,28872=>1000,28874=>1000,28875=>1000,28876=>1000,28877=>1000,28878=>1000,28879=>1000,28880=>1000,28881=>1000,28882=>1000,28883=>1000,28884=>1000,28885=>1000,28886=>1000,28887=>1000,28888=>1000,28889=>1000,28890=>1000,28892=>1000,28893=>1000,28894=>1000,28895=>1000,28896=>1000,28897=>1000,28898=>1000,28900=>1000,28911=>1000,28912=>1000,28913=>1000,28915=>1000,28916=>1000,28917=>1000,28918=>1000,28919=>1000,28920=>1000,28921=>1000,28922=>1000,28923=>1000,28924=>1000,28925=>1000,28926=>1000,28927=>1000,28928=>1000,28930=>1000,28932=>1000,28933=>1000,28934=>1000,28937=>1000,28938=>1000,28939=>1000,28940=>1000,28941=>1000,28942=>1000,28944=>1000,28947=>1000,28951=>1000,28953=>1000,28954=>1000,28955=>1000,28956=>1000,28957=>1000,28958=>1000,28959=>1000,28960=>1000,28961=>1000,28962=>1000,28963=>1000,28965=>1000,28966=>1000,28968=>1000,28969=>1000,28971=>1000,28972=>1000,28974=>1000,28975=>1000,28976=>1000,28977=>1000,28978=>1000,28979=>1000,28980=>1000,28981=>1000,28982=>1000,28986=>1000,28987=>1000,28990=>1000,28992=>1000,28993=>1000,28994=>1000,28995=>1000,28996=>1000,28997=>1000,28998=>1000,28999=>1000,29001=>1000,29002=>1000,29003=>1000,29004=>1000,29005=>1000,29006=>1000,29007=>1000,29008=>1000,29009=>1000,29010=>1000,29011=>1000,29012=>1000,29014=>1000,29015=>1000,29016=>1000,29017=>1000,29018=>1000,29020=>1000,29021=>1000,29022=>1000,29023=>1000,29024=>1000,29025=>1000,29026=>1000,29027=>1000,29028=>1000,29029=>1000,29030=>1000,29031=>1000,29032=>1000,29033=>1000,29034=>1000,29035=>1000,29036=>1000,29038=>1000,29040=>1000,29041=>1000,29042=>1000,29043=>1000,29044=>1000,29045=>1000,29046=>1000,29047=>1000,29048=>1000,29050=>1000,29051=>1000,29052=>1000,29053=>1000,29054=>1000,29056=>1000,29057=>1000,29058=>1000,29060=>1000,29061=>1000,29062=>1000,29063=>1000,29064=>1000,29065=>1000,29066=>1000,29068=>1000,29070=>1000,29071=>1000,29072=>1000,29073=>1000,29074=>1000,29076=>1000,29078=>1000,29079=>1000,29080=>1000,29081=>1000,29082=>1000,29083=>1000,29084=>1000,29085=>1000,29086=>1000,29087=>1000,29088=>1000,29089=>1000,29090=>1000,29091=>1000,29092=>1000,29093=>1000,29095=>1000,29096=>1000,29097=>1000,29098=>1000,29100=>1000,29101=>1000,29103=>1000,29104=>1000,29105=>1000,29106=>1000,29107=>1000,29108=>1000,29109=>1000,29111=>1000,29112=>1000,29113=>1000,29114=>1000,29116=>1000,29117=>1000,29118=>1000,29119=>1000,29120=>1000,29121=>1000,29122=>1000,29123=>1000,29124=>1000,29125=>1000,29126=>1000,29127=>1000,29128=>1000,29129=>1000,29130=>1000,29131=>1000,29134=>1000,29135=>1000,29136=>1000,29137=>1000,29138=>1000,29140=>1000,29141=>1000,29142=>1000,29144=>1000,29145=>1000,29146=>1000,29147=>1000,29148=>1000,29149=>1000,29151=>1000,29152=>1000,29153=>1000,29154=>1000,29156=>1000,29157=>1000,29158=>1000,29159=>1000,29160=>1000,29163=>1000,29164=>1000,29165=>1000,29166=>1000,29168=>1000,29169=>1000,29170=>1000,29172=>1000,29173=>1000,29174=>1000,29176=>1000,29177=>1000,29179=>1000,29180=>1000,29181=>1000,29182=>1000,29183=>1000,29184=>1000,29185=>1000,29186=>1000,29187=>1000,29189=>1000,29190=>1000,29191=>1000,29193=>1000,29194=>1000,29196=>1000,29197=>1000,29198=>1000,29199=>1000,29200=>1000,29203=>1000,29204=>1000,29205=>1000,29206=>1000,29207=>1000,29209=>1000,29210=>1000,29211=>1000,29213=>1000,29214=>1000,29215=>1000,29218=>1000,29219=>1000,29220=>1000,29221=>1000,29222=>1000,29223=>1000,29224=>1000,29225=>1000,29226=>1000,29227=>1000,29228=>1000,29229=>1000,29230=>1000,29232=>1000,29237=>1000,29238=>1000,29240=>1000,29241=>1000,29242=>1000,29243=>1000,29245=>1000,29246=>1000,29247=>1000,29248=>1000,29249=>1000,29250=>1000,29252=>1000,29254=>1000,29255=>1000,29256=>1000,29257=>1000,29258=>1000,29259=>1000,29260=>1000,29263=>1000,29264=>1000,29266=>1000,29267=>1000,29269=>1000,29270=>1000,29271=>1000,29272=>1000,29273=>1000,29274=>1000,29275=>1000,29276=>1000,29277=>1000,29278=>1000,29279=>1000,29280=>1000,29281=>1000,29282=>1000,29283=>1000,29286=>1000,29287=>1000,29289=>1000,29290=>1000,29292=>1000,29294=>1000,29295=>1000,29296=>1000,29298=>1000,29299=>1000,29300=>1000,29302=>1000,29303=>1000,29304=>1000,29305=>1000,29307=>1000,29308=>1000,29309=>1000,29310=>1000,29311=>1000,29312=>1000,29313=>1000,29314=>1000,29316=>1000,29317=>1000,29318=>1000,29319=>1000,29320=>1000,29321=>1000,29323=>1000,29324=>1000,29325=>1000,29326=>1000,29327=>1000,29328=>1000,29329=>1000,29330=>1000,29331=>1000,29332=>1000,29333=>1000,29334=>1000,29335=>1000,29336=>1000,29338=>1000,29339=>1000,29341=>1000,29342=>1000,29343=>1000,29345=>1000,29346=>1000,29347=>1000,29348=>1000,29349=>1000,29350=>1000,29351=>1000,29352=>1000,29353=>1000,29354=>1000,29356=>1000,29357=>1000,29358=>1000,29359=>1000,29360=>1000,29362=>1000,29364=>1000,29365=>1000,29370=>1000,29373=>1000,29375=>1000,29376=>1000,29377=>1000,29378=>1000,29379=>1000,29380=>1000,29381=>1000,29382=>1000,29385=>1000,29386=>1000,29387=>1000,29388=>1000,29389=>1000,29390=>1000,29392=>1000,29393=>1000,29394=>1000,29396=>1000,29398=>1000,29399=>1000,29400=>1000,29401=>1000,29402=>1000,29404=>1000,29407=>1000,29408=>1000,29409=>1000,29410=>1000,29411=>1000,29412=>1000,29414=>1000,29416=>1000,29417=>1000,29418=>1000,29419=>1000,29427=>1000,29428=>1000,29430=>1000,29431=>1000,29432=>1000,29433=>1000,29434=>1000,29435=>1000,29436=>1000,29437=>1000,29438=>1000,29439=>1000,29440=>1000,29441=>1000,29442=>1000,29444=>1000,29447=>1000,29448=>1000,29450=>1000,29451=>1000,29452=>1000,29455=>1000,29456=>1000,29457=>1000,29458=>1000,29459=>1000,29462=>1000,29463=>1000,29464=>1000,29465=>1000,29467=>1000,29468=>1000,29469=>1000,29470=>1000,29474=>1000,29475=>1000,29477=>1000,29478=>1000,29479=>1000,29480=>1000,29481=>1000,29482=>1000,29483=>1000,29484=>1000,29485=>1000,29486=>1000,29488=>1000,29489=>1000,29490=>1000,29491=>1000,29492=>1000,29493=>1000,29494=>1000,29495=>1000,29496=>1000,29497=>1000,29498=>1000,29499=>1000,29500=>1000,29502=>1000,29503=>1000,29504=>1000,29505=>1000,29506=>1000,29507=>1000,29508=>1000,29509=>1000,29512=>1000,29513=>1000,29514=>1000,29516=>1000,29517=>1000,29518=>1000,29519=>1000,29520=>1000,29521=>1000,29522=>1000,29527=>1000,29528=>1000,29529=>1000,29530=>1000,29531=>1000,29533=>1000,29534=>1000,29535=>1000,29536=>1000,29537=>1000,29538=>1000,29541=>1000,29542=>1000,29543=>1000,29544=>1000,29545=>1000,29546=>1000,29547=>1000,29548=>1000,29550=>1000,29551=>1000,29552=>1000,29553=>1000,29554=>1000,29555=>1000,29556=>1000,29557=>1000,29558=>1000,29559=>1000,29560=>1000,29562=>1000,29563=>1000,29564=>1000,29565=>1000,29566=>1000,29567=>1000,29568=>1000,29569=>1000,29570=>1000,29571=>1000,29572=>1000,29573=>1000,29574=>1000,29575=>1000,29576=>1000,29577=>1000,29578=>1000,29579=>1000,29580=>1000,29582=>1000,29583=>1000,29586=>1000,29587=>1000,29588=>1000,29589=>1000,29590=>1000,29591=>1000,29592=>1000,29596=>1000,29597=>1000,29598=>1000,29599=>1000,29600=>1000,29601=>1000,29602=>1000,29604=>1000,29605=>1000,29606=>1000,29607=>1000,29608=>1000,29609=>1000,29610=>1000,29611=>1000,29612=>1000,29613=>1000,29618=>1000,29619=>1000,29620=>1000,29621=>1000,29622=>1000,29623=>1000,29624=>1000,29625=>1000,29626=>1000,29627=>1000,29628=>1000,29630=>1000,29631=>1000,29632=>1000,29634=>1000,29635=>1000,29636=>1000,29637=>1000,29638=>1000,29639=>1000,29640=>1000,29641=>1000,29642=>1000,29643=>1000,29644=>1000,29645=>1000,29646=>1000,29647=>1000,29648=>1000,29650=>1000,29651=>1000,29652=>1000,29653=>1000,29654=>1000,29655=>1000,29656=>1000,29657=>1000,29658=>1000,29659=>1000,29660=>1000,29661=>1000,29662=>1000,29664=>1000,29665=>1000,29666=>1000,29667=>1000,29668=>1000,29669=>1000,29670=>1000,29671=>1000,29672=>1000,29673=>1000,29674=>1000,29675=>1000,29677=>1000,29678=>1000,29679=>1000,29683=>1000,29684=>1000,29685=>1000,29686=>1000,29687=>1000,29688=>1000,29689=>1000,29690=>1000,29691=>1000,29692=>1000,29693=>1000,29694=>1000,29695=>1000,29696=>1000,29697=>1000,29698=>1000,29699=>1000,29700=>1000,29701=>1000,29702=>1000,29703=>1000,29704=>1000,29705=>1000,29706=>1000,29707=>1000,29708=>1000,29709=>1000,29713=>1000,29714=>1000,29716=>1000,29717=>1000,29718=>1000,29719=>1000,29721=>1000,29722=>1000,29723=>1000,29724=>1000,29725=>1000,29726=>1000,29727=>1000,29728=>1000,29729=>1000,29730=>1000,29731=>1000,29732=>1000,29733=>1000,29734=>1000,29736=>1000,29737=>1000,29738=>1000,29739=>1000,29740=>1000,29741=>1000,29742=>1000,29743=>1000,29744=>1000,29745=>1000,29746=>1000,29747=>1000,29748=>1000,29749=>1000,29750=>1000,29751=>1000,29752=>1000,29753=>1000,29754=>1000,29756=>1000,29759=>1000,29760=>1000,29761=>1000,29762=>1000,29763=>1000,29764=>1000,29765=>1000,29766=>1000,29767=>1000,29768=>1000,29769=>1000,29770=>1000,29771=>1000,29772=>1000,29773=>1000,29774=>1000,29775=>1000,29776=>1000,29777=>1000,29778=>1000,29779=>1000,29780=>1000,29781=>1000,29782=>1000,29783=>1000,29785=>1000,29786=>1000,29787=>1000,29788=>1000,29789=>1000,29790=>1000,29791=>1000,29792=>1000,29793=>1000,29794=>1000,29795=>1000,29796=>1000,29797=>1000,29799=>1000,29800=>1000,29801=>1000,29802=>1000,29803=>1000,29804=>1000,29805=>1000,29806=>1000,29807=>1000,29808=>1000,29809=>1000,29810=>1000,29811=>1000,29812=>1000,29813=>1000,29814=>1000,29817=>1000,29818=>1000,29820=>1000,29821=>1000,29822=>1000,29823=>1000,29824=>1000,29825=>1000,29826=>1000,29827=>1000,29829=>1000,29830=>1000,29831=>1000,29832=>1000,29833=>1000,29834=>1000,29835=>1000,29836=>1000,29837=>1000,29840=>1000,29842=>1000,29844=>1000,29845=>1000,29847=>1000,29848=>1000,29849=>1000,29850=>1000,29851=>1000,29852=>1000,29853=>1000,29854=>1000,29855=>1000,29856=>1000,29857=>1000,29859=>1000,29860=>1000,29861=>1000,29862=>1000,29863=>1000,29864=>1000,29865=>1000,29866=>1000,29867=>1000,29869=>1000,29871=>1000,29872=>1000,29873=>1000,29874=>1000,29876=>1000,29877=>1000,29878=>1000,29879=>1000,29880=>1000,29881=>1000,29882=>1000,29883=>1000,29885=>1000,29886=>1000,29887=>1000,29888=>1000,29889=>1000,29890=>1000,29891=>1000,29893=>1000,29894=>1000,29896=>1000,29898=>1000,29899=>1000,29900=>1000,29903=>1000,29904=>1000,29907=>1000,29908=>1000,29909=>1000,29910=>1000,29911=>1000,29912=>1000,29913=>1000,29914=>1000,29915=>1000,29916=>1000,29917=>1000,29918=>1000,29919=>1000,29920=>1000,29921=>1000,29922=>1000,29923=>1000,29924=>1000,29925=>1000,29926=>1000,29927=>1000,29928=>1000,29929=>1000,29932=>1000,29934=>1000,29936=>1000,29937=>1000,29938=>1000,29940=>1000,29941=>1000,29942=>1000,29943=>1000,29944=>1000,29947=>1000,29949=>1000,29950=>1000,29951=>1000,29952=>1000,29954=>1000,29955=>1000,29956=>1000,29957=>1000,29959=>1000,29960=>1000,29963=>1000,29964=>1000,29965=>1000,29966=>1000,29967=>1000,29968=>1000,29969=>1000,29970=>1000,29971=>1000,29972=>1000,29973=>1000,29974=>1000,29975=>1000,29976=>1000,29977=>1000,29978=>1000,29980=>1000,29981=>1000,29982=>1000,29983=>1000,29985=>1000,29986=>1000,29989=>1000,29990=>1000,29992=>1000,29993=>1000,29994=>1000,29995=>1000,29996=>1000,29997=>1000,29998=>1000,29999=>1000,30000=>1000,30001=>1000,30002=>1000,30003=>1000,30004=>1000,30005=>1000,30007=>1000,30008=>1000,30009=>1000,30010=>1000,30011=>1000,30013=>1000,30014=>1000,30015=>1000,30016=>1000,30018=>1000,30022=>1000,30023=>1000,30024=>1000,30026=>1000,30027=>1000,30028=>1000,30029=>1000,30030=>1000,30031=>1000,30033=>1000,30035=>1000,30036=>1000,30037=>1000,30041=>1000,30042=>1000,30043=>1000,30044=>1000,30045=>1000,30047=>1000,30048=>1000,30050=>1000,30051=>1000,30052=>1000,30053=>1000,30054=>1000,30055=>1000,30058=>1000,30059=>1000,30060=>1000,30061=>1000,30062=>1000,30063=>1000,30064=>1000,30066=>1000,30070=>1000,30071=>1000,30072=>1000,30073=>1000,30074=>1000,30077=>1000,30078=>1000,30079=>1000,30080=>1000,30083=>1000,30084=>1000,30086=>1000,30087=>1000,30090=>1000,30091=>1000,30092=>1000,30093=>1000,30094=>1000,30095=>1000,30096=>1000,30097=>1000,30098=>1000,30100=>1000,30101=>1000,30104=>1000,30105=>1000,30106=>1000,30109=>1000,30110=>1000,30114=>1000,30115=>1000,30116=>1000,30117=>1000,30119=>1000,30122=>1000,30123=>1000,30128=>1000,30129=>1000,30130=>1000,30131=>1000,30132=>1000,30133=>1000,30134=>1000,30136=>1000,30137=>1000,30138=>1000,30139=>1000,30140=>1000,30141=>1000,30142=>1000,30143=>1000,30144=>1000,30145=>1000,30146=>1000,30147=>1000,30148=>1000,30149=>1000,30151=>1000,30152=>1000,30154=>1000,30155=>1000,30156=>1000,30157=>1000,30158=>1000,30159=>1000,30160=>1000,30161=>1000,30162=>1000,30164=>1000,30165=>1000,30167=>1000,30168=>1000,30169=>1000,30170=>1000,30171=>1000,30172=>1000,30173=>1000,30174=>1000,30175=>1000,30176=>1000,30177=>1000,30178=>1000,30179=>1000,30180=>1000,30182=>1000,30183=>1000,30189=>1000,30191=>1000,30192=>1000,30193=>1000,30194=>1000,30195=>1000,30196=>1000,30197=>1000,30198=>1000,30199=>1000,30200=>1000,30201=>1000,30202=>1000,30203=>1000,30204=>1000,30205=>1000,30206=>1000,30207=>1000,30208=>1000,30209=>1000,30210=>1000,30211=>1000,30215=>1000,30216=>1000,30217=>1000,30218=>1000,30219=>1000,30220=>1000,30221=>1000,30223=>1000,30224=>1000,30225=>1000,30227=>1000,30228=>1000,30229=>1000,30230=>1000,30233=>1000,30234=>1000,30235=>1000,30236=>1000,30237=>1000,30238=>1000,30239=>1000,30240=>1000,30241=>1000,30242=>1000,30243=>1000,30244=>1000,30245=>1000,30246=>1000,30247=>1000,30248=>1000,30249=>1000,30252=>1000,30253=>1000,30255=>1000,30256=>1000,30257=>1000,30258=>1000,30259=>1000,30260=>1000,30261=>1000,30264=>1000,30266=>1000,30267=>1000,30268=>1000,30269=>1000,30272=>1000,30274=>1000,30275=>1000,30278=>1000,30279=>1000,30280=>1000,30281=>1000,30284=>1000,30285=>1000,30286=>1000,30287=>1000,30288=>1000,30289=>1000,30290=>1000,30291=>1000,30292=>1000,30294=>1000,30295=>1000,30296=>1000,30297=>1000,30298=>1000,30300=>1000,30303=>1000,30304=>1000,30305=>1000,30306=>1000,30308=>1000,30309=>1000,30310=>1000,30311=>1000,30313=>1000,30314=>1000,30316=>1000,30317=>1000,30318=>1000,30319=>1000,30320=>1000,30321=>1000,30322=>1000,30323=>1000,30324=>1000,30325=>1000,30326=>1000,30328=>1000,30329=>1000,30330=>1000,30331=>1000,30332=>1000,30333=>1000,30334=>1000,30335=>1000,30337=>1000,30338=>1000,30340=>1000,30342=>1000,30343=>1000,30344=>1000,30345=>1000,30346=>1000,30347=>1000,30350=>1000,30351=>1000,30352=>1000,30354=>1000,30355=>1000,30357=>1000,30358=>1000,30361=>1000,30362=>1000,30363=>1000,30364=>1000,30365=>1000,30366=>1000,30369=>1000,30372=>1000,30373=>1000,30374=>1000,30378=>1000,30379=>1000,30381=>1000,30382=>1000,30383=>1000,30384=>1000,30388=>1000,30389=>1000,30391=>1000,30392=>1000,30394=>1000,30395=>1000,30397=>1000,30398=>1000,30399=>1000,30402=>1000,30403=>1000,30404=>1000,30405=>1000,30406=>1000,30408=>1000,30409=>1000,30410=>1000,30412=>1000,30413=>1000,30414=>1000,30418=>1000,30419=>1000,30420=>1000,30422=>1000,30425=>1000,30426=>1000,30427=>1000,30428=>1000,30429=>1000,30430=>1000,30431=>1000,30433=>1000,30435=>1000,30436=>1000,30437=>1000,30438=>1000,30439=>1000,30441=>1000,30442=>1000,30444=>1000,30445=>1000,30446=>1000,30447=>1000,30448=>1000,30449=>1000,30450=>1000,30451=>1000,30452=>1000,30453=>1000,30455=>1000,30456=>1000,30457=>1000,30458=>1000,30459=>1000,30460=>1000,30462=>1000,30465=>1000,30467=>1000,30468=>1000,30469=>1000,30471=>1000,30472=>1000,30473=>1000,30474=>1000,30475=>1000,30476=>1000,30478=>1000,30479=>1000,30480=>1000,30481=>1000,30482=>1000,30483=>1000,30485=>1000,30489=>1000,30490=>1000,30491=>1000,30493=>1000,30494=>1000,30495=>1000,30496=>1000,30498=>1000,30499=>1000,30500=>1000,30501=>1000,30502=>1000,30503=>1000,30504=>1000,30505=>1000,30507=>1000,30509=>1000,30511=>1000,30513=>1000,30514=>1000,30515=>1000,30516=>1000,30517=>1000,30518=>1000,30519=>1000,30520=>1000,30521=>1000,30522=>1000,30523=>1000,30524=>1000,30525=>1000,30526=>1000,30528=>1000,30531=>1000,30532=>1000,30533=>1000,30534=>1000,30535=>1000,30538=>1000,30539=>1000,30540=>1000,30541=>1000,30542=>1000,30543=>1000,30546=>1000,30548=>1000,30549=>1000,30550=>1000,30552=>1000,30553=>1000,30554=>1000,30555=>1000,30556=>1000,30558=>1000,30559=>1000,30560=>1000,30561=>1000,30562=>1000,30563=>1000,30565=>1000,30566=>1000,30567=>1000,30568=>1000,30569=>1000,30570=>1000,30571=>1000,30572=>1000,30573=>1000,30574=>1000,30575=>1000,30578=>1000,30583=>1000,30584=>1000,30585=>1000,30586=>1000,30587=>1000,30588=>1000,30589=>1000,30590=>1000,30591=>1000,30592=>1000,30593=>1000,30594=>1000,30595=>1000,30596=>1000,30597=>1000,30599=>1000,30600=>1000,30601=>1000,30603=>1000,30604=>1000,30605=>1000,30606=>1000,30607=>1000,30609=>1000,30611=>1000,30613=>1000,30615=>1000,30616=>1000,30617=>1000,30618=>1000,30619=>1000,30620=>1000,30621=>1000,30622=>1000,30623=>1000,30624=>1000,30625=>1000,30626=>1000,30627=>1000,30629=>1000,30631=>1000,30632=>1000,30634=>1000,30635=>1000,30636=>1000,30637=>1000,30639=>1000,30640=>1000,30641=>1000,30642=>1000,30643=>1000,30644=>1000,30645=>1000,30646=>1000,30647=>1000,30649=>1000,30650=>1000,30651=>1000,30652=>1000,30653=>1000,30654=>1000,30655=>1000,30658=>1000,30659=>1000,30660=>1000,30661=>1000,30663=>1000,30665=>1000,30666=>1000,30667=>1000,30668=>1000,30669=>1000,30670=>1000,30671=>1000,30672=>1000,30675=>1000,30676=>1000,30677=>1000,30679=>1000,30680=>1000,30681=>1000,30682=>1000,30683=>1000,30684=>1000,30685=>1000,30686=>1000,30688=>1000,30690=>1000,30691=>1000,30693=>1000,30694=>1000,30695=>1000,30696=>1000,30697=>1000,30700=>1000,30701=>1000,30702=>1000,30703=>1000,30704=>1000,30705=>1000,30706=>1000,30707=>1000,30708=>1000,30711=>1000,30712=>1000,30713=>1000,30714=>1000,30715=>1000,30716=>1000,30717=>1000,30718=>1000,30722=>1000,30723=>1000,30725=>1000,30726=>1000,30728=>1000,30729=>1000,30732=>1000,30733=>1000,30734=>1000,30735=>1000,30736=>1000,30737=>1000,30738=>1000,30739=>1000,30740=>1000,30744=>1000,30748=>1000,30749=>1000,30750=>1000,30751=>1000,30752=>1000,30753=>1000,30754=>1000,30755=>1000,30757=>1000,30758=>1000,30759=>1000,30760=>1000,30761=>1000,30762=>1000,30763=>1000,30764=>1000,30765=>1000,30766=>1000,30767=>1000,30768=>1000,30769=>1000,30770=>1000,30771=>1000,30772=>1000,30773=>1000,30775=>1000,30776=>1000,30777=>1000,30780=>1000,30781=>1000,30786=>1000,30787=>1000,30788=>1000,30789=>1000,30791=>1000,30792=>1000,30793=>1000,30794=>1000,30795=>1000,30796=>1000,30797=>1000,30798=>1000,30800=>1000,30801=>1000,30802=>1000,30803=>1000,30804=>1000,30812=>1000,30813=>1000,30814=>1000,30816=>1000,30818=>1000,30820=>1000,30821=>1000,30822=>1000,30824=>1000,30825=>1000,30826=>1000,30827=>1000,30828=>1000,30829=>1000,30830=>1000,30831=>1000,30832=>1000,30833=>1000,30841=>1000,30842=>1000,30843=>1000,30844=>1000,30846=>1000,30847=>1000,30848=>1000,30849=>1000,30851=>1000,30852=>1000,30853=>1000,30854=>1000,30855=>1000,30856=>1000,30857=>1000,30860=>1000,30861=>1000,30862=>1000,30863=>1000,30865=>1000,30867=>1000,30868=>1000,30869=>1000,30870=>1000,30871=>1000,30872=>1000,30873=>1000,30874=>1000,30878=>1000,30879=>1000,30880=>1000,30881=>1000,30882=>1000,30883=>1000,30884=>1000,30885=>1000,30887=>1000,30888=>1000,30889=>1000,30890=>1000,30891=>1000,30892=>1000,30893=>1000,30895=>1000,30896=>1000,30897=>1000,30898=>1000,30899=>1000,30900=>1000,30902=>1000,30904=>1000,30905=>1000,30906=>1000,30907=>1000,30908=>1000,30910=>1000,30913=>1000,30915=>1000,30916=>1000,30917=>1000,30919=>1000,30920=>1000,30921=>1000,30922=>1000,30923=>1000,30924=>1000,30925=>1000,30926=>1000,30927=>1000,30928=>1000,30929=>1000,30930=>1000,30931=>1000,30932=>1000,30933=>1000,30935=>1000,30936=>1000,30938=>1000,30939=>1000,30941=>1000,30942=>1000,30943=>1000,30944=>1000,30945=>1000,30946=>1000,30947=>1000,30948=>1000,30949=>1000,30951=>1000,30952=>1000,30953=>1000,30954=>1000,30956=>1000,30957=>1000,30958=>1000,30959=>1000,30960=>1000,30961=>1000,30962=>1000,30963=>1000,30964=>1000,30965=>1000,30967=>1000,30969=>1000,30970=>1000,30971=>1000,30972=>1000,30973=>1000,30974=>1000,30975=>1000,30977=>1000,30978=>1000,30980=>1000,30981=>1000,30982=>1000,30985=>1000,30988=>1000,30990=>1000,30992=>1000,30993=>1000,30994=>1000,30995=>1000,30996=>1000,30999=>1000,31001=>1000,31003=>1000,31004=>1000,31005=>1000,31006=>1000,31009=>1000,31011=>1000,31012=>1000,31013=>1000,31014=>1000,31015=>1000,31016=>1000,31017=>1000,31018=>1000,31019=>1000,31020=>1000,31021=>1000,31022=>1000,31023=>1000,31025=>1000,31026=>1000,31027=>1000,31028=>1000,31029=>1000,31030=>1000,31032=>1000,31033=>1000,31034=>1000,31035=>1000,31036=>1000,31037=>1000,31038=>1000,31039=>1000,31040=>1000,31041=>1000,31042=>1000,31044=>1000,31045=>1000,31046=>1000,31047=>1000,31048=>1000,31049=>1000,31050=>1000,31051=>1000,31052=>1000,31055=>1000,31056=>1000,31057=>1000,31058=>1000,31059=>1000,31060=>1000,31061=>1000,31062=>1000,31063=>1000,31064=>1000,31065=>1000,31066=>1000,31067=>1000,31068=>1000,31069=>1000,31070=>1000,31071=>1000,31072=>1000,31073=>1000,31074=>1000,31075=>1000,31076=>1000,31077=>1000,31079=>1000,31080=>1000,31081=>1000,31082=>1000,31083=>1000,31085=>1000,31088=>1000,31089=>1000,31090=>1000,31091=>1000,31092=>1000,31097=>1000,31098=>1000,31100=>1000,31101=>1000,31102=>1000,31103=>1000,31104=>1000,31105=>1000,31106=>1000,31107=>1000,31110=>1000,31111=>1000,31112=>1000,31114=>1000,31115=>1000,31117=>1000,31118=>1000,31119=>1000,31120=>1000,31121=>1000,31122=>1000,31123=>1000,31124=>1000,31125=>1000,31126=>1000,31127=>1000,31128=>1000,31129=>1000,31130=>1000,31131=>1000,31132=>1000,31133=>1000,31135=>1000,31136=>1000,31137=>1000,31138=>1000,31140=>1000,31141=>1000,31142=>1000,31143=>1000,31144=>1000,31145=>1000,31146=>1000,31147=>1000,31148=>1000,31149=>1000,31150=>1000,31152=>1000,31153=>1000,31154=>1000,31155=>1000,31156=>1000,31158=>1000,31159=>1000,31160=>1000,31161=>1000,31162=>1000,31163=>1000,31165=>1000,31166=>1000,31167=>1000,31168=>1000,31169=>1000,31172=>1000,31173=>1000,31174=>1000,31176=>1000,31177=>1000,31178=>1000,31179=>1000,31180=>1000,31181=>1000,31182=>1000,31183=>1000,31184=>1000,31185=>1000,31186=>1000,31188=>1000,31189=>1000,31190=>1000,31192=>1000,31196=>1000,31197=>1000,31198=>1000,31199=>1000,31200=>1000,31202=>1000,31203=>1000,31204=>1000,31206=>1000,31207=>1000,31209=>1000,31210=>1000,31211=>1000,31212=>1000,31213=>1000,31214=>1000,31217=>1000,31220=>1000,31222=>1000,31223=>1000,31224=>1000,31226=>1000,31227=>1000,31232=>1000,31234=>1000,31235=>1000,31236=>1000,31237=>1000,31238=>1000,31240=>1000,31242=>1000,31243=>1000,31244=>1000,31245=>1000,31246=>1000,31248=>1000,31249=>1000,31250=>1000,31251=>1000,31252=>1000,31253=>1000,31255=>1000,31256=>1000,31257=>1000,31258=>1000,31259=>1000,31260=>1000,31262=>1000,31263=>1000,31264=>1000,31266=>1000,31270=>1000,31272=>1000,31274=>1000,31275=>1000,31276=>1000,31277=>1000,31278=>1000,31279=>1000,31280=>1000,31281=>1000,31282=>1000,31287=>1000,31289=>1000,31290=>1000,31291=>1000,31292=>1000,31293=>1000,31294=>1000,31295=>1000,31296=>1000,31299=>1000,31300=>1000,31301=>1000,31302=>1000,31303=>1000,31304=>1000,31305=>1000,31306=>1000,31307=>1000,31308=>1000,31309=>1000,31310=>1000,31316=>1000,31318=>1000,31319=>1000,31320=>1000,31322=>1000,31323=>1000,31324=>1000,31327=>1000,31328=>1000,31329=>1000,31330=>1000,31333=>1000,31335=>1000,31336=>1000,31337=>1000,31339=>1000,31340=>1000,31341=>1000,31342=>1000,31344=>1000,31345=>1000,31346=>1000,31348=>1000,31349=>1000,31350=>1000,31352=>1000,31353=>1000,31354=>1000,31355=>1000,31357=>1000,31358=>1000,31359=>1000,31360=>1000,31361=>1000,31363=>1000,31364=>1000,31365=>1000,31366=>1000,31367=>1000,31368=>1000,31369=>1000,31370=>1000,31371=>1000,31372=>1000,31375=>1000,31376=>1000,31377=>1000,31378=>1000,31379=>1000,31380=>1000,31381=>1000,31382=>1000,31383=>1000,31384=>1000,31385=>1000,31390=>1000,31391=>1000,31392=>1000,31394=>1000,31395=>1000,31400=>1000,31401=>1000,31402=>1000,31403=>1000,31404=>1000,31406=>1000,31407=>1000,31408=>1000,31409=>1000,31410=>1000,31411=>1000,31412=>1000,31413=>1000,31414=>1000,31415=>1000,31416=>1000,31418=>1000,31419=>1000,31420=>1000,31422=>1000,31423=>1000,31424=>1000,31425=>1000,31426=>1000,31427=>1000,31428=>1000,31429=>1000,31431=>1000,31432=>1000,31433=>1000,31434=>1000,31435=>1000,31439=>1000,31441=>1000,31443=>1000,31448=>1000,31449=>1000,31450=>1000,31451=>1000,31452=>1000,31453=>1000,31455=>1000,31456=>1000,31458=>1000,31459=>1000,31460=>1000,31461=>1000,31462=>1000,31463=>1000,31465=>1000,31466=>1000,31467=>1000,31469=>1000,31470=>1000,31471=>1000,31478=>1000,31479=>1000,31481=>1000,31482=>1000,31483=>1000,31484=>1000,31485=>1000,31486=>1000,31487=>1000,31488=>1000,31489=>1000,31492=>1000,31493=>1000,31494=>1000,31496=>1000,31497=>1000,31498=>1000,31499=>1000,31500=>1000,31502=>1000,31503=>1000,31504=>1000,31505=>1000,31506=>1000,31507=>1000,31508=>1000,31512=>1000,31513=>1000,31514=>1000,31515=>1000,31517=>1000,31518=>1000,31519=>1000,31520=>1000,31522=>1000,31523=>1000,31524=>1000,31525=>1000,31526=>1000,31527=>1000,31528=>1000,31529=>1000,31530=>1000,31531=>1000,31532=>1000,31533=>1000,31534=>1000,31535=>1000,31536=>1000,31537=>1000,31538=>1000,31539=>1000,31540=>1000,31541=>1000,31544=>1000,31545=>1000,31547=>1000,31552=>1000,31554=>1000,31555=>1000,31556=>1000,31557=>1000,31558=>1000,31559=>1000,31560=>1000,31561=>1000,31562=>1000,31563=>1000,31564=>1000,31565=>1000,31566=>1000,31567=>1000,31568=>1000,31569=>1000,31570=>1000,31572=>1000,31573=>1000,31574=>1000,31576=>1000,31584=>1000,31585=>1000,31586=>1000,31587=>1000,31588=>1000,31589=>1000,31590=>1000,31591=>1000,31593=>1000,31596=>1000,31597=>1000,31598=>1000,31599=>1000,31600=>1000,31601=>1000,31602=>1000,31603=>1000,31604=>1000,31605=>1000,31606=>1000,31607=>1000,31608=>1000,31611=>1000,31618=>1000,31620=>1000,31621=>1000,31623=>1000,31624=>1000,31626=>1000,31627=>1000,31628=>1000,31629=>1000,31630=>1000,31631=>1000,31632=>1000,31633=>1000,31634=>1000,31636=>1000,31637=>1000,31638=>1000,31639=>1000,31640=>1000,31641=>1000,31642=>1000,31643=>1000,31644=>1000,31645=>1000,31648=>1000,31649=>1000,31650=>1000,31651=>1000,31652=>1000,31660=>1000,31661=>1000,31662=>1000,31663=>1000,31665=>1000,31666=>1000,31668=>1000,31669=>1000,31671=>1000,31672=>1000,31673=>1000,31678=>1000,31680=>1000,31681=>1000,31684=>1000,31685=>1000,31686=>1000,31687=>1000,31689=>1000,31690=>1000,31691=>1000,31692=>1000,31694=>1000,31695=>1000,31696=>1000,31700=>1000,31701=>1000,31704=>1000,31705=>1000,31706=>1000,31707=>1000,31708=>1000,31709=>1000,31710=>1000,31711=>1000,31712=>1000,31713=>1000,31714=>1000,31715=>1000,31716=>1000,31717=>1000,31718=>1000,31719=>1000,31720=>1000,31721=>1000,31722=>1000,31723=>1000,31724=>1000,31728=>1000,31729=>1000,31730=>1000,31731=>1000,31732=>1000,31735=>1000,31736=>1000,31737=>1000,31738=>1000,31739=>1000,31740=>1000,31741=>1000,31742=>1000,31743=>1000,31744=>1000,31745=>1000,31746=>1000,31747=>1000,31749=>1000,31750=>1000,31751=>1000,31753=>1000,31754=>1000,31755=>1000,31756=>1000,31757=>1000,31758=>1000,31759=>1000,31760=>1000,31761=>1000,31762=>1000,31765=>1000,31769=>1000,31771=>1000,31772=>1000,31773=>1000,31774=>1000,31775=>1000,31776=>1000,31777=>1000,31778=>1000,31779=>1000,31781=>1000,31782=>1000,31783=>1000,31784=>1000,31785=>1000,31786=>1000,31787=>1000,31788=>1000,31789=>1000,31792=>1000,31795=>1000,31797=>1000,31799=>1000,31800=>1000,31801=>1000,31803=>1000,31804=>1000,31805=>1000,31806=>1000,31807=>1000,31808=>1000,31810=>1000,31811=>1000,31812=>1000,31813=>1000,31815=>1000,31816=>1000,31817=>1000,31818=>1000,31820=>1000,31821=>1000,31824=>1000,31825=>1000,31827=>1000,31828=>1000,31830=>1000,31831=>1000,31833=>1000,31834=>1000,31835=>1000,31836=>1000,31837=>1000,31839=>1000,31840=>1000,31843=>1000,31844=>1000,31845=>1000,31846=>1000,31847=>1000,31849=>1000,31850=>1000,31851=>1000,31852=>1000,31853=>1000,31854=>1000,31855=>1000,31856=>1000,31858=>1000,31859=>1000,31860=>1000,31861=>1000,31864=>1000,31865=>1000,31866=>1000,31867=>1000,31868=>1000,31869=>1000,31870=>1000,31871=>1000,31872=>1000,31873=>1000,31875=>1000,31876=>1000,31877=>1000,31878=>1000,31880=>1000,31881=>1000,31882=>1000,31884=>1000,31885=>1000,31886=>1000,31889=>1000,31890=>1000,31892=>1000,31893=>1000,31894=>1000,31895=>1000,31896=>1000,31900=>1000,31902=>1000,31903=>1000,31905=>1000,31906=>1000,31907=>1000,31909=>1000,31910=>1000,31911=>1000,31912=>1000,31916=>1000,31918=>1000,31919=>1000,31921=>1000,31922=>1000,31923=>1000,31924=>1000,31925=>1000,31928=>1000,31929=>1000,31930=>1000,31931=>1000,31932=>1000,31933=>1000,31934=>1000,31935=>1000,31938=>1000,31939=>1000,31941=>1000,31943=>1000,31944=>1000,31945=>1000,31946=>1000,31947=>1000,31948=>1000,31949=>1000,31950=>1000,31952=>1000,31953=>1000,31954=>1000,31955=>1000,31956=>1000,31957=>1000,31958=>1000,31959=>1000,31961=>1000,31962=>1000,31964=>1000,31965=>1000,31966=>1000,31967=>1000,31968=>1000,31970=>1000,31974=>1000,31975=>1000,31976=>1000,31978=>1000,31980=>1000,31981=>1000,31982=>1000,31983=>1000,31984=>1000,31985=>1000,31986=>1000,31987=>1000,31988=>1000,31989=>1000,31990=>1000,31991=>1000,31992=>1000,31993=>1000,31995=>1000,31996=>1000,31997=>1000,31998=>1000,32000=>1000,32001=>1000,32002=>1000,32003=>1000,32004=>1000,32005=>1000,32006=>1000,32007=>1000,32008=>1000,32009=>1000,32010=>1000,32011=>1000,32012=>1000,32013=>1000,32014=>1000,32015=>1000,32016=>1000,32017=>1000,32018=>1000,32019=>1000,32020=>1000,32021=>1000,32022=>1000,32023=>1000,32024=>1000,32025=>1000,32026=>1000,32027=>1000,32028=>1000,32029=>1000,32030=>1000,32031=>1000,32032=>1000,32033=>1000,32034=>1000,32037=>1000,32040=>1000,32041=>1000,32043=>1000,32044=>1000,32046=>1000,32047=>1000,32048=>1000,32049=>1000,32050=>1000,32051=>1000,32053=>1000,32054=>1000,32056=>1000,32057=>1000,32058=>1000,32059=>1000,32060=>1000,32061=>1000,32062=>1000,32063=>1000,32064=>1000,32065=>1000,32066=>1000,32067=>1000,32068=>1000,32069=>1000,32070=>1000,32071=>1000,32074=>1000,32077=>1000,32078=>1000,32079=>1000,32080=>1000,32081=>1000,32082=>1000,32083=>1000,32084=>1000,32085=>1000,32086=>1000,32088=>1000,32090=>1000,32091=>1000,32092=>1000,32093=>1000,32094=>1000,32095=>1000,32097=>1000,32098=>1000,32099=>1000,32102=>1000,32103=>1000,32104=>1000,32105=>1000,32106=>1000,32107=>1000,32109=>1000,32110=>1000,32111=>1000,32112=>1000,32113=>1000,32114=>1000,32115=>1000,32121=>1000,32122=>1000,32123=>1000,32124=>1000,32125=>1000,32127=>1000,32128=>1000,32129=>1000,32131=>1000,32132=>1000,32133=>1000,32134=>1000,32136=>1000,32137=>1000,32139=>1000,32140=>1000,32141=>1000,32142=>1000,32143=>1000,32145=>1000,32146=>1000,32147=>1000,32148=>1000,32149=>1000,32150=>1000,32151=>1000,32156=>1000,32157=>1000,32158=>1000,32159=>1000,32160=>1000,32161=>1000,32162=>1000,32163=>1000,32164=>1000,32166=>1000,32167=>1000,32168=>1000,32169=>1000,32170=>1000,32171=>1000,32172=>1000,32173=>1000,32174=>1000,32175=>1000,32176=>1000,32177=>1000,32178=>1000,32179=>1000,32180=>1000,32181=>1000,32183=>1000,32184=>1000,32185=>1000,32186=>1000,32187=>1000,32188=>1000,32189=>1000,32190=>1000,32191=>1000,32192=>1000,32193=>1000,32194=>1000,32196=>1000,32197=>1000,32198=>1000,32199=>1000,32201=>1000,32202=>1000,32203=>1000,32204=>1000,32205=>1000,32206=>1000,32207=>1000,32208=>1000,32210=>1000,32211=>1000,32212=>1000,32215=>1000,32216=>1000,32217=>1000,32218=>1000,32219=>1000,32220=>1000,32221=>1000,32222=>1000,32223=>1000,32224=>1000,32225=>1000,32227=>1000,32228=>1000,32229=>1000,32230=>1000,32231=>1000,32232=>1000,32233=>1000,32234=>1000,32236=>1000,32238=>1000,32239=>1000,32240=>1000,32241=>1000,32242=>1000,32243=>1000,32244=>1000,32245=>1000,32246=>1000,32247=>1000,32249=>1000,32250=>1000,32251=>1000,32252=>1000,32253=>1000,32254=>1000,32259=>1000,32263=>1000,32264=>1000,32265=>1000,32266=>1000,32267=>1000,32268=>1000,32269=>1000,32270=>1000,32271=>1000,32272=>1000,32273=>1000,32274=>1000,32275=>1000,32276=>1000,32277=>1000,32278=>1000,32279=>1000,32282=>1000,32283=>1000,32284=>1000,32285=>1000,32286=>1000,32287=>1000,32288=>1000,32289=>1000,32290=>1000,32291=>1000,32292=>1000,32293=>1000,32295=>1000,32297=>1000,32298=>1000,32299=>1000,32301=>1000,32302=>1000,32303=>1000,32304=>1000,32305=>1000,32306=>1000,32307=>1000,32308=>1000,32309=>1000,32310=>1000,32311=>1000,32312=>1000,32313=>1000,32314=>1000,32315=>1000,32316=>1000,32317=>1000,32318=>1000,32319=>1000,32320=>1000,32321=>1000,32322=>1000,32323=>1000,32324=>1000,32325=>1000,32326=>1000,32327=>1000,32328=>1000,32329=>1000,32332=>1000,32336=>1000,32337=>1000,32338=>1000,32339=>1000,32340=>1000,32341=>1000,32342=>1000,32343=>1000,32344=>1000,32345=>1000,32346=>1000,32347=>1000,32348=>1000,32350=>1000,32351=>1000,32352=>1000,32353=>1000,32354=>1000,32355=>1000,32357=>1000,32359=>1000,32360=>1000,32361=>1000,32362=>1000,32363=>1000,32364=>1000,32365=>1000,32366=>1000,32367=>1000,32368=>1000,32370=>1000,32371=>1000,32372=>1000,32373=>1000,32374=>1000,32375=>1000,32376=>1000,32377=>1000,32378=>1000,32379=>1000,32380=>1000,32381=>1000,32382=>1000,32383=>1000,32384=>1000,32385=>1000,32386=>1000,32390=>1000,32391=>1000,32392=>1000,32394=>1000,32395=>1000,32396=>1000,32397=>1000,32398=>1000,32399=>1000,32401=>1000,32402=>1000,32403=>1000,32404=>1000,32405=>1000,32406=>1000,32407=>1000,32408=>1000,32409=>1000,32410=>1000,32411=>1000,32412=>1000,32415=>1000,32420=>1000,32428=>1000,32442=>1000,32455=>1000,32463=>1000,32479=>1000,32518=>1000,32566=>1000,32567=>1000,32568=>1000,32569=>1000,32570=>1000,32573=>1000,32574=>1000,32575=>1000,32576=>1000,32577=>1000,32579=>1000,32580=>1000,32581=>1000,32583=>1000,32584=>1000,32585=>1000,32586=>1000,32587=>1000,32588=>1000,32589=>1000,32590=>1000,32591=>1000,32592=>1000,32593=>1000,32594=>1000,32595=>1000,32596=>1000,32597=>1000,32600=>1000,32603=>1000,32604=>1000,32605=>1000,32606=>1000,32607=>1000,32608=>1000,32609=>1000,32611=>1000,32613=>1000,32614=>1000,32615=>1000,32616=>1000,32617=>1000,32618=>1000,32619=>1000,32620=>1000,32621=>1000,32622=>1000,32624=>1000,32625=>1000,32626=>1000,32627=>1000,32629=>1000,32630=>1000,32631=>1000,32632=>1000,32633=>1000,32634=>1000,32635=>1000,32636=>1000,32637=>1000,32638=>1000,32639=>1000,32643=>1000,32645=>1000,32646=>1000,32647=>1000,32648=>1000,32649=>1000,32650=>1000,32651=>1000,32652=>1000,32653=>1000,32654=>1000,32655=>1000,32657=>1000,32658=>1000,32659=>1000,32660=>1000,32661=>1000,32662=>1000,32663=>1000,32666=>1000,32667=>1000,32668=>1000,32669=>1000,32670=>1000,32672=>1000,32673=>1000,32674=>1000,32675=>1000,32676=>1000,32677=>1000,32678=>1000,32679=>1000,32680=>1000,32681=>1000,32684=>1000,32685=>1000,32686=>1000,32687=>1000,32688=>1000,32689=>1000,32690=>1000,32691=>1000,32692=>1000,32693=>1000,32694=>1000,32695=>1000,32696=>1000,32697=>1000,32698=>1000,32699=>1000,32700=>1000,32701=>1000,32702=>1000,32703=>1000,32704=>1000,32705=>1000,32706=>1000,32707=>1000,32709=>1000,32711=>1000,32713=>1000,32714=>1000,32715=>1000,32716=>1000,32717=>1000,32718=>1000,32719=>1000,32720=>1000,32721=>1000,32722=>1000,32724=>1000,32725=>1000,32727=>1000,32731=>1000,32732=>1000,32733=>1000,32734=>1000,32735=>1000,32736=>1000,32737=>1000,32738=>1000,32739=>1000,32741=>1000,32742=>1000,32743=>1000,32744=>1000,32745=>1000,32746=>1000,32747=>1000,32748=>1000,32749=>1000,32750=>1000,32751=>1000,32752=>1000,32753=>1000,32754=>1000,32755=>1000,32756=>1000,32757=>1000,32759=>1000,32760=>1000,32761=>1000,32762=>1000,32763=>1000,32764=>1000,32765=>1000,32766=>1000,32767=>1000,32768=>1000,32769=>1000,32770=>1000,32771=>1000,32772=>1000,32773=>1000,32774=>1000,32775=>1000,32776=>1000,32779=>1000,32780=>1000,32781=>1000,32782=>1000,32783=>1000,32784=>1000,32785=>1000,32786=>1000,32788=>1000,32789=>1000,32790=>1000,32791=>1000,32792=>1000,32793=>1000,32795=>1000,32796=>1000,32797=>1000,32798=>1000,32799=>1000,32800=>1000,32801=>1000,32804=>1000,32805=>1000,32806=>1000,32808=>1000,32809=>1000,32810=>1000,32812=>1000,32814=>1000,32815=>1000,32816=>1000,32817=>1000,32819=>1000,32820=>1000,32821=>1000,32822=>1000,32823=>1000,32825=>1000,32827=>1000,32828=>1000,32829=>1000,32830=>1000,32831=>1000,32835=>1000,32838=>1000,32839=>1000,32840=>1000,32842=>1000,32847=>1000,32848=>1000,32849=>1000,32850=>1000,32852=>1000,32854=>1000,32856=>1000,32858=>1000,32859=>1000,32860=>1000,32861=>1000,32862=>1000,32865=>1000,32866=>1000,32867=>1000,32868=>1000,32870=>1000,32871=>1000,32876=>1000,32879=>1000,32880=>1000,32881=>1000,32882=>1000,32883=>1000,32885=>1000,32886=>1000,32887=>1000,32888=>1000,32889=>1000,32893=>1000,32894=>1000,32895=>1000,32896=>1000,32898=>1000,32900=>1000,32901=>1000,32902=>1000,32903=>1000,32905=>1000,32906=>1000,32907=>1000,32908=>1000,32911=>1000,32912=>1000,32914=>1000,32915=>1000,32917=>1000,32918=>1000,32920=>1000,32921=>1000,32922=>1000,32923=>1000,32924=>1000,32925=>1000,32927=>1000,32929=>1000,32930=>1000,32931=>1000,32933=>1000,32935=>1000,32937=>1000,32938=>1000,32939=>1000,32941=>1000,32942=>1000,32943=>1000,32945=>1000,32946=>1000,32948=>1000,32949=>1000,32950=>1000,32951=>1000,32952=>1000,32954=>1000,32956=>1000,32957=>1000,32962=>1000,32963=>1000,32964=>1000,32965=>1000,32966=>1000,32967=>1000,32968=>1000,32969=>1000,32970=>1000,32972=>1000,32973=>1000,32974=>1000,32975=>1000,32976=>1000,32977=>1000,32980=>1000,32981=>1000,32982=>1000,32983=>1000,32984=>1000,32985=>1000,32986=>1000,32987=>1000,32988=>1000,32989=>1000,32990=>1000,32992=>1000,32993=>1000,32995=>1000,32996=>1000,32997=>1000,32998=>1000,33001=>1000,33004=>1000,33005=>1000,33007=>1000,33008=>1000,33009=>1000,33010=>1000,33011=>1000,33012=>1000,33013=>1000,33014=>1000,33016=>1000,33017=>1000,33018=>1000,33019=>1000,33020=>1000,33021=>1000,33022=>1000,33024=>1000,33025=>1000,33026=>1000,33027=>1000,33029=>1000,33030=>1000,33031=>1000,33032=>1000,33033=>1000,33034=>1000,33036=>1000,33038=>1000,33042=>1000,33044=>1000,33045=>1000,33046=>1000,33047=>1000,33048=>1000,33049=>1000,33050=>1000,33051=>1000,33053=>1000,33054=>1000,33055=>1000,33057=>1000,33058=>1000,33059=>1000,33060=>1000,33061=>1000,33063=>1000,33065=>1000,33066=>1000,33067=>1000,33068=>1000,33069=>1000,33071=>1000,33072=>1000,33073=>1000,33074=>1000,33076=>1000,33079=>1000,33081=>1000,33082=>1000,33085=>1000,33086=>1000,33090=>1000,33091=>1000,33092=>1000,33094=>1000,33095=>1000,33096=>1000,33098=>1000,33099=>1000,33100=>1000,33101=>1000,33102=>1000,33103=>1000,33104=>1000,33105=>1000,33106=>1000,33107=>1000,33108=>1000,33109=>1000,33110=>1000,33113=>1000,33114=>1000,33115=>1000,33116=>1000,33118=>1000,33120=>1000,33121=>1000,33122=>1000,33124=>1000,33125=>1000,33126=>1000,33127=>1000,33129=>1000,33131=>1000,33132=>1000,33133=>1000,33134=>1000,33135=>1000,33136=>1000,33137=>1000,33138=>1000,33139=>1000,33140=>1000,33142=>1000,33143=>1000,33144=>1000,33145=>1000,33146=>1000,33148=>1000,33149=>1000,33151=>1000,33152=>1000,33154=>1000,33155=>1000,33156=>1000,33158=>1000,33159=>1000,33160=>1000,33161=>1000,33162=>1000,33163=>1000,33164=>1000,33165=>1000,33167=>1000,33171=>1000,33173=>1000,33175=>1000,33176=>1000,33177=>1000,33178=>1000,33179=>1000,33180=>1000,33181=>1000,33182=>1000,33183=>1000,33184=>1000,33186=>1000,33187=>1000,33189=>1000,33190=>1000,33191=>1000,33192=>1000,33193=>1000,33194=>1000,33195=>1000,33196=>1000,33198=>1000,33200=>1000,33201=>1000,33202=>1000,33203=>1000,33204=>1000,33205=>1000,33206=>1000,33207=>1000,33209=>1000,33210=>1000,33211=>1000,33212=>1000,33213=>1000,33214=>1000,33215=>1000,33216=>1000,33217=>1000,33218=>1000,33219=>1000,33220=>1000,33221=>1000,33222=>1000,33223=>1000,33224=>1000,33225=>1000,33226=>1000,33228=>1000,33229=>1000,33231=>1000,33232=>1000,33233=>1000,33234=>1000,33237=>1000,33239=>1000,33240=>1000,33241=>1000,33242=>1000,33243=>1000,33245=>1000,33246=>1000,33247=>1000,33248=>1000,33249=>1000,33250=>1000,33251=>1000,33252=>1000,33253=>1000,33254=>1000,33255=>1000,33256=>1000,33257=>1000,33258=>1000,33260=>1000,33261=>1000,33262=>1000,33263=>1000,33266=>1000,33267=>1000,33268=>1000,33270=>1000,33271=>1000,33272=>1000,33273=>1000,33274=>1000,33275=>1000,33276=>1000,33278=>1000,33279=>1000,33280=>1000,33281=>1000,33282=>1000,33284=>1000,33285=>1000,33287=>1000,33288=>1000,33289=>1000,33290=>1000,33291=>1000,33292=>1000,33293=>1000,33296=>1000,33297=>1000,33298=>1000,33300=>1000,33301=>1000,33302=>1000,33304=>1000,33306=>1000,33307=>1000,33308=>1000,33309=>1000,33310=>1000,33311=>1000,33312=>1000,33313=>1000,33314=>1000,33317=>1000,33318=>1000,33320=>1000,33321=>1000,33322=>1000,33323=>1000,33324=>1000,33325=>1000,33327=>1000,33330=>1000,33331=>1000,33332=>1000,33333=>1000,33334=>1000,33335=>1000,33336=>1000,33337=>1000,33338=>1000,33340=>1000,33341=>1000,33342=>1000,33343=>1000,33344=>1000,33346=>1000,33348=>1000,33349=>1000,33351=>1000,33353=>1000,33355=>1000,33358=>1000,33359=>1000,33360=>1000,33361=>1000,33362=>1000,33363=>1000,33364=>1000,33365=>1000,33366=>1000,33367=>1000,33368=>1000,33369=>1000,33370=>1000,33371=>1000,33372=>1000,33374=>1000,33375=>1000,33377=>1000,33378=>1000,33379=>1000,33380=>1000,33381=>1000,33382=>1000,33384=>1000,33385=>1000,33387=>1000,33388=>1000,33389=>1000,33390=>1000,33391=>1000,33393=>1000,33394=>1000,33396=>1000,33397=>1000,33398=>1000,33399=>1000,33400=>1000,33401=>1000,33402=>1000,33403=>1000,33404=>1000,33405=>1000,33406=>1000,33407=>1000,33408=>1000,33411=>1000,33412=>1000,33413=>1000,33415=>1000,33418=>1000,33419=>1000,33421=>1000,33422=>1000,33423=>1000,33424=>1000,33425=>1000,33426=>1000,33427=>1000,33428=>1000,33432=>1000,33433=>1000,33434=>1000,33435=>1000,33437=>1000,33438=>1000,33439=>1000,33440=>1000,33441=>1000,33442=>1000,33443=>1000,33444=>1000,33445=>1000,33446=>1000,33447=>1000,33448=>1000,33449=>1000,33450=>1000,33451=>1000,33452=>1000,33453=>1000,33454=>1000,33455=>1000,33456=>1000,33457=>1000,33459=>1000,33460=>1000,33461=>1000,33462=>1000,33463=>1000,33464=>1000,33465=>1000,33466=>1000,33467=>1000,33468=>1000,33469=>1000,33470=>1000,33471=>1000,33472=>1000,33474=>1000,33475=>1000,33476=>1000,33482=>1000,33487=>1000,33488=>1000,33489=>1000,33490=>1000,33491=>1000,33492=>1000,33493=>1000,33494=>1000,33495=>1000,33496=>1000,33497=>1000,33499=>1000,33500=>1000,33502=>1000,33503=>1000,33504=>1000,33505=>1000,33506=>1000,33507=>1000,33508=>1000,33509=>1000,33510=>1000,33511=>1000,33512=>1000,33514=>1000,33515=>1000,33516=>1000,33517=>1000,33518=>1000,33519=>1000,33520=>1000,33521=>1000,33522=>1000,33523=>1000,33524=>1000,33525=>1000,33526=>1000,33527=>1000,33528=>1000,33529=>1000,33530=>1000,33531=>1000,33532=>1000,33533=>1000,33534=>1000,33535=>1000,33536=>1000,33537=>1000,33538=>1000,33539=>1000,33540=>1000,33541=>1000,33542=>1000,33543=>1000,33544=>1000,33545=>1000,33547=>1000,33548=>1000,33549=>1000,33558=>1000,33559=>1000,33560=>1000,33561=>1000,33562=>1000,33563=>1000,33564=>1000,33565=>1000,33566=>1000,33568=>1000,33570=>1000,33572=>1000,33573=>1000,33574=>1000,33575=>1000,33576=>1000,33577=>1000,33578=>1000,33579=>1000,33580=>1000,33581=>1000,33583=>1000,33585=>1000,33586=>1000,33587=>1000,33588=>1000,33589=>1000,33590=>1000,33591=>1000,33592=>1000,33593=>1000,33594=>1000,33595=>1000,33596=>1000,33597=>1000,33599=>1000,33600=>1000,33601=>1000,33602=>1000,33603=>1000,33604=>1000,33605=>1000,33607=>1000,33608=>1000,33609=>1000,33610=>1000,33611=>1000,33612=>1000,33613=>1000,33614=>1000,33615=>1000,33616=>1000,33617=>1000,33618=>1000,33619=>1000,33620=>1000,33622=>1000,33623=>1000,33634=>1000,33635=>1000,33638=>1000,33647=>1000,33651=>1000,33652=>1000,33653=>1000,33654=>1000,33655=>1000,33656=>1000,33658=>1000,33659=>1000,33660=>1000,33661=>1000,33662=>1000,33663=>1000,33665=>1000,33667=>1000,33669=>1000,33670=>1000,33671=>1000,33672=>1000,33673=>1000,33674=>1000,33675=>1000,33676=>1000,33677=>1000,33678=>1000,33679=>1000,33680=>1000,33681=>1000,33682=>1000,33683=>1000,33684=>1000,33685=>1000,33686=>1000,33687=>1000,33688=>1000,33689=>1000,33690=>1000,33691=>1000,33692=>1000,33693=>1000,33694=>1000,33696=>1000,33698=>1000,33699=>1000,33700=>1000,33701=>1000,33702=>1000,33703=>1000,33704=>1000,33705=>1000,33706=>1000,33707=>1000,33708=>1000,33710=>1000,33711=>1000,33712=>1000,33721=>1000,33725=>1000,33726=>1000,33727=>1000,33728=>1000,33729=>1000,33730=>1000,33731=>1000,33732=>1000,33733=>1000,33734=>1000,33735=>1000,33736=>1000,33737=>1000,33738=>1000,33739=>1000,33740=>1000,33741=>1000,33742=>1000,33743=>1000,33745=>1000,33747=>1000,33748=>1000,33749=>1000,33750=>1000,33751=>1000,33752=>1000,33753=>1000,33755=>1000,33756=>1000,33757=>1000,33758=>1000,33759=>1000,33760=>1000,33761=>1000,33762=>1000,33763=>1000,33764=>1000,33765=>1000,33767=>1000,33768=>1000,33769=>1000,33770=>1000,33771=>1000,33772=>1000,33773=>1000,33774=>1000,33775=>1000,33776=>1000,33777=>1000,33778=>1000,33779=>1000,33780=>1000,33781=>1000,33782=>1000,33784=>1000,33785=>1000,33786=>1000,33787=>1000,33788=>1000,33789=>1000,33790=>1000,33791=>1000,33793=>1000,33795=>1000,33796=>1000,33797=>1000,33798=>1000,33799=>1000,33801=>1000,33802=>1000,33803=>1000,33804=>1000,33805=>1000,33806=>1000,33807=>1000,33808=>1000,33809=>1000,33810=>1000,33811=>1000,33812=>1000,33814=>1000,33816=>1000,33819=>1000,33820=>1000,33824=>1000,33825=>1000,33827=>1000,33828=>1000,33830=>1000,33833=>1000,33835=>1000,33836=>1000,33837=>1000,33838=>1000,33839=>1000,33840=>1000,33841=>1000,33842=>1000,33843=>1000,33844=>1000,33845=>1000,33846=>1000,33847=>1000,33848=>1000,33849=>1000,33850=>1000,33851=>1000,33852=>1000,33853=>1000,33854=>1000,33855=>1000,33856=>1000,33858=>1000,33859=>1000,33860=>1000,33861=>1000,33862=>1000,33863=>1000,33864=>1000,33865=>1000,33866=>1000,33867=>1000,33868=>1000,33869=>1000,33870=>1000,33872=>1000,33873=>1000,33874=>1000,33875=>1000,33876=>1000,33877=>1000,33878=>1000,33879=>1000,33880=>1000,33881=>1000,33882=>1000,33883=>1000,33884=>1000,33885=>1000,33886=>1000,33887=>1000,33888=>1000,33889=>1000,33890=>1000,33891=>1000,33892=>1000,33893=>1000,33894=>1000,33895=>1000,33896=>1000,33897=>1000,33899=>1000,33900=>1000,33901=>1000,33902=>1000,33903=>1000,33904=>1000,33905=>1000,33906=>1000,33907=>1000,33908=>1000,33909=>1000,33910=>1000,33911=>1000,33912=>1000,33913=>1000,33914=>1000,33917=>1000,33918=>1000,33919=>1000,33920=>1000,33922=>1000,33924=>1000,33926=>1000,33928=>1000,33933=>1000,33934=>1000,33935=>1000,33936=>1000,33937=>1000,33938=>1000,33939=>1000,33940=>1000,33942=>1000,33943=>1000,33944=>1000,33945=>1000,33946=>1000,33947=>1000,33948=>1000,33949=>1000,33950=>1000,33951=>1000,33952=>1000,33953=>1000,33954=>1000,33955=>1000,33956=>1000,33959=>1000,33960=>1000,33961=>1000,33962=>1000,33963=>1000,33964=>1000,33965=>1000,33966=>1000,33967=>1000,33968=>1000,33969=>1000,33970=>1000,33972=>1000,33974=>1000,33976=>1000,33977=>1000,33978=>1000,33979=>1000,33980=>1000,33981=>1000,33982=>1000,33983=>1000,33984=>1000,33985=>1000,33986=>1000,33988=>1000,33989=>1000,33990=>1000,33991=>1000,33993=>1000,33994=>1000,33995=>1000,33996=>1000,33997=>1000,33998=>1000,33999=>1000,34000=>1000,34001=>1000,34002=>1000,34003=>1000,34004=>1000,34006=>1000,34007=>1000,34010=>1000,34011=>1000,34014=>1000,34017=>1000,34018=>1000,34020=>1000,34021=>1000,34023=>1000,34024=>1000,34025=>1000,34026=>1000,34027=>1000,34028=>1000,34030=>1000,34031=>1000,34032=>1000,34033=>1000,34034=>1000,34035=>1000,34036=>1000,34038=>1000,34039=>1000,34040=>1000,34041=>1000,34042=>1000,34043=>1000,34044=>1000,34045=>1000,34046=>1000,34047=>1000,34048=>1000,34050=>1000,34051=>1000,34052=>1000,34053=>1000,34054=>1000,34055=>1000,34056=>1000,34057=>1000,34058=>1000,34059=>1000,34060=>1000,34061=>1000,34062=>1000,34063=>1000,34064=>1000,34065=>1000,34066=>1000,34067=>1000,34068=>1000,34069=>1000,34070=>1000,34071=>1000,34072=>1000,34073=>1000,34074=>1000,34076=>1000,34077=>1000,34078=>1000,34079=>1000,34080=>1000,34081=>1000,34083=>1000,34084=>1000,34085=>1000,34086=>1000,34087=>1000,34088=>1000,34089=>1000,34090=>1000,34091=>1000,34092=>1000,34093=>1000,34094=>1000,34095=>1000,34096=>1000,34097=>1000,34099=>1000,34100=>1000,34104=>1000,34107=>1000,34109=>1000,34110=>1000,34112=>1000,34113=>1000,34114=>1000,34115=>1000,34116=>1000,34117=>1000,34118=>1000,34119=>1000,34120=>1000,34121=>1000,34122=>1000,34123=>1000,34124=>1000,34125=>1000,34126=>1000,34129=>1000,34130=>1000,34131=>1000,34132=>1000,34133=>1000,34134=>1000,34135=>1000,34136=>1000,34137=>1000,34138=>1000,34139=>1000,34141=>1000,34142=>1000,34143=>1000,34144=>1000,34145=>1000,34146=>1000,34147=>1000,34148=>1000,34149=>1000,34150=>1000,34151=>1000,34152=>1000,34153=>1000,34154=>1000,34155=>1000,34156=>1000,34157=>1000,34158=>1000,34159=>1000,34160=>1000,34161=>1000,34163=>1000,34165=>1000,34166=>1000,34167=>1000,34168=>1000,34169=>1000,34170=>1000,34171=>1000,34172=>1000,34174=>1000,34176=>1000,34177=>1000,34178=>1000,34179=>1000,34180=>1000,34181=>1000,34182=>1000,34183=>1000,34184=>1000,34185=>1000,34186=>1000,34187=>1000,34188=>1000,34189=>1000,34190=>1000,34191=>1000,34192=>1000,34193=>1000,34195=>1000,34196=>1000,34197=>1000,34198=>1000,34199=>1000,34200=>1000,34201=>1000,34202=>1000,34203=>1000,34204=>1000,34205=>1000,34206=>1000,34207=>1000,34208=>1000,34209=>1000,34210=>1000,34211=>1000,34212=>1000,34214=>1000,34215=>1000,34216=>1000,34217=>1000,34218=>1000,34223=>1000,34224=>1000,34225=>1000,34227=>1000,34228=>1000,34229=>1000,34230=>1000,34231=>1000,34232=>1000,34233=>1000,34234=>1000,34237=>1000,34238=>1000,34239=>1000,34240=>1000,34241=>1000,34242=>1000,34243=>1000,34244=>1000,34245=>1000,34246=>1000,34247=>1000,34248=>1000,34249=>1000,34251=>1000,34253=>1000,34254=>1000,34255=>1000,34256=>1000,34257=>1000,34258=>1000,34261=>1000,34262=>1000,34263=>1000,34264=>1000,34265=>1000,34266=>1000,34268=>1000,34269=>1000,34270=>1000,34271=>1000,34272=>1000,34273=>1000,34274=>1000,34275=>1000,34276=>1000,34277=>1000,34278=>1000,34280=>1000,34281=>1000,34282=>1000,34283=>1000,34284=>1000,34285=>1000,34286=>1000,34287=>1000,34288=>1000,34289=>1000,34290=>1000,34292=>1000,34294=>1000,34295=>1000,34296=>1000,34297=>1000,34298=>1000,34299=>1000,34300=>1000,34301=>1000,34302=>1000,34303=>1000,34304=>1000,34305=>1000,34306=>1000,34308=>1000,34309=>1000,34310=>1000,34311=>1000,34313=>1000,34314=>1000,34315=>1000,34316=>1000,34317=>1000,34319=>1000,34320=>1000,34321=>1000,34323=>1000,34324=>1000,34326=>1000,34327=>1000,34328=>1000,34329=>1000,34330=>1000,34331=>1000,34332=>1000,34334=>1000,34335=>1000,34336=>1000,34337=>1000,34338=>1000,34339=>1000,34340=>1000,34341=>1000,34342=>1000,34343=>1000,34344=>1000,34345=>1000,34346=>1000,34348=>1000,34349=>1000,34350=>1000,34351=>1000,34353=>1000,34354=>1000,34355=>1000,34356=>1000,34357=>1000,34358=>1000,34360=>1000,34361=>1000,34362=>1000,34363=>1000,34364=>1000,34366=>1000,34367=>1000,34368=>1000,34370=>1000,34371=>1000,34373=>1000,34374=>1000,34375=>1000,34376=>1000,34379=>1000,34380=>1000,34381=>1000,34382=>1000,34384=>1000,34386=>1000,34387=>1000,34388=>1000,34389=>1000,34390=>1000,34393=>1000,34395=>1000,34396=>1000,34398=>1000,34399=>1000,34401=>1000,34402=>1000,34403=>1000,34404=>1000,34405=>1000,34407=>1000,34408=>1000,34409=>1000,34410=>1000,34411=>1000,34412=>1000,34413=>1000,34414=>1000,34415=>1000,34416=>1000,34417=>1000,34418=>1000,34419=>1000,34420=>1000,34423=>1000,34425=>1000,34426=>1000,34427=>1000,34428=>1000,34430=>1000,34437=>1000,34438=>1000,34439=>1000,34442=>1000,34443=>1000,34444=>1000,34445=>1000,34446=>1000,34448=>1000,34449=>1000,34450=>1000,34451=>1000,34452=>1000,34453=>1000,34454=>1000,34455=>1000,34456=>1000,34457=>1000,34458=>1000,34460=>1000,34461=>1000,34462=>1000,34464=>1000,34465=>1000,34466=>1000,34467=>1000,34468=>1000,34469=>1000,34471=>1000,34472=>1000,34473=>1000,34474=>1000,34477=>1000,34479=>1000,34480=>1000,34481=>1000,34482=>1000,34483=>1000,34484=>1000,34485=>1000,34486=>1000,34487=>1000,34488=>1000,34489=>1000,34490=>1000,34491=>1000,34492=>1000,34493=>1000,34494=>1000,34495=>1000,34496=>1000,34497=>1000,34498=>1000,34499=>1000,34500=>1000,34501=>1000,34502=>1000,34503=>1000,34504=>1000,34505=>1000,34507=>1000,34508=>1000,34512=>1000,34513=>1000,34515=>1000,34516=>1000,34518=>1000,34519=>1000,34520=>1000,34521=>1000,34522=>1000,34523=>1000,34524=>1000,34525=>1000,34526=>1000,34527=>1000,34530=>1000,34531=>1000,34532=>1000,34534=>1000,34536=>1000,34537=>1000,34538=>1000,34539=>1000,34540=>1000,34541=>1000,34543=>1000,34549=>1000,34550=>1000,34551=>1000,34552=>1000,34553=>1000,34554=>1000,34555=>1000,34558=>1000,34560=>1000,34561=>1000,34562=>1000,34563=>1000,34564=>1000,34565=>1000,34566=>1000,34567=>1000,34568=>1000,34569=>1000,34570=>1000,34571=>1000,34572=>1000,34573=>1000,34574=>1000,34577=>1000,34578=>1000,34579=>1000,34581=>1000,34584=>1000,34585=>1000,34586=>1000,34587=>1000,34588=>1000,34590=>1000,34592=>1000,34593=>1000,34594=>1000,34595=>1000,34596=>1000,34597=>1000,34598=>1000,34599=>1000,34600=>1000,34601=>1000,34602=>1000,34604=>1000,34605=>1000,34606=>1000,34608=>1000,34609=>1000,34610=>1000,34611=>1000,34612=>1000,34613=>1000,34615=>1000,34616=>1000,34618=>1000,34619=>1000,34620=>1000,34622=>1000,34623=>1000,34624=>1000,34625=>1000,34626=>1000,34627=>1000,34630=>1000,34636=>1000,34637=>1000,34638=>1000,34639=>1000,34640=>1000,34641=>1000,34642=>1000,34643=>1000,34644=>1000,34645=>1000,34646=>1000,34647=>1000,34648=>1000,34649=>1000,34650=>1000,34651=>1000,34652=>1000,34653=>1000,34654=>1000,34655=>1000,34656=>1000,34657=>1000,34658=>1000,34659=>1000,34660=>1000,34661=>1000,34662=>1000,34663=>1000,34664=>1000,34665=>1000,34666=>1000,34667=>1000,34668=>1000,34669=>1000,34670=>1000,34671=>1000,34672=>1000,34673=>1000,34675=>1000,34676=>1000,34677=>1000,34678=>1000,34679=>1000,34680=>1000,34681=>1000,34682=>1000,34683=>1000,34685=>1000,34689=>1000,34690=>1000,34691=>1000,34692=>1000,34693=>1000,34694=>1000,34695=>1000,34696=>1000,34697=>1000,34699=>1000,34700=>1000,34701=>1000,34703=>1000,34704=>1000,34705=>1000,34706=>1000,34707=>1000,34708=>1000,34710=>1000,34711=>1000,34712=>1000,34714=>1000,34715=>1000,34716=>1000,34717=>1000,34718=>1000,34719=>1000,34722=>1000,34723=>1000,34724=>1000,34725=>1000,34729=>1000,34730=>1000,34731=>1000,34732=>1000,34733=>1000,34734=>1000,34735=>1000,34736=>1000,34737=>1000,34738=>1000,34739=>1000,34740=>1000,34741=>1000,34742=>1000,34743=>1000,34744=>1000,34745=>1000,34746=>1000,34747=>1000,34748=>1000,34749=>1000,34750=>1000,34751=>1000,34752=>1000,34753=>1000,34754=>1000,34755=>1000,34756=>1000,34757=>1000,34758=>1000,34760=>1000,34761=>1000,34762=>1000,34763=>1000,34764=>1000,34766=>1000,34769=>1000,34770=>1000,34771=>1000,34772=>1000,34774=>1000,34775=>1000,34776=>1000,34777=>1000,34778=>1000,34779=>1000,34780=>1000,34781=>1000,34782=>1000,34783=>1000,34784=>1000,34785=>1000,34786=>1000,34787=>1000,34788=>1000,34789=>1000,34790=>1000,34791=>1000,34792=>1000,34794=>1000,34795=>1000,34796=>1000,34797=>1000,34798=>1000,34799=>1000,34802=>1000,34803=>1000,34804=>1000,34805=>1000,34806=>1000,34807=>1000,34809=>1000,34810=>1000,34811=>1000,34812=>1000,34814=>1000,34815=>1000,34816=>1000,34817=>1000,34818=>1000,34819=>1000,34820=>1000,34821=>1000,34822=>1000,34824=>1000,34825=>1000,34826=>1000,34827=>1000,34828=>1000,34829=>1000,34831=>1000,34832=>1000,34833=>1000,34835=>1000,34836=>1000,34837=>1000,34838=>1000,34839=>1000,34840=>1000,34841=>1000,34843=>1000,34844=>1000,34845=>1000,34847=>1000,34848=>1000,34849=>1000,34850=>1000,34851=>1000,34852=>1000,34853=>1000,34854=>1000,34855=>1000,34856=>1000,34857=>1000,34858=>1000,34859=>1000,34860=>1000,34861=>1000,34862=>1000,34863=>1000,34864=>1000,34865=>1000,34866=>1000,34867=>1000,34869=>1000,34870=>1000,34871=>1000,34872=>1000,34873=>1000,34875=>1000,34876=>1000,34877=>1000,34878=>1000,34879=>1000,34880=>1000,34881=>1000,34882=>1000,34883=>1000,34884=>1000,34885=>1000,34886=>1000,34888=>1000,34890=>1000,34891=>1000,34892=>1000,34893=>1000,34894=>1000,34895=>1000,34898=>1000,34899=>1000,34901=>1000,34902=>1000,34903=>1000,34905=>1000,34906=>1000,34907=>1000,34909=>1000,34910=>1000,34912=>1000,34913=>1000,34914=>1000,34915=>1000,34916=>1000,34917=>1000,34919=>1000,34920=>1000,34921=>1000,34922=>1000,34923=>1000,34925=>1000,34926=>1000,34927=>1000,34928=>1000,34929=>1000,34930=>1000,34932=>1000,34933=>1000,34934=>1000,34935=>1000,34937=>1000,34940=>1000,34941=>1000,34942=>1000,34943=>1000,34944=>1000,34945=>1000,34946=>1000,34947=>1000,34948=>1000,34951=>1000,34952=>1000,34953=>1000,34955=>1000,34956=>1000,34957=>1000,34958=>1000,34959=>1000,34960=>1000,34961=>1000,34962=>1000,34963=>1000,34965=>1000,34966=>1000,34967=>1000,34968=>1000,34969=>1000,34970=>1000,34971=>1000,34972=>1000,34973=>1000,34974=>1000,34975=>1000,34976=>1000,34977=>1000,34978=>1000,34980=>1000,34983=>1000,34984=>1000,34986=>1000,34987=>1000,34988=>1000,34990=>1000,34993=>1000,34994=>1000,34996=>1000,34997=>1000,34998=>1000,34999=>1000,35000=>1000,35001=>1000,35002=>1000,35004=>1000,35005=>1000,35006=>1000,35007=>1000,35008=>1000,35009=>1000,35010=>1000,35013=>1000,35015=>1000,35017=>1000,35018=>1000,35019=>1000,35020=>1000,35021=>1000,35022=>1000,35023=>1000,35024=>1000,35026=>1000,35028=>1000,35029=>1000,35030=>1000,35031=>1000,35032=>1000,35033=>1000,35034=>1000,35035=>1000,35036=>1000,35037=>1000,35038=>1000,35039=>1000,35041=>1000,35046=>1000,35047=>1000,35048=>1000,35051=>1000,35052=>1000,35054=>1000,35055=>1000,35056=>1000,35057=>1000,35058=>1000,35059=>1000,35060=>1000,35061=>1000,35062=>1000,35063=>1000,35064=>1000,35065=>1000,35066=>1000,35067=>1000,35068=>1000,35069=>1000,35070=>1000,35071=>1000,35072=>1000,35073=>1000,35074=>1000,35077=>1000,35078=>1000,35079=>1000,35081=>1000,35082=>1000,35083=>1000,35084=>1000,35086=>1000,35088=>1000,35089=>1000,35090=>1000,35091=>1000,35092=>1000,35093=>1000,35094=>1000,35095=>1000,35096=>1000,35097=>1000,35098=>1000,35102=>1000,35103=>1000,35105=>1000,35106=>1000,35107=>1000,35108=>1000,35109=>1000,35110=>1000,35111=>1000,35113=>1000,35114=>1000,35115=>1000,35116=>1000,35117=>1000,35118=>1000,35119=>1000,35120=>1000,35121=>1000,35122=>1000,35123=>1000,35125=>1000,35126=>1000,35127=>1000,35128=>1000,35131=>1000,35132=>1000,35133=>1000,35134=>1000,35137=>1000,35138=>1000,35139=>1000,35140=>1000,35142=>1000,35143=>1000,35145=>1000,35147=>1000,35148=>1000,35149=>1000,35151=>1000,35152=>1000,35153=>1000,35154=>1000,35155=>1000,35156=>1000,35158=>1000,35159=>1000,35160=>1000,35161=>1000,35162=>1000,35163=>1000,35164=>1000,35165=>1000,35166=>1000,35167=>1000,35168=>1000,35169=>1000,35170=>1000,35171=>1000,35172=>1000,35173=>1000,35174=>1000,35177=>1000,35178=>1000,35179=>1000,35180=>1000,35181=>1000,35182=>1000,35183=>1000,35185=>1000,35186=>1000,35187=>1000,35188=>1000,35190=>1000,35191=>1000,35193=>1000,35194=>1000,35195=>1000,35196=>1000,35198=>1000,35199=>1000,35200=>1000,35201=>1000,35202=>1000,35203=>1000,35205=>1000,35206=>1000,35207=>1000,35208=>1000,35209=>1000,35210=>1000,35211=>1000,35215=>1000,35217=>1000,35219=>1000,35220=>1000,35221=>1000,35222=>1000,35223=>1000,35224=>1000,35227=>1000,35228=>1000,35229=>1000,35230=>1000,35231=>1000,35233=>1000,35234=>1000,35235=>1000,35236=>1000,35237=>1000,35238=>1000,35239=>1000,35241=>1000,35242=>1000,35244=>1000,35245=>1000,35246=>1000,35247=>1000,35250=>1000,35254=>1000,35255=>1000,35257=>1000,35258=>1000,35260=>1000,35261=>1000,35262=>1000,35263=>1000,35264=>1000,35265=>1000,35270=>1000,35282=>1000,35283=>1000,35284=>1000,35285=>1000,35286=>1000,35289=>1000,35290=>1000,35291=>1000,35292=>1000,35293=>1000,35295=>1000,35296=>1000,35297=>1000,35298=>1000,35299=>1000,35300=>1000,35301=>1000,35302=>1000,35303=>1000,35304=>1000,35305=>1000,35307=>1000,35308=>1000,35309=>1000,35312=>1000,35313=>1000,35314=>1000,35315=>1000,35316=>1000,35318=>1000,35319=>1000,35320=>1000,35322=>1000,35323=>1000,35324=>1000,35326=>1000,35327=>1000,35328=>1000,35330=>1000,35331=>1000,35332=>1000,35335=>1000,35336=>1000,35338=>1000,35340=>1000,35342=>1000,35343=>1000,35344=>1000,35345=>1000,35346=>1000,35347=>1000,35349=>1000,35350=>1000,35351=>1000,35352=>1000,35355=>1000,35356=>1000,35357=>1000,35358=>1000,35359=>1000,35362=>1000,35363=>1000,35365=>1000,35367=>1000,35369=>1000,35370=>1000,35371=>1000,35372=>1000,35373=>1000,35376=>1000,35377=>1000,35380=>1000,35382=>1000,35384=>1000,35385=>1000,35386=>1000,35387=>1000,35388=>1000,35389=>1000,35390=>1000,35391=>1000,35392=>1000,35393=>1000,35396=>1000,35397=>1000,35398=>1000,35400=>1000,35401=>1000,35402=>1000,35404=>1000,35405=>1000,35406=>1000,35407=>1000,35408=>1000,35409=>1000,35410=>1000,35412=>1000,35413=>1000,35414=>1000,35415=>1000,35416=>1000,35417=>1000,35419=>1000,35422=>1000,35424=>1000,35425=>1000,35426=>1000,35427=>1000,35430=>1000,35431=>1000,35432=>1000,35433=>1000,35435=>1000,35436=>1000,35437=>1000,35438=>1000,35440=>1000,35441=>1000,35442=>1000,35443=>1000,35444=>1000,35445=>1000,35446=>1000,35447=>1000,35449=>1000,35450=>1000,35451=>1000,35452=>1000,35454=>1000,35455=>1000,35457=>1000,35458=>1000,35459=>1000,35460=>1000,35461=>1000,35462=>1000,35463=>1000,35467=>1000,35468=>1000,35469=>1000,35471=>1000,35472=>1000,35473=>1000,35474=>1000,35475=>1000,35476=>1000,35477=>1000,35478=>1000,35480=>1000,35481=>1000,35482=>1000,35484=>1000,35486=>1000,35488=>1000,35489=>1000,35491=>1000,35492=>1000,35493=>1000,35494=>1000,35495=>1000,35496=>1000,35497=>1000,35498=>1000,35499=>1000,35500=>1000,35503=>1000,35504=>1000,35506=>1000,35508=>1000,35510=>1000,35512=>1000,35513=>1000,35514=>1000,35515=>1000,35516=>1000,35517=>1000,35518=>1000,35519=>1000,35520=>1000,35522=>1000,35523=>1000,35524=>1000,35525=>1000,35526=>1000,35527=>1000,35528=>1000,35529=>1000,35531=>1000,35532=>1000,35533=>1000,35535=>1000,35537=>1000,35538=>1000,35539=>1000,35540=>1000,35541=>1000,35542=>1000,35543=>1000,35544=>1000,35545=>1000,35546=>1000,35547=>1000,35548=>1000,35549=>1000,35550=>1000,35551=>1000,35552=>1000,35553=>1000,35554=>1000,35556=>1000,35558=>1000,35559=>1000,35560=>1000,35562=>1000,35563=>1000,35565=>1000,35566=>1000,35567=>1000,35568=>1000,35569=>1000,35570=>1000,35571=>1000,35572=>1000,35573=>1000,35574=>1000,35575=>1000,35576=>1000,35577=>1000,35578=>1000,35579=>1000,35580=>1000,35582=>1000,35583=>1000,35584=>1000,35585=>1000,35586=>1000,35588=>1000,35589=>1000,35590=>1000,35591=>1000,35592=>1000,35594=>1000,35595=>1000,35596=>1000,35597=>1000,35598=>1000,35599=>1000,35600=>1000,35601=>1000,35602=>1000,35603=>1000,35604=>1000,35605=>1000,35606=>1000,35607=>1000,35608=>1000,35609=>1000,35610=>1000,35611=>1000,35612=>1000,35613=>1000,35614=>1000,35615=>1000,35616=>1000,35618=>1000,35619=>1000,35620=>1000,35621=>1000,35622=>1000,35623=>1000,35624=>1000,35626=>1000,35627=>1000,35628=>1000,35629=>1000,35630=>1000,35631=>1000,35632=>1000,35633=>1000,35635=>1000,35637=>1000,35638=>1000,35639=>1000,35641=>1000,35642=>1000,35643=>1000,35644=>1000,35645=>1000,35646=>1000,35647=>1000,35648=>1000,35649=>1000,35650=>1000,35651=>1000,35653=>1000,35654=>1000,35655=>1000,35656=>1000,35657=>1000,35658=>1000,35659=>1000,35660=>1000,35661=>1000,35662=>1000,35663=>1000,35664=>1000,35665=>1000,35666=>1000,35667=>1000,35668=>1000,35669=>1000,35670=>1000,35671=>1000,35672=>1000,35673=>1000,35674=>1000,35676=>1000,35677=>1000,35678=>1000,35679=>1000,35680=>1000,35682=>1000,35683=>1000,35685=>1000,35686=>1000,35687=>1000,35688=>1000,35689=>1000,35690=>1000,35691=>1000,35692=>1000,35693=>1000,35695=>1000,35696=>1000,35700=>1000,35703=>1000,35704=>1000,35705=>1000,35706=>1000,35707=>1000,35709=>1000,35710=>1000,35711=>1000,35712=>1000,35713=>1000,35714=>1000,35715=>1000,35716=>1000,35717=>1000,35718=>1000,35720=>1000,35722=>1000,35723=>1000,35724=>1000,35726=>1000,35727=>1000,35728=>1000,35730=>1000,35731=>1000,35732=>1000,35733=>1000,35734=>1000,35736=>1000,35737=>1000,35738=>1000,35739=>1000,35740=>1000,35742=>1000,35743=>1000,35744=>1000,35774=>1000,35810=>1000,35895=>1000,35897=>1000,35899=>1000,35900=>1000,35901=>1000,35902=>1000,35903=>1000,35905=>1000,35906=>1000,35907=>1000,35909=>1000,35910=>1000,35911=>1000,35912=>1000,35913=>1000,35914=>1000,35915=>1000,35916=>1000,35917=>1000,35918=>1000,35919=>1000,35920=>1000,35921=>1000,35924=>1000,35925=>1000,35926=>1000,35927=>1000,35930=>1000,35932=>1000,35933=>1000,35935=>1000,35937=>1000,35938=>1000,35940=>1000,35941=>1000,35942=>1000,35944=>1000,35945=>1000,35946=>1000,35947=>1000,35948=>1000,35949=>1000,35951=>1000,35952=>1000,35953=>1000,35954=>1000,35955=>1000,35957=>1000,35958=>1000,35959=>1000,35960=>1000,35961=>1000,35962=>1000,35963=>1000,35965=>1000,35968=>1000,35969=>1000,35970=>1000,35972=>1000,35973=>1000,35974=>1000,35977=>1000,35978=>1000,35980=>1000,35981=>1000,35983=>1000,35984=>1000,35985=>1000,35986=>1000,35987=>1000,35988=>1000,35989=>1000,35991=>1000,35992=>1000,35993=>1000,35994=>1000,35995=>1000,35996=>1000,35997=>1000,35998=>1000,35999=>1000,36000=>1000,36001=>1000,36002=>1000,36003=>1000,36004=>1000,36005=>1000,36007=>1000,36008=>1000,36009=>1000,36010=>1000,36011=>1000,36012=>1000,36013=>1000,36015=>1000,36016=>1000,36018=>1000,36019=>1000,36020=>1000,36021=>1000,36022=>1000,36023=>1000,36024=>1000,36025=>1000,36026=>1000,36027=>1000,36028=>1000,36029=>1000,36030=>1000,36031=>1000,36032=>1000,36033=>1000,36034=>1000,36035=>1000,36036=>1000,36037=>1000,36039=>1000,36040=>1000,36042=>1000,36044=>1000,36045=>1000,36047=>1000,36049=>1000,36050=>1000,36051=>1000,36052=>1000,36053=>1000,36054=>1000,36055=>1000,36057=>1000,36058=>1000,36059=>1000,36060=>1000,36061=>1000,36062=>1000,36063=>1000,36064=>1000,36065=>1000,36066=>1000,36067=>1000,36068=>1000,36069=>1000,36070=>1000,36071=>1000,36072=>1000,36073=>1000,36074=>1000,36075=>1000,36076=>1000,36077=>1000,36078=>1000,36080=>1000,36081=>1000,36082=>1000,36083=>1000,36084=>1000,36085=>1000,36087=>1000,36088=>1000,36089=>1000,36090=>1000,36091=>1000,36092=>1000,36093=>1000,36094=>1000,36096=>1000,36098=>1000,36099=>1000,36100=>1000,36101=>1000,36102=>1000,36103=>1000,36104=>1000,36105=>1000,36106=>1000,36107=>1000,36108=>1000,36109=>1000,36111=>1000,36112=>1000,36113=>1000,36114=>1000,36115=>1000,36116=>1000,36117=>1000,36118=>1000,36119=>1000,36120=>1000,36121=>1000,36123=>1000,36124=>1000,36125=>1000,36196=>1000,36198=>1000,36199=>1000,36200=>1000,36201=>1000,36203=>1000,36204=>1000,36205=>1000,36206=>1000,36207=>1000,36208=>1000,36210=>1000,36211=>1000,36212=>1000,36214=>1000,36215=>1000,36216=>1000,36217=>1000,36218=>1000,36219=>1000,36221=>1000,36224=>1000,36225=>1000,36226=>1000,36228=>1000,36229=>1000,36233=>1000,36234=>1000,36236=>1000,36237=>1000,36238=>1000,36239=>1000,36240=>1000,36241=>1000,36242=>1000,36243=>1000,36244=>1000,36245=>1000,36246=>1000,36249=>1000,36251=>1000,36252=>1000,36255=>1000,36256=>1000,36257=>1000,36259=>1000,36261=>1000,36262=>1000,36263=>1000,36264=>1000,36265=>1000,36266=>1000,36267=>1000,36268=>1000,36269=>1000,36270=>1000,36271=>1000,36274=>1000,36275=>1000,36276=>1000,36277=>1000,36278=>1000,36279=>1000,36281=>1000,36282=>1000,36284=>1000,36286=>1000,36287=>1000,36288=>1000,36289=>1000,36290=>1000,36291=>1000,36293=>1000,36294=>1000,36295=>1000,36296=>1000,36299=>1000,36300=>1000,36301=>1000,36302=>1000,36303=>1000,36304=>1000,36305=>1000,36307=>1000,36308=>1000,36309=>1000,36310=>1000,36311=>1000,36312=>1000,36313=>1000,36314=>1000,36315=>1000,36316=>1000,36317=>1000,36319=>1000,36320=>1000,36321=>1000,36322=>1000,36323=>1000,36324=>1000,36326=>1000,36327=>1000,36328=>1000,36329=>1000,36330=>1000,36331=>1000,36332=>1000,36334=>1000,36335=>1000,36336=>1000,36337=>1000,36338=>1000,36339=>1000,36340=>1000,36346=>1000,36348=>1000,36349=>1000,36350=>1000,36351=>1000,36352=>1000,36353=>1000,36354=>1000,36355=>1000,36356=>1000,36357=>1000,36358=>1000,36359=>1000,36361=>1000,36362=>1000,36365=>1000,36366=>1000,36367=>1000,36368=>1000,36369=>1000,36370=>1000,36371=>1000,36372=>1000,36373=>1000,36374=>1000,36375=>1000,36376=>1000,36377=>1000,36378=>1000,36379=>1000,36380=>1000,36381=>1000,36382=>1000,36383=>1000,36384=>1000,36385=>1000,36386=>1000,36387=>1000,36388=>1000,36389=>1000,36390=>1000,36391=>1000,36392=>1000,36393=>1000,36394=>1000,36395=>1000,36397=>1000,36398=>1000,36400=>1000,36401=>1000,36403=>1000,36404=>1000,36405=>1000,36406=>1000,36408=>1000,36409=>1000,36410=>1000,36412=>1000,36413=>1000,36414=>1000,36415=>1000,36416=>1000,36417=>1000,36418=>1000,36420=>1000,36421=>1000,36422=>1000,36423=>1000,36424=>1000,36425=>1000,36426=>1000,36427=>1000,36428=>1000,36429=>1000,36430=>1000,36431=>1000,36432=>1000,36435=>1000,36436=>1000,36437=>1000,36438=>1000,36439=>1000,36441=>1000,36442=>1000,36443=>1000,36444=>1000,36445=>1000,36446=>1000,36447=>1000,36448=>1000,36449=>1000,36450=>1000,36451=>1000,36452=>1000,36453=>1000,36454=>1000,36455=>1000,36456=>1000,36457=>1000,36458=>1000,36460=>1000,36461=>1000,36463=>1000,36465=>1000,36466=>1000,36467=>1000,36468=>1000,36469=>1000,36470=>1000,36471=>1000,36472=>1000,36474=>1000,36475=>1000,36476=>1000,36478=>1000,36480=>1000,36481=>1000,36482=>1000,36484=>1000,36485=>1000,36486=>1000,36487=>1000,36488=>1000,36489=>1000,36490=>1000,36491=>1000,36492=>1000,36493=>1000,36494=>1000,36496=>1000,36497=>1000,36498=>1000,36499=>1000,36500=>1000,36501=>1000,36502=>1000,36503=>1000,36504=>1000,36506=>1000,36509=>1000,36510=>1000,36511=>1000,36512=>1000,36513=>1000,36515=>1000,36516=>1000,36517=>1000,36518=>1000,36519=>1000,36520=>1000,36521=>1000,36522=>1000,36523=>1000,36524=>1000,36525=>1000,36528=>1000,36530=>1000,36534=>1000,36537=>1000,36538=>1000,36540=>1000,36541=>1000,36544=>1000,36546=>1000,36547=>1000,36553=>1000,36554=>1000,36555=>1000,36556=>1000,36557=>1000,36558=>1000,36559=>1000,36561=>1000,36562=>1000,36563=>1000,36564=>1000,36567=>1000,36568=>1000,36570=>1000,36571=>1000,36572=>1000,36573=>1000,36574=>1000,36575=>1000,36576=>1000,36577=>1000,36578=>1000,36580=>1000,36581=>1000,36582=>1000,36583=>1000,36584=>1000,36585=>1000,36587=>1000,36588=>1000,36589=>1000,36590=>1000,36591=>1000,36593=>1000,36594=>1000,36596=>1000,36597=>1000,36598=>1000,36599=>1000,36600=>1000,36601=>1000,36602=>1000,36603=>1000,36604=>1000,36606=>1000,36607=>1000,36608=>1000,36609=>1000,36610=>1000,36611=>1000,36613=>1000,36614=>1000,36615=>1000,36616=>1000,36617=>1000,36618=>1000,36619=>1000,36621=>1000,36622=>1000,36624=>1000,36625=>1000,36626=>1000,36627=>1000,36628=>1000,36629=>1000,36630=>1000,36631=>1000,36632=>1000,36633=>1000,36634=>1000,36635=>1000,36636=>1000,36637=>1000,36638=>1000,36639=>1000,36640=>1000,36643=>1000,36644=>1000,36645=>1000,36646=>1000,36649=>1000,36650=>1000,36652=>1000,36653=>1000,36654=>1000,36655=>1000,36656=>1000,36658=>1000,36659=>1000,36660=>1000,36661=>1000,36662=>1000,36663=>1000,36664=>1000,36665=>1000,36667=>1000,36668=>1000,36670=>1000,36671=>1000,36672=>1000,36673=>1000,36674=>1000,36675=>1000,36676=>1000,36677=>1000,36678=>1000,36679=>1000,36680=>1000,36681=>1000,36682=>1000,36683=>1000,36685=>1000,36686=>1000,36687=>1000,36688=>1000,36689=>1000,36690=>1000,36691=>1000,36692=>1000,36693=>1000,36694=>1000,36695=>1000,36696=>1000,36697=>1000,36698=>1000,36699=>1000,36700=>1000,36701=>1000,36702=>1000,36703=>1000,36704=>1000,36705=>1000,36706=>1000,36707=>1000,36708=>1000,36710=>1000,36711=>1000,36718=>1000,36755=>1000,36763=>1000,36764=>1000,36767=>1000,36768=>1000,36771=>1000,36773=>1000,36774=>1000,36775=>1000,36776=>1000,36781=>1000,36782=>1000,36783=>1000,36784=>1000,36785=>1000,36786=>1000,36787=>1000,36788=>1000,36789=>1000,36790=>1000,36791=>1000,36792=>1000,36793=>1000,36794=>1000,36795=>1000,36796=>1000,36798=>1000,36799=>1000,36801=>1000,36802=>1000,36804=>1000,36805=>1000,36806=>1000,36809=>1000,36810=>1000,36811=>1000,36812=>1000,36813=>1000,36814=>1000,36815=>1000,36816=>1000,36817=>1000,36818=>1000,36819=>1000,36820=>1000,36821=>1000,36822=>1000,36823=>1000,36826=>1000,36832=>1000,36833=>1000,36834=>1000,36835=>1000,36836=>1000,36837=>1000,36838=>1000,36840=>1000,36842=>1000,36843=>1000,36845=>1000,36846=>1000,36848=>1000,36852=>1000,36853=>1000,36854=>1000,36855=>1000,36856=>1000,36857=>1000,36858=>1000,36859=>1000,36860=>1000,36861=>1000,36862=>1000,36863=>1000,36864=>1000,36865=>1000,36866=>1000,36867=>1000,36868=>1000,36869=>1000,36870=>1000,36872=>1000,36875=>1000,36876=>1000,36877=>1000,36879=>1000,36880=>1000,36881=>1000,36882=>1000,36884=>1000,36885=>1000,36886=>1000,36887=>1000,36889=>1000,36890=>1000,36891=>1000,36892=>1000,36893=>1000,36894=>1000,36895=>1000,36896=>1000,36897=>1000,36898=>1000,36899=>1000,36900=>1000,36909=>1000,36910=>1000,36911=>1000,36913=>1000,36914=>1000,36915=>1000,36916=>1000,36917=>1000,36918=>1000,36919=>1000,36920=>1000,36924=>1000,36925=>1000,36926=>1000,36927=>1000,36929=>1000,36930=>1000,36932=>1000,36934=>1000,36935=>1000,36937=>1000,36938=>1000,36939=>1000,36940=>1000,36941=>1000,36942=>1000,36943=>1000,36944=>1000,36945=>1000,36946=>1000,36947=>1000,36948=>1000,36949=>1000,36950=>1000,36952=>1000,36953=>1000,36955=>1000,36956=>1000,36957=>1000,36958=>1000,36960=>1000,36961=>1000,36962=>1000,36963=>1000,36964=>1000,36967=>1000,36968=>1000,36969=>1000,36971=>1000,36972=>1000,36973=>1000,36974=>1000,36975=>1000,36976=>1000,36978=>1000,36979=>1000,36980=>1000,36981=>1000,36982=>1000,36983=>1000,36984=>1000,36985=>1000,36986=>1000,36987=>1000,36988=>1000,36989=>1000,36990=>1000,36991=>1000,36992=>1000,36993=>1000,36994=>1000,36995=>1000,36996=>1000,36997=>1000,36998=>1000,36999=>1000,37000=>1000,37002=>1000,37003=>1000,37005=>1000,37007=>1000,37008=>1000,37009=>1000,37012=>1000,37013=>1000,37015=>1000,37016=>1000,37017=>1000,37019=>1000,37022=>1000,37023=>1000,37024=>1000,37025=>1000,37026=>1000,37027=>1000,37029=>1000,37030=>1000,37031=>1000,37032=>1000,37034=>1000,37038=>1000,37039=>1000,37040=>1000,37041=>1000,37042=>1000,37043=>1000,37044=>1000,37045=>1000,37046=>1000,37048=>1000,37051=>1000,37053=>1000,37054=>1000,37055=>1000,37057=>1000,37059=>1000,37060=>1000,37061=>1000,37063=>1000,37064=>1000,37066=>1000,37067=>1000,37070=>1000,37076=>1000,37077=>1000,37078=>1000,37079=>1000,37080=>1000,37081=>1000,37082=>1000,37083=>1000,37084=>1000,37085=>1000,37087=>1000,37088=>1000,37089=>1000,37090=>1000,37091=>1000,37092=>1000,37093=>1000,37096=>1000,37097=>1000,37098=>1000,37099=>1000,37100=>1000,37101=>1000,37103=>1000,37104=>1000,37105=>1000,37106=>1000,37107=>1000,37108=>1000,37109=>1000,37113=>1000,37114=>1000,37115=>1000,37116=>1000,37117=>1000,37118=>1000,37119=>1000,37120=>1000,37121=>1000,37122=>1000,37123=>1000,37124=>1000,37125=>1000,37126=>1000,37127=>1000,37128=>1000,37129=>1000,37131=>1000,37133=>1000,37134=>1000,37135=>1000,37136=>1000,37137=>1000,37138=>1000,37140=>1000,37142=>1000,37143=>1000,37144=>1000,37145=>1000,37146=>1000,37147=>1000,37148=>1000,37149=>1000,37150=>1000,37151=>1000,37152=>1000,37153=>1000,37154=>1000,37155=>1000,37156=>1000,37158=>1000,37159=>1000,37160=>1000,37161=>1000,37162=>1000,37163=>1000,37164=>1000,37165=>1000,37166=>1000,37167=>1000,37168=>1000,37169=>1000,37170=>1000,37171=>1000,37172=>1000,37173=>1000,37174=>1000,37176=>1000,37177=>1000,37178=>1000,37179=>1000,37182=>1000,37183=>1000,37184=>1000,37185=>1000,37187=>1000,37188=>1000,37189=>1000,37190=>1000,37191=>1000,37192=>1000,37193=>1000,37194=>1000,37195=>1000,37196=>1000,37197=>1000,37198=>1000,37199=>1000,37200=>1000,37201=>1000,37202=>1000,37203=>1000,37205=>1000,37206=>1000,37207=>1000,37208=>1000,37209=>1000,37210=>1000,37212=>1000,37214=>1000,37215=>1000,37216=>1000,37217=>1000,37218=>1000,37219=>1000,37220=>1000,37221=>1000,37223=>1000,37224=>1000,37225=>1000,37226=>1000,37228=>1000,37230=>1000,37231=>1000,37232=>1000,37234=>1000,37235=>1000,37236=>1000,37237=>1000,37238=>1000,37239=>1000,37240=>1000,37241=>1000,37242=>1000,37244=>1000,37248=>1000,37249=>1000,37250=>1000,37251=>1000,37252=>1000,37253=>1000,37254=>1000,37255=>1000,37257=>1000,37258=>1000,37259=>1000,37260=>1000,37261=>1000,37262=>1000,37263=>1000,37264=>1000,37265=>1000,37266=>1000,37267=>1000,37270=>1000,37273=>1000,37274=>1000,37275=>1000,37276=>1000,37277=>1000,37278=>1000,37279=>1000,37280=>1000,37281=>1000,37282=>1000,37283=>1000,37285=>1000,37287=>1000,37288=>1000,37289=>1000,37290=>1000,37291=>1000,37292=>1000,37293=>1000,37294=>1000,37295=>1000,37296=>1000,37297=>1000,37298=>1000,37299=>1000,37300=>1000,37301=>1000,37302=>1000,37303=>1000,37305=>1000,37306=>1000,37307=>1000,37308=>1000,37309=>1000,37310=>1000,37312=>1000,37313=>1000,37314=>1000,37315=>1000,37316=>1000,37317=>1000,37318=>1000,37319=>1000,37321=>1000,37323=>1000,37324=>1000,37325=>1000,37326=>1000,37327=>1000,37328=>1000,37329=>1000,37331=>1000,37332=>1000,37333=>1000,37334=>1000,37335=>1000,37336=>1000,37337=>1000,37338=>1000,37340=>1000,37341=>1000,37343=>1000,37346=>1000,37347=>1000,37348=>1000,37349=>1000,37350=>1000,37351=>1000,37352=>1000,37353=>1000,37354=>1000,37355=>1000,37356=>1000,37357=>1000,37358=>1000,37361=>1000,37363=>1000,37364=>1000,37365=>1000,37366=>1000,37367=>1000,37368=>1000,37369=>1000,37370=>1000,37373=>1000,37374=>1000,37375=>1000,37376=>1000,37377=>1000,37378=>1000,37379=>1000,37380=>1000,37381=>1000,37382=>1000,37383=>1000,37384=>1000,37385=>1000,37386=>1000,37388=>1000,37389=>1000,37390=>1000,37391=>1000,37392=>1000,37393=>1000,37394=>1000,37395=>1000,37396=>1000,37397=>1000,37398=>1000,37399=>1000,37400=>1000,37401=>1000,37402=>1000,37404=>1000,37406=>1000,37409=>1000,37411=>1000,37412=>1000,37413=>1000,37414=>1000,37415=>1000,37416=>1000,37418=>1000,37419=>1000,37421=>1000,37422=>1000,37424=>1000,37425=>1000,37426=>1000,37427=>1000,37428=>1000,37429=>1000,37430=>1000,37431=>1000,37432=>1000,37433=>1000,37434=>1000,37436=>1000,37437=>1000,37438=>1000,37439=>1000,37440=>1000,37441=>1000,37444=>1000,37445=>1000,37446=>1000,37448=>1000,37449=>1000,37450=>1000,37451=>1000,37452=>1000,37453=>1000,37454=>1000,37455=>1000,37456=>1000,37457=>1000,37458=>1000,37459=>1000,37460=>1000,37461=>1000,37462=>1000,37463=>1000,37464=>1000,37466=>1000,37467=>1000,37469=>1000,37470=>1000,37471=>1000,37472=>1000,37473=>1000,37474=>1000,37475=>1000,37476=>1000,37477=>1000,37478=>1000,37479=>1000,37483=>1000,37484=>1000,37485=>1000,37486=>1000,37487=>1000,37488=>1000,37490=>1000,37494=>1000,37495=>1000,37496=>1000,37497=>1000,37498=>1000,37499=>1000,37500=>1000,37501=>1000,37502=>1000,37503=>1000,37504=>1000,37505=>1000,37506=>1000,37507=>1000,37508=>1000,37509=>1000,37510=>1000,37511=>1000,37512=>1000,37513=>1000,37514=>1000,37515=>1000,37516=>1000,37517=>1000,37518=>1000,37519=>1000,37521=>1000,37523=>1000,37524=>1000,37525=>1000,37526=>1000,37527=>1000,37528=>1000,37529=>1000,37530=>1000,37531=>1000,37532=>1000,37533=>1000,37536=>1000,37537=>1000,37538=>1000,37539=>1000,37540=>1000,37541=>1000,37542=>1000,37543=>1000,37544=>1000,37545=>1000,37546=>1000,37547=>1000,37548=>1000,37550=>1000,37553=>1000,37554=>1000,37555=>1000,37556=>1000,37557=>1000,37558=>1000,37559=>1000,37561=>1000,37562=>1000,37563=>1000,37564=>1000,37566=>1000,37567=>1000,37568=>1000,37569=>1000,37570=>1000,37571=>1000,37572=>1000,37573=>1000,37574=>1000,37575=>1000,37576=>1000,37577=>1000,37578=>1000,37579=>1000,37580=>1000,37581=>1000,37582=>1000,37583=>1000,37584=>1000,37585=>1000,37586=>1000,37587=>1000,37588=>1000,37589=>1000,37591=>1000,37592=>1000,37593=>1000,37595=>1000,37597=>1000,37598=>1000,37599=>1000,37600=>1000,37601=>1000,37603=>1000,37604=>1000,37605=>1000,37606=>1000,37607=>1000,37608=>1000,37609=>1000,37610=>1000,37611=>1000,37612=>1000,37613=>1000,37614=>1000,37615=>1000,37616=>1000,37617=>1000,37618=>1000,37619=>1000,37620=>1000,37622=>1000,37623=>1000,37624=>1000,37625=>1000,37626=>1000,37627=>1000,37628=>1000,37629=>1000,37630=>1000,37631=>1000,37632=>1000,37633=>1000,37634=>1000,37635=>1000,37636=>1000,37638=>1000,37639=>1000,37640=>1000,37641=>1000,37643=>1000,37644=>1000,37645=>1000,37646=>1000,37647=>1000,37648=>1000,37650=>1000,37651=>1000,37652=>1000,37653=>1000,37654=>1000,37656=>1000,37657=>1000,37658=>1000,37659=>1000,37661=>1000,37662=>1000,37663=>1000,37664=>1000,37665=>1000,37666=>1000,37667=>1000,37668=>1000,37669=>1000,37670=>1000,37671=>1000,37672=>1000,37673=>1000,37674=>1000,37675=>1000,37676=>1000,37677=>1000,37678=>1000,37679=>1000,37680=>1000,37681=>1000,37683=>1000,37684=>1000,37685=>1000,37686=>1000,37688=>1000,37689=>1000,37692=>1000,37696=>1000,37697=>1000,37698=>1000,37699=>1000,37700=>1000,37701=>1000,37702=>1000,37703=>1000,37704=>1000,37705=>1000,37706=>1000,37707=>1000,37708=>1000,37709=>1000,37710=>1000,37711=>1000,37712=>1000,37713=>1000,37714=>1000,37716=>1000,37717=>1000,37718=>1000,37719=>1000,37720=>1000,37721=>1000,37722=>1000,37723=>1000,37724=>1000,37726=>1000,37727=>1000,37728=>1000,37729=>1000,37730=>1000,37731=>1000,37732=>1000,37733=>1000,37734=>1000,37735=>1000,37736=>1000,37737=>1000,37738=>1000,37739=>1000,37740=>1000,37741=>1000,37742=>1000,37744=>1000,37745=>1000,37747=>1000,37748=>1000,37749=>1000,37750=>1000,37751=>1000,37752=>1000,37753=>1000,37754=>1000,37755=>1000,37756=>1000,37757=>1000,37758=>1000,37760=>1000,37761=>1000,37762=>1000,37763=>1000,37764=>1000,37765=>1000,37766=>1000,37767=>1000,37768=>1000,37769=>1000,37770=>1000,37772=>1000,37773=>1000,37774=>1000,37775=>1000,37776=>1000,37777=>1000,37778=>1000,37780=>1000,37781=>1000,37782=>1000,37783=>1000,37784=>1000,37785=>1000,37786=>1000,37787=>1000,37788=>1000,37789=>1000,37790=>1000,37791=>1000,37792=>1000,37793=>1000,37794=>1000,37795=>1000,37796=>1000,37797=>1000,37798=>1000,37799=>1000,37800=>1000,37801=>1000,37802=>1000,37804=>1000,37805=>1000,37806=>1000,37807=>1000,37808=>1000,37809=>1000,37810=>1000,37811=>1000,37812=>1000,37813=>1000,37815=>1000,37816=>1000,37819=>1000,37821=>1000,37823=>1000,37824=>1000,37826=>1000,37827=>1000,37828=>1000,37830=>1000,37831=>1000,37832=>1000,37834=>1000,37835=>1000,37836=>1000,37837=>1000,37838=>1000,37839=>1000,37840=>1000,37841=>1000,37842=>1000,37843=>1000,37844=>1000,37845=>1000,37846=>1000,37847=>1000,37848=>1000,37849=>1000,37850=>1000,37851=>1000,37852=>1000,37853=>1000,37854=>1000,37855=>1000,37856=>1000,37857=>1000,37858=>1000,37859=>1000,37860=>1000,37862=>1000,37863=>1000,37864=>1000,37868=>1000,37870=>1000,37872=>1000,37873=>1000,37875=>1000,37876=>1000,37877=>1000,37878=>1000,37879=>1000,37880=>1000,37881=>1000,37882=>1000,37883=>1000,37884=>1000,37885=>1000,37886=>1000,37887=>1000,37888=>1000,37889=>1000,37891=>1000,37892=>1000,37894=>1000,37895=>1000,37896=>1000,37897=>1000,37898=>1000,37899=>1000,37900=>1000,37901=>1000,37902=>1000,37903=>1000,37904=>1000,37905=>1000,37906=>1000,37907=>1000,37908=>1000,37909=>1000,37910=>1000,37911=>1000,37912=>1000,37913=>1000,37915=>1000,37917=>1000,37920=>1000,37924=>1000,37925=>1000,37926=>1000,37927=>1000,37928=>1000,37929=>1000,37930=>1000,37931=>1000,37932=>1000,37933=>1000,37934=>1000,37935=>1000,37936=>1000,37937=>1000,37938=>1000,37939=>1000,37941=>1000,37942=>1000,37943=>1000,37944=>1000,37945=>1000,37946=>1000,37947=>1000,37948=>1000,37949=>1000,37950=>1000,37951=>1000,37952=>1000,37954=>1000,37955=>1000,37956=>1000,37957=>1000,37958=>1000,37959=>1000,37960=>1000,37961=>1000,37962=>1000,37963=>1000,37964=>1000,37965=>1000,37967=>1000,37968=>1000,37969=>1000,37970=>1000,37972=>1000,37973=>1000,37975=>1000,37976=>1000,37979=>1000,37981=>1000,37982=>1000,37984=>1000,37986=>1000,37987=>1000,37988=>1000,37989=>1000,37991=>1000,37992=>1000,37993=>1000,37994=>1000,37995=>1000,37996=>1000,37997=>1000,37998=>1000,37999=>1000,38000=>1000,38001=>1000,38002=>1000,38003=>1000,38004=>1000,38005=>1000,38006=>1000,38007=>1000,38008=>1000,38009=>1000,38011=>1000,38012=>1000,38013=>1000,38014=>1000,38015=>1000,38016=>1000,38017=>1000,38018=>1000,38019=>1000,38021=>1000,38047=>1000,38050=>1000,38081=>1000,38083=>1000,38108=>1000,38134=>1000,38189=>1000,38215=>1000,38263=>1000,38264=>1000,38266=>1000,38267=>1000,38268=>1000,38269=>1000,38271=>1000,38272=>1000,38274=>1000,38275=>1000,38277=>1000,38278=>1000,38280=>1000,38281=>1000,38283=>1000,38284=>1000,38285=>1000,38286=>1000,38287=>1000,38288=>1000,38289=>1000,38290=>1000,38291=>1000,38292=>1000,38294=>1000,38295=>1000,38296=>1000,38297=>1000,38299=>1000,38300=>1000,38302=>1000,38303=>1000,38304=>1000,38305=>1000,38306=>1000,38307=>1000,38308=>1000,38309=>1000,38310=>1000,38311=>1000,38312=>1000,38313=>1000,38314=>1000,38315=>1000,38316=>1000,38317=>1000,38318=>1000,38320=>1000,38321=>1000,38322=>1000,38325=>1000,38326=>1000,38327=>1000,38329=>1000,38330=>1000,38331=>1000,38332=>1000,38333=>1000,38334=>1000,38335=>1000,38336=>1000,38339=>1000,38341=>1000,38342=>1000,38343=>1000,38344=>1000,38345=>1000,38346=>1000,38347=>1000,38348=>1000,38349=>1000,38352=>1000,38353=>1000,38354=>1000,38355=>1000,38356=>1000,38357=>1000,38358=>1000,38362=>1000,38363=>1000,38364=>1000,38366=>1000,38367=>1000,38368=>1000,38369=>1000,38370=>1000,38371=>1000,38372=>1000,38373=>1000,38376=>1000,38388=>1000,38428=>1000,38429=>1000,38430=>1000,38432=>1000,38433=>1000,38434=>1000,38435=>1000,38436=>1000,38440=>1000,38442=>1000,38444=>1000,38445=>1000,38446=>1000,38447=>1000,38448=>1000,38449=>1000,38450=>1000,38451=>1000,38456=>1000,38457=>1000,38458=>1000,38459=>1000,38460=>1000,38461=>1000,38463=>1000,38464=>1000,38465=>1000,38466=>1000,38467=>1000,38468=>1000,38469=>1000,38474=>1000,38475=>1000,38476=>1000,38477=>1000,38478=>1000,38479=>1000,38480=>1000,38481=>1000,38483=>1000,38484=>1000,38486=>1000,38488=>1000,38491=>1000,38492=>1000,38493=>1000,38494=>1000,38495=>1000,38497=>1000,38498=>1000,38499=>1000,38500=>1000,38505=>1000,38506=>1000,38507=>1000,38508=>1000,38509=>1000,38511=>1000,38512=>1000,38513=>1000,38514=>1000,38515=>1000,38516=>1000,38517=>1000,38518=>1000,38519=>1000,38520=>1000,38523=>1000,38524=>1000,38525=>1000,38526=>1000,38528=>1000,38529=>1000,38531=>1000,38532=>1000,38533=>1000,38534=>1000,38535=>1000,38536=>1000,38537=>1000,38538=>1000,38539=>1000,38541=>1000,38542=>1000,38543=>1000,38545=>1000,38546=>1000,38547=>1000,38548=>1000,38549=>1000,38550=>1000,38551=>1000,38552=>1000,38553=>1000,38555=>1000,38556=>1000,38558=>1000,38561=>1000,38562=>1000,38563=>1000,38564=>1000,38565=>1000,38567=>1000,38568=>1000,38569=>1000,38570=>1000,38572=>1000,38574=>1000,38576=>1000,38577=>1000,38579=>1000,38580=>1000,38582=>1000,38584=>1000,38585=>1000,38587=>1000,38588=>1000,38589=>1000,38591=>1000,38592=>1000,38593=>1000,38594=>1000,38595=>1000,38596=>1000,38597=>1000,38598=>1000,38599=>1000,38600=>1000,38601=>1000,38602=>1000,38603=>1000,38604=>1000,38605=>1000,38606=>1000,38610=>1000,38611=>1000,38612=>1000,38613=>1000,38614=>1000,38615=>1000,38616=>1000,38617=>1000,38618=>1000,38619=>1000,38620=>1000,38621=>1000,38622=>1000,38623=>1000,38625=>1000,38626=>1000,38627=>1000,38629=>1000,38632=>1000,38633=>1000,38634=>1000,38639=>1000,38640=>1000,38641=>1000,38642=>1000,38644=>1000,38645=>1000,38646=>1000,38647=>1000,38648=>1000,38649=>1000,38650=>1000,38651=>1000,38653=>1000,38655=>1000,38656=>1000,38658=>1000,38659=>1000,38660=>1000,38661=>1000,38662=>1000,38663=>1000,38664=>1000,38665=>1000,38667=>1000,38669=>1000,38670=>1000,38671=>1000,38672=>1000,38673=>1000,38674=>1000,38675=>1000,38678=>1000,38680=>1000,38681=>1000,38683=>1000,38684=>1000,38685=>1000,38686=>1000,38687=>1000,38688=>1000,38689=>1000,38690=>1000,38691=>1000,38692=>1000,38693=>1000,38694=>1000,38695=>1000,38696=>1000,38697=>1000,38698=>1000,38699=>1000,38700=>1000,38702=>1000,38703=>1000,38704=>1000,38705=>1000,38706=>1000,38708=>1000,38709=>1000,38710=>1000,38712=>1000,38713=>1000,38714=>1000,38717=>1000,38718=>1000,38719=>1000,38720=>1000,38721=>1000,38722=>1000,38723=>1000,38724=>1000,38726=>1000,38727=>1000,38728=>1000,38729=>1000,38730=>1000,38731=>1000,38737=>1000,38738=>1000,38741=>1000,38742=>1000,38743=>1000,38744=>1000,38746=>1000,38747=>1000,38748=>1000,38749=>1000,38750=>1000,38751=>1000,38752=>1000,38753=>1000,38754=>1000,38758=>1000,38760=>1000,38761=>1000,38762=>1000,38764=>1000,38765=>1000,38766=>1000,38768=>1000,38769=>1000,38770=>1000,38771=>1000,38772=>1000,38774=>1000,38775=>1000,38776=>1000,38778=>1000,38779=>1000,38780=>1000,38781=>1000,38782=>1000,38783=>1000,38784=>1000,38785=>1000,38786=>1000,38787=>1000,38788=>1000,38789=>1000,38791=>1000,38792=>1000,38793=>1000,38794=>1000,38795=>1000,38797=>1000,38798=>1000,38799=>1000,38804=>1000,38807=>1000,38808=>1000,38809=>1000,38810=>1000,38811=>1000,38812=>1000,38813=>1000,38814=>1000,38815=>1000,38816=>1000,38817=>1000,38818=>1000,38819=>1000,38820=>1000,38821=>1000,38822=>1000,38824=>1000,38826=>1000,38827=>1000,38828=>1000,38829=>1000,38830=>1000,38833=>1000,38834=>1000,38835=>1000,38836=>1000,38838=>1000,38839=>1000,38840=>1000,38841=>1000,38842=>1000,38843=>1000,38845=>1000,38846=>1000,38847=>1000,38848=>1000,38849=>1000,38850=>1000,38851=>1000,38852=>1000,38853=>1000,38854=>1000,38855=>1000,38856=>1000,38857=>1000,38859=>1000,38860=>1000,38861=>1000,38862=>1000,38863=>1000,38864=>1000,38866=>1000,38867=>1000,38868=>1000,38869=>1000,38870=>1000,38871=>1000,38872=>1000,38873=>1000,38876=>1000,38877=>1000,38878=>1000,38879=>1000,38880=>1000,38881=>1000,38883=>1000,38885=>1000,38886=>1000,38893=>1000,38894=>1000,38896=>1000,38897=>1000,38898=>1000,38899=>1000,38901=>1000,38902=>1000,38904=>1000,38905=>1000,38906=>1000,38907=>1000,38909=>1000,38910=>1000,38911=>1000,38912=>1000,38913=>1000,38914=>1000,38915=>1000,38916=>1000,38917=>1000,38918=>1000,38919=>1000,38920=>1000,38922=>1000,38924=>1000,38925=>1000,38926=>1000,38927=>1000,38928=>1000,38929=>1000,38930=>1000,38931=>1000,38932=>1000,38933=>1000,38934=>1000,38935=>1000,38936=>1000,38939=>1000,38940=>1000,38941=>1000,38942=>1000,38943=>1000,38944=>1000,38945=>1000,38947=>1000,38948=>1000,38950=>1000,38951=>1000,38952=>1000,38953=>1000,38955=>1000,38957=>1000,38958=>1000,38959=>1000,38960=>1000,38962=>1000,38963=>1000,38964=>1000,38965=>1000,38967=>1000,38968=>1000,38969=>1000,38971=>1000,38977=>1000,38979=>1000,38980=>1000,38981=>1000,38982=>1000,38983=>1000,38984=>1000,38985=>1000,38986=>1000,38987=>1000,38988=>1000,38989=>1000,38990=>1000,38991=>1000,38992=>1000,38993=>1000,38994=>1000,38995=>1000,38998=>1000,38999=>1000,39000=>1000,39001=>1000,39003=>1000,39004=>1000,39005=>1000,39006=>1000,39007=>1000,39008=>1000,39010=>1000,39011=>1000,39012=>1000,39013=>1000,39014=>1000,39015=>1000,39016=>1000,39017=>1000,39018=>1000,39019=>1000,39020=>1000,39023=>1000,39024=>1000,39025=>1000,39026=>1000,39027=>1000,39028=>1000,39029=>1000,39080=>1000,39081=>1000,39084=>1000,39085=>1000,39086=>1000,39087=>1000,39089=>1000,39090=>1000,39091=>1000,39092=>1000,39094=>1000,39095=>1000,39096=>1000,39097=>1000,39098=>1000,39099=>1000,39100=>1000,39101=>1000,39102=>1000,39103=>1000,39104=>1000,39105=>1000,39106=>1000,39107=>1000,39108=>1000,39110=>1000,39111=>1000,39112=>1000,39113=>1000,39114=>1000,39115=>1000,39116=>1000,39118=>1000,39131=>1000,39132=>1000,39134=>1000,39135=>1000,39136=>1000,39137=>1000,39138=>1000,39139=>1000,39141=>1000,39142=>1000,39143=>1000,39145=>1000,39146=>1000,39147=>1000,39148=>1000,39149=>1000,39151=>1000,39153=>1000,39154=>1000,39156=>1000,39157=>1000,39158=>1000,39161=>1000,39162=>1000,39164=>1000,39165=>1000,39166=>1000,39168=>1000,39170=>1000,39171=>1000,39173=>1000,39175=>1000,39176=>1000,39177=>1000,39178=>1000,39180=>1000,39182=>1000,39184=>1000,39185=>1000,39186=>1000,39187=>1000,39188=>1000,39189=>1000,39190=>1000,39191=>1000,39192=>1000,39193=>1000,39194=>1000,39195=>1000,39196=>1000,39198=>1000,39199=>1000,39201=>1000,39204=>1000,39205=>1000,39207=>1000,39208=>1000,39209=>1000,39210=>1000,39211=>1000,39212=>1000,39213=>1000,39214=>1000,39215=>1000,39216=>1000,39217=>1000,39218=>1000,39219=>1000,39221=>1000,39223=>1000,39224=>1000,39225=>1000,39226=>1000,39227=>1000,39228=>1000,39229=>1000,39230=>1000,39231=>1000,39232=>1000,39233=>1000,39234=>1000,39235=>1000,39237=>1000,39239=>1000,39240=>1000,39241=>1000,39242=>1000,39243=>1000,39244=>1000,39245=>1000,39246=>1000,39248=>1000,39249=>1000,39250=>1000,39251=>1000,39252=>1000,39253=>1000,39254=>1000,39255=>1000,39256=>1000,39257=>1000,39259=>1000,39260=>1000,39261=>1000,39262=>1000,39263=>1000,39265=>1000,39266=>1000,39267=>1000,39318=>1000,39319=>1000,39320=>1000,39321=>1000,39323=>1000,39324=>1000,39325=>1000,39326=>1000,39329=>1000,39331=>1000,39332=>1000,39333=>1000,39334=>1000,39335=>1000,39336=>1000,39338=>1000,39339=>1000,39340=>1000,39341=>1000,39342=>1000,39343=>1000,39344=>1000,39345=>1000,39346=>1000,39347=>1000,39348=>1000,39349=>1000,39352=>1000,39353=>1000,39354=>1000,39355=>1000,39356=>1000,39357=>1000,39361=>1000,39362=>1000,39363=>1000,39364=>1000,39365=>1000,39367=>1000,39369=>1000,39371=>1000,39372=>1000,39373=>1000,39374=>1000,39375=>1000,39376=>1000,39377=>1000,39378=>1000,39379=>1000,39380=>1000,39381=>1000,39382=>1000,39383=>1000,39384=>1000,39385=>1000,39386=>1000,39387=>1000,39388=>1000,39389=>1000,39391=>1000,39392=>1000,39393=>1000,39394=>1000,39395=>1000,39396=>1000,39397=>1000,39398=>1000,39399=>1000,39401=>1000,39402=>1000,39404=>1000,39405=>1000,39406=>1000,39408=>1000,39409=>1000,39412=>1000,39413=>1000,39414=>1000,39415=>1000,39416=>1000,39417=>1000,39418=>1000,39419=>1000,39420=>1000,39421=>1000,39422=>1000,39423=>1000,39425=>1000,39426=>1000,39427=>1000,39428=>1000,39429=>1000,39430=>1000,39431=>1000,39433=>1000,39434=>1000,39435=>1000,39436=>1000,39437=>1000,39438=>1000,39439=>1000,39440=>1000,39441=>1000,39444=>1000,39445=>1000,39446=>1000,39449=>1000,39450=>1000,39451=>1000,39452=>1000,39453=>1000,39454=>1000,39455=>1000,39456=>1000,39457=>1000,39458=>1000,39459=>1000,39460=>1000,39461=>1000,39462=>1000,39463=>1000,39465=>1000,39466=>1000,39467=>1000,39468=>1000,39469=>1000,39470=>1000,39471=>1000,39472=>1000,39473=>1000,39474=>1000,39476=>1000,39477=>1000,39478=>1000,39479=>1000,39480=>1000,39481=>1000,39482=>1000,39483=>1000,39484=>1000,39485=>1000,39486=>1000,39487=>1000,39488=>1000,39489=>1000,39490=>1000,39491=>1000,39492=>1000,39493=>1000,39494=>1000,39496=>1000,39497=>1000,39498=>1000,39500=>1000,39501=>1000,39502=>1000,39503=>1000,39504=>1000,39506=>1000,39507=>1000,39508=>1000,39509=>1000,39510=>1000,39511=>1000,39512=>1000,39513=>1000,39514=>1000,39515=>1000,39516=>1000,39518=>1000,39519=>1000,39520=>1000,39522=>1000,39523=>1000,39524=>1000,39525=>1000,39526=>1000,39527=>1000,39528=>1000,39529=>1000,39530=>1000,39531=>1000,39532=>1000,39567=>1000,39592=>1000,39595=>1000,39597=>1000,39599=>1000,39600=>1000,39601=>1000,39602=>1000,39603=>1000,39604=>1000,39606=>1000,39607=>1000,39608=>1000,39609=>1000,39610=>1000,39611=>1000,39612=>1000,39613=>1000,39614=>1000,39615=>1000,39616=>1000,39617=>1000,39618=>1000,39622=>1000,39623=>1000,39626=>1000,39629=>1000,39631=>1000,39632=>1000,39633=>1000,39634=>1000,39635=>1000,39636=>1000,39637=>1000,39638=>1000,39639=>1000,39640=>1000,39644=>1000,39647=>1000,39648=>1000,39649=>1000,39650=>1000,39651=>1000,39654=>1000,39655=>1000,39659=>1000,39660=>1000,39661=>1000,39662=>1000,39663=>1000,39665=>1000,39666=>1000,39667=>1000,39668=>1000,39670=>1000,39671=>1000,39673=>1000,39674=>1000,39675=>1000,39676=>1000,39677=>1000,39678=>1000,39679=>1000,39681=>1000,39682=>1000,39683=>1000,39684=>1000,39685=>1000,39686=>1000,39688=>1000,39689=>1000,39690=>1000,39691=>1000,39692=>1000,39693=>1000,39694=>1000,39695=>1000,39696=>1000,39697=>1000,39698=>1000,39700=>1000,39701=>1000,39702=>1000,39703=>1000,39704=>1000,39705=>1000,39706=>1000,39710=>1000,39711=>1000,39712=>1000,39714=>1000,39715=>1000,39716=>1000,39717=>1000,39719=>1000,39720=>1000,39721=>1000,39722=>1000,39723=>1000,39725=>1000,39726=>1000,39727=>1000,39729=>1000,39730=>1000,39731=>1000,39732=>1000,39733=>1000,39735=>1000,39737=>1000,39738=>1000,39739=>1000,39740=>1000,39742=>1000,39743=>1000,39744=>1000,39745=>1000,39746=>1000,39747=>1000,39748=>1000,39749=>1000,39750=>1000,39752=>1000,39754=>1000,39755=>1000,39756=>1000,39757=>1000,39758=>1000,39759=>1000,39760=>1000,39761=>1000,39762=>1000,39764=>1000,39765=>1000,39766=>1000,39768=>1000,39769=>1000,39770=>1000,39771=>1000,39775=>1000,39776=>1000,39777=>1000,39780=>1000,39782=>1000,39783=>1000,39784=>1000,39785=>1000,39788=>1000,39791=>1000,39792=>1000,39793=>1000,39796=>1000,39797=>1000,39798=>1000,39799=>1000,39802=>1000,39803=>1000,39804=>1000,39805=>1000,39806=>1000,39807=>1000,39808=>1000,39809=>1000,39810=>1000,39811=>1000,39813=>1000,39814=>1000,39815=>1000,39816=>1000,39819=>1000,39821=>1000,39822=>1000,39823=>1000,39824=>1000,39825=>1000,39826=>1000,39827=>1000,39829=>1000,39831=>1000,39834=>1000,39835=>1000,39837=>1000,39838=>1000,39839=>1000,39840=>1000,39841=>1000,39842=>1000,39844=>1000,39845=>1000,39846=>1000,39848=>1000,39850=>1000,39851=>1000,39853=>1000,39854=>1000,39855=>1000,39856=>1000,39861=>1000,39862=>1000,39864=>1000,39865=>1000,39869=>1000,39871=>1000,39872=>1000,39873=>1000,39875=>1000,39876=>1000,39878=>1000,39879=>1000,39880=>1000,39881=>1000,39882=>1000,39887=>1000,39891=>1000,39892=>1000,39893=>1000,39894=>1000,39895=>1000,39897=>1000,39898=>1000,39899=>1000,39900=>1000,39901=>1000,39902=>1000,39904=>1000,39905=>1000,39906=>1000,39908=>1000,39909=>1000,39910=>1000,39911=>1000,39912=>1000,39913=>1000,39914=>1000,39915=>1000,39916=>1000,39917=>1000,39920=>1000,39921=>1000,39924=>1000,39927=>1000,39928=>1000,39933=>1000,39935=>1000,39938=>1000,39941=>1000,39942=>1000,39943=>1000,39944=>1000,39945=>1000,39946=>1000,39947=>1000,39948=>1000,39949=>1000,39950=>1000,39952=>1000,39954=>1000,39955=>1000,39956=>1000,39957=>1000,39959=>1000,39963=>1000,39964=>1000,39965=>1000,39967=>1000,39968=>1000,39969=>1000,39971=>1000,39972=>1000,39973=>1000,39974=>1000,39976=>1000,39977=>1000,39979=>1000,39980=>1000,39981=>1000,39983=>1000,39985=>1000,39986=>1000,39987=>1000,39988=>1000,39989=>1000,39990=>1000,39991=>1000,39993=>1000,39994=>1000,39995=>1000,39996=>1000,39997=>1000,39998=>1000,39999=>1000,40000=>1000,40001=>1000,40004=>1000,40005=>1000,40006=>1000,40007=>1000,40008=>1000,40009=>1000,40010=>1000,40011=>1000,40012=>1000,40013=>1000,40014=>1000,40015=>1000,40016=>1000,40018=>1000,40019=>1000,40020=>1000,40021=>1000,40022=>1000,40023=>1000,40024=>1000,40025=>1000,40029=>1000,40030=>1000,40031=>1000,40032=>1000,40034=>1000,40035=>1000,40038=>1000,40039=>1000,40040=>1000,40045=>1000,40046=>1000,40049=>1000,40050=>1000,40051=>1000,40052=>1000,40053=>1000,40055=>1000,40056=>1000,40057=>1000,40058=>1000,40059=>1000,40060=>1000,40165=>1000,40166=>1000,40167=>1000,40169=>1000,40170=>1000,40173=>1000,40177=>1000,40178=>1000,40179=>1000,40180=>1000,40181=>1000,40182=>1000,40183=>1000,40185=>1000,40186=>1000,40187=>1000,40188=>1000,40189=>1000,40191=>1000,40192=>1000,40194=>1000,40195=>1000,40196=>1000,40197=>1000,40198=>1000,40199=>1000,40200=>1000,40201=>1000,40204=>1000,40208=>1000,40210=>1000,40212=>1000,40213=>1000,40214=>1000,40215=>1000,40216=>1000,40217=>1000,40219=>1000,40221=>1000,40222=>1000,40223=>1000,40224=>1000,40225=>1000,40226=>1000,40227=>1000,40229=>1000,40230=>1000,40232=>1000,40233=>1000,40237=>1000,40238=>1000,40239=>1000,40240=>1000,40241=>1000,40243=>1000,40244=>1000,40246=>1000,40247=>1000,40248=>1000,40249=>1000,40251=>1000,40253=>1000,40254=>1000,40255=>1000,40256=>1000,40257=>1000,40258=>1000,40259=>1000,40260=>1000,40261=>1000,40265=>1000,40266=>1000,40267=>1000,40268=>1000,40270=>1000,40271=>1000,40272=>1000,40273=>1000,40274=>1000,40275=>1000,40276=>1000,40278=>1000,40279=>1000,40280=>1000,40281=>1000,40282=>1000,40283=>1000,40284=>1000,40285=>1000,40286=>1000,40287=>1000,40288=>1000,40289=>1000,40295=>1000,40296=>1000,40297=>1000,40298=>1000,40299=>1000,40300=>1000,40301=>1000,40302=>1000,40303=>1000,40304=>1000,40305=>1000,40306=>1000,40307=>1000,40308=>1000,40309=>1000,40311=>1000,40312=>1000,40313=>1000,40315=>1000,40316=>1000,40317=>1000,40318=>1000,40319=>1000,40320=>1000,40321=>1000,40322=>1000,40323=>1000,40324=>1000,40325=>1000,40326=>1000,40327=>1000,40328=>1000,40329=>1000,40330=>1000,40331=>1000,40332=>1000,40336=>1000,40338=>1000,40339=>1000,40340=>1000,40342=>1000,40343=>1000,40344=>1000,40345=>1000,40346=>1000,40347=>1000,40348=>1000,40349=>1000,40350=>1000,40351=>1000,40352=>1000,40353=>1000,40354=>1000,40355=>1000,40356=>1000,40357=>1000,40358=>1000,40359=>1000,40360=>1000,40361=>1000,40362=>1000,40363=>1000,40364=>1000,40365=>1000,40367=>1000,40369=>1000,40370=>1000,40371=>1000,40372=>1000,40373=>1000,40374=>1000,40375=>1000,40376=>1000,40377=>1000,40378=>1000,40379=>1000,40380=>1000,40381=>1000,40382=>1000,40383=>1000,40384=>1000,40385=>1000,40386=>1000,40387=>1000,40388=>1000,40389=>1000,40391=>1000,40392=>1000,40393=>1000,40394=>1000,40395=>1000,40396=>1000,40397=>1000,40398=>1000,40399=>1000,40400=>1000,40401=>1000,40402=>1000,40403=>1000,40404=>1000,40405=>1000,40406=>1000,40407=>1000,40408=>1000,40409=>1000,40410=>1000,40411=>1000,40412=>1000,40413=>1000,40414=>1000,40415=>1000,40417=>1000,40418=>1000,40419=>1000,40420=>1000,40421=>1000,40422=>1000,40424=>1000,40425=>1000,40427=>1000,40428=>1000,40429=>1000,40430=>1000,40431=>1000,40432=>1000,40434=>1000,40435=>1000,40436=>1000,40437=>1000,40438=>1000,40439=>1000,40440=>1000,40441=>1000,40442=>1000,40443=>1000,40444=>1000,40445=>1000,40446=>1000,40447=>1000,40448=>1000,40449=>1000,40450=>1000,40451=>1000,40452=>1000,40453=>1000,40454=>1000,40455=>1000,40457=>1000,40458=>1000,40459=>1000,40460=>1000,40461=>1000,40462=>1000,40463=>1000,40464=>1000,40465=>1000,40466=>1000,40467=>1000,40468=>1000,40469=>1000,40471=>1000,40472=>1000,40473=>1000,40474=>1000,40475=>1000,40476=>1000,40477=>1000,40478=>1000,40479=>1000,40565=>1000,40569=>1000,40570=>1000,40571=>1000,40572=>1000,40573=>1000,40575=>1000,40576=>1000,40577=>1000,40578=>1000,40579=>1000,40580=>1000,40581=>1000,40582=>1000,40583=>1000,40584=>1000,40585=>1000,40586=>1000,40587=>1000,40588=>1000,40589=>1000,40590=>1000,40592=>1000,40593=>1000,40594=>1000,40595=>1000,40596=>1000,40597=>1000,40598=>1000,40599=>1000,40600=>1000,40601=>1000,40602=>1000,40603=>1000,40604=>1000,40605=>1000,40606=>1000,40607=>1000,40608=>1000,40609=>1000,40610=>1000,40612=>1000,40613=>1000,40614=>1000,40615=>1000,40616=>1000,40617=>1000,40618=>1000,40619=>1000,40620=>1000,40621=>1000,40622=>1000,40623=>1000,40624=>1000,40625=>1000,40628=>1000,40629=>1000,40630=>1000,40631=>1000,40635=>1000,40636=>1000,40637=>1000,40638=>1000,40639=>1000,40640=>1000,40641=>1000,40642=>1000,40643=>1000,40644=>1000,40646=>1000,40647=>1000,40648=>1000,40652=>1000,40653=>1000,40654=>1000,40655=>1000,40656=>1000,40657=>1000,40659=>1000,40660=>1000,40661=>1000,40662=>1000,40664=>1000,40666=>1000,40667=>1000,40668=>1000,40669=>1000,40670=>1000,40671=>1000,40672=>1000,40674=>1000,40676=>1000,40677=>1000,40678=>1000,40679=>1000,40680=>1000,40683=>1000,40685=>1000,40686=>1000,40687=>1000,40688=>1000,40689=>1000,40690=>1000,40691=>1000,40692=>1000,40693=>1000,40694=>1000,40695=>1000,40696=>1000,40697=>1000,40698=>1000,40699=>1000,40700=>1000,40701=>1000,40702=>1000,40703=>1000,40704=>1000,40705=>1000,40706=>1000,40710=>1000,40711=>1000,40712=>1000,40713=>1000,40714=>1000,40718=>1000,40719=>1000,40720=>1000,40722=>1000,40723=>1000,40725=>1000,40726=>1000,40727=>1000,40728=>1000,40729=>1000,40730=>1000,40731=>1000,40732=>1000,40734=>1000,40736=>1000,40738=>1000,40739=>1000,40740=>1000,40741=>1000,40742=>1000,40743=>1000,40744=>1000,40745=>1000,40746=>1000,40747=>1000,40748=>1000,40749=>1000,40750=>1000,40751=>1000,40752=>1000,40753=>1000,40754=>1000,40755=>1000,40756=>1000,40757=>1000,40758=>1000,40759=>1000,40760=>1000,40761=>1000,40763=>1000,40765=>1000,40766=>1000,40768=>1000,40769=>1000,40770=>1000,40771=>1000,40772=>1000,40773=>1000,40774=>1000,40775=>1000,40776=>1000,40777=>1000,40778=>1000,40779=>1000,40780=>1000,40781=>1000,40782=>1000,40783=>1000,40784=>1000,40786=>1000,40787=>1000,40788=>1000,40789=>1000,40790=>1000,40791=>1000,40792=>1000,40793=>1000,40794=>1000,40795=>1000,40796=>1000,40797=>1000,40798=>1000,40799=>1000,40800=>1000,40801=>1000,40802=>1000,40803=>1000,40804=>1000,40805=>1000,40806=>1000,40807=>1000,40809=>1000,40810=>1000,40811=>1000,40812=>1000,40814=>1000,40815=>1000,40816=>1000,40817=>1000,40818=>1000,40820=>1000,40821=>1000,40822=>1000,40823=>1000,40824=>1000,40825=>1000,40826=>1000,40827=>1000,40830=>1000,40831=>1000,40845=>1000,40846=>1000,40848=>1000,40849=>1000,40850=>1000,40852=>1000,40853=>1000,40854=>1000,40855=>1000,40856=>1000,40857=>1000,40860=>1000,40863=>1000,40864=>1000,40866=>1000,40868=>1000,40869=>1000,40870=>1000,40871=>1000,40872=>1000,40873=>1000,40874=>1000,40875=>1000,40876=>1000,40877=>1000,40878=>1000,40879=>1000,40880=>1000,40881=>1000,40882=>1000,40883=>1000,40903=>1000,40904=>1000,40905=>1000,40906=>1000,40907=>1000,40912=>1000,63744=>1000,63745=>1000,63746=>1000,63747=>1000,63749=>1000,63750=>1000,63751=>1000,63755=>1000,63757=>1000,63765=>1000,63767=>1000,63770=>1000,63778=>1000,63789=>1000,63793=>1000,63799=>1000,63801=>1000,63802=>1000,63811=>1000,63815=>1000,63816=>1000,63818=>1000,63826=>1000,63838=>1000,63842=>1000,63845=>1000,63847=>1000,63858=>1000,63862=>1000,63864=>1000,63865=>1000,63870=>1000,63872=>1000,63878=>1000,63882=>1000,63886=>1000,63893=>1000,63900=>1000,63903=>1000,63925=>1000,63931=>1000,63933=>1000,63941=>1000,63942=>1000,63944=>1000,63960=>1000,63964=>1000,63965=>1000,63966=>1000,63968=>1000,63972=>1000,63975=>1000,63977=>1000,63988=>1000,63989=>1000,63994=>1000,63997=>1000,63999=>1000,64002=>1000,64005=>1000,64006=>1000,64007=>1000,64008=>1000,64010=>1000,64012=>1000,64013=>1000,64051=>1000,64052=>1000,64053=>1000,64058=>1000,64073=>1000,64075=>1000,64093=>1000,64094=>1000,64256=>643,64257=>600,64258=>610,64259=>918,64260=>928,65040=>1000,65041=>1000,65042=>1000,65043=>1000,65044=>1000,65045=>1000,65046=>1000,65047=>1000,65048=>1000,65049=>1000,65072=>1000,65073=>1000,65074=>1000,65075=>1000,65076=>1000,65077=>1000,65078=>1000,65079=>1000,65080=>1000,65081=>1000,65082=>1000,65083=>1000,65084=>1000,65085=>1000,65086=>1000,65087=>1000,65088=>1000,65089=>1000,65090=>1000,65091=>1000,65092=>1000,65093=>1000,65094=>1000,65095=>1000,65096=>1000,65097=>1000,65098=>1000,65099=>1000,65100=>1000,65101=>1000,65102=>1000,65103=>1000,65104=>1000,65105=>1000,65106=>1000,65108=>1000,65109=>1000,65110=>1000,65111=>1000,65112=>1000,65113=>1000,65114=>1000,65115=>1000,65116=>1000,65117=>1000,65118=>1000,65119=>1000,65120=>1000,65121=>1000,65122=>1000,65123=>1000,65124=>1000,65125=>1000,65126=>1000,65128=>1000,65129=>1000,65130=>1000,65131=>1000,65281=>1000,65282=>1000,65283=>1000,65284=>1000,65285=>1000,65286=>1000,65287=>1000,65288=>1000,65289=>1000,65290=>1000,65291=>1000,65292=>1000,65293=>1000,65294=>1000,65295=>1000,65296=>1000,65297=>1000,65298=>1000,65299=>1000,65300=>1000,65301=>1000,65302=>1000,65303=>1000,65304=>1000,65305=>1000,65306=>1000,65307=>1000,65308=>1000,65309=>1000,65310=>1000,65311=>1000,65312=>1000,65313=>1000,65314=>1000,65315=>1000,65316=>1000,65317=>1000,65318=>1000,65319=>1000,65320=>1000,65321=>1000,65322=>1000,65323=>1000,65324=>1000,65325=>1000,65326=>1000,65327=>1000,65328=>1000,65329=>1000,65330=>1000,65331=>1000,65332=>1000,65333=>1000,65334=>1000,65335=>1000,65336=>1000,65337=>1000,65338=>1000,65339=>1000,65340=>1000,65341=>1000,65342=>1000,65343=>1000,65344=>1000,65345=>1000,65346=>1000,65347=>1000,65348=>1000,65349=>1000,65350=>1000,65351=>1000,65352=>1000,65353=>1000,65354=>1000,65355=>1000,65356=>1000,65357=>1000,65358=>1000,65359=>1000,65360=>1000,65361=>1000,65362=>1000,65363=>1000,65364=>1000,65365=>1000,65366=>1000,65367=>1000,65368=>1000,65369=>1000,65370=>1000,65371=>1000,65372=>1000,65373=>1000,65374=>1000,65375=>1000,65376=>1000,65377=>500,65378=>500,65379=>500,65380=>500,65381=>500,65382=>500,65383=>500,65384=>500,65385=>500,65386=>500,65387=>500,65388=>500,65389=>500,65390=>500,65391=>500,65392=>500,65393=>500,65394=>500,65395=>500,65396=>500,65397=>500,65398=>500,65399=>500,65400=>500,65401=>500,65402=>500,65403=>500,65404=>500,65405=>500,65406=>500,65407=>500,65408=>500,65409=>500,65410=>500,65411=>500,65412=>500,65413=>500,65414=>500,65415=>500,65416=>500,65417=>500,65418=>500,65419=>500,65420=>500,65421=>500,65422=>500,65423=>500,65424=>500,65425=>500,65426=>500,65427=>500,65428=>500,65429=>500,65430=>500,65431=>500,65432=>500,65433=>500,65434=>500,65435=>500,65436=>500,65437=>500,65438=>500,65439=>500,65441=>920,65442=>920,65443=>920,65444=>920,65445=>920,65446=>920,65447=>920,65448=>920,65449=>920,65450=>920,65451=>920,65452=>920,65453=>920,65454=>920,65455=>920,65456=>920,65457=>920,65458=>920,65459=>920,65460=>920,65461=>920,65462=>920,65463=>920,65464=>920,65465=>920,65466=>920,65467=>920,65468=>920,65469=>920,65470=>920,65474=>920,65475=>920,65476=>920,65477=>920,65478=>920,65479=>920,65482=>920,65483=>920,65484=>920,65485=>920,65486=>920,65487=>920,65490=>920,65491=>920,65492=>920,65493=>920,65494=>920,65495=>920,65498=>920,65499=>920,65500=>920,65504=>1000,65505=>1000,65506=>1000,65507=>1000,65508=>1000,65509=>1000,65510=>1000,65512=>500,65513=>500,65514=>500,65515=>500,65516=>500,65517=>500,65518=>500); +// --- EOF --- diff --git a/fonts/Noto_Sans_TC/notosanstc.z b/fonts/Noto_Sans_TC/notosanstc.z new file mode 100644 index 0000000..21d438c Binary files /dev/null and b/fonts/Noto_Sans_TC/notosanstc.z differ diff --git a/fonts/Noto_Sans_TC/notosanstcb.ctg.z b/fonts/Noto_Sans_TC/notosanstcb.ctg.z new file mode 100644 index 0000000..21afa31 Binary files /dev/null and b/fonts/Noto_Sans_TC/notosanstcb.ctg.z differ diff --git a/fonts/Noto_Sans_TC/notosanstcb.php b/fonts/Noto_Sans_TC/notosanstcb.php new file mode 100644 index 0000000..45f8b98 --- /dev/null +++ b/fonts/Noto_Sans_TC/notosanstcb.php @@ -0,0 +1,15 @@ +32,'FontBBox'=>'[-1013 -1046 2926 1806]','ItalicAngle'=>0,'Ascent'=>1160,'Descent'=>-288,'Leading'=>0,'CapHeight'=>741,'XHeight'=>560,'StemV'=>123,'StemH'=>53,'AvgWidth'=>987,'MaxWidth'=>3000,'MissingWidth'=>1000); +$cw=array(0=>1000,32=>227,33=>370,34=>574,35=>590,36=>590,37=>963,38=>740,39=>325,40=>378,41=>378,42=>507,43=>590,44=>325,45=>370,46=>325,47=>387,48=>590,49=>590,50=>590,51=>590,52=>590,53=>590,54=>590,55=>590,56=>590,57=>590,58=>325,59=>325,60=>590,61=>590,62=>590,63=>514,64=>1007,65=>641,66=>681,67=>656,68=>714,69=>615,70=>585,71=>717,72=>757,73=>330,74=>568,75=>686,76=>578,77=>853,78=>749,79=>770,80=>667,81=>770,82=>682,83=>624,84=>625,85=>748,86=>619,87=>915,88=>627,89=>580,90=>613,91=>378,92=>387,93=>378,94=>590,95=>567,96=>626,97=>591,98=>644,99=>527,100=>644,101=>581,102=>372,103=>597,104=>640,105=>304,106=>306,107=>604,108=>315,109=>964,110=>641,111=>626,112=>644,113=>644,114=>437,115=>495,116=>421,117=>637,118=>576,119=>863,120=>562,121=>574,122=>511,123=>378,124=>296,125=>378,126=>590,160=>227,161=>370,162=>590,163=>590,164=>590,165=>590,166=>296,167=>1000,168=>626,169=>849,170=>403,171=>529,172=>590,173=>370,174=>513,175=>626,176=>404,177=>1000,178=>424,179=>424,180=>626,181=>664,182=>1000,183=>1000,184=>626,185=>424,186=>420,187=>529,188=>909,189=>948,190=>921,191=>514,192=>641,193=>641,194=>641,195=>641,196=>641,197=>641,198=>951,199=>656,200=>615,201=>615,202=>615,203=>615,204=>330,205=>330,206=>330,207=>330,208=>742,209=>749,210=>770,211=>770,212=>770,213=>770,214=>770,215=>1000,216=>770,217=>748,218=>748,219=>748,220=>748,221=>580,222=>690,223=>700,224=>591,225=>591,226=>591,227=>591,228=>591,229=>591,230=>891,231=>527,232=>581,233=>581,234=>581,235=>581,236=>304,237=>304,238=>304,239=>304,240=>630,241=>641,242=>626,243=>626,244=>626,245=>626,246=>626,247=>1000,248=>626,249=>637,250=>637,251=>637,252=>637,253=>574,254=>644,255=>574,256=>641,257=>591,258=>641,259=>591,272=>742,273=>644,274=>615,275=>581,282=>615,283=>581,296=>330,297=>304,298=>330,299=>304,323=>749,324=>641,327=>749,328=>641,332=>770,333=>626,334=>770,335=>626,338=>981,339=>938,360=>748,361=>637,362=>748,363=>637,364=>748,365=>637,402=>590,416=>770,417=>626,431=>767,432=>637,461=>641,462=>591,463=>330,464=>304,465=>770,466=>626,467=>748,468=>637,469=>748,470=>637,471=>748,472=>637,473=>748,474=>637,475=>748,476=>637,504=>749,505=>641,593=>647,609=>644,699=>325,711=>600,713=>1000,714=>600,715=>600,729=>500,746=>600,747=>600,768=>0,769=>0,772=>0,775=>0,780=>0,913=>641,914=>681,915=>584,916=>710,917=>615,918=>613,919=>757,920=>770,921=>330,922=>686,923=>619,924=>853,925=>749,926=>636,927=>770,928=>747,929=>667,931=>619,932=>625,933=>580,934=>850,935=>627,936=>836,937=>797,945=>663,946=>670,947=>589,948=>616,949=>528,950=>515,951=>631,952=>615,953=>329,954=>604,955=>608,956=>664,957=>577,958=>521,959=>621,960=>705,961=>639,962=>502,963=>642,964=>548,965=>596,966=>819,967=>583,968=>833,969=>833,1025=>615,1040=>641,1041=>675,1042=>681,1043=>584,1044=>750,1045=>615,1046=>965,1047=>637,1048=>761,1049=>761,1050=>693,1051=>737,1052=>853,1053=>757,1054=>770,1055=>747,1056=>667,1057=>656,1058=>625,1059=>617,1060=>856,1061=>627,1062=>751,1063=>704,1064=>1018,1065=>1034,1066=>825,1067=>951,1068=>675,1069=>656,1070=>1064,1071=>689,1072=>591,1073=>632,1074=>593,1075=>483,1076=>646,1077=>581,1078=>839,1079=>534,1080=>656,1081=>656,1082=>605,1083=>638,1084=>740,1085=>655,1086=>626,1087=>645,1088=>644,1089=>527,1090=>548,1091=>574,1092=>869,1093=>562,1094=>663,1095=>612,1096=>895,1097=>917,1098=>698,1099=>819,1100=>577,1101=>527,1102=>868,1103=>608,1105=>581,7742=>853,7743=>964,7840=>641,7841=>591,7842=>641,7843=>591,7844=>641,7845=>591,7846=>641,7847=>591,7848=>641,7849=>591,7850=>641,7851=>591,7852=>641,7853=>591,7854=>641,7855=>591,7856=>641,7857=>591,7858=>641,7859=>591,7860=>641,7861=>591,7862=>641,7863=>591,7864=>615,7865=>581,7866=>615,7867=>581,7868=>615,7869=>581,7870=>615,7871=>581,7872=>615,7873=>581,7874=>615,7875=>581,7876=>615,7877=>581,7878=>615,7879=>581,7880=>330,7881=>304,7882=>330,7883=>304,7884=>770,7885=>626,7886=>770,7887=>626,7888=>770,7889=>626,7890=>770,7891=>626,7892=>770,7893=>626,7894=>770,7895=>626,7896=>770,7897=>626,7898=>770,7899=>626,7900=>770,7901=>626,7902=>770,7903=>626,7904=>770,7905=>626,7906=>770,7907=>626,7908=>748,7909=>637,7910=>748,7911=>637,7912=>767,7913=>637,7914=>767,7915=>637,7916=>767,7917=>637,7918=>767,7919=>637,7920=>767,7921=>637,7922=>580,7923=>574,7924=>580,7925=>574,7926=>580,7927=>574,7928=>580,7929=>574,8194=>500,8195=>1000,8208=>1000,8209=>370,8210=>544,8211=>544,8212=>908,8213=>1000,8214=>1000,8216=>1000,8217=>1000,8218=>325,8220=>1000,8221=>1000,8222=>574,8224=>1000,8225=>1000,8226=>1000,8229=>1000,8230=>1000,8231=>1000,8240=>1000,8242=>325,8243=>574,8245=>1000,8249=>324,8250=>324,8251=>1000,8252=>677,8258=>1000,8263=>973,8264=>830,8265=>830,8273=>1000,8308=>424,8361=>590,8363=>590,8364=>590,8413=>0,8414=>0,8448=>1000,8451=>1000,8453=>1000,8457=>1000,8458=>1000,8463=>1000,8467=>514,8470=>1074,8481=>1000,8482=>760,8486=>1000,8487=>1000,8491=>1000,8494=>908,8501=>1000,8507=>1000,8544=>1000,8545=>1000,8546=>1000,8547=>1000,8548=>1000,8549=>1000,8550=>1000,8551=>1000,8552=>1000,8553=>1000,8554=>1000,8555=>1000,8560=>1000,8561=>1000,8562=>1000,8563=>1000,8564=>1000,8565=>1000,8566=>1000,8567=>1000,8568=>1000,8569=>1000,8570=>1000,8571=>1000,8592=>1000,8593=>1000,8594=>1000,8595=>1000,8596=>1000,8597=>1000,8598=>1000,8599=>1000,8600=>1000,8601=>1000,8632=>1000,8633=>1000,8644=>1000,8645=>1000,8646=>1000,8651=>1000,8652=>1000,8656=>1000,8658=>1000,8660=>1000,8678=>1000,8679=>1000,8680=>1000,8681=>1000,8693=>1000,8704=>1000,8706=>1000,8707=>1000,8709=>1000,8710=>1000,8711=>1000,8712=>1000,8713=>1000,8714=>1000,8715=>1000,8719=>1000,8721=>1000,8722=>590,8723=>1000,8725=>1000,8730=>1000,8733=>1000,8734=>1000,8735=>1000,8736=>1000,8739=>1000,8741=>1000,8742=>1000,8743=>1000,8744=>1000,8745=>1000,8746=>1000,8747=>1000,8748=>1000,8749=>1000,8750=>1000,8756=>1000,8757=>1000,8758=>1000,8759=>1000,8765=>1000,8771=>1000,8773=>1000,8776=>1000,8780=>1000,8800=>1000,8801=>1000,8802=>1000,8804=>1000,8805=>1000,8806=>1000,8807=>1000,8810=>1000,8811=>1000,8814=>1000,8815=>1000,8818=>1000,8819=>1000,8822=>1000,8823=>1000,8834=>1000,8835=>1000,8836=>1000,8837=>1000,8838=>1000,8839=>1000,8842=>1000,8843=>1000,8853=>1000,8854=>1000,8855=>1000,8856=>1000,8857=>1000,8864=>1000,8869=>1000,8895=>1000,8922=>1000,8923=>1000,8943=>1000,8965=>1000,8966=>1000,8967=>1000,8978=>1000,8984=>1000,9001=>1000,9002=>1000,9136=>1000,9137=>1000,9150=>1000,9151=>1000,9152=>1000,9153=>1000,9154=>1000,9155=>1000,9156=>1000,9157=>1000,9158=>1000,9159=>1000,9160=>1000,9161=>1000,9162=>1000,9163=>1000,9164=>1000,9166=>1000,9178=>1000,9179=>1000,9251=>1000,9312=>1000,9313=>1000,9314=>1000,9315=>1000,9316=>1000,9317=>1000,9318=>1000,9319=>1000,9320=>1000,9321=>1000,9322=>1000,9323=>1000,9324=>1000,9325=>1000,9326=>1000,9327=>1000,9328=>1000,9329=>1000,9330=>1000,9331=>1000,9332=>1000,9333=>1000,9334=>1000,9335=>1000,9336=>1000,9337=>1000,9338=>1000,9339=>1000,9340=>1000,9341=>1000,9342=>1000,9343=>1000,9344=>1000,9345=>1000,9346=>1000,9347=>1000,9348=>1000,9349=>1000,9350=>1000,9351=>1000,9352=>1000,9353=>1000,9354=>1000,9355=>1000,9356=>1000,9357=>1000,9358=>1000,9359=>1000,9360=>1000,9361=>1000,9362=>1000,9363=>1000,9364=>1000,9365=>1000,9366=>1000,9367=>1000,9368=>1000,9369=>1000,9370=>1000,9371=>1000,9372=>1000,9373=>1000,9374=>1000,9375=>1000,9376=>1000,9377=>1000,9378=>1000,9379=>1000,9380=>1000,9381=>1000,9382=>1000,9383=>1000,9384=>1000,9385=>1000,9386=>1000,9387=>1000,9388=>1000,9389=>1000,9390=>1000,9391=>1000,9392=>1000,9393=>1000,9394=>1000,9395=>1000,9396=>1000,9397=>1000,9398=>1000,9399=>1000,9400=>1000,9401=>1000,9402=>1000,9403=>1000,9404=>1000,9405=>1000,9406=>1000,9407=>1000,9408=>1000,9409=>1000,9410=>1000,9411=>1000,9412=>1000,9413=>1000,9414=>1000,9415=>1000,9416=>1000,9417=>1000,9418=>1000,9419=>1000,9420=>1000,9421=>1000,9422=>1000,9423=>1000,9424=>1000,9425=>1000,9426=>1000,9427=>1000,9428=>1000,9429=>1000,9430=>1000,9431=>1000,9432=>1000,9433=>1000,9434=>1000,9435=>1000,9436=>1000,9437=>1000,9438=>1000,9439=>1000,9440=>1000,9441=>1000,9442=>1000,9443=>1000,9444=>1000,9445=>1000,9446=>1000,9447=>1000,9448=>1000,9449=>1000,9450=>1000,9451=>1000,9452=>1000,9453=>1000,9454=>1000,9455=>1000,9456=>1000,9457=>1000,9458=>1000,9459=>1000,9460=>1000,9461=>1000,9462=>1000,9463=>1000,9464=>1000,9465=>1000,9466=>1000,9467=>1000,9468=>1000,9469=>1000,9470=>1000,9471=>1000,9472=>1000,9473=>1000,9474=>1000,9475=>1000,9476=>1000,9477=>1000,9478=>1000,9479=>1000,9480=>1000,9481=>1000,9482=>1000,9483=>1000,9484=>1000,9485=>1000,9486=>1000,9487=>1000,9488=>1000,9489=>1000,9490=>1000,9491=>1000,9492=>1000,9493=>1000,9494=>1000,9495=>1000,9496=>1000,9497=>1000,9498=>1000,9499=>1000,9500=>1000,9501=>1000,9502=>1000,9503=>1000,9504=>1000,9505=>1000,9506=>1000,9507=>1000,9508=>1000,9509=>1000,9510=>1000,9511=>1000,9512=>1000,9513=>1000,9514=>1000,9515=>1000,9516=>1000,9517=>1000,9518=>1000,9519=>1000,9520=>1000,9521=>1000,9522=>1000,9523=>1000,9524=>1000,9525=>1000,9526=>1000,9527=>1000,9528=>1000,9529=>1000,9530=>1000,9531=>1000,9532=>1000,9533=>1000,9534=>1000,9535=>1000,9536=>1000,9537=>1000,9538=>1000,9539=>1000,9540=>1000,9541=>1000,9542=>1000,9543=>1000,9544=>1000,9545=>1000,9546=>1000,9547=>1000,9548=>1000,9549=>1000,9550=>1000,9551=>1000,9552=>1000,9553=>1000,9554=>1000,9555=>1000,9556=>1000,9557=>1000,9558=>1000,9559=>1000,9560=>1000,9561=>1000,9562=>1000,9563=>1000,9564=>1000,9565=>1000,9566=>1000,9567=>1000,9568=>1000,9569=>1000,9570=>1000,9571=>1000,9572=>1000,9573=>1000,9574=>1000,9575=>1000,9576=>1000,9577=>1000,9578=>1000,9579=>1000,9580=>1000,9581=>1000,9582=>1000,9583=>1000,9584=>1000,9585=>1000,9586=>1000,9587=>1000,9588=>1000,9589=>1000,9590=>1000,9591=>1000,9592=>1000,9593=>1000,9594=>1000,9595=>1000,9596=>1000,9597=>1000,9598=>1000,9599=>1000,9600=>1000,9601=>1000,9602=>1000,9603=>1000,9604=>1000,9605=>1000,9606=>1000,9607=>1000,9608=>1000,9609=>1000,9610=>1000,9611=>1000,9612=>1000,9613=>1000,9614=>1000,9615=>1000,9616=>1000,9617=>1000,9618=>1000,9619=>1000,9620=>1000,9621=>1000,9622=>1000,9623=>1000,9624=>1000,9625=>1000,9626=>1000,9627=>1000,9628=>1000,9629=>1000,9630=>1000,9631=>1000,9632=>1000,9633=>1000,9634=>1000,9635=>1000,9636=>1000,9637=>1000,9638=>1000,9639=>1000,9640=>1000,9641=>1000,9642=>1000,9643=>1000,9649=>1000,9650=>1000,9651=>1000,9654=>1000,9655=>1000,9660=>1000,9661=>1000,9664=>1000,9665=>1000,9670=>1000,9671=>1000,9673=>1000,9674=>1000,9675=>1000,9676=>1000,9678=>1000,9679=>1000,9680=>1000,9681=>1000,9682=>1000,9683=>1000,9698=>1000,9699=>1000,9700=>1000,9701=>1000,9702=>1000,9711=>1000,9728=>1000,9729=>1000,9730=>1000,9731=>1000,9733=>1000,9734=>1000,9737=>1000,9742=>1000,9743=>1000,9750=>1000,9751=>1000,9756=>1000,9757=>1000,9758=>1000,9759=>1000,9775=>1000,9792=>1000,9793=>1000,9794=>1000,9824=>1000,9825=>1000,9826=>1000,9827=>1000,9828=>1000,9829=>1000,9830=>1000,9831=>1000,9832=>1000,9833=>1000,9834=>1000,9835=>1000,9836=>1000,9837=>1000,9838=>1000,9839=>1000,9842=>1000,9843=>1000,9844=>1000,9845=>1000,9846=>1000,9847=>1000,9848=>1000,9849=>1000,9850=>1000,9851=>1000,9852=>1000,9853=>1000,9888=>1000,9917=>1000,9918=>1000,9986=>1000,10003=>723,10010=>1000,10045=>1000,10047=>1000,10048=>1000,10070=>1000,10102=>1000,10103=>1000,10104=>1000,10105=>1000,10106=>1000,10107=>1000,10108=>1000,10109=>1000,10110=>1000,10111=>1000,10112=>1000,10113=>1000,10114=>1000,10115=>1000,10116=>1000,10117=>1000,10118=>1000,10119=>1000,10120=>1000,10121=>1000,10122=>1000,10123=>1000,10124=>1000,10125=>1000,10126=>1000,10127=>1000,10128=>1000,10129=>1000,10130=>1000,10131=>1000,10145=>1000,10548=>1000,10549=>1000,10687=>1000,10746=>1000,10747=>1000,11013=>1000,11014=>1000,11015=>1000,11034=>1000,11157=>1000,11834=>1702,11835=>2496,11904=>1000,11905=>1000,11906=>1000,11907=>1000,11908=>1000,11909=>1000,11910=>1000,11911=>1000,11912=>1000,11913=>1000,11914=>1000,11915=>1000,11916=>1000,11917=>1000,11918=>1000,11919=>1000,11920=>1000,11921=>1000,11922=>1000,11923=>1000,11924=>1000,11925=>1000,11926=>1000,11927=>1000,11928=>1000,11929=>1000,11931=>1000,11932=>1000,11933=>1000,11934=>1000,11935=>1000,11936=>1000,11937=>1000,11938=>1000,11939=>1000,11940=>1000,11941=>1000,11942=>1000,11943=>1000,11944=>1000,11945=>1000,11946=>1000,11947=>1000,11948=>1000,11949=>1000,11950=>1000,11951=>1000,11952=>1000,11953=>1000,11954=>1000,11955=>1000,11956=>1000,11957=>1000,11958=>1000,11959=>1000,11960=>1000,11961=>1000,11962=>1000,11963=>1000,11964=>1000,11965=>1000,11966=>1000,11967=>1000,11968=>1000,11969=>1000,11970=>1000,11971=>1000,11972=>1000,11973=>1000,11974=>1000,11975=>1000,11976=>1000,11977=>1000,11978=>1000,11979=>1000,11980=>1000,11981=>1000,11982=>1000,11983=>1000,11984=>1000,11985=>1000,11986=>1000,11987=>1000,11988=>1000,11989=>1000,11990=>1000,11991=>1000,11992=>1000,11993=>1000,11994=>1000,11995=>1000,11996=>1000,11997=>1000,11998=>1000,11999=>1000,12000=>1000,12001=>1000,12002=>1000,12003=>1000,12004=>1000,12005=>1000,12006=>1000,12007=>1000,12008=>1000,12009=>1000,12010=>1000,12011=>1000,12012=>1000,12013=>1000,12014=>1000,12015=>1000,12016=>1000,12017=>1000,12018=>1000,12019=>1000,12032=>1000,12033=>1000,12034=>1000,12035=>1000,12036=>1000,12037=>1000,12038=>1000,12039=>1000,12040=>1000,12041=>1000,12042=>1000,12043=>1000,12044=>1000,12045=>1000,12046=>1000,12047=>1000,12048=>1000,12049=>1000,12050=>1000,12051=>1000,12052=>1000,12053=>1000,12054=>1000,12055=>1000,12056=>1000,12057=>1000,12058=>1000,12059=>1000,12060=>1000,12061=>1000,12062=>1000,12063=>1000,12064=>1000,12065=>1000,12066=>1000,12067=>1000,12068=>1000,12069=>1000,12070=>1000,12071=>1000,12072=>1000,12073=>1000,12074=>1000,12075=>1000,12076=>1000,12077=>1000,12078=>1000,12079=>1000,12080=>1000,12081=>1000,12082=>1000,12083=>1000,12084=>1000,12085=>1000,12086=>1000,12087=>1000,12088=>1000,12089=>1000,12090=>1000,12091=>1000,12092=>1000,12093=>1000,12094=>1000,12095=>1000,12096=>1000,12097=>1000,12098=>1000,12099=>1000,12100=>1000,12101=>1000,12102=>1000,12103=>1000,12104=>1000,12105=>1000,12106=>1000,12107=>1000,12108=>1000,12109=>1000,12110=>1000,12111=>1000,12112=>1000,12113=>1000,12114=>1000,12115=>1000,12116=>1000,12117=>1000,12118=>1000,12119=>1000,12120=>1000,12121=>1000,12122=>1000,12123=>1000,12124=>1000,12125=>1000,12126=>1000,12127=>1000,12128=>1000,12129=>1000,12130=>1000,12131=>1000,12132=>1000,12133=>1000,12134=>1000,12135=>1000,12136=>1000,12137=>1000,12138=>1000,12139=>1000,12140=>1000,12141=>1000,12142=>1000,12143=>1000,12144=>1000,12145=>1000,12146=>1000,12147=>1000,12148=>1000,12149=>1000,12150=>1000,12151=>1000,12152=>1000,12153=>1000,12154=>1000,12155=>1000,12156=>1000,12157=>1000,12158=>1000,12159=>1000,12160=>1000,12161=>1000,12162=>1000,12163=>1000,12164=>1000,12165=>1000,12166=>1000,12167=>1000,12168=>1000,12169=>1000,12170=>1000,12171=>1000,12172=>1000,12173=>1000,12174=>1000,12175=>1000,12176=>1000,12177=>1000,12178=>1000,12179=>1000,12180=>1000,12181=>1000,12182=>1000,12183=>1000,12184=>1000,12185=>1000,12186=>1000,12187=>1000,12188=>1000,12189=>1000,12190=>1000,12191=>1000,12192=>1000,12193=>1000,12194=>1000,12195=>1000,12196=>1000,12197=>1000,12198=>1000,12199=>1000,12200=>1000,12201=>1000,12202=>1000,12203=>1000,12204=>1000,12205=>1000,12206=>1000,12207=>1000,12208=>1000,12209=>1000,12210=>1000,12211=>1000,12212=>1000,12213=>1000,12214=>1000,12215=>1000,12216=>1000,12217=>1000,12218=>1000,12219=>1000,12220=>1000,12221=>1000,12222=>1000,12223=>1000,12224=>1000,12225=>1000,12226=>1000,12227=>1000,12228=>1000,12229=>1000,12230=>1000,12231=>1000,12232=>1000,12233=>1000,12234=>1000,12235=>1000,12236=>1000,12237=>1000,12238=>1000,12239=>1000,12240=>1000,12241=>1000,12242=>1000,12243=>1000,12244=>1000,12245=>1000,12272=>1000,12273=>1000,12274=>1000,12275=>1000,12276=>1000,12277=>1000,12278=>1000,12279=>1000,12280=>1000,12281=>1000,12282=>1000,12283=>1000,12288=>1000,12289=>1000,12290=>1000,12291=>1000,12292=>1000,12293=>1000,12294=>1000,12295=>1000,12296=>1000,12297=>1000,12298=>1000,12299=>1000,12300=>1000,12301=>1000,12302=>1000,12303=>1000,12304=>1000,12305=>1000,12306=>1000,12307=>1000,12308=>1000,12309=>1000,12310=>1000,12311=>1000,12312=>1000,12313=>1000,12314=>1000,12315=>1000,12316=>1000,12317=>1000,12318=>1000,12319=>1000,12320=>1000,12321=>1000,12322=>1000,12323=>1000,12324=>1000,12325=>1000,12326=>1000,12327=>1000,12328=>1000,12329=>1000,12330=>0,12331=>0,12332=>0,12333=>0,12334=>250,12335=>250,12336=>1000,12337=>1000,12338=>1000,12339=>1000,12340=>1000,12341=>1000,12342=>1000,12343=>1000,12344=>1000,12345=>1000,12346=>1000,12347=>1000,12348=>1000,12349=>1000,12350=>1000,12351=>1000,12353=>1000,12354=>1000,12355=>1000,12356=>1000,12357=>1000,12358=>1000,12359=>1000,12360=>1000,12361=>1000,12362=>1000,12363=>1000,12364=>1000,12365=>1000,12366=>1000,12367=>1000,12368=>1000,12369=>1000,12370=>1000,12371=>1000,12372=>1000,12373=>1000,12374=>1000,12375=>1000,12376=>1000,12377=>1000,12378=>1000,12379=>1000,12380=>1000,12381=>1000,12382=>1000,12383=>1000,12384=>1000,12385=>1000,12386=>1000,12387=>1000,12388=>1000,12389=>1000,12390=>1000,12391=>1000,12392=>1000,12393=>1000,12394=>1000,12395=>1000,12396=>1000,12397=>1000,12398=>1000,12399=>1000,12400=>1000,12401=>1000,12402=>1000,12403=>1000,12404=>1000,12405=>1000,12406=>1000,12407=>1000,12408=>1000,12409=>1000,12410=>1000,12411=>1000,12412=>1000,12413=>1000,12414=>1000,12415=>1000,12416=>1000,12417=>1000,12418=>1000,12419=>1000,12420=>1000,12421=>1000,12422=>1000,12423=>1000,12424=>1000,12425=>1000,12426=>1000,12427=>1000,12428=>1000,12429=>1000,12430=>1000,12431=>1000,12432=>1000,12433=>1000,12434=>1000,12435=>1000,12436=>1000,12437=>1000,12438=>1000,12441=>0,12442=>0,12443=>1000,12444=>1000,12445=>1000,12446=>1000,12447=>1000,12448=>1000,12449=>1000,12450=>1000,12451=>1000,12452=>1000,12453=>1000,12454=>1000,12455=>1000,12456=>1000,12457=>1000,12458=>1000,12459=>1000,12460=>1000,12461=>1000,12462=>1000,12463=>1000,12464=>1000,12465=>1000,12466=>1000,12467=>1000,12468=>1000,12469=>1000,12470=>1000,12471=>1000,12472=>1000,12473=>1000,12474=>1000,12475=>1000,12476=>1000,12477=>1000,12478=>1000,12479=>1000,12480=>1000,12481=>1000,12482=>1000,12483=>1000,12484=>1000,12485=>1000,12486=>1000,12487=>1000,12488=>1000,12489=>1000,12490=>1000,12491=>1000,12492=>1000,12493=>1000,12494=>1000,12495=>1000,12496=>1000,12497=>1000,12498=>1000,12499=>1000,12500=>1000,12501=>1000,12502=>1000,12503=>1000,12504=>1000,12505=>1000,12506=>1000,12507=>1000,12508=>1000,12509=>1000,12510=>1000,12511=>1000,12512=>1000,12513=>1000,12514=>1000,12515=>1000,12516=>1000,12517=>1000,12518=>1000,12519=>1000,12520=>1000,12521=>1000,12522=>1000,12523=>1000,12524=>1000,12525=>1000,12526=>1000,12527=>1000,12528=>1000,12529=>1000,12530=>1000,12531=>1000,12532=>1000,12533=>1000,12534=>1000,12535=>1000,12536=>1000,12537=>1000,12538=>1000,12539=>1000,12540=>1000,12541=>1000,12542=>1000,12543=>1000,12549=>1000,12550=>1000,12551=>1000,12552=>1000,12553=>1000,12554=>1000,12555=>1000,12556=>1000,12557=>1000,12558=>1000,12559=>1000,12560=>1000,12561=>1000,12562=>1000,12563=>1000,12564=>1000,12565=>1000,12566=>1000,12567=>1000,12568=>1000,12569=>1000,12570=>1000,12571=>1000,12572=>1000,12573=>1000,12574=>1000,12575=>1000,12576=>1000,12577=>1000,12578=>1000,12579=>1000,12580=>1000,12581=>1000,12582=>1000,12583=>1000,12584=>1000,12585=>1000,12586=>1000,12587=>1000,12588=>1000,12589=>1000,12590=>1000,12591=>1000,12593=>920,12594=>920,12595=>920,12596=>920,12597=>920,12598=>920,12599=>920,12600=>920,12601=>920,12602=>920,12603=>920,12604=>920,12605=>920,12606=>920,12607=>920,12608=>920,12609=>920,12610=>920,12611=>920,12612=>920,12613=>920,12614=>920,12615=>920,12616=>920,12617=>920,12618=>920,12619=>920,12620=>920,12621=>920,12622=>920,12623=>920,12624=>920,12625=>920,12626=>920,12627=>920,12628=>920,12629=>920,12630=>920,12631=>920,12632=>920,12633=>920,12634=>920,12635=>920,12636=>920,12637=>920,12638=>920,12639=>920,12640=>920,12641=>920,12642=>920,12643=>920,12645=>920,12646=>920,12647=>920,12648=>920,12649=>920,12650=>920,12651=>920,12652=>920,12653=>920,12654=>920,12655=>920,12656=>920,12657=>920,12658=>920,12659=>920,12660=>920,12661=>920,12662=>920,12663=>920,12664=>920,12665=>920,12666=>920,12667=>920,12668=>920,12669=>920,12670=>920,12671=>920,12672=>920,12673=>920,12674=>920,12675=>920,12676=>920,12677=>920,12678=>920,12679=>920,12680=>920,12681=>920,12682=>920,12683=>920,12684=>920,12685=>920,12686=>920,12688=>1000,12689=>1000,12690=>1000,12691=>1000,12692=>1000,12693=>1000,12694=>1000,12695=>1000,12696=>1000,12697=>1000,12698=>1000,12699=>1000,12700=>1000,12701=>1000,12702=>1000,12703=>1000,12704=>1000,12705=>1000,12706=>1000,12707=>1000,12708=>1000,12709=>1000,12710=>1000,12711=>1000,12712=>1000,12713=>1000,12714=>1000,12715=>1000,12716=>1000,12717=>1000,12718=>1000,12719=>1000,12720=>1000,12721=>1000,12722=>1000,12723=>1000,12724=>600,12725=>600,12726=>600,12727=>600,12728=>1000,12729=>1000,12730=>1000,12731=>600,12736=>1000,12737=>1000,12738=>1000,12739=>1000,12740=>1000,12741=>1000,12742=>1000,12743=>1000,12744=>1000,12745=>1000,12746=>1000,12747=>1000,12748=>1000,12749=>1000,12750=>1000,12751=>1000,12752=>1000,12753=>1000,12754=>1000,12755=>1000,12756=>1000,12757=>1000,12758=>1000,12759=>1000,12760=>1000,12761=>1000,12762=>1000,12763=>1000,12764=>1000,12765=>1000,12766=>1000,12767=>1000,12768=>1000,12769=>1000,12770=>1000,12771=>1000,12784=>1000,12785=>1000,12786=>1000,12787=>1000,12788=>1000,12789=>1000,12790=>1000,12791=>1000,12792=>1000,12793=>1000,12794=>1000,12795=>1000,12796=>1000,12797=>1000,12798=>1000,12799=>1000,12800=>1000,12801=>1000,12802=>1000,12803=>1000,12804=>1000,12805=>1000,12806=>1000,12807=>1000,12808=>1000,12809=>1000,12810=>1000,12811=>1000,12812=>1000,12813=>1000,12814=>1000,12815=>1000,12816=>1000,12817=>1000,12818=>1000,12819=>1000,12820=>1000,12821=>1000,12822=>1000,12823=>1000,12824=>1000,12825=>1000,12826=>1000,12827=>1000,12828=>1000,12829=>1000,12830=>1000,12832=>1000,12833=>1000,12834=>1000,12835=>1000,12836=>1000,12837=>1000,12838=>1000,12839=>1000,12840=>1000,12841=>1000,12842=>1000,12843=>1000,12844=>1000,12845=>1000,12846=>1000,12847=>1000,12848=>1000,12849=>1000,12850=>1000,12851=>1000,12852=>1000,12853=>1000,12854=>1000,12855=>1000,12856=>1000,12857=>1000,12858=>1000,12859=>1000,12860=>1000,12861=>1000,12862=>1000,12863=>1000,12864=>1000,12865=>1000,12866=>1000,12867=>1000,12868=>1000,12869=>1000,12870=>1000,12871=>1000,12872=>1000,12873=>1000,12874=>1000,12875=>1000,12876=>1000,12877=>1000,12878=>1000,12879=>1000,12880=>1000,12881=>1000,12882=>1000,12883=>1000,12884=>1000,12885=>1000,12886=>1000,12887=>1000,12888=>1000,12889=>1000,12890=>1000,12891=>1000,12892=>1000,12893=>1000,12894=>1000,12895=>1000,12896=>1000,12897=>1000,12898=>1000,12899=>1000,12900=>1000,12901=>1000,12902=>1000,12903=>1000,12904=>1000,12905=>1000,12906=>1000,12907=>1000,12908=>1000,12909=>1000,12910=>1000,12911=>1000,12912=>1000,12913=>1000,12914=>1000,12915=>1000,12916=>1000,12917=>1000,12918=>1000,12919=>1000,12920=>1000,12921=>1000,12922=>1000,12923=>1000,12924=>1000,12925=>1000,12926=>1000,12927=>1000,12928=>1000,12929=>1000,12930=>1000,12931=>1000,12932=>1000,12933=>1000,12934=>1000,12935=>1000,12936=>1000,12937=>1000,12938=>1000,12939=>1000,12940=>1000,12941=>1000,12942=>1000,12943=>1000,12944=>1000,12945=>1000,12946=>1000,12947=>1000,12948=>1000,12949=>1000,12950=>1000,12951=>1000,12952=>1000,12953=>1000,12954=>1000,12955=>1000,12956=>1000,12957=>1000,12958=>1000,12959=>1000,12960=>1000,12961=>1000,12962=>1000,12963=>1000,12964=>1000,12965=>1000,12966=>1000,12967=>1000,12968=>1000,12969=>1000,12970=>1000,12971=>1000,12972=>1000,12973=>1000,12974=>1000,12975=>1000,12976=>1000,12977=>1000,12978=>1000,12979=>1000,12980=>1000,12981=>1000,12982=>1000,12983=>1000,12984=>1000,12985=>1000,12986=>1000,12987=>1000,12988=>1000,12989=>1000,12990=>1000,12991=>1000,12992=>1000,12993=>1000,12994=>1000,12995=>1000,12996=>1000,12997=>1000,12998=>1000,12999=>1000,13000=>1000,13001=>1000,13002=>1000,13003=>1000,13004=>1000,13005=>1000,13006=>1000,13007=>1000,13008=>1000,13009=>1000,13010=>1000,13011=>1000,13012=>1000,13013=>1000,13014=>1000,13015=>1000,13016=>1000,13017=>1000,13018=>1000,13019=>1000,13020=>1000,13021=>1000,13022=>1000,13023=>1000,13024=>1000,13025=>1000,13026=>1000,13027=>1000,13028=>1000,13029=>1000,13030=>1000,13031=>1000,13032=>1000,13033=>1000,13034=>1000,13035=>1000,13036=>1000,13037=>1000,13038=>1000,13039=>1000,13040=>1000,13041=>1000,13042=>1000,13043=>1000,13044=>1000,13045=>1000,13046=>1000,13047=>1000,13048=>1000,13049=>1000,13050=>1000,13051=>1000,13052=>1000,13053=>1000,13054=>1000,13055=>1000,13056=>1000,13057=>1000,13058=>1000,13059=>1000,13060=>1000,13061=>1000,13062=>1000,13063=>1000,13064=>1000,13065=>1000,13066=>1000,13067=>1000,13068=>1000,13069=>1000,13070=>1000,13071=>1000,13072=>1000,13073=>1000,13074=>1000,13075=>1000,13076=>1000,13077=>1000,13078=>1000,13079=>1000,13080=>1000,13081=>1000,13082=>1000,13083=>1000,13084=>1000,13085=>1000,13086=>1000,13087=>1000,13088=>1000,13089=>1000,13090=>1000,13091=>1000,13092=>1000,13093=>1000,13094=>1000,13095=>1000,13096=>1000,13097=>1000,13098=>1000,13099=>1000,13101=>1000,13102=>1000,13103=>1000,13104=>1000,13105=>1000,13106=>1000,13107=>1000,13108=>1000,13109=>1000,13110=>1000,13111=>1000,13112=>1000,13113=>1000,13114=>1000,13115=>1000,13116=>1000,13117=>1000,13118=>1000,13119=>1000,13120=>1000,13121=>1000,13122=>1000,13123=>1000,13124=>1000,13125=>1000,13126=>1000,13127=>1000,13128=>1000,13129=>1000,13130=>1000,13131=>1000,13132=>1000,13133=>1000,13134=>1000,13135=>1000,13136=>1000,13137=>1000,13138=>1000,13139=>1000,13140=>1000,13141=>1000,13142=>1000,13143=>1000,13144=>1000,13145=>1000,13146=>1000,13147=>1000,13148=>1000,13149=>1000,13150=>1000,13151=>1000,13152=>1000,13153=>1000,13154=>1000,13155=>1000,13156=>1000,13157=>1000,13158=>1000,13159=>1000,13160=>1000,13161=>1000,13162=>1000,13163=>1000,13164=>1000,13165=>1000,13166=>1000,13167=>1000,13168=>1000,13169=>1000,13170=>1000,13171=>1000,13172=>1000,13173=>1000,13174=>1000,13175=>1000,13176=>1000,13177=>1000,13178=>1000,13179=>1000,13180=>1000,13181=>1000,13182=>1000,13183=>1000,13184=>1000,13185=>1000,13186=>1000,13187=>1000,13188=>1000,13189=>1000,13190=>1000,13191=>1000,13192=>1000,13193=>1000,13194=>1000,13195=>1000,13196=>1000,13197=>1000,13198=>1000,13199=>1000,13200=>1000,13201=>1000,13202=>1000,13203=>1000,13204=>1000,13205=>1000,13206=>1000,13207=>1000,13208=>1000,13209=>1000,13210=>1000,13211=>1000,13212=>1000,13213=>1000,13214=>1000,13215=>1000,13216=>1000,13217=>1000,13218=>1000,13219=>1000,13220=>1000,13221=>1000,13222=>1000,13223=>1000,13224=>1000,13225=>1000,13226=>1000,13227=>1000,13228=>1000,13229=>1000,13230=>1000,13231=>1000,13232=>1000,13233=>1000,13234=>1000,13235=>1000,13236=>1000,13237=>1000,13238=>1000,13239=>1000,13240=>1000,13241=>1000,13242=>1000,13243=>1000,13244=>1000,13245=>1000,13246=>1000,13247=>1000,13248=>1000,13249=>1000,13250=>1000,13251=>1000,13252=>1000,13253=>1000,13254=>1000,13255=>1000,13256=>1000,13257=>1000,13258=>1000,13259=>1000,13260=>1000,13261=>1000,13262=>1000,13263=>1000,13264=>1000,13265=>1000,13266=>1000,13267=>1000,13268=>1000,13269=>1000,13270=>1000,13271=>1000,13272=>1000,13273=>1000,13274=>1000,13275=>1000,13276=>1000,13277=>1000,13278=>1000,13279=>1000,13280=>1000,13281=>1000,13282=>1000,13283=>1000,13284=>1000,13285=>1000,13286=>1000,13287=>1000,13288=>1000,13289=>1000,13290=>1000,13291=>1000,13292=>1000,13293=>1000,13294=>1000,13295=>1000,13296=>1000,13297=>1000,13298=>1000,13299=>1000,13300=>1000,13301=>1000,13302=>1000,13303=>1000,13304=>1000,13305=>1000,13306=>1000,13307=>1000,13308=>1000,13309=>1000,13310=>1000,13311=>1000,13365=>1000,13376=>1000,13386=>1000,13388=>1000,13412=>1000,13427=>1000,13434=>1000,13437=>1000,13438=>1000,13459=>1000,13462=>1000,13477=>1000,13487=>1000,13500=>1000,13505=>1000,13512=>1000,13535=>1000,13540=>1000,13542=>1000,13563=>1000,13574=>1000,13630=>1000,13649=>1000,13651=>1000,13657=>1000,13665=>1000,13677=>1000,13680=>1000,13682=>1000,13687=>1000,13688=>1000,13700=>1000,13719=>1000,13720=>1000,13729=>1000,13733=>1000,13741=>1000,13759=>1000,13761=>1000,13765=>1000,13767=>1000,13770=>1000,13774=>1000,13778=>1000,13782=>1000,13787=>1000,13789=>1000,13809=>1000,13810=>1000,13811=>1000,13819=>1000,13822=>1000,13833=>1000,13848=>1000,13850=>1000,13859=>1000,13861=>1000,13869=>1000,13877=>1000,13881=>1000,13886=>1000,13895=>1000,13896=>1000,13897=>1000,13902=>1000,13919=>1000,13921=>1000,13946=>1000,13953=>1000,13978=>1000,13989=>1000,13994=>1000,13996=>1000,14000=>1000,14001=>1000,14005=>1000,14009=>1000,14012=>1000,14017=>1000,14019=>1000,14020=>1000,14021=>1000,14023=>1000,14024=>1000,14035=>1000,14036=>1000,14038=>1000,14045=>1000,14049=>1000,14050=>1000,14053=>1000,14054=>1000,14069=>1000,14081=>1000,14083=>1000,14088=>1000,14090=>1000,14093=>1000,14108=>1000,14114=>1000,14115=>1000,14117=>1000,14124=>1000,14125=>1000,14128=>1000,14130=>1000,14131=>1000,14138=>1000,14144=>1000,14147=>1000,14178=>1000,14191=>1000,14231=>1000,14240=>1000,14265=>1000,14270=>1000,14294=>1000,14322=>1000,14328=>1000,14331=>1000,14351=>1000,14361=>1000,14368=>1000,14381=>1000,14390=>1000,14392=>1000,14435=>1000,14453=>1000,14496=>1000,14531=>1000,14540=>1000,14545=>1000,14548=>1000,14586=>1000,14600=>1000,14612=>1000,14631=>1000,14642=>1000,14655=>1000,14669=>1000,14691=>1000,14712=>1000,14720=>1000,14729=>1000,14730=>1000,14738=>1000,14745=>1000,14747=>1000,14753=>1000,14756=>1000,14776=>1000,14812=>1000,14818=>1000,14821=>1000,14828=>1000,14840=>1000,14843=>1000,14846=>1000,14849=>1000,14851=>1000,14854=>1000,14871=>1000,14872=>1000,14889=>1000,14890=>1000,14900=>1000,14923=>1000,14930=>1000,14935=>1000,14940=>1000,14942=>1000,14950=>1000,14951=>1000,14999=>1000,15019=>1000,15037=>1000,15066=>1000,15070=>1000,15072=>1000,15088=>1000,15090=>1000,15093=>1000,15099=>1000,15118=>1000,15129=>1000,15138=>1000,15147=>1000,15161=>1000,15170=>1000,15192=>1000,15200=>1000,15217=>1000,15218=>1000,15227=>1000,15228=>1000,15232=>1000,15253=>1000,15254=>1000,15257=>1000,15265=>1000,15292=>1000,15294=>1000,15298=>1000,15300=>1000,15319=>1000,15325=>1000,15340=>1000,15346=>1000,15347=>1000,15348=>1000,15373=>1000,15377=>1000,15381=>1000,15384=>1000,15444=>1000,15499=>1000,15563=>1000,15565=>1000,15569=>1000,15574=>1000,15580=>1000,15595=>1000,15599=>1000,15634=>1000,15635=>1000,15645=>1000,15666=>1000,15675=>1000,15686=>1000,15692=>1000,15694=>1000,15697=>1000,15711=>1000,15714=>1000,15721=>1000,15722=>1000,15727=>1000,15733=>1000,15741=>1000,15749=>1000,15752=>1000,15754=>1000,15759=>1000,15761=>1000,15781=>1000,15789=>1000,15796=>1000,15807=>1000,15814=>1000,15815=>1000,15817=>1000,15820=>1000,15821=>1000,15827=>1000,15835=>1000,15847=>1000,15848=>1000,15851=>1000,15859=>1000,15860=>1000,15863=>1000,15868=>1000,15869=>1000,15878=>1000,15936=>1000,15939=>1000,15944=>1000,15957=>1000,15988=>1000,16040=>1000,16041=>1000,16042=>1000,16045=>1000,16049=>1000,16056=>1000,16063=>1000,16066=>1000,16071=>1000,16074=>1000,16076=>1000,16080=>1000,16081=>1000,16086=>1000,16087=>1000,16090=>1000,16091=>1000,16094=>1000,16097=>1000,16098=>1000,16103=>1000,16105=>1000,16107=>1000,16108=>1000,16112=>1000,16115=>1000,16116=>1000,16122=>1000,16124=>1000,16127=>1000,16128=>1000,16132=>1000,16134=>1000,16135=>1000,16142=>1000,16211=>1000,16216=>1000,16217=>1000,16227=>1000,16252=>1000,16275=>1000,16320=>1000,16328=>1000,16343=>1000,16348=>1000,16357=>1000,16365=>1000,16377=>1000,16378=>1000,16388=>1000,16393=>1000,16413=>1000,16441=>1000,16453=>1000,16467=>1000,16471=>1000,16482=>1000,16485=>1000,16490=>1000,16495=>1000,16497=>1000,16552=>1000,16564=>1000,16571=>1000,16575=>1000,16584=>1000,16600=>1000,16607=>1000,16632=>1000,16634=>1000,16642=>1000,16643=>1000,16644=>1000,16649=>1000,16654=>1000,16689=>1000,16690=>1000,16743=>1000,16748=>1000,16750=>1000,16764=>1000,16767=>1000,16769=>1000,16784=>1000,16818=>1000,16836=>1000,16842=>1000,16847=>1000,16859=>1000,16877=>1000,16879=>1000,16889=>1000,16913=>1000,16931=>1000,16960=>1000,16992=>1000,17002=>1000,17014=>1000,17018=>1000,17036=>1000,17044=>1000,17058=>1000,17077=>1000,17081=>1000,17084=>1000,17140=>1000,17147=>1000,17148=>1000,17162=>1000,17195=>1000,17262=>1000,17303=>1000,17306=>1000,17338=>1000,17345=>1000,17369=>1000,17375=>1000,17389=>1000,17392=>1000,17394=>1000,17409=>1000,17410=>1000,17427=>1000,17445=>1000,17453=>1000,17530=>1000,17551=>1000,17553=>1000,17567=>1000,17568=>1000,17570=>1000,17584=>1000,17591=>1000,17597=>1000,17600=>1000,17603=>1000,17605=>1000,17614=>1000,17629=>1000,17630=>1000,17631=>1000,17633=>1000,17636=>1000,17641=>1000,17642=>1000,17643=>1000,17644=>1000,17652=>1000,17667=>1000,17668=>1000,17673=>1000,17675=>1000,17686=>1000,17691=>1000,17693=>1000,17703=>1000,17710=>1000,17715=>1000,17718=>1000,17723=>1000,17725=>1000,17727=>1000,17731=>1000,17745=>1000,17746=>1000,17749=>1000,17752=>1000,17756=>1000,17761=>1000,17762=>1000,17770=>1000,17773=>1000,17783=>1000,17784=>1000,17797=>1000,17830=>1000,17843=>1000,17882=>1000,17897=>1000,17898=>1000,17923=>1000,17926=>1000,17935=>1000,17941=>1000,17943=>1000,18011=>1000,18042=>1000,18048=>1000,18081=>1000,18094=>1000,18107=>1000,18127=>1000,18128=>1000,18165=>1000,18167=>1000,18195=>1000,18200=>1000,18230=>1000,18244=>1000,18254=>1000,18255=>1000,18300=>1000,18328=>1000,18342=>1000,18389=>1000,18413=>1000,18420=>1000,18432=>1000,18443=>1000,18487=>1000,18525=>1000,18545=>1000,18587=>1000,18605=>1000,18606=>1000,18640=>1000,18653=>1000,18669=>1000,18675=>1000,18682=>1000,18694=>1000,18705=>1000,18718=>1000,18725=>1000,18730=>1000,18733=>1000,18735=>1000,18736=>1000,18741=>1000,18748=>1000,18750=>1000,18757=>1000,18769=>1000,18771=>1000,18789=>1000,18794=>1000,18802=>1000,18825=>1000,18849=>1000,18855=>1000,18911=>1000,18917=>1000,18919=>1000,18959=>1000,18973=>1000,18980=>1000,18997=>1000,19094=>1000,19108=>1000,19124=>1000,19128=>1000,19153=>1000,19172=>1000,19199=>1000,19216=>1000,19225=>1000,19232=>1000,19244=>1000,19255=>1000,19311=>1000,19312=>1000,19314=>1000,19323=>1000,19326=>1000,19342=>1000,19344=>1000,19347=>1000,19350=>1000,19351=>1000,19357=>1000,19389=>1000,19390=>1000,19392=>1000,19460=>1000,19463=>1000,19470=>1000,19506=>1000,19515=>1000,19518=>1000,19520=>1000,19527=>1000,19543=>1000,19547=>1000,19565=>1000,19575=>1000,19579=>1000,19581=>1000,19585=>1000,19589=>1000,19620=>1000,19630=>1000,19632=>1000,19639=>1000,19661=>1000,19681=>1000,19682=>1000,19693=>1000,19719=>1000,19721=>1000,19728=>1000,19764=>1000,19830=>1000,19831=>1000,19849=>1000,19857=>1000,19868=>1000,19968=>1000,19969=>1000,19971=>1000,19972=>1000,19975=>1000,19976=>1000,19977=>1000,19978=>1000,19979=>1000,19980=>1000,19981=>1000,19982=>1000,19983=>1000,19984=>1000,19985=>1000,19988=>1000,19989=>1000,19990=>1000,19992=>1000,19993=>1000,19994=>1000,19996=>1000,19998=>1000,19999=>1000,20001=>1000,20002=>1000,20004=>1000,20006=>1000,20008=>1000,20010=>1000,20011=>1000,20012=>1000,20013=>1000,20014=>1000,20015=>1000,20016=>1000,20017=>1000,20018=>1000,20019=>1000,20022=>1000,20023=>1000,20024=>1000,20025=>1000,20027=>1000,20028=>1000,20029=>1000,20031=>1000,20034=>1000,20035=>1000,20037=>1000,20039=>1000,20040=>1000,20041=>1000,20043=>1000,20045=>1000,20046=>1000,20047=>1000,20050=>1000,20051=>1000,20054=>1000,20056=>1000,20057=>1000,20058=>1000,20059=>1000,20060=>1000,20061=>1000,20062=>1000,20063=>1000,20073=>1000,20074=>1000,20083=>1000,20088=>1000,20094=>1000,20095=>1000,20096=>1000,20097=>1000,20098=>1000,20099=>1000,20100=>1000,20101=>1000,20102=>1000,20103=>1000,20104=>1000,20105=>1000,20107=>1000,20108=>1000,20109=>1000,20110=>1000,20113=>1000,20114=>1000,20115=>1000,20116=>1000,20117=>1000,20120=>1000,20121=>1000,20122=>1000,20123=>1000,20126=>1000,20127=>1000,20128=>1000,20129=>1000,20130=>1000,20131=>1000,20132=>1000,20133=>1000,20134=>1000,20136=>1000,20139=>1000,20140=>1000,20141=>1000,20142=>1000,20147=>1000,20150=>1000,20151=>1000,20153=>1000,20154=>1000,20155=>1000,20156=>1000,20159=>1000,20160=>1000,20161=>1000,20162=>1000,20163=>1000,20164=>1000,20166=>1000,20167=>1000,20168=>1000,20169=>1000,20170=>1000,20171=>1000,20173=>1000,20174=>1000,20180=>1000,20181=>1000,20182=>1000,20183=>1000,20184=>1000,20185=>1000,20186=>1000,20188=>1000,20189=>1000,20190=>1000,20191=>1000,20193=>1000,20195=>1000,20196=>1000,20197=>1000,20200=>1000,20201=>1000,20202=>1000,20203=>1000,20206=>1000,20208=>1000,20209=>1000,20210=>1000,20211=>1000,20212=>1000,20213=>1000,20214=>1000,20215=>1000,20216=>1000,20219=>1000,20221=>1000,20223=>1000,20224=>1000,20225=>1000,20226=>1000,20227=>1000,20228=>1000,20229=>1000,20232=>1000,20233=>1000,20234=>1000,20235=>1000,20237=>1000,20238=>1000,20239=>1000,20240=>1000,20241=>1000,20242=>1000,20243=>1000,20244=>1000,20245=>1000,20247=>1000,20248=>1000,20249=>1000,20250=>1000,20253=>1000,20258=>1000,20264=>1000,20265=>1000,20268=>1000,20269=>1000,20271=>1000,20272=>1000,20274=>1000,20275=>1000,20276=>1000,20278=>1000,20279=>1000,20280=>1000,20281=>1000,20282=>1000,20283=>1000,20284=>1000,20285=>1000,20286=>1000,20287=>1000,20289=>1000,20290=>1000,20291=>1000,20293=>1000,20294=>1000,20295=>1000,20296=>1000,20297=>1000,20299=>1000,20300=>1000,20301=>1000,20302=>1000,20303=>1000,20304=>1000,20305=>1000,20306=>1000,20307=>1000,20308=>1000,20309=>1000,20310=>1000,20311=>1000,20312=>1000,20313=>1000,20314=>1000,20315=>1000,20316=>1000,20317=>1000,20318=>1000,20319=>1000,20320=>1000,20321=>1000,20322=>1000,20323=>1000,20324=>1000,20327=>1000,20329=>1000,20330=>1000,20331=>1000,20332=>1000,20334=>1000,20335=>1000,20336=>1000,20338=>1000,20339=>1000,20340=>1000,20341=>1000,20342=>1000,20343=>1000,20344=>1000,20345=>1000,20346=>1000,20347=>1000,20348=>1000,20349=>1000,20350=>1000,20351=>1000,20352=>1000,20353=>1000,20354=>1000,20355=>1000,20356=>1000,20357=>1000,20358=>1000,20359=>1000,20360=>1000,20361=>1000,20362=>1000,20363=>1000,20365=>1000,20367=>1000,20368=>1000,20369=>1000,20370=>1000,20372=>1000,20373=>1000,20374=>1000,20375=>1000,20376=>1000,20378=>1000,20379=>1000,20380=>1000,20381=>1000,20382=>1000,20386=>1000,20392=>1000,20395=>1000,20398=>1000,20399=>1000,20400=>1000,20402=>1000,20403=>1000,20404=>1000,20405=>1000,20406=>1000,20407=>1000,20409=>1000,20410=>1000,20411=>1000,20413=>1000,20415=>1000,20416=>1000,20417=>1000,20418=>1000,20419=>1000,20420=>1000,20421=>1000,20423=>1000,20424=>1000,20425=>1000,20426=>1000,20427=>1000,20428=>1000,20429=>1000,20430=>1000,20431=>1000,20432=>1000,20433=>1000,20435=>1000,20436=>1000,20438=>1000,20439=>1000,20440=>1000,20441=>1000,20442=>1000,20443=>1000,20444=>1000,20445=>1000,20446=>1000,20447=>1000,20448=>1000,20449=>1000,20452=>1000,20453=>1000,20460=>1000,20462=>1000,20463=>1000,20464=>1000,20465=>1000,20466=>1000,20467=>1000,20468=>1000,20469=>1000,20470=>1000,20471=>1000,20472=>1000,20473=>1000,20474=>1000,20477=>1000,20478=>1000,20480=>1000,20483=>1000,20485=>1000,20486=>1000,20487=>1000,20488=>1000,20489=>1000,20491=>1000,20492=>1000,20493=>1000,20494=>1000,20495=>1000,20497=>1000,20498=>1000,20499=>1000,20500=>1000,20501=>1000,20502=>1000,20503=>1000,20504=>1000,20505=>1000,20506=>1000,20507=>1000,20508=>1000,20510=>1000,20511=>1000,20512=>1000,20513=>1000,20514=>1000,20515=>1000,20517=>1000,20518=>1000,20519=>1000,20520=>1000,20521=>1000,20522=>1000,20523=>1000,20524=>1000,20525=>1000,20526=>1000,20527=>1000,20528=>1000,20529=>1000,20531=>1000,20532=>1000,20533=>1000,20535=>1000,20539=>1000,20540=>1000,20544=>1000,20545=>1000,20547=>1000,20549=>1000,20550=>1000,20551=>1000,20552=>1000,20553=>1000,20554=>1000,20555=>1000,20556=>1000,20557=>1000,20558=>1000,20559=>1000,20561=>1000,20563=>1000,20565=>1000,20566=>1000,20567=>1000,20568=>1000,20570=>1000,20571=>1000,20572=>1000,20573=>1000,20574=>1000,20575=>1000,20576=>1000,20577=>1000,20578=>1000,20579=>1000,20580=>1000,20581=>1000,20582=>1000,20584=>1000,20585=>1000,20586=>1000,20587=>1000,20588=>1000,20589=>1000,20590=>1000,20591=>1000,20592=>1000,20594=>1000,20595=>1000,20596=>1000,20597=>1000,20598=>1000,20599=>1000,20602=>1000,20605=>1000,20608=>1000,20609=>1000,20610=>1000,20611=>1000,20613=>1000,20615=>1000,20616=>1000,20619=>1000,20620=>1000,20621=>1000,20622=>1000,20624=>1000,20625=>1000,20626=>1000,20628=>1000,20629=>1000,20630=>1000,20632=>1000,20633=>1000,20634=>1000,20635=>1000,20636=>1000,20637=>1000,20638=>1000,20642=>1000,20643=>1000,20646=>1000,20652=>1000,20653=>1000,20654=>1000,20655=>1000,20656=>1000,20657=>1000,20658=>1000,20659=>1000,20660=>1000,20661=>1000,20662=>1000,20663=>1000,20664=>1000,20666=>1000,20667=>1000,20668=>1000,20669=>1000,20670=>1000,20671=>1000,20673=>1000,20674=>1000,20676=>1000,20677=>1000,20678=>1000,20679=>1000,20680=>1000,20681=>1000,20682=>1000,20683=>1000,20685=>1000,20686=>1000,20687=>1000,20688=>1000,20689=>1000,20691=>1000,20692=>1000,20693=>1000,20694=>1000,20695=>1000,20697=>1000,20698=>1000,20699=>1000,20701=>1000,20703=>1000,20704=>1000,20705=>1000,20707=>1000,20708=>1000,20709=>1000,20710=>1000,20711=>1000,20712=>1000,20713=>1000,20714=>1000,20716=>1000,20717=>1000,20718=>1000,20719=>1000,20720=>1000,20721=>1000,20723=>1000,20724=>1000,20725=>1000,20726=>1000,20728=>1000,20729=>1000,20731=>1000,20732=>1000,20733=>1000,20734=>1000,20735=>1000,20736=>1000,20737=>1000,20738=>1000,20739=>1000,20740=>1000,20741=>1000,20742=>1000,20743=>1000,20744=>1000,20745=>1000,20746=>1000,20747=>1000,20748=>1000,20749=>1000,20750=>1000,20752=>1000,20753=>1000,20754=>1000,20755=>1000,20756=>1000,20757=>1000,20759=>1000,20760=>1000,20762=>1000,20764=>1000,20767=>1000,20768=>1000,20769=>1000,20770=>1000,20772=>1000,20773=>1000,20774=>1000,20777=>1000,20778=>1000,20779=>1000,20781=>1000,20782=>1000,20784=>1000,20785=>1000,20786=>1000,20787=>1000,20788=>1000,20789=>1000,20791=>1000,20792=>1000,20793=>1000,20794=>1000,20795=>1000,20796=>1000,20797=>1000,20799=>1000,20800=>1000,20801=>1000,20803=>1000,20804=>1000,20805=>1000,20806=>1000,20807=>1000,20808=>1000,20809=>1000,20811=>1000,20812=>1000,20813=>1000,20817=>1000,20818=>1000,20820=>1000,20821=>1000,20822=>1000,20823=>1000,20825=>1000,20826=>1000,20827=>1000,20828=>1000,20829=>1000,20830=>1000,20831=>1000,20832=>1000,20833=>1000,20834=>1000,20835=>1000,20837=>1000,20839=>1000,20840=>1000,20841=>1000,20842=>1000,20843=>1000,20844=>1000,20845=>1000,20846=>1000,20849=>1000,20852=>1000,20853=>1000,20854=>1000,20855=>1000,20856=>1000,20857=>1000,20860=>1000,20864=>1000,20866=>1000,20870=>1000,20871=>1000,20872=>1000,20873=>1000,20874=>1000,20877=>1000,20879=>1000,20881=>1000,20882=>1000,20883=>1000,20884=>1000,20885=>1000,20886=>1000,20887=>1000,20888=>1000,20890=>1000,20892=>1000,20894=>1000,20896=>1000,20898=>1000,20900=>1000,20901=>1000,20903=>1000,20904=>1000,20906=>1000,20907=>1000,20908=>1000,20910=>1000,20912=>1000,20913=>1000,20914=>1000,20915=>1000,20916=>1000,20917=>1000,20918=>1000,20919=>1000,20920=>1000,20921=>1000,20924=>1000,20925=>1000,20926=>1000,20931=>1000,20932=>1000,20933=>1000,20934=>1000,20935=>1000,20936=>1000,20937=>1000,20938=>1000,20939=>1000,20940=>1000,20941=>1000,20942=>1000,20943=>1000,20944=>1000,20945=>1000,20946=>1000,20947=>1000,20948=>1000,20951=>1000,20952=>1000,20955=>1000,20956=>1000,20957=>1000,20958=>1000,20959=>1000,20960=>1000,20961=>1000,20962=>1000,20964=>1000,20973=>1000,20976=>1000,20977=>1000,20979=>1000,20980=>1000,20981=>1000,20982=>1000,20984=>1000,20985=>1000,20986=>1000,20988=>1000,20989=>1000,20990=>1000,20992=>1000,20993=>1000,20994=>1000,20995=>1000,20997=>1000,20998=>1000,20999=>1000,21000=>1000,21001=>1000,21002=>1000,21003=>1000,21004=>1000,21006=>1000,21008=>1000,21009=>1000,21010=>1000,21011=>1000,21014=>1000,21015=>1000,21020=>1000,21021=>1000,21022=>1000,21023=>1000,21024=>1000,21025=>1000,21028=>1000,21029=>1000,21030=>1000,21031=>1000,21032=>1000,21033=>1000,21034=>1000,21038=>1000,21040=>1000,21041=>1000,21042=>1000,21043=>1000,21044=>1000,21045=>1000,21046=>1000,21047=>1000,21048=>1000,21050=>1000,21051=>1000,21052=>1000,21057=>1000,21059=>1000,21060=>1000,21062=>1000,21063=>1000,21065=>1000,21066=>1000,21067=>1000,21068=>1000,21069=>1000,21070=>1000,21071=>1000,21074=>1000,21076=>1000,21077=>1000,21078=>1000,21079=>1000,21081=>1000,21082=>1000,21083=>1000,21084=>1000,21085=>1000,21086=>1000,21087=>1000,21088=>1000,21089=>1000,21090=>1000,21096=>1000,21097=>1000,21098=>1000,21099=>1000,21100=>1000,21101=>1000,21102=>1000,21103=>1000,21106=>1000,21107=>1000,21108=>1000,21109=>1000,21111=>1000,21112=>1000,21113=>1000,21114=>1000,21115=>1000,21116=>1000,21117=>1000,21119=>1000,21120=>1000,21121=>1000,21122=>1000,21123=>1000,21124=>1000,21127=>1000,21128=>1000,21129=>1000,21130=>1000,21131=>1000,21132=>1000,21133=>1000,21135=>1000,21136=>1000,21137=>1000,21139=>1000,21140=>1000,21142=>1000,21143=>1000,21144=>1000,21145=>1000,21146=>1000,21147=>1000,21151=>1000,21152=>1000,21153=>1000,21155=>1000,21156=>1000,21158=>1000,21160=>1000,21161=>1000,21162=>1000,21163=>1000,21164=>1000,21165=>1000,21166=>1000,21173=>1000,21177=>1000,21179=>1000,21180=>1000,21182=>1000,21184=>1000,21185=>1000,21186=>1000,21187=>1000,21189=>1000,21191=>1000,21193=>1000,21196=>1000,21197=>1000,21200=>1000,21201=>1000,21202=>1000,21203=>1000,21205=>1000,21206=>1000,21207=>1000,21208=>1000,21209=>1000,21211=>1000,21213=>1000,21214=>1000,21215=>1000,21216=>1000,21217=>1000,21218=>1000,21219=>1000,21220=>1000,21222=>1000,21225=>1000,21227=>1000,21231=>1000,21232=>1000,21233=>1000,21235=>1000,21236=>1000,21237=>1000,21239=>1000,21240=>1000,21241=>1000,21242=>1000,21243=>1000,21244=>1000,21246=>1000,21247=>1000,21249=>1000,21253=>1000,21254=>1000,21256=>1000,21257=>1000,21258=>1000,21259=>1000,21261=>1000,21262=>1000,21263=>1000,21264=>1000,21265=>1000,21266=>1000,21269=>1000,21270=>1000,21271=>1000,21273=>1000,21274=>1000,21276=>1000,21277=>1000,21279=>1000,21280=>1000,21281=>1000,21282=>1000,21283=>1000,21284=>1000,21287=>1000,21290=>1000,21292=>1000,21293=>1000,21295=>1000,21296=>1000,21297=>1000,21298=>1000,21299=>1000,21300=>1000,21303=>1000,21304=>1000,21305=>1000,21307=>1000,21308=>1000,21309=>1000,21310=>1000,21311=>1000,21312=>1000,21313=>1000,21314=>1000,21315=>1000,21316=>1000,21317=>1000,21319=>1000,21320=>1000,21321=>1000,21322=>1000,21324=>1000,21325=>1000,21326=>1000,21329=>1000,21330=>1000,21331=>1000,21332=>1000,21335=>1000,21338=>1000,21340=>1000,21341=>1000,21342=>1000,21343=>1000,21344=>1000,21345=>1000,21347=>1000,21348=>1000,21350=>1000,21351=>1000,21353=>1000,21356=>1000,21357=>1000,21358=>1000,21359=>1000,21360=>1000,21361=>1000,21362=>1000,21363=>1000,21364=>1000,21365=>1000,21367=>1000,21368=>1000,21369=>1000,21371=>1000,21372=>1000,21373=>1000,21374=>1000,21375=>1000,21378=>1000,21380=>1000,21386=>1000,21390=>1000,21391=>1000,21394=>1000,21395=>1000,21396=>1000,21398=>1000,21399=>1000,21400=>1000,21401=>1000,21402=>1000,21404=>1000,21405=>1000,21406=>1000,21407=>1000,21408=>1000,21410=>1000,21412=>1000,21413=>1000,21414=>1000,21415=>1000,21416=>1000,21417=>1000,21418=>1000,21419=>1000,21420=>1000,21421=>1000,21422=>1000,21424=>1000,21426=>1000,21428=>1000,21430=>1000,21433=>1000,21435=>1000,21441=>1000,21442=>1000,21443=>1000,21445=>1000,21448=>1000,21449=>1000,21450=>1000,21451=>1000,21452=>1000,21453=>1000,21456=>1000,21457=>1000,21458=>1000,21460=>1000,21462=>1000,21463=>1000,21464=>1000,21465=>1000,21466=>1000,21467=>1000,21471=>1000,21472=>1000,21473=>1000,21474=>1000,21475=>1000,21476=>1000,21477=>1000,21478=>1000,21480=>1000,21481=>1000,21482=>1000,21483=>1000,21484=>1000,21485=>1000,21486=>1000,21487=>1000,21488=>1000,21489=>1000,21490=>1000,21491=>1000,21493=>1000,21494=>1000,21495=>1000,21496=>1000,21499=>1000,21500=>1000,21502=>1000,21505=>1000,21507=>1000,21508=>1000,21510=>1000,21511=>1000,21512=>1000,21513=>1000,21514=>1000,21515=>1000,21516=>1000,21517=>1000,21518=>1000,21519=>1000,21520=>1000,21521=>1000,21522=>1000,21523=>1000,21524=>1000,21526=>1000,21528=>1000,21529=>1000,21530=>1000,21531=>1000,21532=>1000,21533=>1000,21534=>1000,21535=>1000,21536=>1000,21537=>1000,21539=>1000,21540=>1000,21541=>1000,21542=>1000,21543=>1000,21544=>1000,21545=>1000,21546=>1000,21547=>1000,21548=>1000,21549=>1000,21550=>1000,21551=>1000,21552=>1000,21553=>1000,21554=>1000,21555=>1000,21556=>1000,21557=>1000,21558=>1000,21559=>1000,21560=>1000,21561=>1000,21563=>1000,21564=>1000,21565=>1000,21566=>1000,21567=>1000,21568=>1000,21569=>1000,21570=>1000,21571=>1000,21573=>1000,21574=>1000,21575=>1000,21576=>1000,21578=>1000,21579=>1000,21580=>1000,21581=>1000,21582=>1000,21583=>1000,21588=>1000,21600=>1000,21601=>1000,21602=>1000,21603=>1000,21604=>1000,21605=>1000,21606=>1000,21607=>1000,21608=>1000,21609=>1000,21610=>1000,21611=>1000,21612=>1000,21613=>1000,21615=>1000,21616=>1000,21617=>1000,21618=>1000,21619=>1000,21620=>1000,21621=>1000,21622=>1000,21623=>1000,21624=>1000,21626=>1000,21627=>1000,21628=>1000,21629=>1000,21630=>1000,21631=>1000,21632=>1000,21633=>1000,21634=>1000,21636=>1000,21637=>1000,21638=>1000,21639=>1000,21640=>1000,21643=>1000,21644=>1000,21645=>1000,21646=>1000,21647=>1000,21648=>1000,21649=>1000,21650=>1000,21651=>1000,21652=>1000,21653=>1000,21654=>1000,21655=>1000,21656=>1000,21658=>1000,21660=>1000,21662=>1000,21664=>1000,21665=>1000,21666=>1000,21667=>1000,21668=>1000,21669=>1000,21670=>1000,21671=>1000,21672=>1000,21673=>1000,21674=>1000,21675=>1000,21676=>1000,21677=>1000,21678=>1000,21679=>1000,21680=>1000,21681=>1000,21682=>1000,21683=>1000,21684=>1000,21686=>1000,21687=>1000,21688=>1000,21689=>1000,21690=>1000,21691=>1000,21692=>1000,21693=>1000,21694=>1000,21695=>1000,21696=>1000,21697=>1000,21698=>1000,21699=>1000,21700=>1000,21701=>1000,21702=>1000,21703=>1000,21704=>1000,21705=>1000,21707=>1000,21708=>1000,21709=>1000,21710=>1000,21711=>1000,21712=>1000,21718=>1000,21722=>1000,21726=>1000,21728=>1000,21729=>1000,21730=>1000,21731=>1000,21732=>1000,21733=>1000,21734=>1000,21735=>1000,21736=>1000,21737=>1000,21738=>1000,21739=>1000,21741=>1000,21742=>1000,21743=>1000,21745=>1000,21746=>1000,21747=>1000,21751=>1000,21752=>1000,21754=>1000,21755=>1000,21756=>1000,21757=>1000,21759=>1000,21761=>1000,21762=>1000,21763=>1000,21764=>1000,21765=>1000,21766=>1000,21767=>1000,21768=>1000,21769=>1000,21770=>1000,21771=>1000,21772=>1000,21773=>1000,21774=>1000,21775=>1000,21776=>1000,21777=>1000,21778=>1000,21779=>1000,21780=>1000,21783=>1000,21784=>1000,21786=>1000,21790=>1000,21795=>1000,21797=>1000,21798=>1000,21799=>1000,21800=>1000,21802=>1000,21803=>1000,21804=>1000,21805=>1000,21806=>1000,21807=>1000,21808=>1000,21809=>1000,21810=>1000,21811=>1000,21812=>1000,21813=>1000,21814=>1000,21815=>1000,21816=>1000,21817=>1000,21819=>1000,21820=>1000,21822=>1000,21823=>1000,21824=>1000,21825=>1000,21827=>1000,21828=>1000,21829=>1000,21830=>1000,21831=>1000,21832=>1000,21833=>1000,21834=>1000,21835=>1000,21837=>1000,21838=>1000,21839=>1000,21840=>1000,21841=>1000,21842=>1000,21843=>1000,21845=>1000,21846=>1000,21847=>1000,21852=>1000,21853=>1000,21854=>1000,21855=>1000,21857=>1000,21858=>1000,21859=>1000,21860=>1000,21861=>1000,21862=>1000,21865=>1000,21866=>1000,21867=>1000,21873=>1000,21874=>1000,21875=>1000,21877=>1000,21878=>1000,21879=>1000,21881=>1000,21883=>1000,21884=>1000,21885=>1000,21886=>1000,21887=>1000,21888=>1000,21889=>1000,21890=>1000,21891=>1000,21892=>1000,21894=>1000,21895=>1000,21896=>1000,21897=>1000,21898=>1000,21899=>1000,21900=>1000,21901=>1000,21902=>1000,21903=>1000,21904=>1000,21905=>1000,21906=>1000,21907=>1000,21908=>1000,21909=>1000,21912=>1000,21913=>1000,21914=>1000,21916=>1000,21917=>1000,21919=>1000,21921=>1000,21922=>1000,21923=>1000,21924=>1000,21925=>1000,21926=>1000,21927=>1000,21928=>1000,21929=>1000,21930=>1000,21931=>1000,21932=>1000,21933=>1000,21934=>1000,21936=>1000,21937=>1000,21938=>1000,21939=>1000,21940=>1000,21941=>1000,21945=>1000,21946=>1000,21947=>1000,21948=>1000,21951=>1000,21952=>1000,21953=>1000,21954=>1000,21955=>1000,21956=>1000,21957=>1000,21958=>1000,21959=>1000,21960=>1000,21961=>1000,21962=>1000,21963=>1000,21964=>1000,21965=>1000,21966=>1000,21967=>1000,21968=>1000,21969=>1000,21970=>1000,21971=>1000,21972=>1000,21973=>1000,21974=>1000,21975=>1000,21976=>1000,21977=>1000,21978=>1000,21979=>1000,21980=>1000,21981=>1000,21982=>1000,21983=>1000,21985=>1000,21986=>1000,21987=>1000,21988=>1000,21989=>1000,21990=>1000,21991=>1000,21992=>1000,21993=>1000,21994=>1000,21996=>1000,21998=>1000,21999=>1000,22000=>1000,22001=>1000,22002=>1000,22005=>1000,22006=>1000,22007=>1000,22009=>1000,22010=>1000,22011=>1000,22012=>1000,22013=>1000,22014=>1000,22015=>1000,22016=>1000,22017=>1000,22018=>1000,22020=>1000,22021=>1000,22022=>1000,22024=>1000,22025=>1000,22028=>1000,22029=>1000,22030=>1000,22031=>1000,22032=>1000,22033=>1000,22034=>1000,22035=>1000,22036=>1000,22037=>1000,22038=>1000,22039=>1000,22043=>1000,22044=>1000,22045=>1000,22046=>1000,22047=>1000,22048=>1000,22049=>1000,22050=>1000,22051=>1000,22053=>1000,22055=>1000,22057=>1000,22058=>1000,22060=>1000,22061=>1000,22062=>1000,22063=>1000,22064=>1000,22066=>1000,22067=>1000,22068=>1000,22069=>1000,22070=>1000,22071=>1000,22072=>1000,22073=>1000,22074=>1000,22075=>1000,22077=>1000,22078=>1000,22079=>1000,22080=>1000,22081=>1000,22082=>1000,22083=>1000,22085=>1000,22086=>1000,22088=>1000,22089=>1000,22090=>1000,22092=>1000,22093=>1000,22094=>1000,22095=>1000,22096=>1000,22098=>1000,22099=>1000,22100=>1000,22103=>1000,22104=>1000,22105=>1000,22106=>1000,22109=>1000,22110=>1000,22112=>1000,22113=>1000,22114=>1000,22115=>1000,22116=>1000,22117=>1000,22118=>1000,22120=>1000,22121=>1000,22122=>1000,22123=>1000,22124=>1000,22125=>1000,22126=>1000,22127=>1000,22128=>1000,22129=>1000,22130=>1000,22131=>1000,22132=>1000,22134=>1000,22135=>1000,22136=>1000,22137=>1000,22138=>1000,22139=>1000,22140=>1000,22142=>1000,22143=>1000,22144=>1000,22145=>1000,22146=>1000,22147=>1000,22148=>1000,22149=>1000,22150=>1000,22151=>1000,22153=>1000,22154=>1000,22155=>1000,22156=>1000,22157=>1000,22158=>1000,22159=>1000,22160=>1000,22162=>1000,22163=>1000,22165=>1000,22167=>1000,22168=>1000,22169=>1000,22170=>1000,22172=>1000,22173=>1000,22174=>1000,22175=>1000,22177=>1000,22180=>1000,22181=>1000,22182=>1000,22183=>1000,22184=>1000,22186=>1000,22187=>1000,22188=>1000,22189=>1000,22190=>1000,22191=>1000,22193=>1000,22194=>1000,22195=>1000,22196=>1000,22197=>1000,22198=>1000,22199=>1000,22201=>1000,22204=>1000,22205=>1000,22206=>1000,22207=>1000,22208=>1000,22209=>1000,22210=>1000,22211=>1000,22213=>1000,22214=>1000,22216=>1000,22217=>1000,22218=>1000,22219=>1000,22220=>1000,22221=>1000,22225=>1000,22227=>1000,22228=>1000,22230=>1000,22231=>1000,22234=>1000,22235=>1000,22237=>1000,22238=>1000,22239=>1000,22240=>1000,22241=>1000,22242=>1000,22244=>1000,22245=>1000,22247=>1000,22250=>1000,22251=>1000,22253=>1000,22254=>1000,22255=>1000,22256=>1000,22257=>1000,22263=>1000,22265=>1000,22266=>1000,22267=>1000,22269=>1000,22271=>1000,22272=>1000,22273=>1000,22274=>1000,22275=>1000,22276=>1000,22279=>1000,22280=>1000,22281=>1000,22282=>1000,22283=>1000,22284=>1000,22285=>1000,22290=>1000,22291=>1000,22292=>1000,22293=>1000,22294=>1000,22296=>1000,22298=>1000,22299=>1000,22300=>1000,22301=>1000,22302=>1000,22303=>1000,22304=>1000,22306=>1000,22307=>1000,22312=>1000,22313=>1000,22314=>1000,22316=>1000,22317=>1000,22318=>1000,22319=>1000,22320=>1000,22322=>1000,22323=>1000,22324=>1000,22331=>1000,22333=>1000,22334=>1000,22335=>1000,22336=>1000,22337=>1000,22338=>1000,22339=>1000,22341=>1000,22342=>1000,22343=>1000,22345=>1000,22346=>1000,22347=>1000,22348=>1000,22349=>1000,22350=>1000,22351=>1000,22352=>1000,22353=>1000,22354=>1000,22356=>1000,22359=>1000,22363=>1000,22367=>1000,22369=>1000,22370=>1000,22372=>1000,22374=>1000,22375=>1000,22376=>1000,22377=>1000,22378=>1000,22379=>1000,22381=>1000,22383=>1000,22384=>1000,22385=>1000,22386=>1000,22387=>1000,22388=>1000,22389=>1000,22390=>1000,22391=>1000,22394=>1000,22395=>1000,22396=>1000,22397=>1000,22398=>1000,22399=>1000,22400=>1000,22402=>1000,22403=>1000,22408=>1000,22410=>1000,22411=>1000,22412=>1000,22413=>1000,22415=>1000,22416=>1000,22419=>1000,22420=>1000,22421=>1000,22423=>1000,22424=>1000,22425=>1000,22426=>1000,22427=>1000,22428=>1000,22429=>1000,22430=>1000,22431=>1000,22432=>1000,22433=>1000,22434=>1000,22435=>1000,22436=>1000,22437=>1000,22439=>1000,22442=>1000,22446=>1000,22451=>1000,22452=>1000,22453=>1000,22454=>1000,22456=>1000,22457=>1000,22458=>1000,22459=>1000,22460=>1000,22461=>1000,22462=>1000,22463=>1000,22465=>1000,22466=>1000,22467=>1000,22468=>1000,22470=>1000,22471=>1000,22472=>1000,22475=>1000,22476=>1000,22478=>1000,22479=>1000,22480=>1000,22482=>1000,22484=>1000,22485=>1000,22487=>1000,22492=>1000,22493=>1000,22494=>1000,22495=>1000,22496=>1000,22497=>1000,22498=>1000,22499=>1000,22500=>1000,22501=>1000,22502=>1000,22503=>1000,22505=>1000,22508=>1000,22509=>1000,22510=>1000,22511=>1000,22512=>1000,22513=>1000,22514=>1000,22515=>1000,22516=>1000,22517=>1000,22518=>1000,22519=>1000,22520=>1000,22521=>1000,22522=>1000,22523=>1000,22524=>1000,22525=>1000,22526=>1000,22528=>1000,22529=>1000,22530=>1000,22531=>1000,22532=>1000,22533=>1000,22534=>1000,22535=>1000,22536=>1000,22537=>1000,22538=>1000,22539=>1000,22540=>1000,22541=>1000,22542=>1000,22544=>1000,22546=>1000,22548=>1000,22552=>1000,22553=>1000,22555=>1000,22556=>1000,22557=>1000,22558=>1000,22560=>1000,22561=>1000,22562=>1000,22563=>1000,22564=>1000,22565=>1000,22566=>1000,22567=>1000,22568=>1000,22569=>1000,22570=>1000,22572=>1000,22573=>1000,22574=>1000,22575=>1000,22576=>1000,22577=>1000,22578=>1000,22579=>1000,22580=>1000,22581=>1000,22582=>1000,22583=>1000,22584=>1000,22585=>1000,22586=>1000,22587=>1000,22589=>1000,22591=>1000,22592=>1000,22596=>1000,22599=>1000,22600=>1000,22601=>1000,22602=>1000,22603=>1000,22604=>1000,22605=>1000,22606=>1000,22607=>1000,22609=>1000,22610=>1000,22611=>1000,22612=>1000,22613=>1000,22615=>1000,22616=>1000,22617=>1000,22618=>1000,22619=>1000,22620=>1000,22621=>1000,22622=>1000,22623=>1000,22626=>1000,22627=>1000,22628=>1000,22629=>1000,22632=>1000,22633=>1000,22635=>1000,22636=>1000,22637=>1000,22639=>1000,22641=>1000,22642=>1000,22643=>1000,22644=>1000,22645=>1000,22646=>1000,22649=>1000,22650=>1000,22651=>1000,22652=>1000,22653=>1000,22654=>1000,22655=>1000,22656=>1000,22657=>1000,22658=>1000,22659=>1000,22661=>1000,22662=>1000,22663=>1000,22664=>1000,22665=>1000,22666=>1000,22667=>1000,22670=>1000,22671=>1000,22672=>1000,22673=>1000,22674=>1000,22675=>1000,22676=>1000,22678=>1000,22680=>1000,22681=>1000,22682=>1000,22684=>1000,22685=>1000,22686=>1000,22687=>1000,22688=>1000,22689=>1000,22691=>1000,22693=>1000,22694=>1000,22695=>1000,22696=>1000,22697=>1000,22698=>1000,22699=>1000,22700=>1000,22702=>1000,22703=>1000,22704=>1000,22705=>1000,22707=>1000,22709=>1000,22710=>1000,22714=>1000,22715=>1000,22716=>1000,22717=>1000,22718=>1000,22719=>1000,22721=>1000,22722=>1000,22725=>1000,22726=>1000,22727=>1000,22728=>1000,22729=>1000,22731=>1000,22734=>1000,22735=>1000,22736=>1000,22737=>1000,22738=>1000,22739=>1000,22740=>1000,22741=>1000,22742=>1000,22744=>1000,22745=>1000,22746=>1000,22747=>1000,22748=>1000,22749=>1000,22750=>1000,22751=>1000,22752=>1000,22754=>1000,22755=>1000,22756=>1000,22759=>1000,22760=>1000,22761=>1000,22763=>1000,22764=>1000,22767=>1000,22768=>1000,22770=>1000,22771=>1000,22772=>1000,22777=>1000,22778=>1000,22779=>1000,22780=>1000,22781=>1000,22782=>1000,22783=>1000,22786=>1000,22787=>1000,22788=>1000,22789=>1000,22790=>1000,22791=>1000,22794=>1000,22796=>1000,22797=>1000,22798=>1000,22799=>1000,22801=>1000,22802=>1000,22804=>1000,22805=>1000,22806=>1000,22807=>1000,22809=>1000,22810=>1000,22812=>1000,22813=>1000,22815=>1000,22816=>1000,22818=>1000,22820=>1000,22821=>1000,22823=>1000,22825=>1000,22826=>1000,22827=>1000,22828=>1000,22829=>1000,22830=>1000,22831=>1000,22833=>1000,22834=>1000,22836=>1000,22839=>1000,22840=>1000,22844=>1000,22846=>1000,22848=>1000,22852=>1000,22853=>1000,22855=>1000,22856=>1000,22857=>1000,22858=>1000,22862=>1000,22863=>1000,22864=>1000,22865=>1000,22867=>1000,22868=>1000,22869=>1000,22871=>1000,22872=>1000,22874=>1000,22876=>1000,22880=>1000,22881=>1000,22882=>1000,22885=>1000,22887=>1000,22889=>1000,22890=>1000,22891=>1000,22892=>1000,22893=>1000,22894=>1000,22896=>1000,22897=>1000,22898=>1000,22899=>1000,22900=>1000,22901=>1000,22902=>1000,22903=>1000,22904=>1000,22905=>1000,22907=>1000,22908=>1000,22909=>1000,22910=>1000,22911=>1000,22912=>1000,22913=>1000,22914=>1000,22915=>1000,22916=>1000,22917=>1000,22921=>1000,22922=>1000,22925=>1000,22926=>1000,22927=>1000,22928=>1000,22930=>1000,22931=>1000,22932=>1000,22934=>1000,22935=>1000,22936=>1000,22937=>1000,22938=>1000,22941=>1000,22942=>1000,22943=>1000,22944=>1000,22945=>1000,22946=>1000,22947=>1000,22948=>1000,22949=>1000,22950=>1000,22951=>1000,22952=>1000,22956=>1000,22958=>1000,22959=>1000,22960=>1000,22961=>1000,22962=>1000,22963=>1000,22964=>1000,22965=>1000,22966=>1000,22967=>1000,22968=>1000,22969=>1000,22970=>1000,22971=>1000,22972=>1000,22973=>1000,22974=>1000,22975=>1000,22976=>1000,22977=>1000,22979=>1000,22980=>1000,22981=>1000,22982=>1000,22983=>1000,22984=>1000,22985=>1000,22986=>1000,22987=>1000,22988=>1000,22989=>1000,22990=>1000,22991=>1000,22992=>1000,22993=>1000,22994=>1000,22995=>1000,22996=>1000,22998=>1000,23000=>1000,23001=>1000,23002=>1000,23003=>1000,23004=>1000,23005=>1000,23006=>1000,23008=>1000,23009=>1000,23011=>1000,23012=>1000,23013=>1000,23014=>1000,23016=>1000,23017=>1000,23018=>1000,23019=>1000,23020=>1000,23021=>1000,23022=>1000,23023=>1000,23024=>1000,23025=>1000,23026=>1000,23027=>1000,23028=>1000,23029=>1000,23030=>1000,23031=>1000,23032=>1000,23033=>1000,23034=>1000,23035=>1000,23036=>1000,23037=>1000,23038=>1000,23039=>1000,23040=>1000,23041=>1000,23042=>1000,23043=>1000,23049=>1000,23050=>1000,23051=>1000,23052=>1000,23053=>1000,23055=>1000,23057=>1000,23058=>1000,23059=>1000,23061=>1000,23062=>1000,23063=>1000,23064=>1000,23065=>1000,23066=>1000,23067=>1000,23068=>1000,23070=>1000,23071=>1000,23072=>1000,23073=>1000,23075=>1000,23076=>1000,23077=>1000,23079=>1000,23081=>1000,23082=>1000,23083=>1000,23084=>1000,23085=>1000,23086=>1000,23091=>1000,23093=>1000,23094=>1000,23095=>1000,23096=>1000,23097=>1000,23100=>1000,23101=>1000,23102=>1000,23104=>1000,23105=>1000,23106=>1000,23107=>1000,23108=>1000,23109=>1000,23110=>1000,23111=>1000,23112=>1000,23113=>1000,23114=>1000,23116=>1000,23117=>1000,23120=>1000,23121=>1000,23122=>1000,23123=>1000,23124=>1000,23125=>1000,23126=>1000,23127=>1000,23128=>1000,23129=>1000,23130=>1000,23131=>1000,23132=>1000,23133=>1000,23134=>1000,23135=>1000,23136=>1000,23137=>1000,23138=>1000,23139=>1000,23140=>1000,23141=>1000,23142=>1000,23143=>1000,23144=>1000,23145=>1000,23146=>1000,23147=>1000,23148=>1000,23149=>1000,23150=>1000,23152=>1000,23153=>1000,23159=>1000,23160=>1000,23161=>1000,23162=>1000,23163=>1000,23164=>1000,23165=>1000,23166=>1000,23167=>1000,23169=>1000,23170=>1000,23171=>1000,23172=>1000,23174=>1000,23176=>1000,23178=>1000,23179=>1000,23180=>1000,23182=>1000,23183=>1000,23184=>1000,23185=>1000,23186=>1000,23187=>1000,23188=>1000,23189=>1000,23190=>1000,23191=>1000,23193=>1000,23194=>1000,23195=>1000,23196=>1000,23197=>1000,23198=>1000,23199=>1000,23200=>1000,23201=>1000,23202=>1000,23204=>1000,23205=>1000,23206=>1000,23207=>1000,23209=>1000,23210=>1000,23211=>1000,23212=>1000,23214=>1000,23215=>1000,23216=>1000,23217=>1000,23218=>1000,23219=>1000,23220=>1000,23221=>1000,23222=>1000,23223=>1000,23224=>1000,23225=>1000,23226=>1000,23227=>1000,23228=>1000,23229=>1000,23230=>1000,23231=>1000,23232=>1000,23233=>1000,23234=>1000,23235=>1000,23236=>1000,23238=>1000,23239=>1000,23240=>1000,23241=>1000,23242=>1000,23243=>1000,23244=>1000,23245=>1000,23246=>1000,23247=>1000,23249=>1000,23251=>1000,23253=>1000,23254=>1000,23255=>1000,23256=>1000,23257=>1000,23258=>1000,23259=>1000,23260=>1000,23261=>1000,23262=>1000,23263=>1000,23264=>1000,23265=>1000,23266=>1000,23267=>1000,23268=>1000,23269=>1000,23270=>1000,23272=>1000,23273=>1000,23274=>1000,23275=>1000,23276=>1000,23277=>1000,23278=>1000,23280=>1000,23282=>1000,23283=>1000,23284=>1000,23285=>1000,23286=>1000,23287=>1000,23288=>1000,23289=>1000,23290=>1000,23291=>1000,23293=>1000,23294=>1000,23295=>1000,23297=>1000,23298=>1000,23299=>1000,23301=>1000,23303=>1000,23304=>1000,23305=>1000,23307=>1000,23308=>1000,23309=>1000,23311=>1000,23312=>1000,23313=>1000,23315=>1000,23316=>1000,23317=>1000,23318=>1000,23319=>1000,23321=>1000,23322=>1000,23323=>1000,23325=>1000,23326=>1000,23327=>1000,23328=>1000,23329=>1000,23331=>1000,23332=>1000,23333=>1000,23334=>1000,23335=>1000,23336=>1000,23338=>1000,23339=>1000,23340=>1000,23341=>1000,23342=>1000,23343=>1000,23344=>1000,23346=>1000,23348=>1000,23352=>1000,23356=>1000,23357=>1000,23358=>1000,23359=>1000,23360=>1000,23361=>1000,23363=>1000,23364=>1000,23365=>1000,23366=>1000,23367=>1000,23368=>1000,23370=>1000,23371=>1000,23372=>1000,23373=>1000,23374=>1000,23375=>1000,23376=>1000,23377=>1000,23379=>1000,23380=>1000,23381=>1000,23382=>1000,23383=>1000,23384=>1000,23386=>1000,23387=>1000,23388=>1000,23389=>1000,23391=>1000,23394=>1000,23395=>1000,23396=>1000,23397=>1000,23398=>1000,23400=>1000,23401=>1000,23403=>1000,23404=>1000,23405=>1000,23406=>1000,23408=>1000,23409=>1000,23410=>1000,23411=>1000,23412=>1000,23413=>1000,23414=>1000,23415=>1000,23416=>1000,23418=>1000,23419=>1000,23420=>1000,23421=>1000,23423=>1000,23424=>1000,23425=>1000,23426=>1000,23427=>1000,23428=>1000,23429=>1000,23431=>1000,23432=>1000,23433=>1000,23435=>1000,23436=>1000,23438=>1000,23439=>1000,23440=>1000,23442=>1000,23443=>1000,23445=>1000,23446=>1000,23447=>1000,23448=>1000,23449=>1000,23450=>1000,23451=>1000,23452=>1000,23453=>1000,23454=>1000,23455=>1000,23458=>1000,23459=>1000,23460=>1000,23461=>1000,23462=>1000,23463=>1000,23464=>1000,23466=>1000,23468=>1000,23469=>1000,23470=>1000,23472=>1000,23475=>1000,23476=>1000,23477=>1000,23478=>1000,23479=>1000,23480=>1000,23481=>1000,23487=>1000,23488=>1000,23489=>1000,23490=>1000,23491=>1000,23492=>1000,23493=>1000,23494=>1000,23495=>1000,23498=>1000,23499=>1000,23500=>1000,23501=>1000,23502=>1000,23504=>1000,23505=>1000,23506=>1000,23507=>1000,23508=>1000,23509=>1000,23510=>1000,23511=>1000,23512=>1000,23513=>1000,23515=>1000,23518=>1000,23519=>1000,23520=>1000,23521=>1000,23522=>1000,23523=>1000,23524=>1000,23525=>1000,23526=>1000,23527=>1000,23528=>1000,23529=>1000,23530=>1000,23531=>1000,23532=>1000,23534=>1000,23535=>1000,23536=>1000,23537=>1000,23538=>1000,23539=>1000,23541=>1000,23542=>1000,23544=>1000,23546=>1000,23551=>1000,23553=>1000,23555=>1000,23556=>1000,23557=>1000,23559=>1000,23560=>1000,23561=>1000,23562=>1000,23563=>1000,23564=>1000,23565=>1000,23566=>1000,23567=>1000,23568=>1000,23569=>1000,23570=>1000,23571=>1000,23572=>1000,23573=>1000,23574=>1000,23578=>1000,23580=>1000,23582=>1000,23583=>1000,23584=>1000,23586=>1000,23587=>1000,23588=>1000,23589=>1000,23592=>1000,23594=>1000,23596=>1000,23600=>1000,23601=>1000,23603=>1000,23607=>1000,23608=>1000,23609=>1000,23610=>1000,23611=>1000,23612=>1000,23614=>1000,23615=>1000,23616=>1000,23617=>1000,23620=>1000,23621=>1000,23622=>1000,23623=>1000,23624=>1000,23625=>1000,23626=>1000,23627=>1000,23628=>1000,23629=>1000,23630=>1000,23631=>1000,23632=>1000,23633=>1000,23635=>1000,23636=>1000,23637=>1000,23638=>1000,23640=>1000,23641=>1000,23644=>1000,23645=>1000,23646=>1000,23648=>1000,23650=>1000,23651=>1000,23652=>1000,23653=>1000,23655=>1000,23656=>1000,23657=>1000,23658=>1000,23660=>1000,23661=>1000,23662=>1000,23663=>1000,23665=>1000,23667=>1000,23668=>1000,23672=>1000,23673=>1000,23674=>1000,23675=>1000,23676=>1000,23678=>1000,23685=>1000,23686=>1000,23688=>1000,23689=>1000,23690=>1000,23691=>1000,23692=>1000,23693=>1000,23695=>1000,23696=>1000,23697=>1000,23698=>1000,23699=>1000,23700=>1000,23701=>1000,23705=>1000,23706=>1000,23708=>1000,23709=>1000,23710=>1000,23711=>1000,23712=>1000,23713=>1000,23714=>1000,23715=>1000,23716=>1000,23717=>1000,23718=>1000,23719=>1000,23720=>1000,23721=>1000,23722=>1000,23723=>1000,23724=>1000,23725=>1000,23726=>1000,23727=>1000,23728=>1000,23729=>1000,23731=>1000,23733=>1000,23734=>1000,23735=>1000,23736=>1000,23738=>1000,23745=>1000,23746=>1000,23750=>1000,23751=>1000,23752=>1000,23753=>1000,23754=>1000,23755=>1000,23756=>1000,23758=>1000,23759=>1000,23760=>1000,23761=>1000,23762=>1000,23763=>1000,23764=>1000,23765=>1000,23766=>1000,23767=>1000,23768=>1000,23769=>1000,23770=>1000,23771=>1000,23774=>1000,23775=>1000,23781=>1000,23784=>1000,23785=>1000,23786=>1000,23788=>1000,23789=>1000,23790=>1000,23791=>1000,23792=>1000,23793=>1000,23796=>1000,23797=>1000,23798=>1000,23799=>1000,23800=>1000,23801=>1000,23803=>1000,23804=>1000,23805=>1000,23807=>1000,23808=>1000,23809=>1000,23814=>1000,23815=>1000,23819=>1000,23820=>1000,23821=>1000,23822=>1000,23823=>1000,23824=>1000,23825=>1000,23826=>1000,23828=>1000,23829=>1000,23830=>1000,23831=>1000,23832=>1000,23833=>1000,23834=>1000,23835=>1000,23837=>1000,23838=>1000,23839=>1000,23840=>1000,23842=>1000,23843=>1000,23844=>1000,23845=>1000,23846=>1000,23847=>1000,23848=>1000,23849=>1000,23852=>1000,23854=>1000,23855=>1000,23856=>1000,23857=>1000,23858=>1000,23859=>1000,23860=>1000,23861=>1000,23862=>1000,23863=>1000,23864=>1000,23865=>1000,23866=>1000,23868=>1000,23869=>1000,23870=>1000,23871=>1000,23872=>1000,23873=>1000,23874=>1000,23875=>1000,23877=>1000,23878=>1000,23879=>1000,23880=>1000,23881=>1000,23882=>1000,23883=>1000,23884=>1000,23886=>1000,23888=>1000,23889=>1000,23890=>1000,23893=>1000,23894=>1000,23895=>1000,23897=>1000,23899=>1000,23902=>1000,23906=>1000,23907=>1000,23909=>1000,23911=>1000,23912=>1000,23913=>1000,23915=>1000,23916=>1000,23919=>1000,23920=>1000,23921=>1000,23922=>1000,23924=>1000,23927=>1000,23928=>1000,23929=>1000,23930=>1000,23931=>1000,23932=>1000,23933=>1000,23934=>1000,23935=>1000,23936=>1000,23937=>1000,23938=>1000,23940=>1000,23941=>1000,23942=>1000,23943=>1000,23944=>1000,23945=>1000,23946=>1000,23947=>1000,23949=>1000,23950=>1000,23954=>1000,23955=>1000,23956=>1000,23957=>1000,23959=>1000,23961=>1000,23962=>1000,23964=>1000,23965=>1000,23966=>1000,23967=>1000,23968=>1000,23969=>1000,23970=>1000,23972=>1000,23975=>1000,23976=>1000,23977=>1000,23978=>1000,23979=>1000,23980=>1000,23981=>1000,23982=>1000,23983=>1000,23984=>1000,23985=>1000,23986=>1000,23988=>1000,23989=>1000,23990=>1000,23991=>1000,23992=>1000,23993=>1000,23994=>1000,23996=>1000,23997=>1000,24000=>1000,24001=>1000,24002=>1000,24003=>1000,24006=>1000,24007=>1000,24009=>1000,24011=>1000,24013=>1000,24015=>1000,24017=>1000,24018=>1000,24020=>1000,24021=>1000,24022=>1000,24023=>1000,24024=>1000,24027=>1000,24029=>1000,24030=>1000,24031=>1000,24032=>1000,24033=>1000,24034=>1000,24037=>1000,24038=>1000,24039=>1000,24040=>1000,24043=>1000,24046=>1000,24048=>1000,24049=>1000,24050=>1000,24051=>1000,24052=>1000,24053=>1000,24055=>1000,24057=>1000,24061=>1000,24062=>1000,24063=>1000,24066=>1000,24067=>1000,24068=>1000,24070=>1000,24073=>1000,24074=>1000,24075=>1000,24076=>1000,24078=>1000,24081=>1000,24082=>1000,24084=>1000,24085=>1000,24086=>1000,24087=>1000,24088=>1000,24089=>1000,24090=>1000,24091=>1000,24093=>1000,24095=>1000,24096=>1000,24097=>1000,24098=>1000,24099=>1000,24100=>1000,24101=>1000,24104=>1000,24105=>1000,24107=>1000,24109=>1000,24110=>1000,24115=>1000,24116=>1000,24118=>1000,24119=>1000,24120=>1000,24125=>1000,24126=>1000,24128=>1000,24129=>1000,24130=>1000,24131=>1000,24132=>1000,24133=>1000,24136=>1000,24138=>1000,24139=>1000,24140=>1000,24141=>1000,24142=>1000,24143=>1000,24147=>1000,24148=>1000,24149=>1000,24151=>1000,24152=>1000,24153=>1000,24155=>1000,24156=>1000,24157=>1000,24158=>1000,24159=>1000,24160=>1000,24161=>1000,24162=>1000,24163=>1000,24166=>1000,24167=>1000,24168=>1000,24169=>1000,24170=>1000,24171=>1000,24172=>1000,24173=>1000,24174=>1000,24175=>1000,24176=>1000,24178=>1000,24179=>1000,24180=>1000,24181=>1000,24182=>1000,24184=>1000,24185=>1000,24186=>1000,24187=>1000,24188=>1000,24189=>1000,24190=>1000,24191=>1000,24192=>1000,24194=>1000,24195=>1000,24196=>1000,24198=>1000,24199=>1000,24200=>1000,24201=>1000,24202=>1000,24203=>1000,24204=>1000,24205=>1000,24207=>1000,24210=>1000,24213=>1000,24214=>1000,24215=>1000,24217=>1000,24218=>1000,24219=>1000,24220=>1000,24224=>1000,24226=>1000,24227=>1000,24228=>1000,24229=>1000,24230=>1000,24231=>1000,24232=>1000,24234=>1000,24235=>1000,24236=>1000,24237=>1000,24238=>1000,24240=>1000,24241=>1000,24242=>1000,24243=>1000,24244=>1000,24245=>1000,24246=>1000,24247=>1000,24248=>1000,24249=>1000,24253=>1000,24254=>1000,24257=>1000,24258=>1000,24260=>1000,24261=>1000,24262=>1000,24263=>1000,24264=>1000,24265=>1000,24266=>1000,24267=>1000,24268=>1000,24269=>1000,24270=>1000,24272=>1000,24273=>1000,24274=>1000,24275=>1000,24276=>1000,24277=>1000,24278=>1000,24279=>1000,24280=>1000,24281=>1000,24282=>1000,24283=>1000,24284=>1000,24285=>1000,24286=>1000,24287=>1000,24288=>1000,24289=>1000,24290=>1000,24291=>1000,24293=>1000,24294=>1000,24295=>1000,24296=>1000,24297=>1000,24300=>1000,24302=>1000,24303=>1000,24305=>1000,24306=>1000,24307=>1000,24308=>1000,24310=>1000,24311=>1000,24312=>1000,24313=>1000,24314=>1000,24315=>1000,24316=>1000,24318=>1000,24319=>1000,24321=>1000,24322=>1000,24324=>1000,24325=>1000,24327=>1000,24328=>1000,24330=>1000,24331=>1000,24332=>1000,24333=>1000,24334=>1000,24335=>1000,24338=>1000,24339=>1000,24340=>1000,24341=>1000,24343=>1000,24344=>1000,24346=>1000,24347=>1000,24349=>1000,24351=>1000,24354=>1000,24355=>1000,24356=>1000,24357=>1000,24358=>1000,24359=>1000,24360=>1000,24361=>1000,24365=>1000,24366=>1000,24368=>1000,24369=>1000,24371=>1000,24373=>1000,24374=>1000,24375=>1000,24376=>1000,24378=>1000,24379=>1000,24380=>1000,24384=>1000,24387=>1000,24388=>1000,24389=>1000,24390=>1000,24392=>1000,24393=>1000,24394=>1000,24395=>1000,24396=>1000,24397=>1000,24398=>1000,24399=>1000,24400=>1000,24401=>1000,24404=>1000,24406=>1000,24407=>1000,24408=>1000,24409=>1000,24412=>1000,24413=>1000,24414=>1000,24417=>1000,24418=>1000,24419=>1000,24420=>1000,24421=>1000,24423=>1000,24425=>1000,24426=>1000,24427=>1000,24428=>1000,24429=>1000,24431=>1000,24432=>1000,24433=>1000,24434=>1000,24435=>1000,24436=>1000,24438=>1000,24439=>1000,24440=>1000,24441=>1000,24443=>1000,24444=>1000,24445=>1000,24446=>1000,24447=>1000,24448=>1000,24449=>1000,24450=>1000,24451=>1000,24453=>1000,24454=>1000,24455=>1000,24456=>1000,24457=>1000,24458=>1000,24459=>1000,24460=>1000,24464=>1000,24465=>1000,24466=>1000,24470=>1000,24471=>1000,24472=>1000,24473=>1000,24475=>1000,24476=>1000,24478=>1000,24479=>1000,24480=>1000,24481=>1000,24484=>1000,24485=>1000,24486=>1000,24487=>1000,24488=>1000,24489=>1000,24490=>1000,24491=>1000,24492=>1000,24493=>1000,24494=>1000,24495=>1000,24497=>1000,24498=>1000,24501=>1000,24502=>1000,24503=>1000,24505=>1000,24506=>1000,24507=>1000,24508=>1000,24509=>1000,24510=>1000,24511=>1000,24512=>1000,24513=>1000,24514=>1000,24515=>1000,24516=>1000,24517=>1000,24521=>1000,24524=>1000,24525=>1000,24527=>1000,24528=>1000,24529=>1000,24530=>1000,24532=>1000,24533=>1000,24534=>1000,24535=>1000,24536=>1000,24537=>1000,24539=>1000,24541=>1000,24542=>1000,24543=>1000,24544=>1000,24545=>1000,24547=>1000,24548=>1000,24549=>1000,24552=>1000,24554=>1000,24555=>1000,24557=>1000,24558=>1000,24559=>1000,24561=>1000,24563=>1000,24564=>1000,24565=>1000,24567=>1000,24568=>1000,24570=>1000,24571=>1000,24573=>1000,24575=>1000,24576=>1000,24585=>1000,24586=>1000,24587=>1000,24588=>1000,24589=>1000,24590=>1000,24591=>1000,24592=>1000,24593=>1000,24594=>1000,24595=>1000,24596=>1000,24597=>1000,24598=>1000,24599=>1000,24601=>1000,24602=>1000,24603=>1000,24604=>1000,24605=>1000,24606=>1000,24608=>1000,24609=>1000,24610=>1000,24611=>1000,24612=>1000,24613=>1000,24614=>1000,24615=>1000,24616=>1000,24617=>1000,24618=>1000,24619=>1000,24620=>1000,24621=>1000,24622=>1000,24623=>1000,24625=>1000,24626=>1000,24627=>1000,24628=>1000,24629=>1000,24631=>1000,24633=>1000,24635=>1000,24640=>1000,24641=>1000,24642=>1000,24643=>1000,24644=>1000,24645=>1000,24646=>1000,24647=>1000,24649=>1000,24650=>1000,24651=>1000,24652=>1000,24653=>1000,24656=>1000,24658=>1000,24659=>1000,24660=>1000,24661=>1000,24664=>1000,24665=>1000,24666=>1000,24667=>1000,24669=>1000,24670=>1000,24671=>1000,24674=>1000,24675=>1000,24676=>1000,24677=>1000,24678=>1000,24679=>1000,24680=>1000,24681=>1000,24682=>1000,24683=>1000,24684=>1000,24685=>1000,24686=>1000,24687=>1000,24688=>1000,24690=>1000,24693=>1000,24695=>1000,24702=>1000,24703=>1000,24704=>1000,24705=>1000,24707=>1000,24708=>1000,24709=>1000,24710=>1000,24711=>1000,24712=>1000,24713=>1000,24714=>1000,24716=>1000,24717=>1000,24718=>1000,24720=>1000,24722=>1000,24724=>1000,24725=>1000,24726=>1000,24727=>1000,24730=>1000,24731=>1000,24732=>1000,24733=>1000,24734=>1000,24735=>1000,24736=>1000,24738=>1000,24739=>1000,24740=>1000,24742=>1000,24743=>1000,24744=>1000,24752=>1000,24753=>1000,24754=>1000,24755=>1000,24756=>1000,24757=>1000,24758=>1000,24759=>1000,24760=>1000,24761=>1000,24762=>1000,24763=>1000,24764=>1000,24765=>1000,24766=>1000,24767=>1000,24768=>1000,24769=>1000,24771=>1000,24772=>1000,24773=>1000,24774=>1000,24775=>1000,24776=>1000,24777=>1000,24778=>1000,24779=>1000,24780=>1000,24781=>1000,24782=>1000,24783=>1000,24785=>1000,24787=>1000,24788=>1000,24789=>1000,24791=>1000,24792=>1000,24793=>1000,24794=>1000,24795=>1000,24796=>1000,24797=>1000,24798=>1000,24799=>1000,24800=>1000,24801=>1000,24802=>1000,24803=>1000,24804=>1000,24806=>1000,24807=>1000,24808=>1000,24809=>1000,24816=>1000,24817=>1000,24818=>1000,24819=>1000,24820=>1000,24821=>1000,24822=>1000,24823=>1000,24824=>1000,24825=>1000,24826=>1000,24827=>1000,24828=>1000,24829=>1000,24830=>1000,24831=>1000,24832=>1000,24833=>1000,24835=>1000,24836=>1000,24837=>1000,24838=>1000,24839=>1000,24840=>1000,24841=>1000,24842=>1000,24843=>1000,24844=>1000,24845=>1000,24846=>1000,24847=>1000,24848=>1000,24850=>1000,24851=>1000,24852=>1000,24853=>1000,24854=>1000,24856=>1000,24857=>1000,24858=>1000,24859=>1000,24860=>1000,24861=>1000,24863=>1000,24864=>1000,24866=>1000,24867=>1000,24871=>1000,24872=>1000,24873=>1000,24875=>1000,24876=>1000,24878=>1000,24879=>1000,24880=>1000,24882=>1000,24884=>1000,24886=>1000,24887=>1000,24891=>1000,24893=>1000,24894=>1000,24895=>1000,24896=>1000,24897=>1000,24898=>1000,24900=>1000,24901=>1000,24902=>1000,24903=>1000,24904=>1000,24905=>1000,24906=>1000,24907=>1000,24908=>1000,24909=>1000,24910=>1000,24911=>1000,24912=>1000,24914=>1000,24915=>1000,24916=>1000,24917=>1000,24918=>1000,24920=>1000,24921=>1000,24922=>1000,24923=>1000,24924=>1000,24925=>1000,24926=>1000,24927=>1000,24928=>1000,24929=>1000,24930=>1000,24931=>1000,24932=>1000,24933=>1000,24934=>1000,24935=>1000,24936=>1000,24938=>1000,24939=>1000,24940=>1000,24942=>1000,24943=>1000,24944=>1000,24945=>1000,24946=>1000,24947=>1000,24948=>1000,24949=>1000,24950=>1000,24951=>1000,24953=>1000,24954=>1000,24956=>1000,24957=>1000,24958=>1000,24960=>1000,24961=>1000,24962=>1000,24963=>1000,24967=>1000,24969=>1000,24970=>1000,24971=>1000,24972=>1000,24973=>1000,24974=>1000,24976=>1000,24977=>1000,24978=>1000,24979=>1000,24980=>1000,24981=>1000,24982=>1000,24984=>1000,24985=>1000,24986=>1000,24987=>1000,24988=>1000,24989=>1000,24991=>1000,24993=>1000,24994=>1000,24996=>1000,24999=>1000,25000=>1000,25001=>1000,25002=>1000,25003=>1000,25004=>1000,25005=>1000,25006=>1000,25007=>1000,25008=>1000,25009=>1000,25010=>1000,25011=>1000,25012=>1000,25013=>1000,25014=>1000,25015=>1000,25016=>1000,25017=>1000,25018=>1000,25020=>1000,25022=>1000,25023=>1000,25024=>1000,25025=>1000,25026=>1000,25027=>1000,25029=>1000,25030=>1000,25031=>1000,25032=>1000,25033=>1000,25034=>1000,25035=>1000,25036=>1000,25037=>1000,25039=>1000,25040=>1000,25043=>1000,25046=>1000,25048=>1000,25050=>1000,25054=>1000,25055=>1000,25056=>1000,25058=>1000,25059=>1000,25060=>1000,25061=>1000,25062=>1000,25063=>1000,25064=>1000,25065=>1000,25066=>1000,25067=>1000,25069=>1000,25070=>1000,25072=>1000,25073=>1000,25074=>1000,25077=>1000,25078=>1000,25079=>1000,25080=>1000,25081=>1000,25082=>1000,25083=>1000,25084=>1000,25085=>1000,25086=>1000,25087=>1000,25088=>1000,25089=>1000,25091=>1000,25092=>1000,25095=>1000,25096=>1000,25097=>1000,25098=>1000,25100=>1000,25101=>1000,25102=>1000,25104=>1000,25105=>1000,25106=>1000,25108=>1000,25109=>1000,25110=>1000,25113=>1000,25114=>1000,25115=>1000,25119=>1000,25120=>1000,25121=>1000,25122=>1000,25123=>1000,25124=>1000,25125=>1000,25127=>1000,25129=>1000,25130=>1000,25131=>1000,25132=>1000,25133=>1000,25134=>1000,25136=>1000,25138=>1000,25139=>1000,25140=>1000,25142=>1000,25143=>1000,25145=>1000,25146=>1000,25149=>1000,25150=>1000,25151=>1000,25152=>1000,25153=>1000,25154=>1000,25155=>1000,25158=>1000,25159=>1000,25160=>1000,25161=>1000,25162=>1000,25163=>1000,25164=>1000,25165=>1000,25166=>1000,25168=>1000,25169=>1000,25170=>1000,25171=>1000,25172=>1000,25176=>1000,25177=>1000,25178=>1000,25179=>1000,25180=>1000,25182=>1000,25184=>1000,25185=>1000,25186=>1000,25187=>1000,25188=>1000,25189=>1000,25190=>1000,25192=>1000,25197=>1000,25198=>1000,25199=>1000,25200=>1000,25201=>1000,25202=>1000,25203=>1000,25204=>1000,25206=>1000,25207=>1000,25209=>1000,25210=>1000,25211=>1000,25212=>1000,25213=>1000,25214=>1000,25215=>1000,25216=>1000,25217=>1000,25218=>1000,25219=>1000,25220=>1000,25221=>1000,25222=>1000,25223=>1000,25224=>1000,25225=>1000,25226=>1000,25228=>1000,25230=>1000,25231=>1000,25232=>1000,25233=>1000,25234=>1000,25235=>1000,25236=>1000,25237=>1000,25238=>1000,25239=>1000,25240=>1000,25245=>1000,25252=>1000,25254=>1000,25256=>1000,25257=>1000,25258=>1000,25259=>1000,25260=>1000,25261=>1000,25262=>1000,25263=>1000,25264=>1000,25265=>1000,25267=>1000,25268=>1000,25269=>1000,25270=>1000,25272=>1000,25273=>1000,25275=>1000,25276=>1000,25277=>1000,25278=>1000,25279=>1000,25281=>1000,25282=>1000,25283=>1000,25284=>1000,25285=>1000,25286=>1000,25287=>1000,25288=>1000,25289=>1000,25290=>1000,25291=>1000,25292=>1000,25293=>1000,25294=>1000,25295=>1000,25296=>1000,25297=>1000,25298=>1000,25299=>1000,25300=>1000,25301=>1000,25302=>1000,25303=>1000,25304=>1000,25305=>1000,25306=>1000,25307=>1000,25308=>1000,25311=>1000,25317=>1000,25323=>1000,25324=>1000,25325=>1000,25326=>1000,25327=>1000,25328=>1000,25329=>1000,25330=>1000,25331=>1000,25332=>1000,25333=>1000,25334=>1000,25335=>1000,25336=>1000,25337=>1000,25338=>1000,25339=>1000,25340=>1000,25341=>1000,25342=>1000,25343=>1000,25344=>1000,25345=>1000,25346=>1000,25347=>1000,25351=>1000,25352=>1000,25353=>1000,25355=>1000,25356=>1000,25357=>1000,25358=>1000,25359=>1000,25360=>1000,25361=>1000,25363=>1000,25364=>1000,25365=>1000,25366=>1000,25368=>1000,25384=>1000,25385=>1000,25386=>1000,25387=>1000,25388=>1000,25389=>1000,25390=>1000,25391=>1000,25393=>1000,25394=>1000,25395=>1000,25396=>1000,25397=>1000,25398=>1000,25399=>1000,25400=>1000,25401=>1000,25402=>1000,25403=>1000,25404=>1000,25405=>1000,25406=>1000,25408=>1000,25409=>1000,25410=>1000,25411=>1000,25412=>1000,25413=>1000,25414=>1000,25415=>1000,25416=>1000,25417=>1000,25418=>1000,25419=>1000,25420=>1000,25421=>1000,25422=>1000,25423=>1000,25424=>1000,25425=>1000,25428=>1000,25429=>1000,25430=>1000,25431=>1000,25432=>1000,25433=>1000,25434=>1000,25437=>1000,25444=>1000,25445=>1000,25447=>1000,25448=>1000,25449=>1000,25451=>1000,25452=>1000,25453=>1000,25454=>1000,25455=>1000,25456=>1000,25457=>1000,25458=>1000,25461=>1000,25462=>1000,25463=>1000,25464=>1000,25465=>1000,25466=>1000,25467=>1000,25468=>1000,25469=>1000,25471=>1000,25472=>1000,25473=>1000,25474=>1000,25475=>1000,25476=>1000,25477=>1000,25479=>1000,25480=>1000,25481=>1000,25482=>1000,25483=>1000,25484=>1000,25485=>1000,25486=>1000,25487=>1000,25488=>1000,25489=>1000,25490=>1000,25492=>1000,25494=>1000,25495=>1000,25496=>1000,25497=>1000,25499=>1000,25500=>1000,25501=>1000,25502=>1000,25503=>1000,25504=>1000,25505=>1000,25506=>1000,25507=>1000,25508=>1000,25509=>1000,25511=>1000,25512=>1000,25513=>1000,25514=>1000,25515=>1000,25516=>1000,25517=>1000,25518=>1000,25519=>1000,25520=>1000,25521=>1000,25529=>1000,25533=>1000,25534=>1000,25536=>1000,25537=>1000,25538=>1000,25539=>1000,25540=>1000,25541=>1000,25542=>1000,25543=>1000,25544=>1000,25545=>1000,25546=>1000,25547=>1000,25548=>1000,25549=>1000,25550=>1000,25551=>1000,25552=>1000,25553=>1000,25554=>1000,25555=>1000,25557=>1000,25558=>1000,25559=>1000,25560=>1000,25561=>1000,25562=>1000,25563=>1000,25564=>1000,25565=>1000,25566=>1000,25567=>1000,25568=>1000,25569=>1000,25570=>1000,25571=>1000,25572=>1000,25573=>1000,25574=>1000,25575=>1000,25576=>1000,25577=>1000,25578=>1000,25579=>1000,25581=>1000,25582=>1000,25583=>1000,25584=>1000,25585=>1000,25586=>1000,25587=>1000,25588=>1000,25589=>1000,25590=>1000,25592=>1000,25593=>1000,25595=>1000,25596=>1000,25598=>1000,25606=>1000,25607=>1000,25609=>1000,25610=>1000,25611=>1000,25612=>1000,25613=>1000,25614=>1000,25615=>1000,25616=>1000,25618=>1000,25619=>1000,25620=>1000,25621=>1000,25622=>1000,25623=>1000,25624=>1000,25626=>1000,25627=>1000,25628=>1000,25630=>1000,25631=>1000,25632=>1000,25633=>1000,25634=>1000,25635=>1000,25636=>1000,25637=>1000,25638=>1000,25639=>1000,25640=>1000,25642=>1000,25643=>1000,25644=>1000,25645=>1000,25646=>1000,25647=>1000,25648=>1000,25650=>1000,25651=>1000,25652=>1000,25653=>1000,25654=>1000,25655=>1000,25656=>1000,25657=>1000,25658=>1000,25659=>1000,25661=>1000,25662=>1000,25663=>1000,25664=>1000,25665=>1000,25667=>1000,25675=>1000,25677=>1000,25678=>1000,25680=>1000,25681=>1000,25682=>1000,25683=>1000,25684=>1000,25688=>1000,25689=>1000,25690=>1000,25691=>1000,25692=>1000,25693=>1000,25694=>1000,25695=>1000,25696=>1000,25697=>1000,25701=>1000,25702=>1000,25703=>1000,25704=>1000,25705=>1000,25707=>1000,25708=>1000,25709=>1000,25710=>1000,25711=>1000,25712=>1000,25713=>1000,25714=>1000,25715=>1000,25716=>1000,25717=>1000,25718=>1000,25719=>1000,25720=>1000,25721=>1000,25722=>1000,25723=>1000,25724=>1000,25725=>1000,25727=>1000,25730=>1000,25733=>1000,25735=>1000,25736=>1000,25737=>1000,25738=>1000,25739=>1000,25740=>1000,25741=>1000,25743=>1000,25744=>1000,25745=>1000,25746=>1000,25747=>1000,25749=>1000,25750=>1000,25751=>1000,25752=>1000,25753=>1000,25754=>1000,25756=>1000,25757=>1000,25758=>1000,25759=>1000,25760=>1000,25762=>1000,25763=>1000,25764=>1000,25765=>1000,25766=>1000,25769=>1000,25771=>1000,25772=>1000,25773=>1000,25774=>1000,25775=>1000,25776=>1000,25777=>1000,25778=>1000,25779=>1000,25780=>1000,25782=>1000,25787=>1000,25788=>1000,25789=>1000,25790=>1000,25791=>1000,25792=>1000,25793=>1000,25794=>1000,25795=>1000,25796=>1000,25797=>1000,25799=>1000,25801=>1000,25802=>1000,25803=>1000,25805=>1000,25806=>1000,25807=>1000,25808=>1000,25810=>1000,25811=>1000,25812=>1000,25814=>1000,25815=>1000,25816=>1000,25817=>1000,25818=>1000,25819=>1000,25821=>1000,25824=>1000,25825=>1000,25826=>1000,25827=>1000,25828=>1000,25829=>1000,25830=>1000,25831=>1000,25832=>1000,25833=>1000,25834=>1000,25835=>1000,25836=>1000,25837=>1000,25839=>1000,25840=>1000,25841=>1000,25842=>1000,25843=>1000,25844=>1000,25847=>1000,25848=>1000,25850=>1000,25851=>1000,25852=>1000,25853=>1000,25854=>1000,25855=>1000,25856=>1000,25857=>1000,25859=>1000,25860=>1000,25862=>1000,25863=>1000,25865=>1000,25866=>1000,25868=>1000,25869=>1000,25870=>1000,25871=>1000,25872=>1000,25873=>1000,25875=>1000,25876=>1000,25877=>1000,25878=>1000,25879=>1000,25880=>1000,25881=>1000,25883=>1000,25884=>1000,25885=>1000,25886=>1000,25887=>1000,25888=>1000,25889=>1000,25890=>1000,25891=>1000,25892=>1000,25893=>1000,25894=>1000,25897=>1000,25898=>1000,25899=>1000,25900=>1000,25901=>1000,25902=>1000,25903=>1000,25904=>1000,25906=>1000,25907=>1000,25908=>1000,25909=>1000,25910=>1000,25911=>1000,25912=>1000,25913=>1000,25915=>1000,25917=>1000,25918=>1000,25919=>1000,25921=>1000,25923=>1000,25925=>1000,25926=>1000,25928=>1000,25929=>1000,25930=>1000,25933=>1000,25935=>1000,25937=>1000,25939=>1000,25940=>1000,25941=>1000,25942=>1000,25943=>1000,25944=>1000,25945=>1000,25946=>1000,25948=>1000,25949=>1000,25950=>1000,25951=>1000,25954=>1000,25955=>1000,25956=>1000,25957=>1000,25958=>1000,25959=>1000,25960=>1000,25962=>1000,25963=>1000,25964=>1000,25965=>1000,25967=>1000,25970=>1000,25971=>1000,25972=>1000,25973=>1000,25974=>1000,25975=>1000,25976=>1000,25977=>1000,25978=>1000,25979=>1000,25980=>1000,25983=>1000,25984=>1000,25985=>1000,25986=>1000,25987=>1000,25988=>1000,25989=>1000,25990=>1000,25991=>1000,25992=>1000,25993=>1000,25995=>1000,25996=>1000,26000=>1000,26001=>1000,26002=>1000,26004=>1000,26005=>1000,26006=>1000,26007=>1000,26009=>1000,26011=>1000,26012=>1000,26013=>1000,26014=>1000,26015=>1000,26016=>1000,26017=>1000,26018=>1000,26020=>1000,26021=>1000,26023=>1000,26024=>1000,26026=>1000,26027=>1000,26028=>1000,26030=>1000,26031=>1000,26032=>1000,26034=>1000,26035=>1000,26037=>1000,26038=>1000,26039=>1000,26040=>1000,26041=>1000,26043=>1000,26044=>1000,26045=>1000,26046=>1000,26047=>1000,26049=>1000,26050=>1000,26051=>1000,26052=>1000,26053=>1000,26054=>1000,26059=>1000,26060=>1000,26061=>1000,26062=>1000,26063=>1000,26064=>1000,26065=>1000,26066=>1000,26067=>1000,26068=>1000,26070=>1000,26071=>1000,26074=>1000,26075=>1000,26077=>1000,26078=>1000,26079=>1000,26080=>1000,26081=>1000,26082=>1000,26083=>1000,26085=>1000,26086=>1000,26088=>1000,26089=>1000,26092=>1000,26093=>1000,26094=>1000,26095=>1000,26096=>1000,26097=>1000,26098=>1000,26099=>1000,26100=>1000,26101=>1000,26106=>1000,26107=>1000,26108=>1000,26109=>1000,26111=>1000,26112=>1000,26114=>1000,26115=>1000,26116=>1000,26117=>1000,26118=>1000,26119=>1000,26120=>1000,26121=>1000,26122=>1000,26123=>1000,26124=>1000,26125=>1000,26126=>1000,26127=>1000,26128=>1000,26129=>1000,26130=>1000,26131=>1000,26132=>1000,26133=>1000,26136=>1000,26140=>1000,26141=>1000,26142=>1000,26143=>1000,26144=>1000,26145=>1000,26146=>1000,26147=>1000,26148=>1000,26149=>1000,26150=>1000,26151=>1000,26152=>1000,26155=>1000,26157=>1000,26158=>1000,26159=>1000,26160=>1000,26161=>1000,26162=>1000,26163=>1000,26164=>1000,26165=>1000,26166=>1000,26169=>1000,26170=>1000,26177=>1000,26178=>1000,26179=>1000,26180=>1000,26181=>1000,26183=>1000,26184=>1000,26185=>1000,26186=>1000,26187=>1000,26188=>1000,26189=>1000,26191=>1000,26193=>1000,26194=>1000,26195=>1000,26199=>1000,26201=>1000,26202=>1000,26203=>1000,26204=>1000,26205=>1000,26206=>1000,26207=>1000,26208=>1000,26209=>1000,26210=>1000,26211=>1000,26212=>1000,26213=>1000,26214=>1000,26215=>1000,26216=>1000,26218=>1000,26219=>1000,26220=>1000,26222=>1000,26223=>1000,26224=>1000,26225=>1000,26226=>1000,26227=>1000,26228=>1000,26230=>1000,26231=>1000,26232=>1000,26233=>1000,26234=>1000,26235=>1000,26236=>1000,26237=>1000,26238=>1000,26240=>1000,26244=>1000,26245=>1000,26246=>1000,26247=>1000,26248=>1000,26249=>1000,26250=>1000,26251=>1000,26252=>1000,26253=>1000,26254=>1000,26256=>1000,26257=>1000,26258=>1000,26260=>1000,26261=>1000,26262=>1000,26263=>1000,26264=>1000,26265=>1000,26266=>1000,26269=>1000,26271=>1000,26272=>1000,26273=>1000,26274=>1000,26276=>1000,26280=>1000,26281=>1000,26282=>1000,26283=>1000,26285=>1000,26286=>1000,26287=>1000,26288=>1000,26289=>1000,26290=>1000,26291=>1000,26292=>1000,26293=>1000,26294=>1000,26295=>1000,26296=>1000,26297=>1000,26298=>1000,26299=>1000,26301=>1000,26302=>1000,26303=>1000,26304=>1000,26308=>1000,26310=>1000,26311=>1000,26312=>1000,26313=>1000,26314=>1000,26315=>1000,26316=>1000,26317=>1000,26318=>1000,26319=>1000,26322=>1000,26326=>1000,26328=>1000,26329=>1000,26330=>1000,26331=>1000,26332=>1000,26333=>1000,26334=>1000,26336=>1000,26339=>1000,26340=>1000,26342=>1000,26343=>1000,26344=>1000,26345=>1000,26347=>1000,26348=>1000,26349=>1000,26350=>1000,26352=>1000,26353=>1000,26354=>1000,26355=>1000,26356=>1000,26358=>1000,26359=>1000,26360=>1000,26361=>1000,26364=>1000,26366=>1000,26367=>1000,26368=>1000,26369=>1000,26370=>1000,26371=>1000,26372=>1000,26373=>1000,26376=>1000,26377=>1000,26378=>1000,26379=>1000,26380=>1000,26381=>1000,26382=>1000,26383=>1000,26384=>1000,26386=>1000,26387=>1000,26388=>1000,26389=>1000,26390=>1000,26391=>1000,26392=>1000,26393=>1000,26395=>1000,26397=>1000,26398=>1000,26399=>1000,26400=>1000,26401=>1000,26402=>1000,26403=>1000,26405=>1000,26406=>1000,26407=>1000,26408=>1000,26410=>1000,26411=>1000,26412=>1000,26413=>1000,26414=>1000,26417=>1000,26419=>1000,26420=>1000,26421=>1000,26422=>1000,26424=>1000,26425=>1000,26426=>1000,26427=>1000,26428=>1000,26429=>1000,26430=>1000,26431=>1000,26436=>1000,26437=>1000,26438=>1000,26439=>1000,26440=>1000,26441=>1000,26443=>1000,26444=>1000,26445=>1000,26446=>1000,26447=>1000,26448=>1000,26449=>1000,26451=>1000,26453=>1000,26454=>1000,26455=>1000,26457=>1000,26458=>1000,26460=>1000,26461=>1000,26462=>1000,26463=>1000,26464=>1000,26465=>1000,26466=>1000,26471=>1000,26474=>1000,26475=>1000,26476=>1000,26477=>1000,26478=>1000,26479=>1000,26480=>1000,26481=>1000,26482=>1000,26483=>1000,26484=>1000,26485=>1000,26486=>1000,26487=>1000,26488=>1000,26489=>1000,26490=>1000,26491=>1000,26492=>1000,26493=>1000,26494=>1000,26495=>1000,26497=>1000,26498=>1000,26499=>1000,26500=>1000,26501=>1000,26502=>1000,26503=>1000,26505=>1000,26507=>1000,26508=>1000,26509=>1000,26510=>1000,26511=>1000,26512=>1000,26513=>1000,26514=>1000,26515=>1000,26516=>1000,26517=>1000,26519=>1000,26520=>1000,26521=>1000,26522=>1000,26524=>1000,26525=>1000,26527=>1000,26528=>1000,26532=>1000,26540=>1000,26542=>1000,26543=>1000,26544=>1000,26545=>1000,26546=>1000,26547=>1000,26548=>1000,26549=>1000,26550=>1000,26551=>1000,26552=>1000,26553=>1000,26554=>1000,26555=>1000,26559=>1000,26560=>1000,26561=>1000,26562=>1000,26563=>1000,26564=>1000,26565=>1000,26566=>1000,26568=>1000,26569=>1000,26570=>1000,26571=>1000,26572=>1000,26573=>1000,26574=>1000,26575=>1000,26576=>1000,26577=>1000,26578=>1000,26579=>1000,26580=>1000,26582=>1000,26583=>1000,26584=>1000,26585=>1000,26586=>1000,26587=>1000,26588=>1000,26589=>1000,26590=>1000,26591=>1000,26594=>1000,26595=>1000,26596=>1000,26597=>1000,26598=>1000,26599=>1000,26601=>1000,26602=>1000,26603=>1000,26604=>1000,26605=>1000,26606=>1000,26607=>1000,26608=>1000,26609=>1000,26610=>1000,26611=>1000,26612=>1000,26613=>1000,26614=>1000,26615=>1000,26616=>1000,26617=>1000,26618=>1000,26620=>1000,26622=>1000,26623=>1000,26624=>1000,26625=>1000,26626=>1000,26627=>1000,26628=>1000,26637=>1000,26640=>1000,26642=>1000,26643=>1000,26644=>1000,26646=>1000,26647=>1000,26648=>1000,26650=>1000,26651=>1000,26652=>1000,26653=>1000,26654=>1000,26655=>1000,26656=>1000,26657=>1000,26658=>1000,26661=>1000,26662=>1000,26664=>1000,26665=>1000,26666=>1000,26667=>1000,26669=>1000,26670=>1000,26671=>1000,26673=>1000,26674=>1000,26675=>1000,26676=>1000,26677=>1000,26678=>1000,26679=>1000,26680=>1000,26681=>1000,26682=>1000,26683=>1000,26684=>1000,26685=>1000,26686=>1000,26688=>1000,26689=>1000,26690=>1000,26691=>1000,26692=>1000,26693=>1000,26694=>1000,26695=>1000,26696=>1000,26697=>1000,26698=>1000,26699=>1000,26700=>1000,26701=>1000,26702=>1000,26703=>1000,26704=>1000,26705=>1000,26707=>1000,26708=>1000,26709=>1000,26710=>1000,26717=>1000,26725=>1000,26731=>1000,26733=>1000,26734=>1000,26735=>1000,26737=>1000,26738=>1000,26740=>1000,26741=>1000,26742=>1000,26743=>1000,26744=>1000,26745=>1000,26747=>1000,26748=>1000,26749=>1000,26750=>1000,26751=>1000,26752=>1000,26753=>1000,26754=>1000,26755=>1000,26756=>1000,26757=>1000,26758=>1000,26759=>1000,26760=>1000,26761=>1000,26762=>1000,26763=>1000,26764=>1000,26767=>1000,26768=>1000,26769=>1000,26770=>1000,26771=>1000,26772=>1000,26774=>1000,26775=>1000,26776=>1000,26779=>1000,26780=>1000,26781=>1000,26783=>1000,26784=>1000,26785=>1000,26786=>1000,26787=>1000,26788=>1000,26790=>1000,26791=>1000,26792=>1000,26793=>1000,26794=>1000,26795=>1000,26796=>1000,26797=>1000,26798=>1000,26799=>1000,26800=>1000,26801=>1000,26802=>1000,26803=>1000,26804=>1000,26805=>1000,26806=>1000,26809=>1000,26813=>1000,26817=>1000,26819=>1000,26820=>1000,26821=>1000,26822=>1000,26823=>1000,26824=>1000,26825=>1000,26826=>1000,26827=>1000,26828=>1000,26829=>1000,26830=>1000,26832=>1000,26833=>1000,26834=>1000,26835=>1000,26836=>1000,26837=>1000,26838=>1000,26839=>1000,26840=>1000,26842=>1000,26844=>1000,26845=>1000,26846=>1000,26847=>1000,26848=>1000,26849=>1000,26851=>1000,26852=>1000,26854=>1000,26855=>1000,26856=>1000,26857=>1000,26858=>1000,26859=>1000,26860=>1000,26862=>1000,26863=>1000,26864=>1000,26865=>1000,26866=>1000,26867=>1000,26868=>1000,26869=>1000,26870=>1000,26871=>1000,26872=>1000,26873=>1000,26874=>1000,26875=>1000,26876=>1000,26877=>1000,26880=>1000,26881=>1000,26882=>1000,26883=>1000,26884=>1000,26885=>1000,26886=>1000,26887=>1000,26888=>1000,26889=>1000,26890=>1000,26891=>1000,26892=>1000,26893=>1000,26894=>1000,26895=>1000,26896=>1000,26897=>1000,26898=>1000,26899=>1000,26900=>1000,26901=>1000,26903=>1000,26904=>1000,26905=>1000,26906=>1000,26907=>1000,26917=>1000,26922=>1000,26924=>1000,26927=>1000,26928=>1000,26930=>1000,26931=>1000,26932=>1000,26933=>1000,26934=>1000,26935=>1000,26936=>1000,26937=>1000,26939=>1000,26940=>1000,26941=>1000,26942=>1000,26943=>1000,26944=>1000,26945=>1000,26946=>1000,26947=>1000,26948=>1000,26949=>1000,26950=>1000,26952=>1000,26953=>1000,26954=>1000,26955=>1000,26956=>1000,26958=>1000,26959=>1000,26961=>1000,26962=>1000,26963=>1000,26964=>1000,26965=>1000,26966=>1000,26967=>1000,26968=>1000,26969=>1000,26970=>1000,26971=>1000,26972=>1000,26973=>1000,26974=>1000,26975=>1000,26976=>1000,26977=>1000,26978=>1000,26979=>1000,26980=>1000,26981=>1000,26982=>1000,26983=>1000,26984=>1000,26985=>1000,26986=>1000,26987=>1000,26988=>1000,26989=>1000,26990=>1000,26991=>1000,26992=>1000,26993=>1000,26994=>1000,26995=>1000,26996=>1000,26997=>1000,26998=>1000,26999=>1000,27000=>1000,27001=>1000,27002=>1000,27003=>1000,27008=>1000,27010=>1000,27011=>1000,27013=>1000,27014=>1000,27018=>1000,27021=>1000,27022=>1000,27024=>1000,27025=>1000,27027=>1000,27028=>1000,27029=>1000,27030=>1000,27031=>1000,27032=>1000,27033=>1000,27034=>1000,27035=>1000,27036=>1000,27038=>1000,27039=>1000,27040=>1000,27041=>1000,27042=>1000,27043=>1000,27044=>1000,27045=>1000,27046=>1000,27047=>1000,27048=>1000,27049=>1000,27050=>1000,27051=>1000,27052=>1000,27053=>1000,27054=>1000,27055=>1000,27056=>1000,27057=>1000,27058=>1000,27059=>1000,27060=>1000,27061=>1000,27062=>1000,27063=>1000,27065=>1000,27067=>1000,27068=>1000,27069=>1000,27070=>1000,27071=>1000,27072=>1000,27073=>1000,27074=>1000,27075=>1000,27076=>1000,27078=>1000,27081=>1000,27082=>1000,27083=>1000,27084=>1000,27085=>1000,27086=>1000,27087=>1000,27088=>1000,27089=>1000,27091=>1000,27092=>1000,27093=>1000,27094=>1000,27097=>1000,27105=>1000,27106=>1000,27108=>1000,27109=>1000,27110=>1000,27111=>1000,27112=>1000,27113=>1000,27115=>1000,27116=>1000,27117=>1000,27118=>1000,27121=>1000,27122=>1000,27123=>1000,27124=>1000,27126=>1000,27127=>1000,27128=>1000,27129=>1000,27130=>1000,27131=>1000,27132=>1000,27133=>1000,27134=>1000,27135=>1000,27136=>1000,27137=>1000,27138=>1000,27139=>1000,27140=>1000,27141=>1000,27142=>1000,27143=>1000,27144=>1000,27145=>1000,27146=>1000,27147=>1000,27148=>1000,27149=>1000,27151=>1000,27153=>1000,27155=>1000,27156=>1000,27157=>1000,27158=>1000,27159=>1000,27160=>1000,27161=>1000,27162=>1000,27163=>1000,27164=>1000,27165=>1000,27166=>1000,27167=>1000,27168=>1000,27169=>1000,27171=>1000,27173=>1000,27174=>1000,27175=>1000,27176=>1000,27177=>1000,27179=>1000,27180=>1000,27181=>1000,27186=>1000,27187=>1000,27188=>1000,27189=>1000,27192=>1000,27193=>1000,27194=>1000,27195=>1000,27196=>1000,27197=>1000,27198=>1000,27199=>1000,27200=>1000,27201=>1000,27203=>1000,27204=>1000,27205=>1000,27206=>1000,27207=>1000,27208=>1000,27209=>1000,27211=>1000,27212=>1000,27213=>1000,27214=>1000,27215=>1000,27216=>1000,27217=>1000,27218=>1000,27219=>1000,27220=>1000,27221=>1000,27222=>1000,27223=>1000,27224=>1000,27225=>1000,27226=>1000,27227=>1000,27229=>1000,27230=>1000,27231=>1000,27232=>1000,27233=>1000,27234=>1000,27235=>1000,27236=>1000,27237=>1000,27238=>1000,27239=>1000,27240=>1000,27241=>1000,27242=>1000,27243=>1000,27245=>1000,27247=>1000,27249=>1000,27252=>1000,27254=>1000,27258=>1000,27262=>1000,27263=>1000,27264=>1000,27265=>1000,27266=>1000,27267=>1000,27268=>1000,27269=>1000,27271=>1000,27273=>1000,27274=>1000,27276=>1000,27277=>1000,27278=>1000,27279=>1000,27280=>1000,27281=>1000,27282=>1000,27283=>1000,27284=>1000,27285=>1000,27286=>1000,27287=>1000,27289=>1000,27290=>1000,27291=>1000,27292=>1000,27293=>1000,27294=>1000,27295=>1000,27296=>1000,27297=>1000,27298=>1000,27299=>1000,27300=>1000,27301=>1000,27302=>1000,27303=>1000,27304=>1000,27307=>1000,27308=>1000,27309=>1000,27310=>1000,27311=>1000,27313=>1000,27314=>1000,27315=>1000,27316=>1000,27317=>1000,27318=>1000,27319=>1000,27320=>1000,27321=>1000,27322=>1000,27323=>1000,27325=>1000,27326=>1000,27330=>1000,27331=>1000,27333=>1000,27334=>1000,27335=>1000,27336=>1000,27337=>1000,27338=>1000,27339=>1000,27340=>1000,27341=>1000,27343=>1000,27344=>1000,27345=>1000,27347=>1000,27348=>1000,27352=>1000,27353=>1000,27354=>1000,27355=>1000,27356=>1000,27357=>1000,27358=>1000,27359=>1000,27360=>1000,27361=>1000,27365=>1000,27367=>1000,27368=>1000,27370=>1000,27371=>1000,27372=>1000,27374=>1000,27375=>1000,27376=>1000,27377=>1000,27379=>1000,27382=>1000,27384=>1000,27385=>1000,27386=>1000,27387=>1000,27388=>1000,27392=>1000,27394=>1000,27395=>1000,27396=>1000,27397=>1000,27400=>1000,27401=>1000,27402=>1000,27403=>1000,27407=>1000,27408=>1000,27409=>1000,27410=>1000,27411=>1000,27414=>1000,27415=>1000,27416=>1000,27417=>1000,27418=>1000,27421=>1000,27422=>1000,27424=>1000,27425=>1000,27427=>1000,27429=>1000,27432=>1000,27436=>1000,27437=>1000,27439=>1000,27441=>1000,27442=>1000,27443=>1000,27444=>1000,27445=>1000,27446=>1000,27447=>1000,27448=>1000,27449=>1000,27450=>1000,27451=>1000,27452=>1000,27453=>1000,27454=>1000,27455=>1000,27457=>1000,27458=>1000,27459=>1000,27461=>1000,27462=>1000,27463=>1000,27464=>1000,27465=>1000,27466=>1000,27467=>1000,27468=>1000,27469=>1000,27470=>1000,27472=>1000,27473=>1000,27474=>1000,27476=>1000,27477=>1000,27478=>1000,27479=>1000,27481=>1000,27483=>1000,27484=>1000,27486=>1000,27487=>1000,27488=>1000,27489=>1000,27490=>1000,27491=>1000,27492=>1000,27493=>1000,27494=>1000,27495=>1000,27498=>1000,27501=>1000,27503=>1000,27506=>1000,27508=>1000,27510=>1000,27511=>1000,27512=>1000,27513=>1000,27514=>1000,27515=>1000,27518=>1000,27519=>1000,27520=>1000,27521=>1000,27522=>1000,27523=>1000,27524=>1000,27526=>1000,27528=>1000,27529=>1000,27530=>1000,27532=>1000,27533=>1000,27534=>1000,27535=>1000,27537=>1000,27540=>1000,27541=>1000,27542=>1000,27543=>1000,27544=>1000,27545=>1000,27547=>1000,27550=>1000,27551=>1000,27552=>1000,27554=>1000,27555=>1000,27556=>1000,27557=>1000,27558=>1000,27559=>1000,27562=>1000,27563=>1000,27565=>1000,27566=>1000,27567=>1000,27568=>1000,27570=>1000,27571=>1000,27573=>1000,27574=>1000,27575=>1000,27578=>1000,27580=>1000,27581=>1000,27583=>1000,27584=>1000,27585=>1000,27587=>1000,27588=>1000,27589=>1000,27590=>1000,27591=>1000,27592=>1000,27593=>1000,27594=>1000,27595=>1000,27596=>1000,27597=>1000,27599=>1000,27600=>1000,27602=>1000,27603=>1000,27604=>1000,27606=>1000,27607=>1000,27608=>1000,27610=>1000,27611=>1000,27612=>1000,27614=>1000,27616=>1000,27617=>1000,27618=>1000,27619=>1000,27620=>1000,27622=>1000,27623=>1000,27624=>1000,27626=>1000,27627=>1000,27628=>1000,27631=>1000,27632=>1000,27634=>1000,27635=>1000,27639=>1000,27640=>1000,27641=>1000,27642=>1000,27643=>1000,27644=>1000,27645=>1000,27646=>1000,27647=>1000,27648=>1000,27649=>1000,27650=>1000,27651=>1000,27652=>1000,27653=>1000,27654=>1000,27656=>1000,27657=>1000,27659=>1000,27660=>1000,27661=>1000,27663=>1000,27664=>1000,27665=>1000,27667=>1000,27668=>1000,27669=>1000,27670=>1000,27672=>1000,27673=>1000,27674=>1000,27675=>1000,27676=>1000,27677=>1000,27679=>1000,27680=>1000,27681=>1000,27683=>1000,27684=>1000,27685=>1000,27686=>1000,27687=>1000,27688=>1000,27690=>1000,27691=>1000,27692=>1000,27694=>1000,27695=>1000,27696=>1000,27697=>1000,27698=>1000,27699=>1000,27700=>1000,27701=>1000,27702=>1000,27703=>1000,27704=>1000,27705=>1000,27706=>1000,27707=>1000,27709=>1000,27710=>1000,27711=>1000,27712=>1000,27713=>1000,27714=>1000,27715=>1000,27718=>1000,27721=>1000,27722=>1000,27723=>1000,27724=>1000,27725=>1000,27726=>1000,27727=>1000,27728=>1000,27730=>1000,27732=>1000,27733=>1000,27735=>1000,27736=>1000,27737=>1000,27738=>1000,27739=>1000,27740=>1000,27741=>1000,27742=>1000,27743=>1000,27744=>1000,27745=>1000,27749=>1000,27750=>1000,27751=>1000,27752=>1000,27753=>1000,27754=>1000,27755=>1000,27757=>1000,27758=>1000,27759=>1000,27760=>1000,27761=>1000,27762=>1000,27763=>1000,27764=>1000,27765=>1000,27766=>1000,27768=>1000,27769=>1000,27770=>1000,27771=>1000,27773=>1000,27774=>1000,27775=>1000,27776=>1000,27777=>1000,27778=>1000,27779=>1000,27780=>1000,27781=>1000,27782=>1000,27783=>1000,27784=>1000,27785=>1000,27786=>1000,27787=>1000,27788=>1000,27789=>1000,27790=>1000,27791=>1000,27792=>1000,27794=>1000,27795=>1000,27796=>1000,27797=>1000,27798=>1000,27800=>1000,27801=>1000,27802=>1000,27803=>1000,27804=>1000,27805=>1000,27807=>1000,27810=>1000,27818=>1000,27819=>1000,27820=>1000,27821=>1000,27822=>1000,27823=>1000,27824=>1000,27825=>1000,27826=>1000,27827=>1000,27828=>1000,27830=>1000,27831=>1000,27832=>1000,27833=>1000,27834=>1000,27835=>1000,27836=>1000,27837=>1000,27838=>1000,27839=>1000,27840=>1000,27841=>1000,27842=>1000,27843=>1000,27844=>1000,27845=>1000,27846=>1000,27847=>1000,27849=>1000,27850=>1000,27851=>1000,27852=>1000,27853=>1000,27854=>1000,27855=>1000,27856=>1000,27857=>1000,27858=>1000,27859=>1000,27860=>1000,27861=>1000,27862=>1000,27863=>1000,27865=>1000,27866=>1000,27867=>1000,27868=>1000,27869=>1000,27870=>1000,27871=>1000,27872=>1000,27873=>1000,27874=>1000,27875=>1000,27877=>1000,27879=>1000,27880=>1000,27881=>1000,27882=>1000,27883=>1000,27884=>1000,27885=>1000,27886=>1000,27887=>1000,27888=>1000,27889=>1000,27890=>1000,27891=>1000,27893=>1000,27897=>1000,27903=>1000,27904=>1000,27905=>1000,27906=>1000,27907=>1000,27908=>1000,27909=>1000,27910=>1000,27911=>1000,27912=>1000,27913=>1000,27914=>1000,27915=>1000,27916=>1000,27917=>1000,27918=>1000,27919=>1000,27920=>1000,27921=>1000,27922=>1000,27926=>1000,27927=>1000,27928=>1000,27929=>1000,27930=>1000,27931=>1000,27933=>1000,27934=>1000,27935=>1000,27936=>1000,27938=>1000,27940=>1000,27941=>1000,27942=>1000,27943=>1000,27944=>1000,27945=>1000,27946=>1000,27947=>1000,27948=>1000,27949=>1000,27950=>1000,27951=>1000,27952=>1000,27953=>1000,27954=>1000,27955=>1000,27956=>1000,27957=>1000,27958=>1000,27959=>1000,27960=>1000,27961=>1000,27962=>1000,27963=>1000,27964=>1000,27965=>1000,27966=>1000,27967=>1000,27968=>1000,27969=>1000,27970=>1000,27982=>1000,27991=>1000,27992=>1000,27993=>1000,27994=>1000,27995=>1000,27996=>1000,27998=>1000,27999=>1000,28000=>1000,28001=>1000,28002=>1000,28003=>1000,28004=>1000,28005=>1000,28006=>1000,28007=>1000,28008=>1000,28009=>1000,28010=>1000,28012=>1000,28013=>1000,28014=>1000,28015=>1000,28016=>1000,28017=>1000,28018=>1000,28020=>1000,28021=>1000,28022=>1000,28023=>1000,28024=>1000,28025=>1000,28026=>1000,28027=>1000,28028=>1000,28029=>1000,28030=>1000,28031=>1000,28032=>1000,28033=>1000,28034=>1000,28035=>1000,28036=>1000,28037=>1000,28038=>1000,28039=>1000,28040=>1000,28041=>1000,28042=>1000,28043=>1000,28044=>1000,28045=>1000,28046=>1000,28047=>1000,28048=>1000,28049=>1000,28050=>1000,28051=>1000,28052=>1000,28053=>1000,28054=>1000,28055=>1000,28056=>1000,28058=>1000,28068=>1000,28069=>1000,28074=>1000,28075=>1000,28076=>1000,28078=>1000,28079=>1000,28081=>1000,28082=>1000,28083=>1000,28084=>1000,28085=>1000,28087=>1000,28088=>1000,28089=>1000,28090=>1000,28091=>1000,28092=>1000,28093=>1000,28094=>1000,28095=>1000,28096=>1000,28098=>1000,28100=>1000,28101=>1000,28102=>1000,28103=>1000,28104=>1000,28105=>1000,28106=>1000,28107=>1000,28108=>1000,28109=>1000,28111=>1000,28112=>1000,28113=>1000,28114=>1000,28115=>1000,28116=>1000,28117=>1000,28118=>1000,28119=>1000,28120=>1000,28121=>1000,28122=>1000,28123=>1000,28124=>1000,28125=>1000,28126=>1000,28127=>1000,28128=>1000,28129=>1000,28130=>1000,28131=>1000,28132=>1000,28133=>1000,28134=>1000,28136=>1000,28137=>1000,28138=>1000,28139=>1000,28140=>1000,28141=>1000,28142=>1000,28143=>1000,28144=>1000,28145=>1000,28146=>1000,28147=>1000,28148=>1000,28149=>1000,28150=>1000,28151=>1000,28153=>1000,28154=>1000,28155=>1000,28156=>1000,28157=>1000,28158=>1000,28160=>1000,28162=>1000,28163=>1000,28164=>1000,28165=>1000,28170=>1000,28175=>1000,28181=>1000,28184=>1000,28185=>1000,28186=>1000,28187=>1000,28188=>1000,28189=>1000,28191=>1000,28192=>1000,28193=>1000,28194=>1000,28195=>1000,28196=>1000,28197=>1000,28198=>1000,28199=>1000,28200=>1000,28201=>1000,28202=>1000,28203=>1000,28204=>1000,28205=>1000,28206=>1000,28207=>1000,28208=>1000,28209=>1000,28210=>1000,28211=>1000,28212=>1000,28213=>1000,28214=>1000,28216=>1000,28217=>1000,28218=>1000,28219=>1000,28220=>1000,28221=>1000,28222=>1000,28223=>1000,28224=>1000,28225=>1000,28227=>1000,28228=>1000,28229=>1000,28230=>1000,28231=>1000,28233=>1000,28234=>1000,28235=>1000,28237=>1000,28238=>1000,28239=>1000,28240=>1000,28241=>1000,28242=>1000,28243=>1000,28244=>1000,28245=>1000,28246=>1000,28247=>1000,28248=>1000,28249=>1000,28250=>1000,28251=>1000,28252=>1000,28253=>1000,28254=>1000,28255=>1000,28256=>1000,28257=>1000,28258=>1000,28259=>1000,28260=>1000,28261=>1000,28262=>1000,28263=>1000,28264=>1000,28265=>1000,28267=>1000,28270=>1000,28271=>1000,28273=>1000,28274=>1000,28275=>1000,28276=>1000,28278=>1000,28279=>1000,28280=>1000,28281=>1000,28284=>1000,28294=>1000,28296=>1000,28297=>1000,28299=>1000,28301=>1000,28302=>1000,28303=>1000,28304=>1000,28306=>1000,28307=>1000,28308=>1000,28310=>1000,28311=>1000,28312=>1000,28313=>1000,28314=>1000,28315=>1000,28316=>1000,28317=>1000,28318=>1000,28319=>1000,28320=>1000,28321=>1000,28322=>1000,28323=>1000,28324=>1000,28325=>1000,28326=>1000,28327=>1000,28330=>1000,28331=>1000,28334=>1000,28335=>1000,28336=>1000,28337=>1000,28338=>1000,28339=>1000,28340=>1000,28341=>1000,28342=>1000,28343=>1000,28344=>1000,28345=>1000,28346=>1000,28347=>1000,28348=>1000,28349=>1000,28350=>1000,28351=>1000,28352=>1000,28353=>1000,28354=>1000,28355=>1000,28356=>1000,28357=>1000,28358=>1000,28359=>1000,28360=>1000,28361=>1000,28362=>1000,28363=>1000,28364=>1000,28365=>1000,28366=>1000,28367=>1000,28368=>1000,28369=>1000,28370=>1000,28371=>1000,28372=>1000,28373=>1000,28374=>1000,28376=>1000,28377=>1000,28378=>1000,28379=>1000,28380=>1000,28381=>1000,28386=>1000,28392=>1000,28393=>1000,28395=>1000,28396=>1000,28397=>1000,28398=>1000,28399=>1000,28401=>1000,28402=>1000,28404=>1000,28405=>1000,28406=>1000,28407=>1000,28408=>1000,28409=>1000,28410=>1000,28411=>1000,28412=>1000,28413=>1000,28414=>1000,28415=>1000,28416=>1000,28417=>1000,28418=>1000,28419=>1000,28420=>1000,28421=>1000,28422=>1000,28423=>1000,28424=>1000,28425=>1000,28426=>1000,28427=>1000,28428=>1000,28429=>1000,28430=>1000,28431=>1000,28434=>1000,28435=>1000,28436=>1000,28437=>1000,28438=>1000,28439=>1000,28440=>1000,28441=>1000,28442=>1000,28444=>1000,28446=>1000,28447=>1000,28448=>1000,28449=>1000,28450=>1000,28451=>1000,28452=>1000,28453=>1000,28454=>1000,28455=>1000,28457=>1000,28458=>1000,28459=>1000,28460=>1000,28461=>1000,28462=>1000,28463=>1000,28464=>1000,28465=>1000,28466=>1000,28467=>1000,28468=>1000,28469=>1000,28470=>1000,28471=>1000,28472=>1000,28473=>1000,28474=>1000,28475=>1000,28476=>1000,28477=>1000,28478=>1000,28479=>1000,28480=>1000,28481=>1000,28483=>1000,28484=>1000,28494=>1000,28495=>1000,28496=>1000,28497=>1000,28498=>1000,28499=>1000,28500=>1000,28501=>1000,28502=>1000,28503=>1000,28504=>1000,28506=>1000,28507=>1000,28508=>1000,28509=>1000,28510=>1000,28511=>1000,28512=>1000,28513=>1000,28514=>1000,28515=>1000,28516=>1000,28518=>1000,28519=>1000,28521=>1000,28522=>1000,28523=>1000,28524=>1000,28525=>1000,28526=>1000,28527=>1000,28528=>1000,28530=>1000,28531=>1000,28532=>1000,28534=>1000,28535=>1000,28536=>1000,28537=>1000,28538=>1000,28539=>1000,28540=>1000,28541=>1000,28542=>1000,28543=>1000,28544=>1000,28545=>1000,28546=>1000,28548=>1000,28549=>1000,28550=>1000,28551=>1000,28552=>1000,28553=>1000,28554=>1000,28555=>1000,28556=>1000,28557=>1000,28558=>1000,28560=>1000,28562=>1000,28563=>1000,28564=>1000,28565=>1000,28566=>1000,28567=>1000,28573=>1000,28574=>1000,28575=>1000,28576=>1000,28577=>1000,28578=>1000,28579=>1000,28580=>1000,28581=>1000,28582=>1000,28583=>1000,28584=>1000,28585=>1000,28586=>1000,28587=>1000,28588=>1000,28589=>1000,28590=>1000,28591=>1000,28592=>1000,28593=>1000,28594=>1000,28595=>1000,28596=>1000,28597=>1000,28598=>1000,28600=>1000,28601=>1000,28602=>1000,28603=>1000,28604=>1000,28605=>1000,28606=>1000,28607=>1000,28608=>1000,28609=>1000,28610=>1000,28611=>1000,28612=>1000,28614=>1000,28615=>1000,28616=>1000,28617=>1000,28618=>1000,28619=>1000,28620=>1000,28621=>1000,28622=>1000,28623=>1000,28627=>1000,28628=>1000,28629=>1000,28632=>1000,28633=>1000,28634=>1000,28635=>1000,28636=>1000,28637=>1000,28638=>1000,28639=>1000,28640=>1000,28641=>1000,28642=>1000,28643=>1000,28644=>1000,28646=>1000,28647=>1000,28648=>1000,28649=>1000,28651=>1000,28652=>1000,28653=>1000,28654=>1000,28655=>1000,28656=>1000,28657=>1000,28658=>1000,28660=>1000,28662=>1000,28663=>1000,28664=>1000,28666=>1000,28667=>1000,28668=>1000,28670=>1000,28671=>1000,28672=>1000,28673=>1000,28675=>1000,28676=>1000,28677=>1000,28678=>1000,28679=>1000,28681=>1000,28682=>1000,28683=>1000,28684=>1000,28685=>1000,28686=>1000,28687=>1000,28689=>1000,28692=>1000,28693=>1000,28694=>1000,28695=>1000,28696=>1000,28697=>1000,28698=>1000,28699=>1000,28700=>1000,28701=>1000,28702=>1000,28703=>1000,28704=>1000,28705=>1000,28706=>1000,28707=>1000,28708=>1000,28710=>1000,28711=>1000,28712=>1000,28713=>1000,28714=>1000,28715=>1000,28716=>1000,28719=>1000,28720=>1000,28721=>1000,28722=>1000,28723=>1000,28724=>1000,28725=>1000,28727=>1000,28728=>1000,28729=>1000,28730=>1000,28731=>1000,28732=>1000,28734=>1000,28735=>1000,28736=>1000,28737=>1000,28738=>1000,28739=>1000,28740=>1000,28741=>1000,28742=>1000,28744=>1000,28745=>1000,28746=>1000,28747=>1000,28748=>1000,28749=>1000,28752=>1000,28753=>1000,28754=>1000,28756=>1000,28757=>1000,28758=>1000,28759=>1000,28760=>1000,28762=>1000,28763=>1000,28764=>1000,28765=>1000,28766=>1000,28767=>1000,28768=>1000,28769=>1000,28770=>1000,28771=>1000,28772=>1000,28773=>1000,28774=>1000,28775=>1000,28776=>1000,28777=>1000,28778=>1000,28779=>1000,28780=>1000,28782=>1000,28783=>1000,28784=>1000,28785=>1000,28788=>1000,28789=>1000,28790=>1000,28791=>1000,28792=>1000,28793=>1000,28794=>1000,28796=>1000,28797=>1000,28798=>1000,28799=>1000,28801=>1000,28802=>1000,28803=>1000,28804=>1000,28805=>1000,28806=>1000,28809=>1000,28810=>1000,28811=>1000,28814=>1000,28815=>1000,28817=>1000,28818=>1000,28819=>1000,28820=>1000,28821=>1000,28822=>1000,28824=>1000,28825=>1000,28826=>1000,28831=>1000,28832=>1000,28833=>1000,28835=>1000,28836=>1000,28837=>1000,28838=>1000,28839=>1000,28841=>1000,28843=>1000,28844=>1000,28845=>1000,28846=>1000,28847=>1000,28848=>1000,28849=>1000,28851=>1000,28852=>1000,28853=>1000,28855=>1000,28856=>1000,28857=>1000,28858=>1000,28859=>1000,28860=>1000,28861=>1000,28862=>1000,28864=>1000,28868=>1000,28869=>1000,28870=>1000,28871=>1000,28872=>1000,28874=>1000,28875=>1000,28876=>1000,28877=>1000,28878=>1000,28879=>1000,28880=>1000,28881=>1000,28882=>1000,28883=>1000,28884=>1000,28885=>1000,28886=>1000,28887=>1000,28888=>1000,28889=>1000,28890=>1000,28892=>1000,28893=>1000,28894=>1000,28895=>1000,28896=>1000,28897=>1000,28898=>1000,28900=>1000,28911=>1000,28912=>1000,28913=>1000,28915=>1000,28916=>1000,28917=>1000,28918=>1000,28919=>1000,28920=>1000,28921=>1000,28922=>1000,28923=>1000,28924=>1000,28925=>1000,28926=>1000,28927=>1000,28928=>1000,28930=>1000,28932=>1000,28933=>1000,28934=>1000,28937=>1000,28938=>1000,28939=>1000,28940=>1000,28941=>1000,28942=>1000,28944=>1000,28947=>1000,28951=>1000,28953=>1000,28954=>1000,28955=>1000,28956=>1000,28957=>1000,28958=>1000,28959=>1000,28960=>1000,28961=>1000,28962=>1000,28963=>1000,28965=>1000,28966=>1000,28968=>1000,28969=>1000,28971=>1000,28972=>1000,28974=>1000,28975=>1000,28976=>1000,28977=>1000,28978=>1000,28979=>1000,28980=>1000,28981=>1000,28982=>1000,28986=>1000,28987=>1000,28990=>1000,28992=>1000,28993=>1000,28994=>1000,28995=>1000,28996=>1000,28997=>1000,28998=>1000,28999=>1000,29001=>1000,29002=>1000,29003=>1000,29004=>1000,29005=>1000,29006=>1000,29007=>1000,29008=>1000,29009=>1000,29010=>1000,29011=>1000,29012=>1000,29014=>1000,29015=>1000,29016=>1000,29017=>1000,29018=>1000,29020=>1000,29021=>1000,29022=>1000,29023=>1000,29024=>1000,29025=>1000,29026=>1000,29027=>1000,29028=>1000,29029=>1000,29030=>1000,29031=>1000,29032=>1000,29033=>1000,29034=>1000,29035=>1000,29036=>1000,29038=>1000,29040=>1000,29041=>1000,29042=>1000,29043=>1000,29044=>1000,29045=>1000,29046=>1000,29047=>1000,29048=>1000,29050=>1000,29051=>1000,29052=>1000,29053=>1000,29054=>1000,29056=>1000,29057=>1000,29058=>1000,29060=>1000,29061=>1000,29062=>1000,29063=>1000,29064=>1000,29065=>1000,29066=>1000,29068=>1000,29070=>1000,29071=>1000,29072=>1000,29073=>1000,29074=>1000,29076=>1000,29078=>1000,29079=>1000,29080=>1000,29081=>1000,29082=>1000,29083=>1000,29084=>1000,29085=>1000,29086=>1000,29087=>1000,29088=>1000,29089=>1000,29090=>1000,29091=>1000,29092=>1000,29093=>1000,29095=>1000,29096=>1000,29097=>1000,29098=>1000,29100=>1000,29101=>1000,29103=>1000,29104=>1000,29105=>1000,29106=>1000,29107=>1000,29108=>1000,29109=>1000,29111=>1000,29112=>1000,29113=>1000,29114=>1000,29116=>1000,29117=>1000,29118=>1000,29119=>1000,29120=>1000,29121=>1000,29122=>1000,29123=>1000,29124=>1000,29125=>1000,29126=>1000,29127=>1000,29128=>1000,29129=>1000,29130=>1000,29131=>1000,29134=>1000,29135=>1000,29136=>1000,29137=>1000,29138=>1000,29140=>1000,29141=>1000,29142=>1000,29144=>1000,29145=>1000,29146=>1000,29147=>1000,29148=>1000,29149=>1000,29151=>1000,29152=>1000,29153=>1000,29154=>1000,29156=>1000,29157=>1000,29158=>1000,29159=>1000,29160=>1000,29163=>1000,29164=>1000,29165=>1000,29166=>1000,29168=>1000,29169=>1000,29170=>1000,29172=>1000,29173=>1000,29174=>1000,29176=>1000,29177=>1000,29179=>1000,29180=>1000,29181=>1000,29182=>1000,29183=>1000,29184=>1000,29185=>1000,29186=>1000,29187=>1000,29189=>1000,29190=>1000,29191=>1000,29193=>1000,29194=>1000,29196=>1000,29197=>1000,29198=>1000,29199=>1000,29200=>1000,29203=>1000,29204=>1000,29205=>1000,29206=>1000,29207=>1000,29209=>1000,29210=>1000,29211=>1000,29213=>1000,29214=>1000,29215=>1000,29218=>1000,29219=>1000,29220=>1000,29221=>1000,29222=>1000,29223=>1000,29224=>1000,29225=>1000,29226=>1000,29227=>1000,29228=>1000,29229=>1000,29230=>1000,29232=>1000,29237=>1000,29238=>1000,29240=>1000,29241=>1000,29242=>1000,29243=>1000,29245=>1000,29246=>1000,29247=>1000,29248=>1000,29249=>1000,29250=>1000,29252=>1000,29254=>1000,29255=>1000,29256=>1000,29257=>1000,29258=>1000,29259=>1000,29260=>1000,29263=>1000,29264=>1000,29266=>1000,29267=>1000,29269=>1000,29270=>1000,29271=>1000,29272=>1000,29273=>1000,29274=>1000,29275=>1000,29276=>1000,29277=>1000,29278=>1000,29279=>1000,29280=>1000,29281=>1000,29282=>1000,29283=>1000,29286=>1000,29287=>1000,29289=>1000,29290=>1000,29292=>1000,29294=>1000,29295=>1000,29296=>1000,29298=>1000,29299=>1000,29300=>1000,29302=>1000,29303=>1000,29304=>1000,29305=>1000,29307=>1000,29308=>1000,29309=>1000,29310=>1000,29311=>1000,29312=>1000,29313=>1000,29314=>1000,29316=>1000,29317=>1000,29318=>1000,29319=>1000,29320=>1000,29321=>1000,29323=>1000,29324=>1000,29325=>1000,29326=>1000,29327=>1000,29328=>1000,29329=>1000,29330=>1000,29331=>1000,29332=>1000,29333=>1000,29334=>1000,29335=>1000,29336=>1000,29338=>1000,29339=>1000,29341=>1000,29342=>1000,29343=>1000,29345=>1000,29346=>1000,29347=>1000,29348=>1000,29349=>1000,29350=>1000,29351=>1000,29352=>1000,29353=>1000,29354=>1000,29356=>1000,29357=>1000,29358=>1000,29359=>1000,29360=>1000,29362=>1000,29364=>1000,29365=>1000,29370=>1000,29373=>1000,29375=>1000,29376=>1000,29377=>1000,29378=>1000,29379=>1000,29380=>1000,29381=>1000,29382=>1000,29385=>1000,29386=>1000,29387=>1000,29388=>1000,29389=>1000,29390=>1000,29392=>1000,29393=>1000,29394=>1000,29396=>1000,29398=>1000,29399=>1000,29400=>1000,29401=>1000,29402=>1000,29404=>1000,29407=>1000,29408=>1000,29409=>1000,29410=>1000,29411=>1000,29412=>1000,29414=>1000,29416=>1000,29417=>1000,29418=>1000,29419=>1000,29427=>1000,29428=>1000,29430=>1000,29431=>1000,29432=>1000,29433=>1000,29434=>1000,29435=>1000,29436=>1000,29437=>1000,29438=>1000,29439=>1000,29440=>1000,29441=>1000,29442=>1000,29444=>1000,29447=>1000,29448=>1000,29450=>1000,29451=>1000,29452=>1000,29455=>1000,29456=>1000,29457=>1000,29458=>1000,29459=>1000,29462=>1000,29463=>1000,29464=>1000,29465=>1000,29467=>1000,29468=>1000,29469=>1000,29470=>1000,29474=>1000,29475=>1000,29477=>1000,29478=>1000,29479=>1000,29480=>1000,29481=>1000,29482=>1000,29483=>1000,29484=>1000,29485=>1000,29486=>1000,29488=>1000,29489=>1000,29490=>1000,29491=>1000,29492=>1000,29493=>1000,29494=>1000,29495=>1000,29496=>1000,29497=>1000,29498=>1000,29499=>1000,29500=>1000,29502=>1000,29503=>1000,29504=>1000,29505=>1000,29506=>1000,29507=>1000,29508=>1000,29509=>1000,29512=>1000,29513=>1000,29514=>1000,29516=>1000,29517=>1000,29518=>1000,29519=>1000,29520=>1000,29521=>1000,29522=>1000,29527=>1000,29528=>1000,29529=>1000,29530=>1000,29531=>1000,29533=>1000,29534=>1000,29535=>1000,29536=>1000,29537=>1000,29538=>1000,29541=>1000,29542=>1000,29543=>1000,29544=>1000,29545=>1000,29546=>1000,29547=>1000,29548=>1000,29550=>1000,29551=>1000,29552=>1000,29553=>1000,29554=>1000,29555=>1000,29556=>1000,29557=>1000,29558=>1000,29559=>1000,29560=>1000,29562=>1000,29563=>1000,29564=>1000,29565=>1000,29566=>1000,29567=>1000,29568=>1000,29569=>1000,29570=>1000,29571=>1000,29572=>1000,29573=>1000,29574=>1000,29575=>1000,29576=>1000,29577=>1000,29578=>1000,29579=>1000,29580=>1000,29582=>1000,29583=>1000,29586=>1000,29587=>1000,29588=>1000,29589=>1000,29590=>1000,29591=>1000,29592=>1000,29596=>1000,29597=>1000,29598=>1000,29599=>1000,29600=>1000,29601=>1000,29602=>1000,29604=>1000,29605=>1000,29606=>1000,29607=>1000,29608=>1000,29609=>1000,29610=>1000,29611=>1000,29612=>1000,29613=>1000,29618=>1000,29619=>1000,29620=>1000,29621=>1000,29622=>1000,29623=>1000,29624=>1000,29625=>1000,29626=>1000,29627=>1000,29628=>1000,29630=>1000,29631=>1000,29632=>1000,29634=>1000,29635=>1000,29636=>1000,29637=>1000,29638=>1000,29639=>1000,29640=>1000,29641=>1000,29642=>1000,29643=>1000,29644=>1000,29645=>1000,29646=>1000,29647=>1000,29648=>1000,29650=>1000,29651=>1000,29652=>1000,29653=>1000,29654=>1000,29655=>1000,29656=>1000,29657=>1000,29658=>1000,29659=>1000,29660=>1000,29661=>1000,29662=>1000,29664=>1000,29665=>1000,29666=>1000,29667=>1000,29668=>1000,29669=>1000,29670=>1000,29671=>1000,29672=>1000,29673=>1000,29674=>1000,29675=>1000,29677=>1000,29678=>1000,29679=>1000,29683=>1000,29684=>1000,29685=>1000,29686=>1000,29687=>1000,29688=>1000,29689=>1000,29690=>1000,29691=>1000,29692=>1000,29693=>1000,29694=>1000,29695=>1000,29696=>1000,29697=>1000,29698=>1000,29699=>1000,29700=>1000,29701=>1000,29702=>1000,29703=>1000,29704=>1000,29705=>1000,29706=>1000,29707=>1000,29708=>1000,29709=>1000,29713=>1000,29714=>1000,29716=>1000,29717=>1000,29718=>1000,29719=>1000,29721=>1000,29722=>1000,29723=>1000,29724=>1000,29725=>1000,29726=>1000,29727=>1000,29728=>1000,29729=>1000,29730=>1000,29731=>1000,29732=>1000,29733=>1000,29734=>1000,29736=>1000,29737=>1000,29738=>1000,29739=>1000,29740=>1000,29741=>1000,29742=>1000,29743=>1000,29744=>1000,29745=>1000,29746=>1000,29747=>1000,29748=>1000,29749=>1000,29750=>1000,29751=>1000,29752=>1000,29753=>1000,29754=>1000,29756=>1000,29759=>1000,29760=>1000,29761=>1000,29762=>1000,29763=>1000,29764=>1000,29765=>1000,29766=>1000,29767=>1000,29768=>1000,29769=>1000,29770=>1000,29771=>1000,29772=>1000,29773=>1000,29774=>1000,29775=>1000,29776=>1000,29777=>1000,29778=>1000,29779=>1000,29780=>1000,29781=>1000,29782=>1000,29783=>1000,29785=>1000,29786=>1000,29787=>1000,29788=>1000,29789=>1000,29790=>1000,29791=>1000,29792=>1000,29793=>1000,29794=>1000,29795=>1000,29796=>1000,29797=>1000,29799=>1000,29800=>1000,29801=>1000,29802=>1000,29803=>1000,29804=>1000,29805=>1000,29806=>1000,29807=>1000,29808=>1000,29809=>1000,29810=>1000,29811=>1000,29812=>1000,29813=>1000,29814=>1000,29817=>1000,29818=>1000,29820=>1000,29821=>1000,29822=>1000,29823=>1000,29824=>1000,29825=>1000,29826=>1000,29827=>1000,29829=>1000,29830=>1000,29831=>1000,29832=>1000,29833=>1000,29834=>1000,29835=>1000,29836=>1000,29837=>1000,29840=>1000,29842=>1000,29844=>1000,29845=>1000,29847=>1000,29848=>1000,29849=>1000,29850=>1000,29851=>1000,29852=>1000,29853=>1000,29854=>1000,29855=>1000,29856=>1000,29857=>1000,29859=>1000,29860=>1000,29861=>1000,29862=>1000,29863=>1000,29864=>1000,29865=>1000,29866=>1000,29867=>1000,29869=>1000,29871=>1000,29872=>1000,29873=>1000,29874=>1000,29876=>1000,29877=>1000,29878=>1000,29879=>1000,29880=>1000,29881=>1000,29882=>1000,29883=>1000,29885=>1000,29886=>1000,29887=>1000,29888=>1000,29889=>1000,29890=>1000,29891=>1000,29893=>1000,29894=>1000,29896=>1000,29898=>1000,29899=>1000,29900=>1000,29903=>1000,29904=>1000,29907=>1000,29908=>1000,29909=>1000,29910=>1000,29911=>1000,29912=>1000,29913=>1000,29914=>1000,29915=>1000,29916=>1000,29917=>1000,29918=>1000,29919=>1000,29920=>1000,29921=>1000,29922=>1000,29923=>1000,29924=>1000,29925=>1000,29926=>1000,29927=>1000,29928=>1000,29929=>1000,29932=>1000,29934=>1000,29936=>1000,29937=>1000,29938=>1000,29940=>1000,29941=>1000,29942=>1000,29943=>1000,29944=>1000,29947=>1000,29949=>1000,29950=>1000,29951=>1000,29952=>1000,29954=>1000,29955=>1000,29956=>1000,29957=>1000,29959=>1000,29960=>1000,29963=>1000,29964=>1000,29965=>1000,29966=>1000,29967=>1000,29968=>1000,29969=>1000,29970=>1000,29971=>1000,29972=>1000,29973=>1000,29974=>1000,29975=>1000,29976=>1000,29977=>1000,29978=>1000,29980=>1000,29981=>1000,29982=>1000,29983=>1000,29985=>1000,29986=>1000,29989=>1000,29990=>1000,29992=>1000,29993=>1000,29994=>1000,29995=>1000,29996=>1000,29997=>1000,29998=>1000,29999=>1000,30000=>1000,30001=>1000,30002=>1000,30003=>1000,30004=>1000,30005=>1000,30007=>1000,30008=>1000,30009=>1000,30010=>1000,30011=>1000,30013=>1000,30014=>1000,30015=>1000,30016=>1000,30018=>1000,30022=>1000,30023=>1000,30024=>1000,30026=>1000,30027=>1000,30028=>1000,30029=>1000,30030=>1000,30031=>1000,30033=>1000,30035=>1000,30036=>1000,30037=>1000,30041=>1000,30042=>1000,30043=>1000,30044=>1000,30045=>1000,30047=>1000,30048=>1000,30050=>1000,30051=>1000,30052=>1000,30053=>1000,30054=>1000,30055=>1000,30058=>1000,30059=>1000,30060=>1000,30061=>1000,30062=>1000,30063=>1000,30064=>1000,30066=>1000,30070=>1000,30071=>1000,30072=>1000,30073=>1000,30074=>1000,30077=>1000,30078=>1000,30079=>1000,30080=>1000,30083=>1000,30084=>1000,30086=>1000,30087=>1000,30090=>1000,30091=>1000,30092=>1000,30093=>1000,30094=>1000,30095=>1000,30096=>1000,30097=>1000,30098=>1000,30100=>1000,30101=>1000,30104=>1000,30105=>1000,30106=>1000,30109=>1000,30110=>1000,30114=>1000,30115=>1000,30116=>1000,30117=>1000,30119=>1000,30122=>1000,30123=>1000,30128=>1000,30129=>1000,30130=>1000,30131=>1000,30132=>1000,30133=>1000,30134=>1000,30136=>1000,30137=>1000,30138=>1000,30139=>1000,30140=>1000,30141=>1000,30142=>1000,30143=>1000,30144=>1000,30145=>1000,30146=>1000,30147=>1000,30148=>1000,30149=>1000,30151=>1000,30152=>1000,30154=>1000,30155=>1000,30156=>1000,30157=>1000,30158=>1000,30159=>1000,30160=>1000,30161=>1000,30162=>1000,30164=>1000,30165=>1000,30167=>1000,30168=>1000,30169=>1000,30170=>1000,30171=>1000,30172=>1000,30173=>1000,30174=>1000,30175=>1000,30176=>1000,30177=>1000,30178=>1000,30179=>1000,30180=>1000,30182=>1000,30183=>1000,30189=>1000,30191=>1000,30192=>1000,30193=>1000,30194=>1000,30195=>1000,30196=>1000,30197=>1000,30198=>1000,30199=>1000,30200=>1000,30201=>1000,30202=>1000,30203=>1000,30204=>1000,30205=>1000,30206=>1000,30207=>1000,30208=>1000,30209=>1000,30210=>1000,30211=>1000,30215=>1000,30216=>1000,30217=>1000,30218=>1000,30219=>1000,30220=>1000,30221=>1000,30223=>1000,30224=>1000,30225=>1000,30227=>1000,30228=>1000,30229=>1000,30230=>1000,30233=>1000,30234=>1000,30235=>1000,30236=>1000,30237=>1000,30238=>1000,30239=>1000,30240=>1000,30241=>1000,30242=>1000,30243=>1000,30244=>1000,30245=>1000,30246=>1000,30247=>1000,30248=>1000,30249=>1000,30252=>1000,30253=>1000,30255=>1000,30256=>1000,30257=>1000,30258=>1000,30259=>1000,30260=>1000,30261=>1000,30264=>1000,30266=>1000,30267=>1000,30268=>1000,30269=>1000,30272=>1000,30274=>1000,30275=>1000,30278=>1000,30279=>1000,30280=>1000,30281=>1000,30284=>1000,30285=>1000,30286=>1000,30287=>1000,30288=>1000,30289=>1000,30290=>1000,30291=>1000,30292=>1000,30294=>1000,30295=>1000,30296=>1000,30297=>1000,30298=>1000,30300=>1000,30303=>1000,30304=>1000,30305=>1000,30306=>1000,30308=>1000,30309=>1000,30310=>1000,30311=>1000,30313=>1000,30314=>1000,30316=>1000,30317=>1000,30318=>1000,30319=>1000,30320=>1000,30321=>1000,30322=>1000,30323=>1000,30324=>1000,30325=>1000,30326=>1000,30328=>1000,30329=>1000,30330=>1000,30331=>1000,30332=>1000,30333=>1000,30334=>1000,30335=>1000,30337=>1000,30338=>1000,30340=>1000,30342=>1000,30343=>1000,30344=>1000,30345=>1000,30346=>1000,30347=>1000,30350=>1000,30351=>1000,30352=>1000,30354=>1000,30355=>1000,30357=>1000,30358=>1000,30361=>1000,30362=>1000,30363=>1000,30364=>1000,30365=>1000,30366=>1000,30369=>1000,30372=>1000,30373=>1000,30374=>1000,30378=>1000,30379=>1000,30381=>1000,30382=>1000,30383=>1000,30384=>1000,30388=>1000,30389=>1000,30391=>1000,30392=>1000,30394=>1000,30395=>1000,30397=>1000,30398=>1000,30399=>1000,30402=>1000,30403=>1000,30404=>1000,30405=>1000,30406=>1000,30408=>1000,30409=>1000,30410=>1000,30412=>1000,30413=>1000,30414=>1000,30418=>1000,30419=>1000,30420=>1000,30422=>1000,30425=>1000,30426=>1000,30427=>1000,30428=>1000,30429=>1000,30430=>1000,30431=>1000,30433=>1000,30435=>1000,30436=>1000,30437=>1000,30438=>1000,30439=>1000,30441=>1000,30442=>1000,30444=>1000,30445=>1000,30446=>1000,30447=>1000,30448=>1000,30449=>1000,30450=>1000,30451=>1000,30452=>1000,30453=>1000,30455=>1000,30456=>1000,30457=>1000,30458=>1000,30459=>1000,30460=>1000,30462=>1000,30465=>1000,30467=>1000,30468=>1000,30469=>1000,30471=>1000,30472=>1000,30473=>1000,30474=>1000,30475=>1000,30476=>1000,30478=>1000,30479=>1000,30480=>1000,30481=>1000,30482=>1000,30483=>1000,30485=>1000,30489=>1000,30490=>1000,30491=>1000,30493=>1000,30494=>1000,30495=>1000,30496=>1000,30498=>1000,30499=>1000,30500=>1000,30501=>1000,30502=>1000,30503=>1000,30504=>1000,30505=>1000,30507=>1000,30509=>1000,30511=>1000,30513=>1000,30514=>1000,30515=>1000,30516=>1000,30517=>1000,30518=>1000,30519=>1000,30520=>1000,30521=>1000,30522=>1000,30523=>1000,30524=>1000,30525=>1000,30526=>1000,30528=>1000,30531=>1000,30532=>1000,30533=>1000,30534=>1000,30535=>1000,30538=>1000,30539=>1000,30540=>1000,30541=>1000,30542=>1000,30543=>1000,30546=>1000,30548=>1000,30549=>1000,30550=>1000,30552=>1000,30553=>1000,30554=>1000,30555=>1000,30556=>1000,30558=>1000,30559=>1000,30560=>1000,30561=>1000,30562=>1000,30563=>1000,30565=>1000,30566=>1000,30567=>1000,30568=>1000,30569=>1000,30570=>1000,30571=>1000,30572=>1000,30573=>1000,30574=>1000,30575=>1000,30578=>1000,30583=>1000,30584=>1000,30585=>1000,30586=>1000,30587=>1000,30588=>1000,30589=>1000,30590=>1000,30591=>1000,30592=>1000,30593=>1000,30594=>1000,30595=>1000,30596=>1000,30597=>1000,30599=>1000,30600=>1000,30601=>1000,30603=>1000,30604=>1000,30605=>1000,30606=>1000,30607=>1000,30609=>1000,30611=>1000,30613=>1000,30615=>1000,30616=>1000,30617=>1000,30618=>1000,30619=>1000,30620=>1000,30621=>1000,30622=>1000,30623=>1000,30624=>1000,30625=>1000,30626=>1000,30627=>1000,30629=>1000,30631=>1000,30632=>1000,30634=>1000,30635=>1000,30636=>1000,30637=>1000,30639=>1000,30640=>1000,30641=>1000,30642=>1000,30643=>1000,30644=>1000,30645=>1000,30646=>1000,30647=>1000,30649=>1000,30650=>1000,30651=>1000,30652=>1000,30653=>1000,30654=>1000,30655=>1000,30658=>1000,30659=>1000,30660=>1000,30661=>1000,30663=>1000,30665=>1000,30666=>1000,30667=>1000,30668=>1000,30669=>1000,30670=>1000,30671=>1000,30672=>1000,30675=>1000,30676=>1000,30677=>1000,30679=>1000,30680=>1000,30681=>1000,30682=>1000,30683=>1000,30684=>1000,30685=>1000,30686=>1000,30688=>1000,30690=>1000,30691=>1000,30693=>1000,30694=>1000,30695=>1000,30696=>1000,30697=>1000,30700=>1000,30701=>1000,30702=>1000,30703=>1000,30704=>1000,30705=>1000,30706=>1000,30707=>1000,30708=>1000,30711=>1000,30712=>1000,30713=>1000,30714=>1000,30715=>1000,30716=>1000,30717=>1000,30718=>1000,30722=>1000,30723=>1000,30725=>1000,30726=>1000,30728=>1000,30729=>1000,30732=>1000,30733=>1000,30734=>1000,30735=>1000,30736=>1000,30737=>1000,30738=>1000,30739=>1000,30740=>1000,30744=>1000,30748=>1000,30749=>1000,30750=>1000,30751=>1000,30752=>1000,30753=>1000,30754=>1000,30755=>1000,30757=>1000,30758=>1000,30759=>1000,30760=>1000,30761=>1000,30762=>1000,30763=>1000,30764=>1000,30765=>1000,30766=>1000,30767=>1000,30768=>1000,30769=>1000,30770=>1000,30771=>1000,30772=>1000,30773=>1000,30775=>1000,30776=>1000,30777=>1000,30780=>1000,30781=>1000,30786=>1000,30787=>1000,30788=>1000,30789=>1000,30791=>1000,30792=>1000,30793=>1000,30794=>1000,30795=>1000,30796=>1000,30797=>1000,30798=>1000,30800=>1000,30801=>1000,30802=>1000,30803=>1000,30804=>1000,30812=>1000,30813=>1000,30814=>1000,30816=>1000,30818=>1000,30820=>1000,30821=>1000,30822=>1000,30824=>1000,30825=>1000,30826=>1000,30827=>1000,30828=>1000,30829=>1000,30830=>1000,30831=>1000,30832=>1000,30833=>1000,30841=>1000,30842=>1000,30843=>1000,30844=>1000,30846=>1000,30847=>1000,30848=>1000,30849=>1000,30851=>1000,30852=>1000,30853=>1000,30854=>1000,30855=>1000,30856=>1000,30857=>1000,30860=>1000,30861=>1000,30862=>1000,30863=>1000,30865=>1000,30867=>1000,30868=>1000,30869=>1000,30870=>1000,30871=>1000,30872=>1000,30873=>1000,30874=>1000,30878=>1000,30879=>1000,30880=>1000,30881=>1000,30882=>1000,30883=>1000,30884=>1000,30885=>1000,30887=>1000,30888=>1000,30889=>1000,30890=>1000,30891=>1000,30892=>1000,30893=>1000,30895=>1000,30896=>1000,30897=>1000,30898=>1000,30899=>1000,30900=>1000,30902=>1000,30904=>1000,30905=>1000,30906=>1000,30907=>1000,30908=>1000,30910=>1000,30913=>1000,30915=>1000,30916=>1000,30917=>1000,30919=>1000,30920=>1000,30921=>1000,30922=>1000,30923=>1000,30924=>1000,30925=>1000,30926=>1000,30927=>1000,30928=>1000,30929=>1000,30930=>1000,30931=>1000,30932=>1000,30933=>1000,30935=>1000,30936=>1000,30938=>1000,30939=>1000,30941=>1000,30942=>1000,30943=>1000,30944=>1000,30945=>1000,30946=>1000,30947=>1000,30948=>1000,30949=>1000,30951=>1000,30952=>1000,30953=>1000,30954=>1000,30956=>1000,30957=>1000,30958=>1000,30959=>1000,30960=>1000,30961=>1000,30962=>1000,30963=>1000,30964=>1000,30965=>1000,30967=>1000,30969=>1000,30970=>1000,30971=>1000,30972=>1000,30973=>1000,30974=>1000,30975=>1000,30977=>1000,30978=>1000,30980=>1000,30981=>1000,30982=>1000,30985=>1000,30988=>1000,30990=>1000,30992=>1000,30993=>1000,30994=>1000,30995=>1000,30996=>1000,30999=>1000,31001=>1000,31003=>1000,31004=>1000,31005=>1000,31006=>1000,31009=>1000,31011=>1000,31012=>1000,31013=>1000,31014=>1000,31015=>1000,31016=>1000,31017=>1000,31018=>1000,31019=>1000,31020=>1000,31021=>1000,31022=>1000,31023=>1000,31025=>1000,31026=>1000,31027=>1000,31028=>1000,31029=>1000,31030=>1000,31032=>1000,31033=>1000,31034=>1000,31035=>1000,31036=>1000,31037=>1000,31038=>1000,31039=>1000,31040=>1000,31041=>1000,31042=>1000,31044=>1000,31045=>1000,31046=>1000,31047=>1000,31048=>1000,31049=>1000,31050=>1000,31051=>1000,31052=>1000,31055=>1000,31056=>1000,31057=>1000,31058=>1000,31059=>1000,31060=>1000,31061=>1000,31062=>1000,31063=>1000,31064=>1000,31065=>1000,31066=>1000,31067=>1000,31068=>1000,31069=>1000,31070=>1000,31071=>1000,31072=>1000,31073=>1000,31074=>1000,31075=>1000,31076=>1000,31077=>1000,31079=>1000,31080=>1000,31081=>1000,31082=>1000,31083=>1000,31085=>1000,31088=>1000,31089=>1000,31090=>1000,31091=>1000,31092=>1000,31097=>1000,31098=>1000,31100=>1000,31101=>1000,31102=>1000,31103=>1000,31104=>1000,31105=>1000,31106=>1000,31107=>1000,31110=>1000,31111=>1000,31112=>1000,31114=>1000,31115=>1000,31117=>1000,31118=>1000,31119=>1000,31120=>1000,31121=>1000,31122=>1000,31123=>1000,31124=>1000,31125=>1000,31126=>1000,31127=>1000,31128=>1000,31129=>1000,31130=>1000,31131=>1000,31132=>1000,31133=>1000,31135=>1000,31136=>1000,31137=>1000,31138=>1000,31140=>1000,31141=>1000,31142=>1000,31143=>1000,31144=>1000,31145=>1000,31146=>1000,31147=>1000,31148=>1000,31149=>1000,31150=>1000,31152=>1000,31153=>1000,31154=>1000,31155=>1000,31156=>1000,31158=>1000,31159=>1000,31160=>1000,31161=>1000,31162=>1000,31163=>1000,31165=>1000,31166=>1000,31167=>1000,31168=>1000,31169=>1000,31172=>1000,31173=>1000,31174=>1000,31176=>1000,31177=>1000,31178=>1000,31179=>1000,31180=>1000,31181=>1000,31182=>1000,31183=>1000,31184=>1000,31185=>1000,31186=>1000,31188=>1000,31189=>1000,31190=>1000,31192=>1000,31196=>1000,31197=>1000,31198=>1000,31199=>1000,31200=>1000,31202=>1000,31203=>1000,31204=>1000,31206=>1000,31207=>1000,31209=>1000,31210=>1000,31211=>1000,31212=>1000,31213=>1000,31214=>1000,31217=>1000,31220=>1000,31222=>1000,31223=>1000,31224=>1000,31226=>1000,31227=>1000,31232=>1000,31234=>1000,31235=>1000,31236=>1000,31237=>1000,31238=>1000,31240=>1000,31242=>1000,31243=>1000,31244=>1000,31245=>1000,31246=>1000,31248=>1000,31249=>1000,31250=>1000,31251=>1000,31252=>1000,31253=>1000,31255=>1000,31256=>1000,31257=>1000,31258=>1000,31259=>1000,31260=>1000,31262=>1000,31263=>1000,31264=>1000,31266=>1000,31270=>1000,31272=>1000,31274=>1000,31275=>1000,31276=>1000,31277=>1000,31278=>1000,31279=>1000,31280=>1000,31281=>1000,31282=>1000,31287=>1000,31289=>1000,31290=>1000,31291=>1000,31292=>1000,31293=>1000,31294=>1000,31295=>1000,31296=>1000,31299=>1000,31300=>1000,31301=>1000,31302=>1000,31303=>1000,31304=>1000,31305=>1000,31306=>1000,31307=>1000,31308=>1000,31309=>1000,31310=>1000,31316=>1000,31318=>1000,31319=>1000,31320=>1000,31322=>1000,31323=>1000,31324=>1000,31327=>1000,31328=>1000,31329=>1000,31330=>1000,31333=>1000,31335=>1000,31336=>1000,31337=>1000,31339=>1000,31340=>1000,31341=>1000,31342=>1000,31344=>1000,31345=>1000,31346=>1000,31348=>1000,31349=>1000,31350=>1000,31352=>1000,31353=>1000,31354=>1000,31355=>1000,31357=>1000,31358=>1000,31359=>1000,31360=>1000,31361=>1000,31363=>1000,31364=>1000,31365=>1000,31366=>1000,31367=>1000,31368=>1000,31369=>1000,31370=>1000,31371=>1000,31372=>1000,31375=>1000,31376=>1000,31377=>1000,31378=>1000,31379=>1000,31380=>1000,31381=>1000,31382=>1000,31383=>1000,31384=>1000,31385=>1000,31390=>1000,31391=>1000,31392=>1000,31394=>1000,31395=>1000,31400=>1000,31401=>1000,31402=>1000,31403=>1000,31404=>1000,31406=>1000,31407=>1000,31408=>1000,31409=>1000,31410=>1000,31411=>1000,31412=>1000,31413=>1000,31414=>1000,31415=>1000,31416=>1000,31418=>1000,31419=>1000,31420=>1000,31422=>1000,31423=>1000,31424=>1000,31425=>1000,31426=>1000,31427=>1000,31428=>1000,31429=>1000,31431=>1000,31432=>1000,31433=>1000,31434=>1000,31435=>1000,31439=>1000,31441=>1000,31443=>1000,31448=>1000,31449=>1000,31450=>1000,31451=>1000,31452=>1000,31453=>1000,31455=>1000,31456=>1000,31458=>1000,31459=>1000,31460=>1000,31461=>1000,31462=>1000,31463=>1000,31465=>1000,31466=>1000,31467=>1000,31469=>1000,31470=>1000,31471=>1000,31478=>1000,31479=>1000,31481=>1000,31482=>1000,31483=>1000,31484=>1000,31485=>1000,31486=>1000,31487=>1000,31488=>1000,31489=>1000,31492=>1000,31493=>1000,31494=>1000,31496=>1000,31497=>1000,31498=>1000,31499=>1000,31500=>1000,31502=>1000,31503=>1000,31504=>1000,31505=>1000,31506=>1000,31507=>1000,31508=>1000,31512=>1000,31513=>1000,31514=>1000,31515=>1000,31517=>1000,31518=>1000,31519=>1000,31520=>1000,31522=>1000,31523=>1000,31524=>1000,31525=>1000,31526=>1000,31527=>1000,31528=>1000,31529=>1000,31530=>1000,31531=>1000,31532=>1000,31533=>1000,31534=>1000,31535=>1000,31536=>1000,31537=>1000,31538=>1000,31539=>1000,31540=>1000,31541=>1000,31544=>1000,31545=>1000,31547=>1000,31552=>1000,31554=>1000,31555=>1000,31556=>1000,31557=>1000,31558=>1000,31559=>1000,31560=>1000,31561=>1000,31562=>1000,31563=>1000,31564=>1000,31565=>1000,31566=>1000,31567=>1000,31568=>1000,31569=>1000,31570=>1000,31572=>1000,31573=>1000,31574=>1000,31576=>1000,31584=>1000,31585=>1000,31586=>1000,31587=>1000,31588=>1000,31589=>1000,31590=>1000,31591=>1000,31593=>1000,31596=>1000,31597=>1000,31598=>1000,31599=>1000,31600=>1000,31601=>1000,31602=>1000,31603=>1000,31604=>1000,31605=>1000,31606=>1000,31607=>1000,31608=>1000,31611=>1000,31618=>1000,31620=>1000,31621=>1000,31623=>1000,31624=>1000,31626=>1000,31627=>1000,31628=>1000,31629=>1000,31630=>1000,31631=>1000,31632=>1000,31633=>1000,31634=>1000,31636=>1000,31637=>1000,31638=>1000,31639=>1000,31640=>1000,31641=>1000,31642=>1000,31643=>1000,31644=>1000,31645=>1000,31648=>1000,31649=>1000,31650=>1000,31651=>1000,31652=>1000,31660=>1000,31661=>1000,31662=>1000,31663=>1000,31665=>1000,31666=>1000,31668=>1000,31669=>1000,31671=>1000,31672=>1000,31673=>1000,31678=>1000,31680=>1000,31681=>1000,31684=>1000,31685=>1000,31686=>1000,31687=>1000,31689=>1000,31690=>1000,31691=>1000,31692=>1000,31694=>1000,31695=>1000,31696=>1000,31700=>1000,31701=>1000,31704=>1000,31705=>1000,31706=>1000,31707=>1000,31708=>1000,31709=>1000,31710=>1000,31711=>1000,31712=>1000,31713=>1000,31714=>1000,31715=>1000,31716=>1000,31717=>1000,31718=>1000,31719=>1000,31720=>1000,31721=>1000,31722=>1000,31723=>1000,31724=>1000,31728=>1000,31729=>1000,31730=>1000,31731=>1000,31732=>1000,31735=>1000,31736=>1000,31737=>1000,31738=>1000,31739=>1000,31740=>1000,31741=>1000,31742=>1000,31743=>1000,31744=>1000,31745=>1000,31746=>1000,31747=>1000,31749=>1000,31750=>1000,31751=>1000,31753=>1000,31754=>1000,31755=>1000,31756=>1000,31757=>1000,31758=>1000,31759=>1000,31760=>1000,31761=>1000,31762=>1000,31765=>1000,31769=>1000,31771=>1000,31772=>1000,31773=>1000,31774=>1000,31775=>1000,31776=>1000,31777=>1000,31778=>1000,31779=>1000,31781=>1000,31782=>1000,31783=>1000,31784=>1000,31785=>1000,31786=>1000,31787=>1000,31788=>1000,31789=>1000,31792=>1000,31795=>1000,31797=>1000,31799=>1000,31800=>1000,31801=>1000,31803=>1000,31804=>1000,31805=>1000,31806=>1000,31807=>1000,31808=>1000,31810=>1000,31811=>1000,31812=>1000,31813=>1000,31815=>1000,31816=>1000,31817=>1000,31818=>1000,31820=>1000,31821=>1000,31824=>1000,31825=>1000,31827=>1000,31828=>1000,31830=>1000,31831=>1000,31833=>1000,31834=>1000,31835=>1000,31836=>1000,31837=>1000,31839=>1000,31840=>1000,31843=>1000,31844=>1000,31845=>1000,31846=>1000,31847=>1000,31849=>1000,31850=>1000,31851=>1000,31852=>1000,31853=>1000,31854=>1000,31855=>1000,31856=>1000,31858=>1000,31859=>1000,31860=>1000,31861=>1000,31864=>1000,31865=>1000,31866=>1000,31867=>1000,31868=>1000,31869=>1000,31870=>1000,31871=>1000,31872=>1000,31873=>1000,31875=>1000,31876=>1000,31877=>1000,31878=>1000,31880=>1000,31881=>1000,31882=>1000,31884=>1000,31885=>1000,31886=>1000,31889=>1000,31890=>1000,31892=>1000,31893=>1000,31894=>1000,31895=>1000,31896=>1000,31900=>1000,31902=>1000,31903=>1000,31905=>1000,31906=>1000,31907=>1000,31909=>1000,31910=>1000,31911=>1000,31912=>1000,31916=>1000,31918=>1000,31919=>1000,31921=>1000,31922=>1000,31923=>1000,31924=>1000,31925=>1000,31928=>1000,31929=>1000,31930=>1000,31931=>1000,31932=>1000,31933=>1000,31934=>1000,31935=>1000,31938=>1000,31939=>1000,31941=>1000,31943=>1000,31944=>1000,31945=>1000,31946=>1000,31947=>1000,31948=>1000,31949=>1000,31950=>1000,31952=>1000,31953=>1000,31954=>1000,31955=>1000,31956=>1000,31957=>1000,31958=>1000,31959=>1000,31961=>1000,31962=>1000,31964=>1000,31965=>1000,31966=>1000,31967=>1000,31968=>1000,31970=>1000,31974=>1000,31975=>1000,31976=>1000,31978=>1000,31980=>1000,31981=>1000,31982=>1000,31983=>1000,31984=>1000,31985=>1000,31986=>1000,31987=>1000,31988=>1000,31989=>1000,31990=>1000,31991=>1000,31992=>1000,31993=>1000,31995=>1000,31996=>1000,31997=>1000,31998=>1000,32000=>1000,32001=>1000,32002=>1000,32003=>1000,32004=>1000,32005=>1000,32006=>1000,32007=>1000,32008=>1000,32009=>1000,32010=>1000,32011=>1000,32012=>1000,32013=>1000,32014=>1000,32015=>1000,32016=>1000,32017=>1000,32018=>1000,32019=>1000,32020=>1000,32021=>1000,32022=>1000,32023=>1000,32024=>1000,32025=>1000,32026=>1000,32027=>1000,32028=>1000,32029=>1000,32030=>1000,32031=>1000,32032=>1000,32033=>1000,32034=>1000,32037=>1000,32040=>1000,32041=>1000,32043=>1000,32044=>1000,32046=>1000,32047=>1000,32048=>1000,32049=>1000,32050=>1000,32051=>1000,32053=>1000,32054=>1000,32056=>1000,32057=>1000,32058=>1000,32059=>1000,32060=>1000,32061=>1000,32062=>1000,32063=>1000,32064=>1000,32065=>1000,32066=>1000,32067=>1000,32068=>1000,32069=>1000,32070=>1000,32071=>1000,32074=>1000,32077=>1000,32078=>1000,32079=>1000,32080=>1000,32081=>1000,32082=>1000,32083=>1000,32084=>1000,32085=>1000,32086=>1000,32088=>1000,32090=>1000,32091=>1000,32092=>1000,32093=>1000,32094=>1000,32095=>1000,32097=>1000,32098=>1000,32099=>1000,32102=>1000,32103=>1000,32104=>1000,32105=>1000,32106=>1000,32107=>1000,32109=>1000,32110=>1000,32111=>1000,32112=>1000,32113=>1000,32114=>1000,32115=>1000,32121=>1000,32122=>1000,32123=>1000,32124=>1000,32125=>1000,32127=>1000,32128=>1000,32129=>1000,32131=>1000,32132=>1000,32133=>1000,32134=>1000,32136=>1000,32137=>1000,32139=>1000,32140=>1000,32141=>1000,32142=>1000,32143=>1000,32145=>1000,32146=>1000,32147=>1000,32148=>1000,32149=>1000,32150=>1000,32151=>1000,32156=>1000,32157=>1000,32158=>1000,32159=>1000,32160=>1000,32161=>1000,32162=>1000,32163=>1000,32164=>1000,32166=>1000,32167=>1000,32168=>1000,32169=>1000,32170=>1000,32171=>1000,32172=>1000,32173=>1000,32174=>1000,32175=>1000,32176=>1000,32177=>1000,32178=>1000,32179=>1000,32180=>1000,32181=>1000,32183=>1000,32184=>1000,32185=>1000,32186=>1000,32187=>1000,32188=>1000,32189=>1000,32190=>1000,32191=>1000,32192=>1000,32193=>1000,32194=>1000,32196=>1000,32197=>1000,32198=>1000,32199=>1000,32201=>1000,32202=>1000,32203=>1000,32204=>1000,32205=>1000,32206=>1000,32207=>1000,32208=>1000,32210=>1000,32211=>1000,32212=>1000,32215=>1000,32216=>1000,32217=>1000,32218=>1000,32219=>1000,32220=>1000,32221=>1000,32222=>1000,32223=>1000,32224=>1000,32225=>1000,32227=>1000,32228=>1000,32229=>1000,32230=>1000,32231=>1000,32232=>1000,32233=>1000,32234=>1000,32236=>1000,32238=>1000,32239=>1000,32240=>1000,32241=>1000,32242=>1000,32243=>1000,32244=>1000,32245=>1000,32246=>1000,32247=>1000,32249=>1000,32250=>1000,32251=>1000,32252=>1000,32253=>1000,32254=>1000,32259=>1000,32263=>1000,32264=>1000,32265=>1000,32266=>1000,32267=>1000,32268=>1000,32269=>1000,32270=>1000,32271=>1000,32272=>1000,32273=>1000,32274=>1000,32275=>1000,32276=>1000,32277=>1000,32278=>1000,32279=>1000,32282=>1000,32283=>1000,32284=>1000,32285=>1000,32286=>1000,32287=>1000,32288=>1000,32289=>1000,32290=>1000,32291=>1000,32292=>1000,32293=>1000,32295=>1000,32297=>1000,32298=>1000,32299=>1000,32301=>1000,32302=>1000,32303=>1000,32304=>1000,32305=>1000,32306=>1000,32307=>1000,32308=>1000,32309=>1000,32310=>1000,32311=>1000,32312=>1000,32313=>1000,32314=>1000,32315=>1000,32316=>1000,32317=>1000,32318=>1000,32319=>1000,32320=>1000,32321=>1000,32322=>1000,32323=>1000,32324=>1000,32325=>1000,32326=>1000,32327=>1000,32328=>1000,32329=>1000,32332=>1000,32336=>1000,32337=>1000,32338=>1000,32339=>1000,32340=>1000,32341=>1000,32342=>1000,32343=>1000,32344=>1000,32345=>1000,32346=>1000,32347=>1000,32348=>1000,32350=>1000,32351=>1000,32352=>1000,32353=>1000,32354=>1000,32355=>1000,32357=>1000,32359=>1000,32360=>1000,32361=>1000,32362=>1000,32363=>1000,32364=>1000,32365=>1000,32366=>1000,32367=>1000,32368=>1000,32370=>1000,32371=>1000,32372=>1000,32373=>1000,32374=>1000,32375=>1000,32376=>1000,32377=>1000,32378=>1000,32379=>1000,32380=>1000,32381=>1000,32382=>1000,32383=>1000,32384=>1000,32385=>1000,32386=>1000,32390=>1000,32391=>1000,32392=>1000,32394=>1000,32395=>1000,32396=>1000,32397=>1000,32398=>1000,32399=>1000,32401=>1000,32402=>1000,32403=>1000,32404=>1000,32405=>1000,32406=>1000,32407=>1000,32408=>1000,32409=>1000,32410=>1000,32411=>1000,32412=>1000,32415=>1000,32420=>1000,32428=>1000,32442=>1000,32455=>1000,32463=>1000,32479=>1000,32518=>1000,32566=>1000,32567=>1000,32568=>1000,32569=>1000,32570=>1000,32573=>1000,32574=>1000,32575=>1000,32576=>1000,32577=>1000,32579=>1000,32580=>1000,32581=>1000,32583=>1000,32584=>1000,32585=>1000,32586=>1000,32587=>1000,32588=>1000,32589=>1000,32590=>1000,32591=>1000,32592=>1000,32593=>1000,32594=>1000,32595=>1000,32596=>1000,32597=>1000,32600=>1000,32603=>1000,32604=>1000,32605=>1000,32606=>1000,32607=>1000,32608=>1000,32609=>1000,32611=>1000,32613=>1000,32614=>1000,32615=>1000,32616=>1000,32617=>1000,32618=>1000,32619=>1000,32620=>1000,32621=>1000,32622=>1000,32624=>1000,32625=>1000,32626=>1000,32627=>1000,32629=>1000,32630=>1000,32631=>1000,32632=>1000,32633=>1000,32634=>1000,32635=>1000,32636=>1000,32637=>1000,32638=>1000,32639=>1000,32643=>1000,32645=>1000,32646=>1000,32647=>1000,32648=>1000,32649=>1000,32650=>1000,32651=>1000,32652=>1000,32653=>1000,32654=>1000,32655=>1000,32657=>1000,32658=>1000,32659=>1000,32660=>1000,32661=>1000,32662=>1000,32663=>1000,32666=>1000,32667=>1000,32668=>1000,32669=>1000,32670=>1000,32672=>1000,32673=>1000,32674=>1000,32675=>1000,32676=>1000,32677=>1000,32678=>1000,32679=>1000,32680=>1000,32681=>1000,32684=>1000,32685=>1000,32686=>1000,32687=>1000,32688=>1000,32689=>1000,32690=>1000,32691=>1000,32692=>1000,32693=>1000,32694=>1000,32695=>1000,32696=>1000,32697=>1000,32698=>1000,32699=>1000,32700=>1000,32701=>1000,32702=>1000,32703=>1000,32704=>1000,32705=>1000,32706=>1000,32707=>1000,32709=>1000,32711=>1000,32713=>1000,32714=>1000,32715=>1000,32716=>1000,32717=>1000,32718=>1000,32719=>1000,32720=>1000,32721=>1000,32722=>1000,32724=>1000,32725=>1000,32727=>1000,32731=>1000,32732=>1000,32733=>1000,32734=>1000,32735=>1000,32736=>1000,32737=>1000,32738=>1000,32739=>1000,32741=>1000,32742=>1000,32743=>1000,32744=>1000,32745=>1000,32746=>1000,32747=>1000,32748=>1000,32749=>1000,32750=>1000,32751=>1000,32752=>1000,32753=>1000,32754=>1000,32755=>1000,32756=>1000,32757=>1000,32759=>1000,32760=>1000,32761=>1000,32762=>1000,32763=>1000,32764=>1000,32765=>1000,32766=>1000,32767=>1000,32768=>1000,32769=>1000,32770=>1000,32771=>1000,32772=>1000,32773=>1000,32774=>1000,32775=>1000,32776=>1000,32779=>1000,32780=>1000,32781=>1000,32782=>1000,32783=>1000,32784=>1000,32785=>1000,32786=>1000,32788=>1000,32789=>1000,32790=>1000,32791=>1000,32792=>1000,32793=>1000,32795=>1000,32796=>1000,32797=>1000,32798=>1000,32799=>1000,32800=>1000,32801=>1000,32804=>1000,32805=>1000,32806=>1000,32808=>1000,32809=>1000,32810=>1000,32812=>1000,32814=>1000,32815=>1000,32816=>1000,32817=>1000,32819=>1000,32820=>1000,32821=>1000,32822=>1000,32823=>1000,32825=>1000,32827=>1000,32828=>1000,32829=>1000,32830=>1000,32831=>1000,32835=>1000,32838=>1000,32839=>1000,32840=>1000,32842=>1000,32847=>1000,32848=>1000,32849=>1000,32850=>1000,32852=>1000,32854=>1000,32856=>1000,32858=>1000,32859=>1000,32860=>1000,32861=>1000,32862=>1000,32865=>1000,32866=>1000,32867=>1000,32868=>1000,32870=>1000,32871=>1000,32876=>1000,32879=>1000,32880=>1000,32881=>1000,32882=>1000,32883=>1000,32885=>1000,32886=>1000,32887=>1000,32888=>1000,32889=>1000,32893=>1000,32894=>1000,32895=>1000,32896=>1000,32898=>1000,32900=>1000,32901=>1000,32902=>1000,32903=>1000,32905=>1000,32906=>1000,32907=>1000,32908=>1000,32911=>1000,32912=>1000,32914=>1000,32915=>1000,32917=>1000,32918=>1000,32920=>1000,32921=>1000,32922=>1000,32923=>1000,32924=>1000,32925=>1000,32927=>1000,32929=>1000,32930=>1000,32931=>1000,32933=>1000,32935=>1000,32937=>1000,32938=>1000,32939=>1000,32941=>1000,32942=>1000,32943=>1000,32945=>1000,32946=>1000,32948=>1000,32949=>1000,32950=>1000,32951=>1000,32952=>1000,32954=>1000,32956=>1000,32957=>1000,32962=>1000,32963=>1000,32964=>1000,32965=>1000,32966=>1000,32967=>1000,32968=>1000,32969=>1000,32970=>1000,32972=>1000,32973=>1000,32974=>1000,32975=>1000,32976=>1000,32977=>1000,32980=>1000,32981=>1000,32982=>1000,32983=>1000,32984=>1000,32985=>1000,32986=>1000,32987=>1000,32988=>1000,32989=>1000,32990=>1000,32992=>1000,32993=>1000,32995=>1000,32996=>1000,32997=>1000,32998=>1000,33001=>1000,33004=>1000,33005=>1000,33007=>1000,33008=>1000,33009=>1000,33010=>1000,33011=>1000,33012=>1000,33013=>1000,33014=>1000,33016=>1000,33017=>1000,33018=>1000,33019=>1000,33020=>1000,33021=>1000,33022=>1000,33024=>1000,33025=>1000,33026=>1000,33027=>1000,33029=>1000,33030=>1000,33031=>1000,33032=>1000,33033=>1000,33034=>1000,33036=>1000,33038=>1000,33042=>1000,33044=>1000,33045=>1000,33046=>1000,33047=>1000,33048=>1000,33049=>1000,33050=>1000,33051=>1000,33053=>1000,33054=>1000,33055=>1000,33057=>1000,33058=>1000,33059=>1000,33060=>1000,33061=>1000,33063=>1000,33065=>1000,33066=>1000,33067=>1000,33068=>1000,33069=>1000,33071=>1000,33072=>1000,33073=>1000,33074=>1000,33076=>1000,33079=>1000,33081=>1000,33082=>1000,33085=>1000,33086=>1000,33090=>1000,33091=>1000,33092=>1000,33094=>1000,33095=>1000,33096=>1000,33098=>1000,33099=>1000,33100=>1000,33101=>1000,33102=>1000,33103=>1000,33104=>1000,33105=>1000,33106=>1000,33107=>1000,33108=>1000,33109=>1000,33110=>1000,33113=>1000,33114=>1000,33115=>1000,33116=>1000,33118=>1000,33120=>1000,33121=>1000,33122=>1000,33124=>1000,33125=>1000,33126=>1000,33127=>1000,33129=>1000,33131=>1000,33132=>1000,33133=>1000,33134=>1000,33135=>1000,33136=>1000,33137=>1000,33138=>1000,33139=>1000,33140=>1000,33142=>1000,33143=>1000,33144=>1000,33145=>1000,33146=>1000,33148=>1000,33149=>1000,33151=>1000,33152=>1000,33154=>1000,33155=>1000,33156=>1000,33158=>1000,33159=>1000,33160=>1000,33161=>1000,33162=>1000,33163=>1000,33164=>1000,33165=>1000,33167=>1000,33171=>1000,33173=>1000,33175=>1000,33176=>1000,33177=>1000,33178=>1000,33179=>1000,33180=>1000,33181=>1000,33182=>1000,33183=>1000,33184=>1000,33186=>1000,33187=>1000,33189=>1000,33190=>1000,33191=>1000,33192=>1000,33193=>1000,33194=>1000,33195=>1000,33196=>1000,33198=>1000,33200=>1000,33201=>1000,33202=>1000,33203=>1000,33204=>1000,33205=>1000,33206=>1000,33207=>1000,33209=>1000,33210=>1000,33211=>1000,33212=>1000,33213=>1000,33214=>1000,33215=>1000,33216=>1000,33217=>1000,33218=>1000,33219=>1000,33220=>1000,33221=>1000,33222=>1000,33223=>1000,33224=>1000,33225=>1000,33226=>1000,33228=>1000,33229=>1000,33231=>1000,33232=>1000,33233=>1000,33234=>1000,33237=>1000,33239=>1000,33240=>1000,33241=>1000,33242=>1000,33243=>1000,33245=>1000,33246=>1000,33247=>1000,33248=>1000,33249=>1000,33250=>1000,33251=>1000,33252=>1000,33253=>1000,33254=>1000,33255=>1000,33256=>1000,33257=>1000,33258=>1000,33260=>1000,33261=>1000,33262=>1000,33263=>1000,33266=>1000,33267=>1000,33268=>1000,33270=>1000,33271=>1000,33272=>1000,33273=>1000,33274=>1000,33275=>1000,33276=>1000,33278=>1000,33279=>1000,33280=>1000,33281=>1000,33282=>1000,33284=>1000,33285=>1000,33287=>1000,33288=>1000,33289=>1000,33290=>1000,33291=>1000,33292=>1000,33293=>1000,33296=>1000,33297=>1000,33298=>1000,33300=>1000,33301=>1000,33302=>1000,33304=>1000,33306=>1000,33307=>1000,33308=>1000,33309=>1000,33310=>1000,33311=>1000,33312=>1000,33313=>1000,33314=>1000,33317=>1000,33318=>1000,33320=>1000,33321=>1000,33322=>1000,33323=>1000,33324=>1000,33325=>1000,33327=>1000,33330=>1000,33331=>1000,33332=>1000,33333=>1000,33334=>1000,33335=>1000,33336=>1000,33337=>1000,33338=>1000,33340=>1000,33341=>1000,33342=>1000,33343=>1000,33344=>1000,33346=>1000,33348=>1000,33349=>1000,33351=>1000,33353=>1000,33355=>1000,33358=>1000,33359=>1000,33360=>1000,33361=>1000,33362=>1000,33363=>1000,33364=>1000,33365=>1000,33366=>1000,33367=>1000,33368=>1000,33369=>1000,33370=>1000,33371=>1000,33372=>1000,33374=>1000,33375=>1000,33377=>1000,33378=>1000,33379=>1000,33380=>1000,33381=>1000,33382=>1000,33384=>1000,33385=>1000,33387=>1000,33388=>1000,33389=>1000,33390=>1000,33391=>1000,33393=>1000,33394=>1000,33396=>1000,33397=>1000,33398=>1000,33399=>1000,33400=>1000,33401=>1000,33402=>1000,33403=>1000,33404=>1000,33405=>1000,33406=>1000,33407=>1000,33408=>1000,33411=>1000,33412=>1000,33413=>1000,33415=>1000,33418=>1000,33419=>1000,33421=>1000,33422=>1000,33423=>1000,33424=>1000,33425=>1000,33426=>1000,33427=>1000,33428=>1000,33432=>1000,33433=>1000,33434=>1000,33435=>1000,33437=>1000,33438=>1000,33439=>1000,33440=>1000,33441=>1000,33442=>1000,33443=>1000,33444=>1000,33445=>1000,33446=>1000,33447=>1000,33448=>1000,33449=>1000,33450=>1000,33451=>1000,33452=>1000,33453=>1000,33454=>1000,33455=>1000,33456=>1000,33457=>1000,33459=>1000,33460=>1000,33461=>1000,33462=>1000,33463=>1000,33464=>1000,33465=>1000,33466=>1000,33467=>1000,33468=>1000,33469=>1000,33470=>1000,33471=>1000,33472=>1000,33474=>1000,33475=>1000,33476=>1000,33482=>1000,33487=>1000,33488=>1000,33489=>1000,33490=>1000,33491=>1000,33492=>1000,33493=>1000,33494=>1000,33495=>1000,33496=>1000,33497=>1000,33499=>1000,33500=>1000,33502=>1000,33503=>1000,33504=>1000,33505=>1000,33506=>1000,33507=>1000,33508=>1000,33509=>1000,33510=>1000,33511=>1000,33512=>1000,33514=>1000,33515=>1000,33516=>1000,33517=>1000,33518=>1000,33519=>1000,33520=>1000,33521=>1000,33522=>1000,33523=>1000,33524=>1000,33525=>1000,33526=>1000,33527=>1000,33528=>1000,33529=>1000,33530=>1000,33531=>1000,33532=>1000,33533=>1000,33534=>1000,33535=>1000,33536=>1000,33537=>1000,33538=>1000,33539=>1000,33540=>1000,33541=>1000,33542=>1000,33543=>1000,33544=>1000,33545=>1000,33547=>1000,33548=>1000,33549=>1000,33558=>1000,33559=>1000,33560=>1000,33561=>1000,33562=>1000,33563=>1000,33564=>1000,33565=>1000,33566=>1000,33568=>1000,33570=>1000,33572=>1000,33573=>1000,33574=>1000,33575=>1000,33576=>1000,33577=>1000,33578=>1000,33579=>1000,33580=>1000,33581=>1000,33583=>1000,33585=>1000,33586=>1000,33587=>1000,33588=>1000,33589=>1000,33590=>1000,33591=>1000,33592=>1000,33593=>1000,33594=>1000,33595=>1000,33596=>1000,33597=>1000,33599=>1000,33600=>1000,33601=>1000,33602=>1000,33603=>1000,33604=>1000,33605=>1000,33607=>1000,33608=>1000,33609=>1000,33610=>1000,33611=>1000,33612=>1000,33613=>1000,33614=>1000,33615=>1000,33616=>1000,33617=>1000,33618=>1000,33619=>1000,33620=>1000,33622=>1000,33623=>1000,33634=>1000,33635=>1000,33638=>1000,33647=>1000,33651=>1000,33652=>1000,33653=>1000,33654=>1000,33655=>1000,33656=>1000,33658=>1000,33659=>1000,33660=>1000,33661=>1000,33662=>1000,33663=>1000,33665=>1000,33667=>1000,33669=>1000,33670=>1000,33671=>1000,33672=>1000,33673=>1000,33674=>1000,33675=>1000,33676=>1000,33677=>1000,33678=>1000,33679=>1000,33680=>1000,33681=>1000,33682=>1000,33683=>1000,33684=>1000,33685=>1000,33686=>1000,33687=>1000,33688=>1000,33689=>1000,33690=>1000,33691=>1000,33692=>1000,33693=>1000,33694=>1000,33696=>1000,33698=>1000,33699=>1000,33700=>1000,33701=>1000,33702=>1000,33703=>1000,33704=>1000,33705=>1000,33706=>1000,33707=>1000,33708=>1000,33710=>1000,33711=>1000,33712=>1000,33721=>1000,33725=>1000,33726=>1000,33727=>1000,33728=>1000,33729=>1000,33730=>1000,33731=>1000,33732=>1000,33733=>1000,33734=>1000,33735=>1000,33736=>1000,33737=>1000,33738=>1000,33739=>1000,33740=>1000,33741=>1000,33742=>1000,33743=>1000,33745=>1000,33747=>1000,33748=>1000,33749=>1000,33750=>1000,33751=>1000,33752=>1000,33753=>1000,33755=>1000,33756=>1000,33757=>1000,33758=>1000,33759=>1000,33760=>1000,33761=>1000,33762=>1000,33763=>1000,33764=>1000,33765=>1000,33767=>1000,33768=>1000,33769=>1000,33770=>1000,33771=>1000,33772=>1000,33773=>1000,33774=>1000,33775=>1000,33776=>1000,33777=>1000,33778=>1000,33779=>1000,33780=>1000,33781=>1000,33782=>1000,33784=>1000,33785=>1000,33786=>1000,33787=>1000,33788=>1000,33789=>1000,33790=>1000,33791=>1000,33793=>1000,33795=>1000,33796=>1000,33797=>1000,33798=>1000,33799=>1000,33801=>1000,33802=>1000,33803=>1000,33804=>1000,33805=>1000,33806=>1000,33807=>1000,33808=>1000,33809=>1000,33810=>1000,33811=>1000,33812=>1000,33814=>1000,33816=>1000,33819=>1000,33820=>1000,33824=>1000,33825=>1000,33827=>1000,33828=>1000,33830=>1000,33833=>1000,33835=>1000,33836=>1000,33837=>1000,33838=>1000,33839=>1000,33840=>1000,33841=>1000,33842=>1000,33843=>1000,33844=>1000,33845=>1000,33846=>1000,33847=>1000,33848=>1000,33849=>1000,33850=>1000,33851=>1000,33852=>1000,33853=>1000,33854=>1000,33855=>1000,33856=>1000,33858=>1000,33859=>1000,33860=>1000,33861=>1000,33862=>1000,33863=>1000,33864=>1000,33865=>1000,33866=>1000,33867=>1000,33868=>1000,33869=>1000,33870=>1000,33872=>1000,33873=>1000,33874=>1000,33875=>1000,33876=>1000,33877=>1000,33878=>1000,33879=>1000,33880=>1000,33881=>1000,33882=>1000,33883=>1000,33884=>1000,33885=>1000,33886=>1000,33887=>1000,33888=>1000,33889=>1000,33890=>1000,33891=>1000,33892=>1000,33893=>1000,33894=>1000,33895=>1000,33896=>1000,33897=>1000,33899=>1000,33900=>1000,33901=>1000,33902=>1000,33903=>1000,33904=>1000,33905=>1000,33906=>1000,33907=>1000,33908=>1000,33909=>1000,33910=>1000,33911=>1000,33912=>1000,33913=>1000,33914=>1000,33917=>1000,33918=>1000,33919=>1000,33920=>1000,33922=>1000,33924=>1000,33926=>1000,33928=>1000,33933=>1000,33934=>1000,33935=>1000,33936=>1000,33937=>1000,33938=>1000,33939=>1000,33940=>1000,33942=>1000,33943=>1000,33944=>1000,33945=>1000,33946=>1000,33947=>1000,33948=>1000,33949=>1000,33950=>1000,33951=>1000,33952=>1000,33953=>1000,33954=>1000,33955=>1000,33956=>1000,33959=>1000,33960=>1000,33961=>1000,33962=>1000,33963=>1000,33964=>1000,33965=>1000,33966=>1000,33967=>1000,33968=>1000,33969=>1000,33970=>1000,33972=>1000,33974=>1000,33976=>1000,33977=>1000,33978=>1000,33979=>1000,33980=>1000,33981=>1000,33982=>1000,33983=>1000,33984=>1000,33985=>1000,33986=>1000,33988=>1000,33989=>1000,33990=>1000,33991=>1000,33993=>1000,33994=>1000,33995=>1000,33996=>1000,33997=>1000,33998=>1000,33999=>1000,34000=>1000,34001=>1000,34002=>1000,34003=>1000,34004=>1000,34006=>1000,34007=>1000,34010=>1000,34011=>1000,34014=>1000,34017=>1000,34018=>1000,34020=>1000,34021=>1000,34023=>1000,34024=>1000,34025=>1000,34026=>1000,34027=>1000,34028=>1000,34030=>1000,34031=>1000,34032=>1000,34033=>1000,34034=>1000,34035=>1000,34036=>1000,34038=>1000,34039=>1000,34040=>1000,34041=>1000,34042=>1000,34043=>1000,34044=>1000,34045=>1000,34046=>1000,34047=>1000,34048=>1000,34050=>1000,34051=>1000,34052=>1000,34053=>1000,34054=>1000,34055=>1000,34056=>1000,34057=>1000,34058=>1000,34059=>1000,34060=>1000,34061=>1000,34062=>1000,34063=>1000,34064=>1000,34065=>1000,34066=>1000,34067=>1000,34068=>1000,34069=>1000,34070=>1000,34071=>1000,34072=>1000,34073=>1000,34074=>1000,34076=>1000,34077=>1000,34078=>1000,34079=>1000,34080=>1000,34081=>1000,34083=>1000,34084=>1000,34085=>1000,34086=>1000,34087=>1000,34088=>1000,34089=>1000,34090=>1000,34091=>1000,34092=>1000,34093=>1000,34094=>1000,34095=>1000,34096=>1000,34097=>1000,34099=>1000,34100=>1000,34104=>1000,34107=>1000,34109=>1000,34110=>1000,34112=>1000,34113=>1000,34114=>1000,34115=>1000,34116=>1000,34117=>1000,34118=>1000,34119=>1000,34120=>1000,34121=>1000,34122=>1000,34123=>1000,34124=>1000,34125=>1000,34126=>1000,34129=>1000,34130=>1000,34131=>1000,34132=>1000,34133=>1000,34134=>1000,34135=>1000,34136=>1000,34137=>1000,34138=>1000,34139=>1000,34141=>1000,34142=>1000,34143=>1000,34144=>1000,34145=>1000,34146=>1000,34147=>1000,34148=>1000,34149=>1000,34150=>1000,34151=>1000,34152=>1000,34153=>1000,34154=>1000,34155=>1000,34156=>1000,34157=>1000,34158=>1000,34159=>1000,34160=>1000,34161=>1000,34163=>1000,34165=>1000,34166=>1000,34167=>1000,34168=>1000,34169=>1000,34170=>1000,34171=>1000,34172=>1000,34174=>1000,34176=>1000,34177=>1000,34178=>1000,34179=>1000,34180=>1000,34181=>1000,34182=>1000,34183=>1000,34184=>1000,34185=>1000,34186=>1000,34187=>1000,34188=>1000,34189=>1000,34190=>1000,34191=>1000,34192=>1000,34193=>1000,34195=>1000,34196=>1000,34197=>1000,34198=>1000,34199=>1000,34200=>1000,34201=>1000,34202=>1000,34203=>1000,34204=>1000,34205=>1000,34206=>1000,34207=>1000,34208=>1000,34209=>1000,34210=>1000,34211=>1000,34212=>1000,34214=>1000,34215=>1000,34216=>1000,34217=>1000,34218=>1000,34223=>1000,34224=>1000,34225=>1000,34227=>1000,34228=>1000,34229=>1000,34230=>1000,34231=>1000,34232=>1000,34233=>1000,34234=>1000,34237=>1000,34238=>1000,34239=>1000,34240=>1000,34241=>1000,34242=>1000,34243=>1000,34244=>1000,34245=>1000,34246=>1000,34247=>1000,34248=>1000,34249=>1000,34251=>1000,34253=>1000,34254=>1000,34255=>1000,34256=>1000,34257=>1000,34258=>1000,34261=>1000,34262=>1000,34263=>1000,34264=>1000,34265=>1000,34266=>1000,34268=>1000,34269=>1000,34270=>1000,34271=>1000,34272=>1000,34273=>1000,34274=>1000,34275=>1000,34276=>1000,34277=>1000,34278=>1000,34280=>1000,34281=>1000,34282=>1000,34283=>1000,34284=>1000,34285=>1000,34286=>1000,34287=>1000,34288=>1000,34289=>1000,34290=>1000,34292=>1000,34294=>1000,34295=>1000,34296=>1000,34297=>1000,34298=>1000,34299=>1000,34300=>1000,34301=>1000,34302=>1000,34303=>1000,34304=>1000,34305=>1000,34306=>1000,34308=>1000,34309=>1000,34310=>1000,34311=>1000,34313=>1000,34314=>1000,34315=>1000,34316=>1000,34317=>1000,34319=>1000,34320=>1000,34321=>1000,34323=>1000,34324=>1000,34326=>1000,34327=>1000,34328=>1000,34329=>1000,34330=>1000,34331=>1000,34332=>1000,34334=>1000,34335=>1000,34336=>1000,34337=>1000,34338=>1000,34339=>1000,34340=>1000,34341=>1000,34342=>1000,34343=>1000,34344=>1000,34345=>1000,34346=>1000,34348=>1000,34349=>1000,34350=>1000,34351=>1000,34353=>1000,34354=>1000,34355=>1000,34356=>1000,34357=>1000,34358=>1000,34360=>1000,34361=>1000,34362=>1000,34363=>1000,34364=>1000,34366=>1000,34367=>1000,34368=>1000,34370=>1000,34371=>1000,34373=>1000,34374=>1000,34375=>1000,34376=>1000,34379=>1000,34380=>1000,34381=>1000,34382=>1000,34384=>1000,34386=>1000,34387=>1000,34388=>1000,34389=>1000,34390=>1000,34393=>1000,34395=>1000,34396=>1000,34398=>1000,34399=>1000,34401=>1000,34402=>1000,34403=>1000,34404=>1000,34405=>1000,34407=>1000,34408=>1000,34409=>1000,34410=>1000,34411=>1000,34412=>1000,34413=>1000,34414=>1000,34415=>1000,34416=>1000,34417=>1000,34418=>1000,34419=>1000,34420=>1000,34423=>1000,34425=>1000,34426=>1000,34427=>1000,34428=>1000,34430=>1000,34437=>1000,34438=>1000,34439=>1000,34442=>1000,34443=>1000,34444=>1000,34445=>1000,34446=>1000,34448=>1000,34449=>1000,34450=>1000,34451=>1000,34452=>1000,34453=>1000,34454=>1000,34455=>1000,34456=>1000,34457=>1000,34458=>1000,34460=>1000,34461=>1000,34462=>1000,34464=>1000,34465=>1000,34466=>1000,34467=>1000,34468=>1000,34469=>1000,34471=>1000,34472=>1000,34473=>1000,34474=>1000,34477=>1000,34479=>1000,34480=>1000,34481=>1000,34482=>1000,34483=>1000,34484=>1000,34485=>1000,34486=>1000,34487=>1000,34488=>1000,34489=>1000,34490=>1000,34491=>1000,34492=>1000,34493=>1000,34494=>1000,34495=>1000,34496=>1000,34497=>1000,34498=>1000,34499=>1000,34500=>1000,34501=>1000,34502=>1000,34503=>1000,34504=>1000,34505=>1000,34507=>1000,34508=>1000,34512=>1000,34513=>1000,34515=>1000,34516=>1000,34518=>1000,34519=>1000,34520=>1000,34521=>1000,34522=>1000,34523=>1000,34524=>1000,34525=>1000,34526=>1000,34527=>1000,34530=>1000,34531=>1000,34532=>1000,34534=>1000,34536=>1000,34537=>1000,34538=>1000,34539=>1000,34540=>1000,34541=>1000,34543=>1000,34549=>1000,34550=>1000,34551=>1000,34552=>1000,34553=>1000,34554=>1000,34555=>1000,34558=>1000,34560=>1000,34561=>1000,34562=>1000,34563=>1000,34564=>1000,34565=>1000,34566=>1000,34567=>1000,34568=>1000,34569=>1000,34570=>1000,34571=>1000,34572=>1000,34573=>1000,34574=>1000,34577=>1000,34578=>1000,34579=>1000,34581=>1000,34584=>1000,34585=>1000,34586=>1000,34587=>1000,34588=>1000,34590=>1000,34592=>1000,34593=>1000,34594=>1000,34595=>1000,34596=>1000,34597=>1000,34598=>1000,34599=>1000,34600=>1000,34601=>1000,34602=>1000,34604=>1000,34605=>1000,34606=>1000,34608=>1000,34609=>1000,34610=>1000,34611=>1000,34612=>1000,34613=>1000,34615=>1000,34616=>1000,34618=>1000,34619=>1000,34620=>1000,34622=>1000,34623=>1000,34624=>1000,34625=>1000,34626=>1000,34627=>1000,34630=>1000,34636=>1000,34637=>1000,34638=>1000,34639=>1000,34640=>1000,34641=>1000,34642=>1000,34643=>1000,34644=>1000,34645=>1000,34646=>1000,34647=>1000,34648=>1000,34649=>1000,34650=>1000,34651=>1000,34652=>1000,34653=>1000,34654=>1000,34655=>1000,34656=>1000,34657=>1000,34658=>1000,34659=>1000,34660=>1000,34661=>1000,34662=>1000,34663=>1000,34664=>1000,34665=>1000,34666=>1000,34667=>1000,34668=>1000,34669=>1000,34670=>1000,34671=>1000,34672=>1000,34673=>1000,34675=>1000,34676=>1000,34677=>1000,34678=>1000,34679=>1000,34680=>1000,34681=>1000,34682=>1000,34683=>1000,34685=>1000,34689=>1000,34690=>1000,34691=>1000,34692=>1000,34693=>1000,34694=>1000,34695=>1000,34696=>1000,34697=>1000,34699=>1000,34700=>1000,34701=>1000,34703=>1000,34704=>1000,34705=>1000,34706=>1000,34707=>1000,34708=>1000,34710=>1000,34711=>1000,34712=>1000,34714=>1000,34715=>1000,34716=>1000,34717=>1000,34718=>1000,34719=>1000,34722=>1000,34723=>1000,34724=>1000,34725=>1000,34729=>1000,34730=>1000,34731=>1000,34732=>1000,34733=>1000,34734=>1000,34735=>1000,34736=>1000,34737=>1000,34738=>1000,34739=>1000,34740=>1000,34741=>1000,34742=>1000,34743=>1000,34744=>1000,34745=>1000,34746=>1000,34747=>1000,34748=>1000,34749=>1000,34750=>1000,34751=>1000,34752=>1000,34753=>1000,34754=>1000,34755=>1000,34756=>1000,34757=>1000,34758=>1000,34760=>1000,34761=>1000,34762=>1000,34763=>1000,34764=>1000,34766=>1000,34769=>1000,34770=>1000,34771=>1000,34772=>1000,34774=>1000,34775=>1000,34776=>1000,34777=>1000,34778=>1000,34779=>1000,34780=>1000,34781=>1000,34782=>1000,34783=>1000,34784=>1000,34785=>1000,34786=>1000,34787=>1000,34788=>1000,34789=>1000,34790=>1000,34791=>1000,34792=>1000,34794=>1000,34795=>1000,34796=>1000,34797=>1000,34798=>1000,34799=>1000,34802=>1000,34803=>1000,34804=>1000,34805=>1000,34806=>1000,34807=>1000,34809=>1000,34810=>1000,34811=>1000,34812=>1000,34814=>1000,34815=>1000,34816=>1000,34817=>1000,34818=>1000,34819=>1000,34820=>1000,34821=>1000,34822=>1000,34824=>1000,34825=>1000,34826=>1000,34827=>1000,34828=>1000,34829=>1000,34831=>1000,34832=>1000,34833=>1000,34835=>1000,34836=>1000,34837=>1000,34838=>1000,34839=>1000,34840=>1000,34841=>1000,34843=>1000,34844=>1000,34845=>1000,34847=>1000,34848=>1000,34849=>1000,34850=>1000,34851=>1000,34852=>1000,34853=>1000,34854=>1000,34855=>1000,34856=>1000,34857=>1000,34858=>1000,34859=>1000,34860=>1000,34861=>1000,34862=>1000,34863=>1000,34864=>1000,34865=>1000,34866=>1000,34867=>1000,34869=>1000,34870=>1000,34871=>1000,34872=>1000,34873=>1000,34875=>1000,34876=>1000,34877=>1000,34878=>1000,34879=>1000,34880=>1000,34881=>1000,34882=>1000,34883=>1000,34884=>1000,34885=>1000,34886=>1000,34888=>1000,34890=>1000,34891=>1000,34892=>1000,34893=>1000,34894=>1000,34895=>1000,34898=>1000,34899=>1000,34901=>1000,34902=>1000,34903=>1000,34905=>1000,34906=>1000,34907=>1000,34909=>1000,34910=>1000,34912=>1000,34913=>1000,34914=>1000,34915=>1000,34916=>1000,34917=>1000,34919=>1000,34920=>1000,34921=>1000,34922=>1000,34923=>1000,34925=>1000,34926=>1000,34927=>1000,34928=>1000,34929=>1000,34930=>1000,34932=>1000,34933=>1000,34934=>1000,34935=>1000,34937=>1000,34940=>1000,34941=>1000,34942=>1000,34943=>1000,34944=>1000,34945=>1000,34946=>1000,34947=>1000,34948=>1000,34951=>1000,34952=>1000,34953=>1000,34955=>1000,34956=>1000,34957=>1000,34958=>1000,34959=>1000,34960=>1000,34961=>1000,34962=>1000,34963=>1000,34965=>1000,34966=>1000,34967=>1000,34968=>1000,34969=>1000,34970=>1000,34971=>1000,34972=>1000,34973=>1000,34974=>1000,34975=>1000,34976=>1000,34977=>1000,34978=>1000,34980=>1000,34983=>1000,34984=>1000,34986=>1000,34987=>1000,34988=>1000,34990=>1000,34993=>1000,34994=>1000,34996=>1000,34997=>1000,34998=>1000,34999=>1000,35000=>1000,35001=>1000,35002=>1000,35004=>1000,35005=>1000,35006=>1000,35007=>1000,35008=>1000,35009=>1000,35010=>1000,35013=>1000,35015=>1000,35017=>1000,35018=>1000,35019=>1000,35020=>1000,35021=>1000,35022=>1000,35023=>1000,35024=>1000,35026=>1000,35028=>1000,35029=>1000,35030=>1000,35031=>1000,35032=>1000,35033=>1000,35034=>1000,35035=>1000,35036=>1000,35037=>1000,35038=>1000,35039=>1000,35041=>1000,35046=>1000,35047=>1000,35048=>1000,35051=>1000,35052=>1000,35054=>1000,35055=>1000,35056=>1000,35057=>1000,35058=>1000,35059=>1000,35060=>1000,35061=>1000,35062=>1000,35063=>1000,35064=>1000,35065=>1000,35066=>1000,35067=>1000,35068=>1000,35069=>1000,35070=>1000,35071=>1000,35072=>1000,35073=>1000,35074=>1000,35077=>1000,35078=>1000,35079=>1000,35081=>1000,35082=>1000,35083=>1000,35084=>1000,35086=>1000,35088=>1000,35089=>1000,35090=>1000,35091=>1000,35092=>1000,35093=>1000,35094=>1000,35095=>1000,35096=>1000,35097=>1000,35098=>1000,35102=>1000,35103=>1000,35105=>1000,35106=>1000,35107=>1000,35108=>1000,35109=>1000,35110=>1000,35111=>1000,35113=>1000,35114=>1000,35115=>1000,35116=>1000,35117=>1000,35118=>1000,35119=>1000,35120=>1000,35121=>1000,35122=>1000,35123=>1000,35125=>1000,35126=>1000,35127=>1000,35128=>1000,35131=>1000,35132=>1000,35133=>1000,35134=>1000,35137=>1000,35138=>1000,35139=>1000,35140=>1000,35142=>1000,35143=>1000,35145=>1000,35147=>1000,35148=>1000,35149=>1000,35151=>1000,35152=>1000,35153=>1000,35154=>1000,35155=>1000,35156=>1000,35158=>1000,35159=>1000,35160=>1000,35161=>1000,35162=>1000,35163=>1000,35164=>1000,35165=>1000,35166=>1000,35167=>1000,35168=>1000,35169=>1000,35170=>1000,35171=>1000,35172=>1000,35173=>1000,35174=>1000,35177=>1000,35178=>1000,35179=>1000,35180=>1000,35181=>1000,35182=>1000,35183=>1000,35185=>1000,35186=>1000,35187=>1000,35188=>1000,35190=>1000,35191=>1000,35193=>1000,35194=>1000,35195=>1000,35196=>1000,35198=>1000,35199=>1000,35200=>1000,35201=>1000,35202=>1000,35203=>1000,35205=>1000,35206=>1000,35207=>1000,35208=>1000,35209=>1000,35210=>1000,35211=>1000,35215=>1000,35217=>1000,35219=>1000,35220=>1000,35221=>1000,35222=>1000,35223=>1000,35224=>1000,35227=>1000,35228=>1000,35229=>1000,35230=>1000,35231=>1000,35233=>1000,35234=>1000,35235=>1000,35236=>1000,35237=>1000,35238=>1000,35239=>1000,35241=>1000,35242=>1000,35244=>1000,35245=>1000,35246=>1000,35247=>1000,35250=>1000,35254=>1000,35255=>1000,35257=>1000,35258=>1000,35260=>1000,35261=>1000,35262=>1000,35263=>1000,35264=>1000,35265=>1000,35270=>1000,35282=>1000,35283=>1000,35284=>1000,35285=>1000,35286=>1000,35289=>1000,35290=>1000,35291=>1000,35292=>1000,35293=>1000,35295=>1000,35296=>1000,35297=>1000,35298=>1000,35299=>1000,35300=>1000,35301=>1000,35302=>1000,35303=>1000,35304=>1000,35305=>1000,35307=>1000,35308=>1000,35309=>1000,35312=>1000,35313=>1000,35314=>1000,35315=>1000,35316=>1000,35318=>1000,35319=>1000,35320=>1000,35322=>1000,35323=>1000,35324=>1000,35326=>1000,35327=>1000,35328=>1000,35330=>1000,35331=>1000,35332=>1000,35335=>1000,35336=>1000,35338=>1000,35340=>1000,35342=>1000,35343=>1000,35344=>1000,35345=>1000,35346=>1000,35347=>1000,35349=>1000,35350=>1000,35351=>1000,35352=>1000,35355=>1000,35356=>1000,35357=>1000,35358=>1000,35359=>1000,35362=>1000,35363=>1000,35365=>1000,35367=>1000,35369=>1000,35370=>1000,35371=>1000,35372=>1000,35373=>1000,35376=>1000,35377=>1000,35380=>1000,35382=>1000,35384=>1000,35385=>1000,35386=>1000,35387=>1000,35388=>1000,35389=>1000,35390=>1000,35391=>1000,35392=>1000,35393=>1000,35396=>1000,35397=>1000,35398=>1000,35400=>1000,35401=>1000,35402=>1000,35404=>1000,35405=>1000,35406=>1000,35407=>1000,35408=>1000,35409=>1000,35410=>1000,35412=>1000,35413=>1000,35414=>1000,35415=>1000,35416=>1000,35417=>1000,35419=>1000,35422=>1000,35424=>1000,35425=>1000,35426=>1000,35427=>1000,35430=>1000,35431=>1000,35432=>1000,35433=>1000,35435=>1000,35436=>1000,35437=>1000,35438=>1000,35440=>1000,35441=>1000,35442=>1000,35443=>1000,35444=>1000,35445=>1000,35446=>1000,35447=>1000,35449=>1000,35450=>1000,35451=>1000,35452=>1000,35454=>1000,35455=>1000,35457=>1000,35458=>1000,35459=>1000,35460=>1000,35461=>1000,35462=>1000,35463=>1000,35467=>1000,35468=>1000,35469=>1000,35471=>1000,35472=>1000,35473=>1000,35474=>1000,35475=>1000,35476=>1000,35477=>1000,35478=>1000,35480=>1000,35481=>1000,35482=>1000,35484=>1000,35486=>1000,35488=>1000,35489=>1000,35491=>1000,35492=>1000,35493=>1000,35494=>1000,35495=>1000,35496=>1000,35497=>1000,35498=>1000,35499=>1000,35500=>1000,35503=>1000,35504=>1000,35506=>1000,35508=>1000,35510=>1000,35512=>1000,35513=>1000,35514=>1000,35515=>1000,35516=>1000,35517=>1000,35518=>1000,35519=>1000,35520=>1000,35522=>1000,35523=>1000,35524=>1000,35525=>1000,35526=>1000,35527=>1000,35528=>1000,35529=>1000,35531=>1000,35532=>1000,35533=>1000,35535=>1000,35537=>1000,35538=>1000,35539=>1000,35540=>1000,35541=>1000,35542=>1000,35543=>1000,35544=>1000,35545=>1000,35546=>1000,35547=>1000,35548=>1000,35549=>1000,35550=>1000,35551=>1000,35552=>1000,35553=>1000,35554=>1000,35556=>1000,35558=>1000,35559=>1000,35560=>1000,35562=>1000,35563=>1000,35565=>1000,35566=>1000,35567=>1000,35568=>1000,35569=>1000,35570=>1000,35571=>1000,35572=>1000,35573=>1000,35574=>1000,35575=>1000,35576=>1000,35577=>1000,35578=>1000,35579=>1000,35580=>1000,35582=>1000,35583=>1000,35584=>1000,35585=>1000,35586=>1000,35588=>1000,35589=>1000,35590=>1000,35591=>1000,35592=>1000,35594=>1000,35595=>1000,35596=>1000,35597=>1000,35598=>1000,35599=>1000,35600=>1000,35601=>1000,35602=>1000,35603=>1000,35604=>1000,35605=>1000,35606=>1000,35607=>1000,35608=>1000,35609=>1000,35610=>1000,35611=>1000,35612=>1000,35613=>1000,35614=>1000,35615=>1000,35616=>1000,35618=>1000,35619=>1000,35620=>1000,35621=>1000,35622=>1000,35623=>1000,35624=>1000,35626=>1000,35627=>1000,35628=>1000,35629=>1000,35630=>1000,35631=>1000,35632=>1000,35633=>1000,35635=>1000,35637=>1000,35638=>1000,35639=>1000,35641=>1000,35642=>1000,35643=>1000,35644=>1000,35645=>1000,35646=>1000,35647=>1000,35648=>1000,35649=>1000,35650=>1000,35651=>1000,35653=>1000,35654=>1000,35655=>1000,35656=>1000,35657=>1000,35658=>1000,35659=>1000,35660=>1000,35661=>1000,35662=>1000,35663=>1000,35664=>1000,35665=>1000,35666=>1000,35667=>1000,35668=>1000,35669=>1000,35670=>1000,35671=>1000,35672=>1000,35673=>1000,35674=>1000,35676=>1000,35677=>1000,35678=>1000,35679=>1000,35680=>1000,35682=>1000,35683=>1000,35685=>1000,35686=>1000,35687=>1000,35688=>1000,35689=>1000,35690=>1000,35691=>1000,35692=>1000,35693=>1000,35695=>1000,35696=>1000,35700=>1000,35703=>1000,35704=>1000,35705=>1000,35706=>1000,35707=>1000,35709=>1000,35710=>1000,35711=>1000,35712=>1000,35713=>1000,35714=>1000,35715=>1000,35716=>1000,35717=>1000,35718=>1000,35720=>1000,35722=>1000,35723=>1000,35724=>1000,35726=>1000,35727=>1000,35728=>1000,35730=>1000,35731=>1000,35732=>1000,35733=>1000,35734=>1000,35736=>1000,35737=>1000,35738=>1000,35739=>1000,35740=>1000,35742=>1000,35743=>1000,35744=>1000,35774=>1000,35810=>1000,35895=>1000,35897=>1000,35899=>1000,35900=>1000,35901=>1000,35902=>1000,35903=>1000,35905=>1000,35906=>1000,35907=>1000,35909=>1000,35910=>1000,35911=>1000,35912=>1000,35913=>1000,35914=>1000,35915=>1000,35916=>1000,35917=>1000,35918=>1000,35919=>1000,35920=>1000,35921=>1000,35924=>1000,35925=>1000,35926=>1000,35927=>1000,35930=>1000,35932=>1000,35933=>1000,35935=>1000,35937=>1000,35938=>1000,35940=>1000,35941=>1000,35942=>1000,35944=>1000,35945=>1000,35946=>1000,35947=>1000,35948=>1000,35949=>1000,35951=>1000,35952=>1000,35953=>1000,35954=>1000,35955=>1000,35957=>1000,35958=>1000,35959=>1000,35960=>1000,35961=>1000,35962=>1000,35963=>1000,35965=>1000,35968=>1000,35969=>1000,35970=>1000,35972=>1000,35973=>1000,35974=>1000,35977=>1000,35978=>1000,35980=>1000,35981=>1000,35983=>1000,35984=>1000,35985=>1000,35986=>1000,35987=>1000,35988=>1000,35989=>1000,35991=>1000,35992=>1000,35993=>1000,35994=>1000,35995=>1000,35996=>1000,35997=>1000,35998=>1000,35999=>1000,36000=>1000,36001=>1000,36002=>1000,36003=>1000,36004=>1000,36005=>1000,36007=>1000,36008=>1000,36009=>1000,36010=>1000,36011=>1000,36012=>1000,36013=>1000,36015=>1000,36016=>1000,36018=>1000,36019=>1000,36020=>1000,36021=>1000,36022=>1000,36023=>1000,36024=>1000,36025=>1000,36026=>1000,36027=>1000,36028=>1000,36029=>1000,36030=>1000,36031=>1000,36032=>1000,36033=>1000,36034=>1000,36035=>1000,36036=>1000,36037=>1000,36039=>1000,36040=>1000,36042=>1000,36044=>1000,36045=>1000,36047=>1000,36049=>1000,36050=>1000,36051=>1000,36052=>1000,36053=>1000,36054=>1000,36055=>1000,36057=>1000,36058=>1000,36059=>1000,36060=>1000,36061=>1000,36062=>1000,36063=>1000,36064=>1000,36065=>1000,36066=>1000,36067=>1000,36068=>1000,36069=>1000,36070=>1000,36071=>1000,36072=>1000,36073=>1000,36074=>1000,36075=>1000,36076=>1000,36077=>1000,36078=>1000,36080=>1000,36081=>1000,36082=>1000,36083=>1000,36084=>1000,36085=>1000,36087=>1000,36088=>1000,36089=>1000,36090=>1000,36091=>1000,36092=>1000,36093=>1000,36094=>1000,36096=>1000,36098=>1000,36099=>1000,36100=>1000,36101=>1000,36102=>1000,36103=>1000,36104=>1000,36105=>1000,36106=>1000,36107=>1000,36108=>1000,36109=>1000,36111=>1000,36112=>1000,36113=>1000,36114=>1000,36115=>1000,36116=>1000,36117=>1000,36118=>1000,36119=>1000,36120=>1000,36121=>1000,36123=>1000,36124=>1000,36125=>1000,36196=>1000,36198=>1000,36199=>1000,36200=>1000,36201=>1000,36203=>1000,36204=>1000,36205=>1000,36206=>1000,36207=>1000,36208=>1000,36210=>1000,36211=>1000,36212=>1000,36214=>1000,36215=>1000,36216=>1000,36217=>1000,36218=>1000,36219=>1000,36221=>1000,36224=>1000,36225=>1000,36226=>1000,36228=>1000,36229=>1000,36233=>1000,36234=>1000,36236=>1000,36237=>1000,36238=>1000,36239=>1000,36240=>1000,36241=>1000,36242=>1000,36243=>1000,36244=>1000,36245=>1000,36246=>1000,36249=>1000,36251=>1000,36252=>1000,36255=>1000,36256=>1000,36257=>1000,36259=>1000,36261=>1000,36262=>1000,36263=>1000,36264=>1000,36265=>1000,36266=>1000,36267=>1000,36268=>1000,36269=>1000,36270=>1000,36271=>1000,36274=>1000,36275=>1000,36276=>1000,36277=>1000,36278=>1000,36279=>1000,36281=>1000,36282=>1000,36284=>1000,36286=>1000,36287=>1000,36288=>1000,36289=>1000,36290=>1000,36291=>1000,36293=>1000,36294=>1000,36295=>1000,36296=>1000,36299=>1000,36300=>1000,36301=>1000,36302=>1000,36303=>1000,36304=>1000,36305=>1000,36307=>1000,36308=>1000,36309=>1000,36310=>1000,36311=>1000,36312=>1000,36313=>1000,36314=>1000,36315=>1000,36316=>1000,36317=>1000,36319=>1000,36320=>1000,36321=>1000,36322=>1000,36323=>1000,36324=>1000,36326=>1000,36327=>1000,36328=>1000,36329=>1000,36330=>1000,36331=>1000,36332=>1000,36334=>1000,36335=>1000,36336=>1000,36337=>1000,36338=>1000,36339=>1000,36340=>1000,36346=>1000,36348=>1000,36349=>1000,36350=>1000,36351=>1000,36352=>1000,36353=>1000,36354=>1000,36355=>1000,36356=>1000,36357=>1000,36358=>1000,36359=>1000,36361=>1000,36362=>1000,36365=>1000,36366=>1000,36367=>1000,36368=>1000,36369=>1000,36370=>1000,36371=>1000,36372=>1000,36373=>1000,36374=>1000,36375=>1000,36376=>1000,36377=>1000,36378=>1000,36379=>1000,36380=>1000,36381=>1000,36382=>1000,36383=>1000,36384=>1000,36385=>1000,36386=>1000,36387=>1000,36388=>1000,36389=>1000,36390=>1000,36391=>1000,36392=>1000,36393=>1000,36394=>1000,36395=>1000,36397=>1000,36398=>1000,36400=>1000,36401=>1000,36403=>1000,36404=>1000,36405=>1000,36406=>1000,36408=>1000,36409=>1000,36410=>1000,36412=>1000,36413=>1000,36414=>1000,36415=>1000,36416=>1000,36417=>1000,36418=>1000,36420=>1000,36421=>1000,36422=>1000,36423=>1000,36424=>1000,36425=>1000,36426=>1000,36427=>1000,36428=>1000,36429=>1000,36430=>1000,36431=>1000,36432=>1000,36435=>1000,36436=>1000,36437=>1000,36438=>1000,36439=>1000,36441=>1000,36442=>1000,36443=>1000,36444=>1000,36445=>1000,36446=>1000,36447=>1000,36448=>1000,36449=>1000,36450=>1000,36451=>1000,36452=>1000,36453=>1000,36454=>1000,36455=>1000,36456=>1000,36457=>1000,36458=>1000,36460=>1000,36461=>1000,36463=>1000,36465=>1000,36466=>1000,36467=>1000,36468=>1000,36469=>1000,36470=>1000,36471=>1000,36472=>1000,36474=>1000,36475=>1000,36476=>1000,36478=>1000,36480=>1000,36481=>1000,36482=>1000,36484=>1000,36485=>1000,36486=>1000,36487=>1000,36488=>1000,36489=>1000,36490=>1000,36491=>1000,36492=>1000,36493=>1000,36494=>1000,36496=>1000,36497=>1000,36498=>1000,36499=>1000,36500=>1000,36501=>1000,36502=>1000,36503=>1000,36504=>1000,36506=>1000,36509=>1000,36510=>1000,36511=>1000,36512=>1000,36513=>1000,36515=>1000,36516=>1000,36517=>1000,36518=>1000,36519=>1000,36520=>1000,36521=>1000,36522=>1000,36523=>1000,36524=>1000,36525=>1000,36528=>1000,36530=>1000,36534=>1000,36537=>1000,36538=>1000,36540=>1000,36541=>1000,36544=>1000,36546=>1000,36547=>1000,36553=>1000,36554=>1000,36555=>1000,36556=>1000,36557=>1000,36558=>1000,36559=>1000,36561=>1000,36562=>1000,36563=>1000,36564=>1000,36567=>1000,36568=>1000,36570=>1000,36571=>1000,36572=>1000,36573=>1000,36574=>1000,36575=>1000,36576=>1000,36577=>1000,36578=>1000,36580=>1000,36581=>1000,36582=>1000,36583=>1000,36584=>1000,36585=>1000,36587=>1000,36588=>1000,36589=>1000,36590=>1000,36591=>1000,36593=>1000,36594=>1000,36596=>1000,36597=>1000,36598=>1000,36599=>1000,36600=>1000,36601=>1000,36602=>1000,36603=>1000,36604=>1000,36606=>1000,36607=>1000,36608=>1000,36609=>1000,36610=>1000,36611=>1000,36613=>1000,36614=>1000,36615=>1000,36616=>1000,36617=>1000,36618=>1000,36619=>1000,36621=>1000,36622=>1000,36624=>1000,36625=>1000,36626=>1000,36627=>1000,36628=>1000,36629=>1000,36630=>1000,36631=>1000,36632=>1000,36633=>1000,36634=>1000,36635=>1000,36636=>1000,36637=>1000,36638=>1000,36639=>1000,36640=>1000,36643=>1000,36644=>1000,36645=>1000,36646=>1000,36649=>1000,36650=>1000,36652=>1000,36653=>1000,36654=>1000,36655=>1000,36656=>1000,36658=>1000,36659=>1000,36660=>1000,36661=>1000,36662=>1000,36663=>1000,36664=>1000,36665=>1000,36667=>1000,36668=>1000,36670=>1000,36671=>1000,36672=>1000,36673=>1000,36674=>1000,36675=>1000,36676=>1000,36677=>1000,36678=>1000,36679=>1000,36680=>1000,36681=>1000,36682=>1000,36683=>1000,36685=>1000,36686=>1000,36687=>1000,36688=>1000,36689=>1000,36690=>1000,36691=>1000,36692=>1000,36693=>1000,36694=>1000,36695=>1000,36696=>1000,36697=>1000,36698=>1000,36699=>1000,36700=>1000,36701=>1000,36702=>1000,36703=>1000,36704=>1000,36705=>1000,36706=>1000,36707=>1000,36708=>1000,36710=>1000,36711=>1000,36718=>1000,36755=>1000,36763=>1000,36764=>1000,36767=>1000,36768=>1000,36771=>1000,36773=>1000,36774=>1000,36775=>1000,36776=>1000,36781=>1000,36782=>1000,36783=>1000,36784=>1000,36785=>1000,36786=>1000,36787=>1000,36788=>1000,36789=>1000,36790=>1000,36791=>1000,36792=>1000,36793=>1000,36794=>1000,36795=>1000,36796=>1000,36798=>1000,36799=>1000,36801=>1000,36802=>1000,36804=>1000,36805=>1000,36806=>1000,36809=>1000,36810=>1000,36811=>1000,36812=>1000,36813=>1000,36814=>1000,36815=>1000,36816=>1000,36817=>1000,36818=>1000,36819=>1000,36820=>1000,36821=>1000,36822=>1000,36823=>1000,36826=>1000,36832=>1000,36833=>1000,36834=>1000,36835=>1000,36836=>1000,36837=>1000,36838=>1000,36840=>1000,36842=>1000,36843=>1000,36845=>1000,36846=>1000,36848=>1000,36852=>1000,36853=>1000,36854=>1000,36855=>1000,36856=>1000,36857=>1000,36858=>1000,36859=>1000,36860=>1000,36861=>1000,36862=>1000,36863=>1000,36864=>1000,36865=>1000,36866=>1000,36867=>1000,36868=>1000,36869=>1000,36870=>1000,36872=>1000,36875=>1000,36876=>1000,36877=>1000,36879=>1000,36880=>1000,36881=>1000,36882=>1000,36884=>1000,36885=>1000,36886=>1000,36887=>1000,36889=>1000,36890=>1000,36891=>1000,36892=>1000,36893=>1000,36894=>1000,36895=>1000,36896=>1000,36897=>1000,36898=>1000,36899=>1000,36900=>1000,36909=>1000,36910=>1000,36911=>1000,36913=>1000,36914=>1000,36915=>1000,36916=>1000,36917=>1000,36918=>1000,36919=>1000,36920=>1000,36924=>1000,36925=>1000,36926=>1000,36927=>1000,36929=>1000,36930=>1000,36932=>1000,36934=>1000,36935=>1000,36937=>1000,36938=>1000,36939=>1000,36940=>1000,36941=>1000,36942=>1000,36943=>1000,36944=>1000,36945=>1000,36946=>1000,36947=>1000,36948=>1000,36949=>1000,36950=>1000,36952=>1000,36953=>1000,36955=>1000,36956=>1000,36957=>1000,36958=>1000,36960=>1000,36961=>1000,36962=>1000,36963=>1000,36964=>1000,36967=>1000,36968=>1000,36969=>1000,36971=>1000,36972=>1000,36973=>1000,36974=>1000,36975=>1000,36976=>1000,36978=>1000,36979=>1000,36980=>1000,36981=>1000,36982=>1000,36983=>1000,36984=>1000,36985=>1000,36986=>1000,36987=>1000,36988=>1000,36989=>1000,36990=>1000,36991=>1000,36992=>1000,36993=>1000,36994=>1000,36995=>1000,36996=>1000,36997=>1000,36998=>1000,36999=>1000,37000=>1000,37002=>1000,37003=>1000,37005=>1000,37007=>1000,37008=>1000,37009=>1000,37012=>1000,37013=>1000,37015=>1000,37016=>1000,37017=>1000,37019=>1000,37022=>1000,37023=>1000,37024=>1000,37025=>1000,37026=>1000,37027=>1000,37029=>1000,37030=>1000,37031=>1000,37032=>1000,37034=>1000,37038=>1000,37039=>1000,37040=>1000,37041=>1000,37042=>1000,37043=>1000,37044=>1000,37045=>1000,37046=>1000,37048=>1000,37051=>1000,37053=>1000,37054=>1000,37055=>1000,37057=>1000,37059=>1000,37060=>1000,37061=>1000,37063=>1000,37064=>1000,37066=>1000,37067=>1000,37070=>1000,37076=>1000,37077=>1000,37078=>1000,37079=>1000,37080=>1000,37081=>1000,37082=>1000,37083=>1000,37084=>1000,37085=>1000,37087=>1000,37088=>1000,37089=>1000,37090=>1000,37091=>1000,37092=>1000,37093=>1000,37096=>1000,37097=>1000,37098=>1000,37099=>1000,37100=>1000,37101=>1000,37103=>1000,37104=>1000,37105=>1000,37106=>1000,37107=>1000,37108=>1000,37109=>1000,37113=>1000,37114=>1000,37115=>1000,37116=>1000,37117=>1000,37118=>1000,37119=>1000,37120=>1000,37121=>1000,37122=>1000,37123=>1000,37124=>1000,37125=>1000,37126=>1000,37127=>1000,37128=>1000,37129=>1000,37131=>1000,37133=>1000,37134=>1000,37135=>1000,37136=>1000,37137=>1000,37138=>1000,37140=>1000,37142=>1000,37143=>1000,37144=>1000,37145=>1000,37146=>1000,37147=>1000,37148=>1000,37149=>1000,37150=>1000,37151=>1000,37152=>1000,37153=>1000,37154=>1000,37155=>1000,37156=>1000,37158=>1000,37159=>1000,37160=>1000,37161=>1000,37162=>1000,37163=>1000,37164=>1000,37165=>1000,37166=>1000,37167=>1000,37168=>1000,37169=>1000,37170=>1000,37171=>1000,37172=>1000,37173=>1000,37174=>1000,37176=>1000,37177=>1000,37178=>1000,37179=>1000,37182=>1000,37183=>1000,37184=>1000,37185=>1000,37187=>1000,37188=>1000,37189=>1000,37190=>1000,37191=>1000,37192=>1000,37193=>1000,37194=>1000,37195=>1000,37196=>1000,37197=>1000,37198=>1000,37199=>1000,37200=>1000,37201=>1000,37202=>1000,37203=>1000,37205=>1000,37206=>1000,37207=>1000,37208=>1000,37209=>1000,37210=>1000,37212=>1000,37214=>1000,37215=>1000,37216=>1000,37217=>1000,37218=>1000,37219=>1000,37220=>1000,37221=>1000,37223=>1000,37224=>1000,37225=>1000,37226=>1000,37228=>1000,37230=>1000,37231=>1000,37232=>1000,37234=>1000,37235=>1000,37236=>1000,37237=>1000,37238=>1000,37239=>1000,37240=>1000,37241=>1000,37242=>1000,37244=>1000,37248=>1000,37249=>1000,37250=>1000,37251=>1000,37252=>1000,37253=>1000,37254=>1000,37255=>1000,37257=>1000,37258=>1000,37259=>1000,37260=>1000,37261=>1000,37262=>1000,37263=>1000,37264=>1000,37265=>1000,37266=>1000,37267=>1000,37270=>1000,37273=>1000,37274=>1000,37275=>1000,37276=>1000,37277=>1000,37278=>1000,37279=>1000,37280=>1000,37281=>1000,37282=>1000,37283=>1000,37285=>1000,37287=>1000,37288=>1000,37289=>1000,37290=>1000,37291=>1000,37292=>1000,37293=>1000,37294=>1000,37295=>1000,37296=>1000,37297=>1000,37298=>1000,37299=>1000,37300=>1000,37301=>1000,37302=>1000,37303=>1000,37305=>1000,37306=>1000,37307=>1000,37308=>1000,37309=>1000,37310=>1000,37312=>1000,37313=>1000,37314=>1000,37315=>1000,37316=>1000,37317=>1000,37318=>1000,37319=>1000,37321=>1000,37323=>1000,37324=>1000,37325=>1000,37326=>1000,37327=>1000,37328=>1000,37329=>1000,37331=>1000,37332=>1000,37333=>1000,37334=>1000,37335=>1000,37336=>1000,37337=>1000,37338=>1000,37340=>1000,37341=>1000,37343=>1000,37346=>1000,37347=>1000,37348=>1000,37349=>1000,37350=>1000,37351=>1000,37352=>1000,37353=>1000,37354=>1000,37355=>1000,37356=>1000,37357=>1000,37358=>1000,37361=>1000,37363=>1000,37364=>1000,37365=>1000,37366=>1000,37367=>1000,37368=>1000,37369=>1000,37370=>1000,37373=>1000,37374=>1000,37375=>1000,37376=>1000,37377=>1000,37378=>1000,37379=>1000,37380=>1000,37381=>1000,37382=>1000,37383=>1000,37384=>1000,37385=>1000,37386=>1000,37388=>1000,37389=>1000,37390=>1000,37391=>1000,37392=>1000,37393=>1000,37394=>1000,37395=>1000,37396=>1000,37397=>1000,37398=>1000,37399=>1000,37400=>1000,37401=>1000,37402=>1000,37404=>1000,37406=>1000,37409=>1000,37411=>1000,37412=>1000,37413=>1000,37414=>1000,37415=>1000,37416=>1000,37418=>1000,37419=>1000,37421=>1000,37422=>1000,37424=>1000,37425=>1000,37426=>1000,37427=>1000,37428=>1000,37429=>1000,37430=>1000,37431=>1000,37432=>1000,37433=>1000,37434=>1000,37436=>1000,37437=>1000,37438=>1000,37439=>1000,37440=>1000,37441=>1000,37444=>1000,37445=>1000,37446=>1000,37448=>1000,37449=>1000,37450=>1000,37451=>1000,37452=>1000,37453=>1000,37454=>1000,37455=>1000,37456=>1000,37457=>1000,37458=>1000,37459=>1000,37460=>1000,37461=>1000,37462=>1000,37463=>1000,37464=>1000,37466=>1000,37467=>1000,37469=>1000,37470=>1000,37471=>1000,37472=>1000,37473=>1000,37474=>1000,37475=>1000,37476=>1000,37477=>1000,37478=>1000,37479=>1000,37483=>1000,37484=>1000,37485=>1000,37486=>1000,37487=>1000,37488=>1000,37490=>1000,37494=>1000,37495=>1000,37496=>1000,37497=>1000,37498=>1000,37499=>1000,37500=>1000,37501=>1000,37502=>1000,37503=>1000,37504=>1000,37505=>1000,37506=>1000,37507=>1000,37508=>1000,37509=>1000,37510=>1000,37511=>1000,37512=>1000,37513=>1000,37514=>1000,37515=>1000,37516=>1000,37517=>1000,37518=>1000,37519=>1000,37521=>1000,37523=>1000,37524=>1000,37525=>1000,37526=>1000,37527=>1000,37528=>1000,37529=>1000,37530=>1000,37531=>1000,37532=>1000,37533=>1000,37536=>1000,37537=>1000,37538=>1000,37539=>1000,37540=>1000,37541=>1000,37542=>1000,37543=>1000,37544=>1000,37545=>1000,37546=>1000,37547=>1000,37548=>1000,37550=>1000,37553=>1000,37554=>1000,37555=>1000,37556=>1000,37557=>1000,37558=>1000,37559=>1000,37561=>1000,37562=>1000,37563=>1000,37564=>1000,37566=>1000,37567=>1000,37568=>1000,37569=>1000,37570=>1000,37571=>1000,37572=>1000,37573=>1000,37574=>1000,37575=>1000,37576=>1000,37577=>1000,37578=>1000,37579=>1000,37580=>1000,37581=>1000,37582=>1000,37583=>1000,37584=>1000,37585=>1000,37586=>1000,37587=>1000,37588=>1000,37589=>1000,37591=>1000,37592=>1000,37593=>1000,37595=>1000,37597=>1000,37598=>1000,37599=>1000,37600=>1000,37601=>1000,37603=>1000,37604=>1000,37605=>1000,37606=>1000,37607=>1000,37608=>1000,37609=>1000,37610=>1000,37611=>1000,37612=>1000,37613=>1000,37614=>1000,37615=>1000,37616=>1000,37617=>1000,37618=>1000,37619=>1000,37620=>1000,37622=>1000,37623=>1000,37624=>1000,37625=>1000,37626=>1000,37627=>1000,37628=>1000,37629=>1000,37630=>1000,37631=>1000,37632=>1000,37633=>1000,37634=>1000,37635=>1000,37636=>1000,37638=>1000,37639=>1000,37640=>1000,37641=>1000,37643=>1000,37644=>1000,37645=>1000,37646=>1000,37647=>1000,37648=>1000,37650=>1000,37651=>1000,37652=>1000,37653=>1000,37654=>1000,37656=>1000,37657=>1000,37658=>1000,37659=>1000,37661=>1000,37662=>1000,37663=>1000,37664=>1000,37665=>1000,37666=>1000,37667=>1000,37668=>1000,37669=>1000,37670=>1000,37671=>1000,37672=>1000,37673=>1000,37674=>1000,37675=>1000,37676=>1000,37677=>1000,37678=>1000,37679=>1000,37680=>1000,37681=>1000,37683=>1000,37684=>1000,37685=>1000,37686=>1000,37688=>1000,37689=>1000,37692=>1000,37696=>1000,37697=>1000,37698=>1000,37699=>1000,37700=>1000,37701=>1000,37702=>1000,37703=>1000,37704=>1000,37705=>1000,37706=>1000,37707=>1000,37708=>1000,37709=>1000,37710=>1000,37711=>1000,37712=>1000,37713=>1000,37714=>1000,37716=>1000,37717=>1000,37718=>1000,37719=>1000,37720=>1000,37721=>1000,37722=>1000,37723=>1000,37724=>1000,37726=>1000,37727=>1000,37728=>1000,37729=>1000,37730=>1000,37731=>1000,37732=>1000,37733=>1000,37734=>1000,37735=>1000,37736=>1000,37737=>1000,37738=>1000,37739=>1000,37740=>1000,37741=>1000,37742=>1000,37744=>1000,37745=>1000,37747=>1000,37748=>1000,37749=>1000,37750=>1000,37751=>1000,37752=>1000,37753=>1000,37754=>1000,37755=>1000,37756=>1000,37757=>1000,37758=>1000,37760=>1000,37761=>1000,37762=>1000,37763=>1000,37764=>1000,37765=>1000,37766=>1000,37767=>1000,37768=>1000,37769=>1000,37770=>1000,37772=>1000,37773=>1000,37774=>1000,37775=>1000,37776=>1000,37777=>1000,37778=>1000,37780=>1000,37781=>1000,37782=>1000,37783=>1000,37784=>1000,37785=>1000,37786=>1000,37787=>1000,37788=>1000,37789=>1000,37790=>1000,37791=>1000,37792=>1000,37793=>1000,37794=>1000,37795=>1000,37796=>1000,37797=>1000,37798=>1000,37799=>1000,37800=>1000,37801=>1000,37802=>1000,37804=>1000,37805=>1000,37806=>1000,37807=>1000,37808=>1000,37809=>1000,37810=>1000,37811=>1000,37812=>1000,37813=>1000,37815=>1000,37816=>1000,37819=>1000,37821=>1000,37823=>1000,37824=>1000,37826=>1000,37827=>1000,37828=>1000,37830=>1000,37831=>1000,37832=>1000,37834=>1000,37835=>1000,37836=>1000,37837=>1000,37838=>1000,37839=>1000,37840=>1000,37841=>1000,37842=>1000,37843=>1000,37844=>1000,37845=>1000,37846=>1000,37847=>1000,37848=>1000,37849=>1000,37850=>1000,37851=>1000,37852=>1000,37853=>1000,37854=>1000,37855=>1000,37856=>1000,37857=>1000,37858=>1000,37859=>1000,37860=>1000,37862=>1000,37863=>1000,37864=>1000,37868=>1000,37870=>1000,37872=>1000,37873=>1000,37875=>1000,37876=>1000,37877=>1000,37878=>1000,37879=>1000,37880=>1000,37881=>1000,37882=>1000,37883=>1000,37884=>1000,37885=>1000,37886=>1000,37887=>1000,37888=>1000,37889=>1000,37891=>1000,37892=>1000,37894=>1000,37895=>1000,37896=>1000,37897=>1000,37898=>1000,37899=>1000,37900=>1000,37901=>1000,37902=>1000,37903=>1000,37904=>1000,37905=>1000,37906=>1000,37907=>1000,37908=>1000,37909=>1000,37910=>1000,37911=>1000,37912=>1000,37913=>1000,37915=>1000,37917=>1000,37920=>1000,37924=>1000,37925=>1000,37926=>1000,37927=>1000,37928=>1000,37929=>1000,37930=>1000,37931=>1000,37932=>1000,37933=>1000,37934=>1000,37935=>1000,37936=>1000,37937=>1000,37938=>1000,37939=>1000,37941=>1000,37942=>1000,37943=>1000,37944=>1000,37945=>1000,37946=>1000,37947=>1000,37948=>1000,37949=>1000,37950=>1000,37951=>1000,37952=>1000,37954=>1000,37955=>1000,37956=>1000,37957=>1000,37958=>1000,37959=>1000,37960=>1000,37961=>1000,37962=>1000,37963=>1000,37964=>1000,37965=>1000,37967=>1000,37968=>1000,37969=>1000,37970=>1000,37972=>1000,37973=>1000,37975=>1000,37976=>1000,37979=>1000,37981=>1000,37982=>1000,37984=>1000,37986=>1000,37987=>1000,37988=>1000,37989=>1000,37991=>1000,37992=>1000,37993=>1000,37994=>1000,37995=>1000,37996=>1000,37997=>1000,37998=>1000,37999=>1000,38000=>1000,38001=>1000,38002=>1000,38003=>1000,38004=>1000,38005=>1000,38006=>1000,38007=>1000,38008=>1000,38009=>1000,38011=>1000,38012=>1000,38013=>1000,38014=>1000,38015=>1000,38016=>1000,38017=>1000,38018=>1000,38019=>1000,38021=>1000,38047=>1000,38050=>1000,38081=>1000,38083=>1000,38108=>1000,38134=>1000,38189=>1000,38215=>1000,38263=>1000,38264=>1000,38266=>1000,38267=>1000,38268=>1000,38269=>1000,38271=>1000,38272=>1000,38274=>1000,38275=>1000,38277=>1000,38278=>1000,38280=>1000,38281=>1000,38283=>1000,38284=>1000,38285=>1000,38286=>1000,38287=>1000,38288=>1000,38289=>1000,38290=>1000,38291=>1000,38292=>1000,38294=>1000,38295=>1000,38296=>1000,38297=>1000,38299=>1000,38300=>1000,38302=>1000,38303=>1000,38304=>1000,38305=>1000,38306=>1000,38307=>1000,38308=>1000,38309=>1000,38310=>1000,38311=>1000,38312=>1000,38313=>1000,38314=>1000,38315=>1000,38316=>1000,38317=>1000,38318=>1000,38320=>1000,38321=>1000,38322=>1000,38325=>1000,38326=>1000,38327=>1000,38329=>1000,38330=>1000,38331=>1000,38332=>1000,38333=>1000,38334=>1000,38335=>1000,38336=>1000,38339=>1000,38341=>1000,38342=>1000,38343=>1000,38344=>1000,38345=>1000,38346=>1000,38347=>1000,38348=>1000,38349=>1000,38352=>1000,38353=>1000,38354=>1000,38355=>1000,38356=>1000,38357=>1000,38358=>1000,38362=>1000,38363=>1000,38364=>1000,38366=>1000,38367=>1000,38368=>1000,38369=>1000,38370=>1000,38371=>1000,38372=>1000,38373=>1000,38376=>1000,38388=>1000,38428=>1000,38429=>1000,38430=>1000,38432=>1000,38433=>1000,38434=>1000,38435=>1000,38436=>1000,38440=>1000,38442=>1000,38444=>1000,38445=>1000,38446=>1000,38447=>1000,38448=>1000,38449=>1000,38450=>1000,38451=>1000,38456=>1000,38457=>1000,38458=>1000,38459=>1000,38460=>1000,38461=>1000,38463=>1000,38464=>1000,38465=>1000,38466=>1000,38467=>1000,38468=>1000,38469=>1000,38474=>1000,38475=>1000,38476=>1000,38477=>1000,38478=>1000,38479=>1000,38480=>1000,38481=>1000,38483=>1000,38484=>1000,38486=>1000,38488=>1000,38491=>1000,38492=>1000,38493=>1000,38494=>1000,38495=>1000,38497=>1000,38498=>1000,38499=>1000,38500=>1000,38505=>1000,38506=>1000,38507=>1000,38508=>1000,38509=>1000,38511=>1000,38512=>1000,38513=>1000,38514=>1000,38515=>1000,38516=>1000,38517=>1000,38518=>1000,38519=>1000,38520=>1000,38523=>1000,38524=>1000,38525=>1000,38526=>1000,38528=>1000,38529=>1000,38531=>1000,38532=>1000,38533=>1000,38534=>1000,38535=>1000,38536=>1000,38537=>1000,38538=>1000,38539=>1000,38541=>1000,38542=>1000,38543=>1000,38545=>1000,38546=>1000,38547=>1000,38548=>1000,38549=>1000,38550=>1000,38551=>1000,38552=>1000,38553=>1000,38555=>1000,38556=>1000,38558=>1000,38561=>1000,38562=>1000,38563=>1000,38564=>1000,38565=>1000,38567=>1000,38568=>1000,38569=>1000,38570=>1000,38572=>1000,38574=>1000,38576=>1000,38577=>1000,38579=>1000,38580=>1000,38582=>1000,38584=>1000,38585=>1000,38587=>1000,38588=>1000,38589=>1000,38591=>1000,38592=>1000,38593=>1000,38594=>1000,38595=>1000,38596=>1000,38597=>1000,38598=>1000,38599=>1000,38600=>1000,38601=>1000,38602=>1000,38603=>1000,38604=>1000,38605=>1000,38606=>1000,38610=>1000,38611=>1000,38612=>1000,38613=>1000,38614=>1000,38615=>1000,38616=>1000,38617=>1000,38618=>1000,38619=>1000,38620=>1000,38621=>1000,38622=>1000,38623=>1000,38625=>1000,38626=>1000,38627=>1000,38629=>1000,38632=>1000,38633=>1000,38634=>1000,38639=>1000,38640=>1000,38641=>1000,38642=>1000,38644=>1000,38645=>1000,38646=>1000,38647=>1000,38648=>1000,38649=>1000,38650=>1000,38651=>1000,38653=>1000,38655=>1000,38656=>1000,38658=>1000,38659=>1000,38660=>1000,38661=>1000,38662=>1000,38663=>1000,38664=>1000,38665=>1000,38667=>1000,38669=>1000,38670=>1000,38671=>1000,38672=>1000,38673=>1000,38674=>1000,38675=>1000,38678=>1000,38680=>1000,38681=>1000,38683=>1000,38684=>1000,38685=>1000,38686=>1000,38687=>1000,38688=>1000,38689=>1000,38690=>1000,38691=>1000,38692=>1000,38693=>1000,38694=>1000,38695=>1000,38696=>1000,38697=>1000,38698=>1000,38699=>1000,38700=>1000,38702=>1000,38703=>1000,38704=>1000,38705=>1000,38706=>1000,38708=>1000,38709=>1000,38710=>1000,38712=>1000,38713=>1000,38714=>1000,38717=>1000,38718=>1000,38719=>1000,38720=>1000,38721=>1000,38722=>1000,38723=>1000,38724=>1000,38726=>1000,38727=>1000,38728=>1000,38729=>1000,38730=>1000,38731=>1000,38737=>1000,38738=>1000,38741=>1000,38742=>1000,38743=>1000,38744=>1000,38746=>1000,38747=>1000,38748=>1000,38749=>1000,38750=>1000,38751=>1000,38752=>1000,38753=>1000,38754=>1000,38758=>1000,38760=>1000,38761=>1000,38762=>1000,38764=>1000,38765=>1000,38766=>1000,38768=>1000,38769=>1000,38770=>1000,38771=>1000,38772=>1000,38774=>1000,38775=>1000,38776=>1000,38778=>1000,38779=>1000,38780=>1000,38781=>1000,38782=>1000,38783=>1000,38784=>1000,38785=>1000,38786=>1000,38787=>1000,38788=>1000,38789=>1000,38791=>1000,38792=>1000,38793=>1000,38794=>1000,38795=>1000,38797=>1000,38798=>1000,38799=>1000,38804=>1000,38807=>1000,38808=>1000,38809=>1000,38810=>1000,38811=>1000,38812=>1000,38813=>1000,38814=>1000,38815=>1000,38816=>1000,38817=>1000,38818=>1000,38819=>1000,38820=>1000,38821=>1000,38822=>1000,38824=>1000,38826=>1000,38827=>1000,38828=>1000,38829=>1000,38830=>1000,38833=>1000,38834=>1000,38835=>1000,38836=>1000,38838=>1000,38839=>1000,38840=>1000,38841=>1000,38842=>1000,38843=>1000,38845=>1000,38846=>1000,38847=>1000,38848=>1000,38849=>1000,38850=>1000,38851=>1000,38852=>1000,38853=>1000,38854=>1000,38855=>1000,38856=>1000,38857=>1000,38859=>1000,38860=>1000,38861=>1000,38862=>1000,38863=>1000,38864=>1000,38866=>1000,38867=>1000,38868=>1000,38869=>1000,38870=>1000,38871=>1000,38872=>1000,38873=>1000,38876=>1000,38877=>1000,38878=>1000,38879=>1000,38880=>1000,38881=>1000,38883=>1000,38885=>1000,38886=>1000,38893=>1000,38894=>1000,38896=>1000,38897=>1000,38898=>1000,38899=>1000,38901=>1000,38902=>1000,38904=>1000,38905=>1000,38906=>1000,38907=>1000,38909=>1000,38910=>1000,38911=>1000,38912=>1000,38913=>1000,38914=>1000,38915=>1000,38916=>1000,38917=>1000,38918=>1000,38919=>1000,38920=>1000,38922=>1000,38924=>1000,38925=>1000,38926=>1000,38927=>1000,38928=>1000,38929=>1000,38930=>1000,38931=>1000,38932=>1000,38933=>1000,38934=>1000,38935=>1000,38936=>1000,38939=>1000,38940=>1000,38941=>1000,38942=>1000,38943=>1000,38944=>1000,38945=>1000,38947=>1000,38948=>1000,38950=>1000,38951=>1000,38952=>1000,38953=>1000,38955=>1000,38957=>1000,38958=>1000,38959=>1000,38960=>1000,38962=>1000,38963=>1000,38964=>1000,38965=>1000,38967=>1000,38968=>1000,38969=>1000,38971=>1000,38977=>1000,38979=>1000,38980=>1000,38981=>1000,38982=>1000,38983=>1000,38984=>1000,38985=>1000,38986=>1000,38987=>1000,38988=>1000,38989=>1000,38990=>1000,38991=>1000,38992=>1000,38993=>1000,38994=>1000,38995=>1000,38998=>1000,38999=>1000,39000=>1000,39001=>1000,39003=>1000,39004=>1000,39005=>1000,39006=>1000,39007=>1000,39008=>1000,39010=>1000,39011=>1000,39012=>1000,39013=>1000,39014=>1000,39015=>1000,39016=>1000,39017=>1000,39018=>1000,39019=>1000,39020=>1000,39023=>1000,39024=>1000,39025=>1000,39026=>1000,39027=>1000,39028=>1000,39029=>1000,39080=>1000,39081=>1000,39084=>1000,39085=>1000,39086=>1000,39087=>1000,39089=>1000,39090=>1000,39091=>1000,39092=>1000,39094=>1000,39095=>1000,39096=>1000,39097=>1000,39098=>1000,39099=>1000,39100=>1000,39101=>1000,39102=>1000,39103=>1000,39104=>1000,39105=>1000,39106=>1000,39107=>1000,39108=>1000,39110=>1000,39111=>1000,39112=>1000,39113=>1000,39114=>1000,39115=>1000,39116=>1000,39118=>1000,39131=>1000,39132=>1000,39134=>1000,39135=>1000,39136=>1000,39137=>1000,39138=>1000,39139=>1000,39141=>1000,39142=>1000,39143=>1000,39145=>1000,39146=>1000,39147=>1000,39148=>1000,39149=>1000,39151=>1000,39153=>1000,39154=>1000,39156=>1000,39157=>1000,39158=>1000,39161=>1000,39162=>1000,39164=>1000,39165=>1000,39166=>1000,39168=>1000,39170=>1000,39171=>1000,39173=>1000,39175=>1000,39176=>1000,39177=>1000,39178=>1000,39180=>1000,39182=>1000,39184=>1000,39185=>1000,39186=>1000,39187=>1000,39188=>1000,39189=>1000,39190=>1000,39191=>1000,39192=>1000,39193=>1000,39194=>1000,39195=>1000,39196=>1000,39198=>1000,39199=>1000,39201=>1000,39204=>1000,39205=>1000,39207=>1000,39208=>1000,39209=>1000,39210=>1000,39211=>1000,39212=>1000,39213=>1000,39214=>1000,39215=>1000,39216=>1000,39217=>1000,39218=>1000,39219=>1000,39221=>1000,39223=>1000,39224=>1000,39225=>1000,39226=>1000,39227=>1000,39228=>1000,39229=>1000,39230=>1000,39231=>1000,39232=>1000,39233=>1000,39234=>1000,39235=>1000,39237=>1000,39239=>1000,39240=>1000,39241=>1000,39242=>1000,39243=>1000,39244=>1000,39245=>1000,39246=>1000,39248=>1000,39249=>1000,39250=>1000,39251=>1000,39252=>1000,39253=>1000,39254=>1000,39255=>1000,39256=>1000,39257=>1000,39259=>1000,39260=>1000,39261=>1000,39262=>1000,39263=>1000,39265=>1000,39266=>1000,39267=>1000,39318=>1000,39319=>1000,39320=>1000,39321=>1000,39323=>1000,39324=>1000,39325=>1000,39326=>1000,39329=>1000,39331=>1000,39332=>1000,39333=>1000,39334=>1000,39335=>1000,39336=>1000,39338=>1000,39339=>1000,39340=>1000,39341=>1000,39342=>1000,39343=>1000,39344=>1000,39345=>1000,39346=>1000,39347=>1000,39348=>1000,39349=>1000,39352=>1000,39353=>1000,39354=>1000,39355=>1000,39356=>1000,39357=>1000,39361=>1000,39362=>1000,39363=>1000,39364=>1000,39365=>1000,39367=>1000,39369=>1000,39371=>1000,39372=>1000,39373=>1000,39374=>1000,39375=>1000,39376=>1000,39377=>1000,39378=>1000,39379=>1000,39380=>1000,39381=>1000,39382=>1000,39383=>1000,39384=>1000,39385=>1000,39386=>1000,39387=>1000,39388=>1000,39389=>1000,39391=>1000,39392=>1000,39393=>1000,39394=>1000,39395=>1000,39396=>1000,39397=>1000,39398=>1000,39399=>1000,39401=>1000,39402=>1000,39404=>1000,39405=>1000,39406=>1000,39408=>1000,39409=>1000,39412=>1000,39413=>1000,39414=>1000,39415=>1000,39416=>1000,39417=>1000,39418=>1000,39419=>1000,39420=>1000,39421=>1000,39422=>1000,39423=>1000,39425=>1000,39426=>1000,39427=>1000,39428=>1000,39429=>1000,39430=>1000,39431=>1000,39433=>1000,39434=>1000,39435=>1000,39436=>1000,39437=>1000,39438=>1000,39439=>1000,39440=>1000,39441=>1000,39444=>1000,39445=>1000,39446=>1000,39449=>1000,39450=>1000,39451=>1000,39452=>1000,39453=>1000,39454=>1000,39455=>1000,39456=>1000,39457=>1000,39458=>1000,39459=>1000,39460=>1000,39461=>1000,39462=>1000,39463=>1000,39465=>1000,39466=>1000,39467=>1000,39468=>1000,39469=>1000,39470=>1000,39471=>1000,39472=>1000,39473=>1000,39474=>1000,39476=>1000,39477=>1000,39478=>1000,39479=>1000,39480=>1000,39481=>1000,39482=>1000,39483=>1000,39484=>1000,39485=>1000,39486=>1000,39487=>1000,39488=>1000,39489=>1000,39490=>1000,39491=>1000,39492=>1000,39493=>1000,39494=>1000,39496=>1000,39497=>1000,39498=>1000,39500=>1000,39501=>1000,39502=>1000,39503=>1000,39504=>1000,39506=>1000,39507=>1000,39508=>1000,39509=>1000,39510=>1000,39511=>1000,39512=>1000,39513=>1000,39514=>1000,39515=>1000,39516=>1000,39518=>1000,39519=>1000,39520=>1000,39522=>1000,39523=>1000,39524=>1000,39525=>1000,39526=>1000,39527=>1000,39528=>1000,39529=>1000,39530=>1000,39531=>1000,39532=>1000,39567=>1000,39592=>1000,39595=>1000,39597=>1000,39599=>1000,39600=>1000,39601=>1000,39602=>1000,39603=>1000,39604=>1000,39606=>1000,39607=>1000,39608=>1000,39609=>1000,39610=>1000,39611=>1000,39612=>1000,39613=>1000,39614=>1000,39615=>1000,39616=>1000,39617=>1000,39618=>1000,39622=>1000,39623=>1000,39626=>1000,39629=>1000,39631=>1000,39632=>1000,39633=>1000,39634=>1000,39635=>1000,39636=>1000,39637=>1000,39638=>1000,39639=>1000,39640=>1000,39644=>1000,39647=>1000,39648=>1000,39649=>1000,39650=>1000,39651=>1000,39654=>1000,39655=>1000,39659=>1000,39660=>1000,39661=>1000,39662=>1000,39663=>1000,39665=>1000,39666=>1000,39667=>1000,39668=>1000,39670=>1000,39671=>1000,39673=>1000,39674=>1000,39675=>1000,39676=>1000,39677=>1000,39678=>1000,39679=>1000,39681=>1000,39682=>1000,39683=>1000,39684=>1000,39685=>1000,39686=>1000,39688=>1000,39689=>1000,39690=>1000,39691=>1000,39692=>1000,39693=>1000,39694=>1000,39695=>1000,39696=>1000,39697=>1000,39698=>1000,39700=>1000,39701=>1000,39702=>1000,39703=>1000,39704=>1000,39705=>1000,39706=>1000,39710=>1000,39711=>1000,39712=>1000,39714=>1000,39715=>1000,39716=>1000,39717=>1000,39719=>1000,39720=>1000,39721=>1000,39722=>1000,39723=>1000,39725=>1000,39726=>1000,39727=>1000,39729=>1000,39730=>1000,39731=>1000,39732=>1000,39733=>1000,39735=>1000,39737=>1000,39738=>1000,39739=>1000,39740=>1000,39742=>1000,39743=>1000,39744=>1000,39745=>1000,39746=>1000,39747=>1000,39748=>1000,39749=>1000,39750=>1000,39752=>1000,39754=>1000,39755=>1000,39756=>1000,39757=>1000,39758=>1000,39759=>1000,39760=>1000,39761=>1000,39762=>1000,39764=>1000,39765=>1000,39766=>1000,39768=>1000,39769=>1000,39770=>1000,39771=>1000,39775=>1000,39776=>1000,39777=>1000,39780=>1000,39782=>1000,39783=>1000,39784=>1000,39785=>1000,39788=>1000,39791=>1000,39792=>1000,39793=>1000,39796=>1000,39797=>1000,39798=>1000,39799=>1000,39802=>1000,39803=>1000,39804=>1000,39805=>1000,39806=>1000,39807=>1000,39808=>1000,39809=>1000,39810=>1000,39811=>1000,39813=>1000,39814=>1000,39815=>1000,39816=>1000,39819=>1000,39821=>1000,39822=>1000,39823=>1000,39824=>1000,39825=>1000,39826=>1000,39827=>1000,39829=>1000,39831=>1000,39834=>1000,39835=>1000,39837=>1000,39838=>1000,39839=>1000,39840=>1000,39841=>1000,39842=>1000,39844=>1000,39845=>1000,39846=>1000,39848=>1000,39850=>1000,39851=>1000,39853=>1000,39854=>1000,39855=>1000,39856=>1000,39861=>1000,39862=>1000,39864=>1000,39865=>1000,39869=>1000,39871=>1000,39872=>1000,39873=>1000,39875=>1000,39876=>1000,39878=>1000,39879=>1000,39880=>1000,39881=>1000,39882=>1000,39887=>1000,39891=>1000,39892=>1000,39893=>1000,39894=>1000,39895=>1000,39897=>1000,39898=>1000,39899=>1000,39900=>1000,39901=>1000,39902=>1000,39904=>1000,39905=>1000,39906=>1000,39908=>1000,39909=>1000,39910=>1000,39911=>1000,39912=>1000,39913=>1000,39914=>1000,39915=>1000,39916=>1000,39917=>1000,39920=>1000,39921=>1000,39924=>1000,39927=>1000,39928=>1000,39933=>1000,39935=>1000,39938=>1000,39941=>1000,39942=>1000,39943=>1000,39944=>1000,39945=>1000,39946=>1000,39947=>1000,39948=>1000,39949=>1000,39950=>1000,39952=>1000,39954=>1000,39955=>1000,39956=>1000,39957=>1000,39959=>1000,39963=>1000,39964=>1000,39965=>1000,39967=>1000,39968=>1000,39969=>1000,39971=>1000,39972=>1000,39973=>1000,39974=>1000,39976=>1000,39977=>1000,39979=>1000,39980=>1000,39981=>1000,39983=>1000,39985=>1000,39986=>1000,39987=>1000,39988=>1000,39989=>1000,39990=>1000,39991=>1000,39993=>1000,39994=>1000,39995=>1000,39996=>1000,39997=>1000,39998=>1000,39999=>1000,40000=>1000,40001=>1000,40004=>1000,40005=>1000,40006=>1000,40007=>1000,40008=>1000,40009=>1000,40010=>1000,40011=>1000,40012=>1000,40013=>1000,40014=>1000,40015=>1000,40016=>1000,40018=>1000,40019=>1000,40020=>1000,40021=>1000,40022=>1000,40023=>1000,40024=>1000,40025=>1000,40029=>1000,40030=>1000,40031=>1000,40032=>1000,40034=>1000,40035=>1000,40038=>1000,40039=>1000,40040=>1000,40045=>1000,40046=>1000,40049=>1000,40050=>1000,40051=>1000,40052=>1000,40053=>1000,40055=>1000,40056=>1000,40057=>1000,40058=>1000,40059=>1000,40060=>1000,40165=>1000,40166=>1000,40167=>1000,40169=>1000,40170=>1000,40173=>1000,40177=>1000,40178=>1000,40179=>1000,40180=>1000,40181=>1000,40182=>1000,40183=>1000,40185=>1000,40186=>1000,40187=>1000,40188=>1000,40189=>1000,40191=>1000,40192=>1000,40194=>1000,40195=>1000,40196=>1000,40197=>1000,40198=>1000,40199=>1000,40200=>1000,40201=>1000,40204=>1000,40208=>1000,40210=>1000,40212=>1000,40213=>1000,40214=>1000,40215=>1000,40216=>1000,40217=>1000,40219=>1000,40221=>1000,40222=>1000,40223=>1000,40224=>1000,40225=>1000,40226=>1000,40227=>1000,40229=>1000,40230=>1000,40232=>1000,40233=>1000,40237=>1000,40238=>1000,40239=>1000,40240=>1000,40241=>1000,40243=>1000,40244=>1000,40246=>1000,40247=>1000,40248=>1000,40249=>1000,40251=>1000,40253=>1000,40254=>1000,40255=>1000,40256=>1000,40257=>1000,40258=>1000,40259=>1000,40260=>1000,40261=>1000,40265=>1000,40266=>1000,40267=>1000,40268=>1000,40270=>1000,40271=>1000,40272=>1000,40273=>1000,40274=>1000,40275=>1000,40276=>1000,40278=>1000,40279=>1000,40280=>1000,40281=>1000,40282=>1000,40283=>1000,40284=>1000,40285=>1000,40286=>1000,40287=>1000,40288=>1000,40289=>1000,40295=>1000,40296=>1000,40297=>1000,40298=>1000,40299=>1000,40300=>1000,40301=>1000,40302=>1000,40303=>1000,40304=>1000,40305=>1000,40306=>1000,40307=>1000,40308=>1000,40309=>1000,40311=>1000,40312=>1000,40313=>1000,40315=>1000,40316=>1000,40317=>1000,40318=>1000,40319=>1000,40320=>1000,40321=>1000,40322=>1000,40323=>1000,40324=>1000,40325=>1000,40326=>1000,40327=>1000,40328=>1000,40329=>1000,40330=>1000,40331=>1000,40332=>1000,40336=>1000,40338=>1000,40339=>1000,40340=>1000,40342=>1000,40343=>1000,40344=>1000,40345=>1000,40346=>1000,40347=>1000,40348=>1000,40349=>1000,40350=>1000,40351=>1000,40352=>1000,40353=>1000,40354=>1000,40355=>1000,40356=>1000,40357=>1000,40358=>1000,40359=>1000,40360=>1000,40361=>1000,40362=>1000,40363=>1000,40364=>1000,40365=>1000,40367=>1000,40369=>1000,40370=>1000,40371=>1000,40372=>1000,40373=>1000,40374=>1000,40375=>1000,40376=>1000,40377=>1000,40378=>1000,40379=>1000,40380=>1000,40381=>1000,40382=>1000,40383=>1000,40384=>1000,40385=>1000,40386=>1000,40387=>1000,40388=>1000,40389=>1000,40391=>1000,40392=>1000,40393=>1000,40394=>1000,40395=>1000,40396=>1000,40397=>1000,40398=>1000,40399=>1000,40400=>1000,40401=>1000,40402=>1000,40403=>1000,40404=>1000,40405=>1000,40406=>1000,40407=>1000,40408=>1000,40409=>1000,40410=>1000,40411=>1000,40412=>1000,40413=>1000,40414=>1000,40415=>1000,40417=>1000,40418=>1000,40419=>1000,40420=>1000,40421=>1000,40422=>1000,40424=>1000,40425=>1000,40427=>1000,40428=>1000,40429=>1000,40430=>1000,40431=>1000,40432=>1000,40434=>1000,40435=>1000,40436=>1000,40437=>1000,40438=>1000,40439=>1000,40440=>1000,40441=>1000,40442=>1000,40443=>1000,40444=>1000,40445=>1000,40446=>1000,40447=>1000,40448=>1000,40449=>1000,40450=>1000,40451=>1000,40452=>1000,40453=>1000,40454=>1000,40455=>1000,40457=>1000,40458=>1000,40459=>1000,40460=>1000,40461=>1000,40462=>1000,40463=>1000,40464=>1000,40465=>1000,40466=>1000,40467=>1000,40468=>1000,40469=>1000,40471=>1000,40472=>1000,40473=>1000,40474=>1000,40475=>1000,40476=>1000,40477=>1000,40478=>1000,40479=>1000,40565=>1000,40569=>1000,40570=>1000,40571=>1000,40572=>1000,40573=>1000,40575=>1000,40576=>1000,40577=>1000,40578=>1000,40579=>1000,40580=>1000,40581=>1000,40582=>1000,40583=>1000,40584=>1000,40585=>1000,40586=>1000,40587=>1000,40588=>1000,40589=>1000,40590=>1000,40592=>1000,40593=>1000,40594=>1000,40595=>1000,40596=>1000,40597=>1000,40598=>1000,40599=>1000,40600=>1000,40601=>1000,40602=>1000,40603=>1000,40604=>1000,40605=>1000,40606=>1000,40607=>1000,40608=>1000,40609=>1000,40610=>1000,40612=>1000,40613=>1000,40614=>1000,40615=>1000,40616=>1000,40617=>1000,40618=>1000,40619=>1000,40620=>1000,40621=>1000,40622=>1000,40623=>1000,40624=>1000,40625=>1000,40628=>1000,40629=>1000,40630=>1000,40631=>1000,40635=>1000,40636=>1000,40637=>1000,40638=>1000,40639=>1000,40640=>1000,40641=>1000,40642=>1000,40643=>1000,40644=>1000,40646=>1000,40647=>1000,40648=>1000,40652=>1000,40653=>1000,40654=>1000,40655=>1000,40656=>1000,40657=>1000,40659=>1000,40660=>1000,40661=>1000,40662=>1000,40664=>1000,40666=>1000,40667=>1000,40668=>1000,40669=>1000,40670=>1000,40671=>1000,40672=>1000,40674=>1000,40676=>1000,40677=>1000,40678=>1000,40679=>1000,40680=>1000,40683=>1000,40685=>1000,40686=>1000,40687=>1000,40688=>1000,40689=>1000,40690=>1000,40691=>1000,40692=>1000,40693=>1000,40694=>1000,40695=>1000,40696=>1000,40697=>1000,40698=>1000,40699=>1000,40700=>1000,40701=>1000,40702=>1000,40703=>1000,40704=>1000,40705=>1000,40706=>1000,40710=>1000,40711=>1000,40712=>1000,40713=>1000,40714=>1000,40718=>1000,40719=>1000,40720=>1000,40722=>1000,40723=>1000,40725=>1000,40726=>1000,40727=>1000,40728=>1000,40729=>1000,40730=>1000,40731=>1000,40732=>1000,40734=>1000,40736=>1000,40738=>1000,40739=>1000,40740=>1000,40741=>1000,40742=>1000,40743=>1000,40744=>1000,40745=>1000,40746=>1000,40747=>1000,40748=>1000,40749=>1000,40750=>1000,40751=>1000,40752=>1000,40753=>1000,40754=>1000,40755=>1000,40756=>1000,40757=>1000,40758=>1000,40759=>1000,40760=>1000,40761=>1000,40763=>1000,40765=>1000,40766=>1000,40768=>1000,40769=>1000,40770=>1000,40771=>1000,40772=>1000,40773=>1000,40774=>1000,40775=>1000,40776=>1000,40777=>1000,40778=>1000,40779=>1000,40780=>1000,40781=>1000,40782=>1000,40783=>1000,40784=>1000,40786=>1000,40787=>1000,40788=>1000,40789=>1000,40790=>1000,40791=>1000,40792=>1000,40793=>1000,40794=>1000,40795=>1000,40796=>1000,40797=>1000,40798=>1000,40799=>1000,40800=>1000,40801=>1000,40802=>1000,40803=>1000,40804=>1000,40805=>1000,40806=>1000,40807=>1000,40809=>1000,40810=>1000,40811=>1000,40812=>1000,40814=>1000,40815=>1000,40816=>1000,40817=>1000,40818=>1000,40820=>1000,40821=>1000,40822=>1000,40823=>1000,40824=>1000,40825=>1000,40826=>1000,40827=>1000,40830=>1000,40831=>1000,40845=>1000,40846=>1000,40848=>1000,40849=>1000,40850=>1000,40852=>1000,40853=>1000,40854=>1000,40855=>1000,40856=>1000,40857=>1000,40860=>1000,40863=>1000,40864=>1000,40866=>1000,40868=>1000,40869=>1000,40870=>1000,40871=>1000,40872=>1000,40873=>1000,40874=>1000,40875=>1000,40876=>1000,40877=>1000,40878=>1000,40879=>1000,40880=>1000,40881=>1000,40882=>1000,40883=>1000,40903=>1000,40904=>1000,40905=>1000,40906=>1000,40907=>1000,40912=>1000,63744=>1000,63745=>1000,63746=>1000,63747=>1000,63749=>1000,63750=>1000,63751=>1000,63755=>1000,63757=>1000,63765=>1000,63767=>1000,63770=>1000,63778=>1000,63789=>1000,63793=>1000,63799=>1000,63801=>1000,63802=>1000,63811=>1000,63815=>1000,63816=>1000,63818=>1000,63826=>1000,63838=>1000,63842=>1000,63845=>1000,63847=>1000,63858=>1000,63862=>1000,63864=>1000,63865=>1000,63870=>1000,63872=>1000,63878=>1000,63882=>1000,63886=>1000,63893=>1000,63900=>1000,63903=>1000,63925=>1000,63931=>1000,63933=>1000,63941=>1000,63942=>1000,63944=>1000,63960=>1000,63964=>1000,63965=>1000,63966=>1000,63968=>1000,63972=>1000,63975=>1000,63977=>1000,63988=>1000,63989=>1000,63994=>1000,63997=>1000,63999=>1000,64002=>1000,64005=>1000,64006=>1000,64007=>1000,64008=>1000,64010=>1000,64012=>1000,64013=>1000,64051=>1000,64052=>1000,64053=>1000,64058=>1000,64073=>1000,64075=>1000,64093=>1000,64094=>1000,64256=>720,64257=>675,64258=>687,64259=>1024,64260=>1036,65040=>1000,65041=>1000,65042=>1000,65043=>1000,65044=>1000,65045=>1000,65046=>1000,65047=>1000,65048=>1000,65049=>1000,65072=>1000,65073=>1000,65074=>1000,65075=>1000,65076=>1000,65077=>1000,65078=>1000,65079=>1000,65080=>1000,65081=>1000,65082=>1000,65083=>1000,65084=>1000,65085=>1000,65086=>1000,65087=>1000,65088=>1000,65089=>1000,65090=>1000,65091=>1000,65092=>1000,65093=>1000,65094=>1000,65095=>1000,65096=>1000,65097=>1000,65098=>1000,65099=>1000,65100=>1000,65101=>1000,65102=>1000,65103=>1000,65104=>1000,65105=>1000,65106=>1000,65108=>1000,65109=>1000,65110=>1000,65111=>1000,65112=>1000,65113=>1000,65114=>1000,65115=>1000,65116=>1000,65117=>1000,65118=>1000,65119=>1000,65120=>1000,65121=>1000,65122=>1000,65123=>1000,65124=>1000,65125=>1000,65126=>1000,65128=>1000,65129=>1000,65130=>1000,65131=>1000,65281=>1000,65282=>1000,65283=>1000,65284=>1000,65285=>1000,65286=>1000,65287=>1000,65288=>1000,65289=>1000,65290=>1000,65291=>1000,65292=>1000,65293=>1000,65294=>1000,65295=>1000,65296=>1000,65297=>1000,65298=>1000,65299=>1000,65300=>1000,65301=>1000,65302=>1000,65303=>1000,65304=>1000,65305=>1000,65306=>1000,65307=>1000,65308=>1000,65309=>1000,65310=>1000,65311=>1000,65312=>1000,65313=>1000,65314=>1000,65315=>1000,65316=>1000,65317=>1000,65318=>1000,65319=>1000,65320=>1000,65321=>1000,65322=>1000,65323=>1000,65324=>1000,65325=>1000,65326=>1000,65327=>1000,65328=>1000,65329=>1000,65330=>1000,65331=>1000,65332=>1000,65333=>1000,65334=>1000,65335=>1000,65336=>1000,65337=>1000,65338=>1000,65339=>1000,65340=>1000,65341=>1000,65342=>1000,65343=>1000,65344=>1000,65345=>1000,65346=>1000,65347=>1000,65348=>1000,65349=>1000,65350=>1000,65351=>1000,65352=>1000,65353=>1000,65354=>1000,65355=>1000,65356=>1000,65357=>1000,65358=>1000,65359=>1000,65360=>1000,65361=>1000,65362=>1000,65363=>1000,65364=>1000,65365=>1000,65366=>1000,65367=>1000,65368=>1000,65369=>1000,65370=>1000,65371=>1000,65372=>1000,65373=>1000,65374=>1000,65375=>1000,65376=>1000,65377=>500,65378=>500,65379=>500,65380=>500,65381=>500,65382=>500,65383=>500,65384=>500,65385=>500,65386=>500,65387=>500,65388=>500,65389=>500,65390=>500,65391=>500,65392=>500,65393=>500,65394=>500,65395=>500,65396=>500,65397=>500,65398=>500,65399=>500,65400=>500,65401=>500,65402=>500,65403=>500,65404=>500,65405=>500,65406=>500,65407=>500,65408=>500,65409=>500,65410=>500,65411=>500,65412=>500,65413=>500,65414=>500,65415=>500,65416=>500,65417=>500,65418=>500,65419=>500,65420=>500,65421=>500,65422=>500,65423=>500,65424=>500,65425=>500,65426=>500,65427=>500,65428=>500,65429=>500,65430=>500,65431=>500,65432=>500,65433=>500,65434=>500,65435=>500,65436=>500,65437=>500,65438=>500,65439=>500,65441=>920,65442=>920,65443=>920,65444=>920,65445=>920,65446=>920,65447=>920,65448=>920,65449=>920,65450=>920,65451=>920,65452=>920,65453=>920,65454=>920,65455=>920,65456=>920,65457=>920,65458=>920,65459=>920,65460=>920,65461=>920,65462=>920,65463=>920,65464=>920,65465=>920,65466=>920,65467=>920,65468=>920,65469=>920,65470=>920,65474=>920,65475=>920,65476=>920,65477=>920,65478=>920,65479=>920,65482=>920,65483=>920,65484=>920,65485=>920,65486=>920,65487=>920,65490=>920,65491=>920,65492=>920,65493=>920,65494=>920,65495=>920,65498=>920,65499=>920,65500=>920,65504=>1000,65505=>1000,65506=>1000,65507=>1000,65508=>1000,65509=>1000,65510=>1000,65512=>500,65513=>500,65514=>500,65515=>500,65516=>500,65517=>500,65518=>500); +// --- EOF --- diff --git a/fonts/Noto_Sans_TC/notosanstcb.z b/fonts/Noto_Sans_TC/notosanstcb.z new file mode 100644 index 0000000..6f63ebb Binary files /dev/null and b/fonts/Noto_Sans_TC/notosanstcb.z differ diff --git a/fonts/README.txt b/fonts/README.txt deleted file mode 100644 index aeb63ed..0000000 --- a/fonts/README.txt +++ /dev/null @@ -1,136 +0,0 @@ -Noto Sans Variable Font -======================= - -This download contains Noto Sans as both variable fonts and static fonts. - -Noto Sans is a variable font with these axes: - wdth - wght - -This means all the styles are contained in these files: - Noto_Sans/NotoSans-VariableFont_wdth,wght.ttf - Noto_Sans/NotoSans-Italic-VariableFont_wdth,wght.ttf - -If your app fully supports variable fonts, you can now pick intermediate styles -that aren’t available as static fonts. Not all apps support variable fonts, and -in those cases you can use the static font files for Noto Sans: - Noto_Sans/static/NotoSans_ExtraCondensed-Thin.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-ExtraLight.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-Light.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-Regular.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-Medium.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-SemiBold.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-Bold.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-ExtraBold.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-Black.ttf - Noto_Sans/static/NotoSans_Condensed-Thin.ttf - Noto_Sans/static/NotoSans_Condensed-ExtraLight.ttf - Noto_Sans/static/NotoSans_Condensed-Light.ttf - Noto_Sans/static/NotoSans_Condensed-Regular.ttf - Noto_Sans/static/NotoSans_Condensed-Medium.ttf - Noto_Sans/static/NotoSans_Condensed-SemiBold.ttf - Noto_Sans/static/NotoSans_Condensed-Bold.ttf - Noto_Sans/static/NotoSans_Condensed-ExtraBold.ttf - Noto_Sans/static/NotoSans_Condensed-Black.ttf - Noto_Sans/static/NotoSans_SemiCondensed-Thin.ttf - Noto_Sans/static/NotoSans_SemiCondensed-ExtraLight.ttf - Noto_Sans/static/NotoSans_SemiCondensed-Light.ttf - Noto_Sans/static/NotoSans_SemiCondensed-Regular.ttf - Noto_Sans/static/NotoSans_SemiCondensed-Medium.ttf - Noto_Sans/static/NotoSans_SemiCondensed-SemiBold.ttf - Noto_Sans/static/NotoSans_SemiCondensed-Bold.ttf - Noto_Sans/static/NotoSans_SemiCondensed-ExtraBold.ttf - Noto_Sans/static/NotoSans_SemiCondensed-Black.ttf - Noto_Sans/static/NotoSans-Thin.ttf - Noto_Sans/static/NotoSans-ExtraLight.ttf - Noto_Sans/static/NotoSans-Light.ttf - Noto_Sans/static/NotoSans-Regular.ttf - Noto_Sans/static/NotoSans-Medium.ttf - Noto_Sans/static/NotoSans-SemiBold.ttf - Noto_Sans/static/NotoSans-Bold.ttf - Noto_Sans/static/NotoSans-ExtraBold.ttf - Noto_Sans/static/NotoSans-Black.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-ThinItalic.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-ExtraLightItalic.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-LightItalic.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-Italic.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-MediumItalic.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-SemiBoldItalic.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-BoldItalic.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-ExtraBoldItalic.ttf - Noto_Sans/static/NotoSans_ExtraCondensed-BlackItalic.ttf - Noto_Sans/static/NotoSans_Condensed-ThinItalic.ttf - Noto_Sans/static/NotoSans_Condensed-ExtraLightItalic.ttf - Noto_Sans/static/NotoSans_Condensed-LightItalic.ttf - Noto_Sans/static/NotoSans_Condensed-Italic.ttf - Noto_Sans/static/NotoSans_Condensed-MediumItalic.ttf - Noto_Sans/static/NotoSans_Condensed-SemiBoldItalic.ttf - Noto_Sans/static/NotoSans_Condensed-BoldItalic.ttf - Noto_Sans/static/NotoSans_Condensed-ExtraBoldItalic.ttf - Noto_Sans/static/NotoSans_Condensed-BlackItalic.ttf - Noto_Sans/static/NotoSans_SemiCondensed-ThinItalic.ttf - Noto_Sans/static/NotoSans_SemiCondensed-ExtraLightItalic.ttf - Noto_Sans/static/NotoSans_SemiCondensed-LightItalic.ttf - Noto_Sans/static/NotoSans_SemiCondensed-Italic.ttf - Noto_Sans/static/NotoSans_SemiCondensed-MediumItalic.ttf - Noto_Sans/static/NotoSans_SemiCondensed-SemiBoldItalic.ttf - Noto_Sans/static/NotoSans_SemiCondensed-BoldItalic.ttf - Noto_Sans/static/NotoSans_SemiCondensed-ExtraBoldItalic.ttf - Noto_Sans/static/NotoSans_SemiCondensed-BlackItalic.ttf - Noto_Sans/static/NotoSans-ThinItalic.ttf - Noto_Sans/static/NotoSans-ExtraLightItalic.ttf - Noto_Sans/static/NotoSans-LightItalic.ttf - Noto_Sans/static/NotoSans-Italic.ttf - Noto_Sans/static/NotoSans-MediumItalic.ttf - Noto_Sans/static/NotoSans-SemiBoldItalic.ttf - Noto_Sans/static/NotoSans-BoldItalic.ttf - Noto_Sans/static/NotoSans-ExtraBoldItalic.ttf - Noto_Sans/static/NotoSans-BlackItalic.ttf - -Get started ------------ - -1. Install the font files you want to use - -2. Use your app's font picker to view the font family and all the -available styles - -Learn more about variable fonts -------------------------------- - - https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts - https://variablefonts.typenetwork.com - https://medium.com/variable-fonts - -In desktop apps - - https://theblog.adobe.com/can-variable-fonts-illustrator-cc - https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts - -Online - - https://developers.google.com/fonts/docs/getting_started - https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide - https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts - -Installing fonts - - MacOS: https://support.apple.com/en-us/HT201749 - Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux - Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows - -Android Apps - - https://developers.google.com/fonts/docs/android - https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts - -License -------- -Please read the full license text (OFL.txt) to understand the permissions, -restrictions and requirements for usage, redistribution, and modification. - -You can use them in your products & projects – print or digital, -commercial or otherwise. - -This isn't legal advice, please consider consulting a lawyer and see the full -license for all details. diff --git a/report_download.php b/report_download.php index 4041e41..ebfcc08 100644 --- a/report_download.php +++ b/report_download.php @@ -24,6 +24,7 @@ use mod_verbalfeedback\repository\instance_repository; use mod_verbalfeedback\service\report_service; +use mod_verbalfeedback\utils\font; use mod_verbalfeedback\utils\graph_utils; require_once(__DIR__ . '/../../config.php'); @@ -80,8 +81,10 @@ $reportservice = new report_service(); $report = $reportservice->create_report($instanceid, $touserid); +$fonthandler = new font($report, $touser); + $templatedata = new mod_verbalfeedback\output\report_download($report, $course->fullname, $course->startdate, $course->enddate, - $instancename, $touser); + $instancename, $touser, $fonthandler); $renderer = $PAGE->get_renderer('mod_verbalfeedback'); $html = $renderer->render($templatedata); @@ -139,12 +142,7 @@ $pdf->AddPage(); // Set font. -$fontdir = $CFG->dirroot . '/mod/verbalfeedback/fonts/'; -$pdf->AddFont('CustomFont', '', $fontdir . 'notosans.php'); -$pdf->AddFont('CustomFont', 'B', $fontdir . 'notosansb.php'); -$pdf->AddFont('CustomFont', 'I', $fontdir . 'notosansi.php'); -$pdf->AddFont('CustomFont', 'BI', $fontdir . 'notosansbi.php'); -$pdf->SetFont('CustomFont', '', 12); +$fonthandler->set_font_for_pdf($pdf); // Image size from logo image. $image = @getimagesize($imagefile); diff --git a/templates/report_download.mustache b/templates/report_download.mustache index bc19a58..9668783 100644 --- a/templates/report_download.mustache +++ b/templates/report_download.mustache @@ -42,7 +42,7 @@ @@ -82,11 +87,11 @@ {{#str}}teachers, mod_verbalfeedback{{/str}} - {{ teachers }} + {{ teachers }} {{#str}}student, mod_verbalfeedback{{/str}} - {{ student }} + {{ student }}

@@ -105,7 +110,7 @@
- {{ name }}{{avg}} + {{ name }}{{avg}} {{#str}}weightedaverage, mod_verbalfeedback{{/str}}: {{average}}