diff --git a/Grouped_ETSI_Documents_with_Document_Number_by_Working_Group.csv b/Grouped_ETSI_Documents_with_Document_Number_by_Working_Group.csv new file mode 100644 index 0000000000000000000000000000000000000000..7eb616a0d478a34f4ed8a77bd0f4ab9f17dbe3aa --- /dev/null +++ b/Grouped_ETSI_Documents_with_Document_Number_by_Working_Group.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93daf53cf1a66e4be6e708697ac0e51c0f520b7f6d3de503e0b0d47305aedb5e +size 1965944 diff --git a/README.md b/README.md index 1f48c32e9df46945f0ac7142bfda001a1beb4747..272bccd7ac677b64b5e3ab0f402b5b0f8c715f3e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,173 @@ ---- -license: cc-by-nc-4.0 ---- +--- +license: cc-by-nc-4.0 +language: +- en +tags: +- telecom +- LLM +- ETSI +size_categories: +- 1B\n", - "\"3GPP\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Total size of .md files in the repository: 4238.73 MB\n", - "Total words in .md files in the repository: 534914482\n", - "Rel-11: Total size of .md files: 256.03 MB, Total words: 32817026\n", - "Rel-10: Total size of .md files: 215.36 MB, Total words: 27820131\n", - "Rel-12: Total size of .md files: 280.84 MB, Total words: 36218498\n", - "Rel-18: Total size of .md files: 594.03 MB, Total words: 73825439\n", - "Rel-14: Total size of .md files: 340.49 MB, Total words: 43484442\n", - "Rel-19: Total size of .md files: 9.28 MB, Total words: 1221658\n", - "Rel-15: Total size of .md files: 523.03 MB, Total words: 65165959\n", - "Rel-13: Total size of .md files: 353.18 MB, Total words: 45118710\n", - "Rel-16: Total size of .md files: 548.83 MB, Total words: 69425169\n", - "Rel-8: Total size of .md files: 186.79 MB, Total words: 24117232\n", - "Rel-9: Total size of .md files: 194.27 MB, Total words: 24953249\n", - "Rel-17: Total size of .md files: 736.61 MB, Total words: 90746969\n" - ] - } - ], - "source": [ - "import os\n", - "import json\n", - "\n", - "def bytes_to_megabytes(bytes_value):\n", - " return bytes_value / (1024 * 1024)\n", - "\n", - "def count_words_in_file(file_path):\n", - " with open(file_path, 'r', encoding='utf-8') as file:\n", - " contents = file.read()\n", - " words = contents.split()\n", - " return len(words)\n", - "\n", - "def calculate_md_sizes_and_word_count(directory):\n", - " report = {\"total_size\": 0, \"total_words\": 0, \"releases\": {}}\n", - "\n", - " for release in os.listdir(directory):\n", - " release_path = os.path.join(directory, release)\n", - " if os.path.isdir(release_path):\n", - " release_size, release_word_count = 0, 0\n", - " report[\"releases\"][release] = {\"total_size\": 0, \"total_words\": 0, \"versions\": {}}\n", - "\n", - " for version in os.listdir(release_path):\n", - " version_path = os.path.join(release_path, version)\n", - " if os.path.isdir(version_path):\n", - " version_size, version_word_count = 0, 0\n", - "\n", - " for file in os.listdir(version_path):\n", - " if file.endswith('.md'):\n", - " file_path = os.path.join(version_path, file)\n", - " version_size += os.path.getsize(file_path)\n", - " version_word_count += count_words_in_file(file_path)\n", - "\n", - " report[\"releases\"][release][\"versions\"][version] = {\n", - " \"size_mb\": bytes_to_megabytes(version_size),\n", - " \"words\": version_word_count\n", - " }\n", - " report[\"releases\"][release][\"total_size\"] += version_size\n", - " report[\"releases\"][release][\"total_words\"] += version_word_count\n", - " release_size += version_size\n", - " release_word_count += version_word_count\n", - "\n", - " report[\"releases\"][release][\"total_size\"] = bytes_to_megabytes(release_size)\n", - " report[\"releases\"][release][\"total_words\"] = release_word_count\n", - " report[\"total_size\"] += release_size\n", - " report[\"total_words\"] += release_word_count\n", - "\n", - " report[\"total_size\"] = bytes_to_megabytes(report[\"total_size\"])\n", - " return report\n", - "\n", - "def save_report_to_json(report, filename):\n", - " with open(filename, 'w') as file:\n", - " json.dump(report, file, indent=4)\n", - "\n", - "def print_summary(report):\n", - " print(f\"Total size of .md files in the repository: {report['total_size']:.2f} MB\")\n", - " print(f\"Total words in .md files in the repository: {report['total_words']}\")\n", - " for release, data in report['releases'].items():\n", - " print(f\"{release}: Total size of .md files: {data['total_size']:.2f} MB, Total words: {data['total_words']}\")\n", - "\n", - "# Main execution\n", - "directory_path = './3GPP-clean'\n", - "md_sizes_report = calculate_md_sizes_and_word_count(directory_path)\n", - "json_filename = 'md_sizes_word_count_report.json'\n", - "save_report_to_json(md_sizes_report, json_filename)\n", - "print_summary(md_sizes_report)\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.12" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/data/part6/.gitattributes b/data/part6/.gitattributes deleted file mode 100644 index 5c926c1270d3259ff6948f14ceb4342f7f168687..0000000000000000000000000000000000000000 --- a/data/part6/.gitattributes +++ /dev/null @@ -1,60 +0,0 @@ -*.7z filter=lfs diff=lfs merge=lfs -text -*.arrow filter=lfs diff=lfs merge=lfs -text -*.bin filter=lfs diff=lfs merge=lfs -text -*.bz2 filter=lfs diff=lfs merge=lfs -text -*.ckpt filter=lfs diff=lfs merge=lfs -text -*.ftz filter=lfs diff=lfs merge=lfs -text -*.gz filter=lfs diff=lfs merge=lfs -text -*.h5 filter=lfs diff=lfs merge=lfs -text -*.joblib filter=lfs diff=lfs merge=lfs -text -*.lfs.* filter=lfs diff=lfs merge=lfs -text -*.lz4 filter=lfs diff=lfs merge=lfs -text -*.mlmodel filter=lfs diff=lfs merge=lfs -text -*.model filter=lfs diff=lfs merge=lfs -text -*.msgpack filter=lfs diff=lfs merge=lfs -text -*.npy filter=lfs diff=lfs merge=lfs -text -*.npz filter=lfs diff=lfs merge=lfs -text -*.onnx filter=lfs diff=lfs merge=lfs -text -*.ot filter=lfs diff=lfs merge=lfs -text -*.parquet filter=lfs diff=lfs merge=lfs -text -*.pb filter=lfs diff=lfs merge=lfs -text -*.pickle filter=lfs diff=lfs merge=lfs -text -*.pkl filter=lfs diff=lfs merge=lfs -text -*.pt filter=lfs diff=lfs merge=lfs -text -*.pth filter=lfs diff=lfs merge=lfs -text -*.rar filter=lfs diff=lfs merge=lfs -text -*.safetensors filter=lfs diff=lfs merge=lfs -text -saved_model/**/* filter=lfs diff=lfs merge=lfs -text -*.tar.* filter=lfs diff=lfs merge=lfs -text -*.tar filter=lfs diff=lfs merge=lfs -text -*.tflite filter=lfs diff=lfs merge=lfs -text -*.tgz filter=lfs diff=lfs merge=lfs -text -*.wasm filter=lfs diff=lfs merge=lfs -text -*.xz filter=lfs diff=lfs merge=lfs -text -*.zip filter=lfs diff=lfs merge=lfs -text -*.zst filter=lfs diff=lfs merge=lfs -text -*tfevents* filter=lfs diff=lfs merge=lfs -text -# Audio files - uncompressed -*.pcm filter=lfs diff=lfs merge=lfs -text -*.sam filter=lfs diff=lfs merge=lfs -text -*.raw filter=lfs diff=lfs merge=lfs -text -# Audio files - compressed -*.aac filter=lfs diff=lfs merge=lfs -text -*.flac filter=lfs diff=lfs merge=lfs -text -*.mp3 filter=lfs diff=lfs merge=lfs -text -*.ogg filter=lfs diff=lfs merge=lfs -text -*.wav filter=lfs diff=lfs merge=lfs -text -# Image files - uncompressed -*.bmp filter=lfs diff=lfs merge=lfs -text -*.gif filter=lfs diff=lfs merge=lfs -text -*.png filter=lfs diff=lfs merge=lfs -text -*.tiff filter=lfs diff=lfs merge=lfs -text -# Image files - compressed -*.jpg filter=lfs diff=lfs merge=lfs -text -*.jpeg filter=lfs diff=lfs merge=lfs -text -*.webp filter=lfs diff=lfs merge=lfs -text -# Video files - compressed -*.mp4 filter=lfs diff=lfs merge=lfs -text -*.webm filter=lfs diff=lfs merge=lfs -text -*.csv filter=lfs diff=lfs merge=lfs -text -*.pdf filter=lfs diff=lfs merge=lfs -text diff --git a/data/part6/ETSI-metadata.md b/data/part6/ETSI-metadata.md deleted file mode 100644 index 91ef6853b651f4e1db0e45d007687f7bf359d433..0000000000000000000000000000000000000000 --- a/data/part6/ETSI-metadata.md +++ /dev/null @@ -1,439 +0,0 @@ - ## Select Technical Committees - -- 3GPP CN - Technical Specification Group - Core Networks -- 3GPP CN 1 - MM/CC/SM (lu) -- 3GPP CN 2 - CAMEL -- 3GPP CN 3 - Interworking (with external networks) -- 3GPP CN 4 - MAP/GTP/BCH/SS -- 3GPP CN 5 - Open Service Access -- 3GPP CN SS - Supplementary Services -- 3GPP CT - Technical Specification Group Core Network and Terminals -- 3GPP CT 1 - MM/CC/SM [lu] (formely CN1) -- 3GPP CT 3 - Interworking with external networks (formely CN3) -- 3GPP CT 4 - MAP/CAMEL/GTP/BCH/SS/TrFO/IMS/GUP/WLAN (formely CN4) -- 3GPP CT 5 - OSA (formely CN5) -- 3GPP CT 6 - Smart Card Application Aspects (formely T3) -- 3GPP GERAN - Technical Specification Group - GSM/EDGE Radio Access Network -- 3GPP GERAN 1 - Radio aspects -- 3GPP GERAN 2 - Protocol aspects -- 3GPP GERAN 3 - Base station testing and O&M -- 3GPP GERAN 3new - Terminal Testing -- 3GPP GERAN 4 - Terminal testing - Radio Aspects -- 3GPP GERAN 5 - Terminal Testing - Protocol Aspects -- 3GPP RAN - Technical Specification Group Radio Access Network -- 3GPP RAN 1 - Radio layer 1 specification -- 3GPP RAN 2 - Radio layer 2 specification and Radio layer 3 RR specification -- 3GPP RAN 3 - lub specification, lur specification, lu specification and UTRAN & O&M -- 3GPP RAN 4 - Specification for radio performance -- 3GPP RAN 5 - Mobile Terminal Conformance Testing (formely T1) -- 3GPP RAN 6 - Legacy RAN radio and protocol -- 3GPP SA - Technical Specification Group Services and System Aspects -- 3GPP SA 1 - Services -- 3GPP SA 2 - Architecture -- 3GPP SA 3 - Security -- 3GPP SA 4 - Codec -- 3GPP SA 5 - Telecom Management -- 3GPP SA 6 - Mission-critical applications -- 3GPP T 1 - Mobile Terminal Conformance testing -- 3GPP T 2 - Mobile Terminal Services & Capabilities -- 3GPP T 3 - Smart Card Application Aspects -- AERO - Aeronautics -- AFI - Autonomic network engineering for the self-managing Future Internet -- ARF - Augmented Reality Framework -- AT - Access and Terminals -- AT Analogue - AT Analogue -- AT Digital - AT Digital -- AT Features - AT Features -- AT Install - AT Task Group on Installations and Cabling -- AT NGN@Home - AT Working Group on Home Networking -- ATA - Analogue Terminals & Access -- ATA-c - Conventional Technologies -- ATM - Advanced Testing Methods -- ATM 01 - Conformance Testing Methodologies -- ATM 02 - Conformance Testing Environment -- ATTM - Access, Terminals, Transmission and Multiplexing -- ATTM AT2 - Infrastructure, Physical Networks & Communication Systems -- ATTM AT3 - Integrated broadband cable and television networks -- ATTM SDMC - Sustainable Digital Multiservice Communities -- ATTM TM4 - Fixed Radio Systems -- ATTM TM6 - Wireline Access Network Systems -- BOARD - Board -- BRAN - Broadband Radio Access Networks -- BRAN 10 - RES 10 migrated WIs -- BROADCAST - EBU/CENELEC/ETSI on Broadcasting -- BT 01 - Private Networking Aspects -- BT 02 - Subscriber Complex Installation -- BTC - Business TeleCommunications -- BTC 01 - Private Networking Aspects -- BTC 02 - Subscriber Complex Installation -- BTC 04 - Private Networking Aspects of High Speed Business Telecommunications -- CABLE - Integrated broadband cable telecommunication networks -- CABLE WG1 - Architecture, Interfaces, protocols -- CABLE WG2 - HFC Distribution, Installation, Operational Best Practices -- CABLE WG3 - Engineering, Efficiency and Sustainability -- CABLE WG4 - Network, Fault, Monitoring and Performance Management and Test & Measu -- CCM - intelligent Compound Content Management -- CDM - european Common information sharing environment service and Data Model -- CIM - cross-cutting Context Information Management -- CLOUD - CLOUD -- CN - Corporate Networks -- CN 03 - CN-MOB: Mobility -- CN 07 - CN-PERF: Performance -- CYBER - Cyber Security -- CYBER QSC - Quantum-Safe Cryptography -- DECT - Digital Enhanced Cordless Telecommunications (DECT) -- DECT 01 - GSM interworking -- DECT 02 - Data applications -- DECT 03 - Network aspects -- DECT 04 - DECT Testing aspects -- DECT 05 - Radio and speech experts -- DECT 06 - Authentication module -- DECT A - DECT Non Testing Aspects -- DECT CI - Common Interface -- DECT NewGen - DECT NewGeneration -- DECT ULE - DECT-Ultra-Low-Energy -- DECT URLLC - DECT-Ultra Reliable Low Latency Communications -- DTA - Digital Terminals & Access -- E2NA - End-to-End Network Architectures -- E4P - Europe for Privacy-Preserving Pandemic Protection -- EASI - ETSI Project ATM Services and Inter-operability -- ECI - Embedded Common Interface for exchangeable CA/DRM solutions -- Ecma - Standardizing information and communications systems -- EE - Environmental Engineering -- EE 01 - EE Environmental Conditions -- EE 02 - EE Power Supply -- EE 03 - Mechanical Structure -- EE 04 - Electromagnetic Compatibility -- EE EEPS - EE Eco Environmental Product Standards -- EE M-ICT - Mobile ICT devices -- EE TMG - EE Thermal Management Group -- eHEALTH - eHEALTH -- EMTEL - Emergency Communications -- ENI - Experiential Networked Intelligence -- ERM - EMC and Radio Spectrum Matters -- ERM GSMOBA - ERM/MSG Joint group on GSM onboard aircraft -- ERM JTFEA - JOINED TASK FORCE ERM AERO -- ERM JWG CLC - Joint Working Group CENELEC 210 -- ERM RP01 - Maritime Radio -- ERM RP02 - Land Mobile Radio A -- ERM RP04 - Land Mobile Radio B -- ERM RP05 - Aeronautical Radio -- ERM RP08 - Land Mobile Radio C -- ERM RP11 - Radio Site Engineering -- ERM TFES - Task Force for ERM and MSG for Harmonized Standards for IMT-2000 -- ERM TG04 - ERM Automotive EMC -- ERM TG11 - Wideband Data Systems -- ERM TG13 - Cordless Telephony -- ERM TG14 - Notification of Radio Interfaces under the Article 4.2 of R&TTE Direct -- ERM TG17 - ERM Standards for PMSE and broadcast equipment/services -- ERM TG17 WG1 - ERM Analogue and Digital Television -- ERM TG17 WG2 - ERM Analogue and Digital Sound Broadcasting -- ERM TG17 WG3 - ERM Radio Microphones, Cordless Audio and Audio Links -- ERM TG17 WG4 - ERM Professional and Domestic Vision Links -- ERM TG17 WG5 - ERM Active TV Reception -- ERM TG20 - Equipment Integration -- ERM TG23 - Close Range Inductive Data Communications -- ERM TG25 - ERM Aeronautical -- ERM TG27 - ERM Radio Site Engineering -- ERM TG28 - ERM Generic SRD's -- ERM TG29 - ERM Road Transport & Telematics (Joint with CEN TC 278) -- ERM TG30 - ERM Wireless Medical Devices -- ERM TG31A - ERM Ultra Wide Band for Short Range Devices -- ERM TG31C - Ultra Wide Band Sensors -- ERM TG32 - ERM PMR -- ERM TG33 - ERM Measurement methods and their Uncertainties -- ERM TG34 - ERM RF Identification Devices -- ERM TG36 - ERM Avalanche Beacons -- ERM TG37 - ERM Intelligent Transport Systems -- ERM TG38 - CDMA PAMR -- ERM TG39 - Code Division Multiple Access (CDMA) -- ERM TG41 - Wireless Industrial Applications -- ERM TG5 - Maritime EMC Standards for Global Application -- ERM TG8 - Study re: the interference potential of CB radio at 27 MHz -- ERM TGAERO - Aeronautics -- ERM TGDMR - Digital Mobile Radio -- ERM TGMARINE - ERM Maritime and radio amateur activities -- ERM TGRx - Receiver parameters -- ERM TGSRR - ERM Automotive and surveillance radar -- ERM TGTLPR - Tank Level Probing Radar -- ERM TGUWB - Ultra Wide Band -- ERM WGEMC - ERM Electromagnetic Compatibility -- ERM WGRM - ERM Radio Matters -- ESI - Electronic Signatures and Trust Infrastructures -- ETI - Encrypted Traffic Integration -- F5G - Fifth Generation Fixed Network -- GA - General Assembly -- HF - Human Factors -- HF 01 - Telecommunication Services -- HF 02 - People with Special Needs -- HF 03 - Usability Evaluation -- ICC - Integrated Circuit(s) Cards -- IMCC - ISDN Management and Coordination Committee -- INS - Identity and access management for Networks and Services -- INT - Core Network and Interoperability Testing -- INT AFI - Evolution of Management towards Autonomic Future Internet -- IP6 - IPv6 integration -- IPE - IPv6 Enhanced innovation -- IPRC - Intellectual Property Rights Committee -- ISI - Information Security Indicators -- ISM - ISDN Standards Management -- ITS - Intelligent Transport Systems -- ITS WG1 - Application Requirements and Services -- ITS WG2 - Architecture and Cross Layer -- ITS WG3 - Transport and Network -- ITS WG4 - Media and Medium related -- ITS WG5 - Security -- LI - Lawful Interception -- LIS - Localisation Industry Standards -- LTN - Low Throughput Networks -- MBC - Mobile and Broadcast Convergence -- MCD - Media Content Distribution -- MCD CDN-I - MCD CDN Interconnection -- M-COMM - Mobile Commerce -- M-COMM 02 - Payment and security aspects -- MEC - Multi-access Edge Computing -- MEC DECODE - Deployment and ECOsystem DEvelopment -- MEC IEG - Industry Enabling Group -- MESA SA - MESA Services and Applications -- MESA SYS - MESA System -- MMG - Multimedia Management Group -- MOI - Measurement Ontology for IP traffic -- MSG - Mobile Standards Group -- MSG EVAL - Evaluation -- MSG GSM - Working Group for GSM -- MSG TFES - Task Force for European Standards for IMT-2000 -- MTA - Multimedia Terminals & Applications -- MTA 01 - Multimedia Terminal Application Architecture -- MTA 03 - Services Integration & Interworking -- MTA 04 - Co-operative Document Handling & File Transfer -- MTC - Mobile Thin Client -- MTS - Methods for Testing & Specification -- MTS 01 - Conformance Testing Methodologies -- MTS 02 - Conformance Testing Environment -- MTS IPT - IP Testing Group -- MTS TDL - Test Description Language -- MTS TST - Testing -- mWT - millimetre Wave Transmission -- NA - Network Aspects -- NA 01 - User Interfaces, Services and Charging -- NA 02 - Numbering, Addressing, Routeing & Interworking -- NA 04 - Network Architecture, Operations, Maintenance, Principle & Performance -- NA 05 - Broadband Networks -- NA 06 - Network Intelligence and Universal Mobility -- NA 07 - Universal Personal Telecommunications -- NA 08 - Architecture, Interworking and Interconnection and GII/Internet -- NFV - Network Functions Virtualisation -- NFV EVE - Evolution and Ecosystem -- NFV IFA - Interfaces and Architecture -- NFV INF - Architecture of the Virtualisation Infrastructure -- NFV MAN - Management & Orchestration -- NFV PER - Performance & Portability -- NFV REL - Reliability & Availability -- NFV SEC - Security -- NFV SOL - Solutions -- NFV SWA - Software Architecture -- NFV TST - Testing, Implementation, and Open Source Working Group -- NGP - Next Generation Protocols -- NIN - Non-IP Networking -- NTECH - Network Technologies -- NTECH AFI - Evolution of Management towards Autonomic Future Internet -- OCG - Operational Co-ordination Group -- OCG ECN&S - Electronic Communications Networks & Services -- OCG eHealth - eHealth Starter Group -- OCG EMTEL - OCG ad-hoc group on Emergency Telecommunications -- OEU - Operational energy Efficiency for Users -- oneM2M - oneM2M -- ORI - Open Radio equipment Interface -- OSG - Open Smart Grid -- PDL - Permissioned Distributed Ledger -- PLT - Powerline Telecommunications -- PS 01 - Services and Facilities -- PS 02 - ERMES Radio Sub-System -- PS 03 - Network Aspects of ERMES -- PTS - Pay Terminals & Systems -- QKD - Quantum Key Distribution -- QSC - Quantum Safe Cryptography -- RES - Radio Equipment & Systems -- RES 01 - Maritime Mobile -- RES 02 - Land Mobile -- RES 03 - DECT -- RES 04 - Paging Systems -- RES 05 - Terrestrial Flight Telecommunication System -- RES 07 - DSRR -- RES 08 - Low Power Devices -- RES 09 - EMC -- RES 10 - Radio LAN -- RES 11 - Radio Site Engineering -- RIS - Reconfigurable Intelligent Surfaces -- RRS - Reconfigurable Radio Systems -- RRS 01 - RRS System Aspects & Cognitive functionalities -- RRS 02 - REA - Reconfigurable Radio Equipment Architecture -- RRS 03 - RRS Security, Certification & Declaration of Conformity -- RRS 04 - Civil Security & Inter-Domain Synergies -- RT - Railway telecommunications -- RT EGSM-R - Extended-GSM-R -- RT JTFIR - Joint Task Force ITS RT -- SAFETY - Safety -- SAFETY WGRADIO - Safety Working Group RADIO -- SAGE - Security Algorithms Group of Experts -- SAI - Securing Artificial Intelligence TC -- SAI_ISG - Securing Artificial Intelligence -- SEC - Security -- SEC ESI - Electronic Signatures and Infrastructure -- SEC LI - Lawful Interception -- SES - Satellite Earth Stations & Systems -- SES 02 - RF and IF Equipment -- SES 03 - Interaction & Control Monitoring Functions -- SES 04 - TV and Sound Programmes Equipment -- SES 05 - E/S for Mobile Services -- SES AES - SES WG on Aeronautical Satellite Earth Stations -- SES ASSC - Autonomous Satellite Signalling Channel -- SES BSM - SES Broadband Satellite Multimedia -- SES ECSS - SES WG on European Co-operation for Space Standardisation -- SES GMR - SES WG on the GEO Mobile Radio Interfaces -- SES GSO S-PCN - WG on GSO S-PCN -- SES HARM - SES WG on R&TTE dir. 99/5/EC and and RED dir. 2014/53/EU -- SES KA-BAND - WG on Ka Band Earth Stations -- SES Ku-Band AES - SES WG on Ku-Band Satellite Aircraft Earth Stations -- SES MAR ESV - Maritime & Railways Satellite Earth Stations on Board Vessels & Trains -- SES MSS - SES WG on Mobile Satellite Systems -- SES SatEC - Satellite Emergency Communications -- SES SCN - Satellite Communications and Navigation -- SES SDR - SES Satellite Digital Radio -- SES S-UMTS - SES WG on the Satellite Component of UMTS/IMT-2000 -- SET - Secure Element Technologies -- SET REQ - SET-REQ -- SET TEC - SET-TEC -- SET TEST - SET TEST -- SmartBAN - Smart Body Area Network -- SmartM2M - Smart M2M -- SMG - Special Mobile Group -- SMG 01 - Services & Facilities -- SMG 02 - Radio -- SMG 03 - Network Aspects -- SMG 04 - Data Services -- SMG 05 - Universal Mobile Telecommunications System -- SMG 06 - Operations & Maintenance -- SMG 07 - Mobile Station (MS) Testing -- SMG 08 - Base Station System (BSS) Testing (GSM 11.20) -- SMG 09 - IC Card Aspects -- SMG 10 - Security Group -- SMG 11 - Speech Aspects -- SMG 12 - System Architecture -- SMT - Surface Mount Technique -- SPAN - Services and Protocols for Advanced Networks -- SPAN 01 - Network Signalling -- SPAN 02 - Numbering/Addressing, Routeing and Services -- SPAN 02 WP2 - ISDN/PSTN and IN services and mobility -- SPAN 03 - IN protocols -- SPAN 05 1 - Basic call control protocols -- SPAN 05 3 - Conformance testing -- SPAN 05 4 - Supplementary services -- SPAN 05 5 - B-ISDN, layer 3 -- SPAN 06 - Network Intelligence and Universal Mobility -- SPAN 06 1 - Service modelling -- SPAN 06 4 (SG) - Security -- SPAN 06 5 (UMTS) - UMTS task force -- SPAN 06 SPAR - Service Provider Access Requirements -- SPAN 08 - Architecture, interworking and interconnection, GII/Internet -- SPAN 09 - Access Networks and Service Node Interfaces -- SPAN 11 - SPAN Services, Applications, Numbering, Naming and Addressing (SANNA) -- SPAN 12 - Applications Interfaces for Service Providers and Network Operators -- SPAN 13 - SPAN Peer-to-Peer Control Protocol (PTPCP) -- SPAN 14 - SPAN Overall Network and System Architecture (ONSA) -- SPAN 15 - SPAN Network Management -- SPS - Signalling Protocols -- SPS 01 - Network Signalling -- SPS 02 - Signalling Network & Mobility Applications -- SPS 02 A - Co-ordination matters and TC -- SPS 02 B - Supporting protocols and S-AAL -- SPS 02 D - OMAP -- SPS 03 - IN protocols -- SPS 03 1 - Broadband Switching -- SPS 03 3 - Technical Parameters -- SPS 03 4 - Intelligent Network -- SPS 05 - Digital access signalling -- SPS 05 1 - Basic Call Control Protocols -- SPS 05 3 - Conformance Testing -- SPS 05 4 - Supplementary Services -- SPS 05 5 - Broadband ISDN, Layer 3 -- SPS 09 - Access Networks and Service Node Interfaces -- STQ - Speech and multimedia Transmission Quality -- STQ AURORA - STQ Aurora Project -- STQ MOBILE - STQ Mobile -- TCCE - TETRA and Critical Communications Evolution -- TCCE 01 - TCCE User Requirements / Services -- TCCE 02 - Air Interface / Radio aspects -- TCCE 03 - TCCE Air Interface and Network Protocols -- TCCE 04 - TCCE High Speed Data -- TCCE 05 - TCCE Voice coding -- TCCE 06 - TCCE Security -- TCCE 07 - SIM Card -- TCCE 08 - TCCE Off-network services -- TCCE 4 close - Packet Data Optimised -- TE - Terminal Equipment -- TE 01 - Telematics: Videotex and Multimedia Information Retrieval Services -- TE 02 - Telematics: Facsimile, Document Handling and Transfer -- TE 04 - Audiovisual and Voice Terminals -- TE 05 - General Terminal Access Requirements -- TE 06 - Directory Systems -- TE 07 - Lower Layer Protocols -- TE 09 - Card Terminal -- TE 10 - Multimedia Management Group -- THz - TeraHertz technology -- TIPHON - Telecommunications and Internet Protocol Harmonization Over Networks -- TIPHON 01 - TIPHON Requirements, charging and security matters -- TIPHON 02 - TIPHON Architecture models and interfaces -- TIPHON 03 - TIPHON Call control matters -- TIPHON 04 - TIPHON Naming and address translation issues -- TIPHON 05 - TIPHON Quality of service aspects -- TIPHON 06 - TIPHON Verification, demonstration and implementation matters -- TIPHON 07 - TIPHON Wireless and Mobility aspects (DORMANT) -- TIPHON 08 - TIPHON Security -- TISPAN - Telecoms & Internet converged Services & Protocols for Advanced Networks -- TISPAN 01 - TISPAN Services -- TISPAN 02 - TISPAN Architecture -- TISPAN 03 - TISPAN Protocols -- TISPAN 04 - TISPAN Numbering Addressing and routing -- TISPAN 05 - TISPAN NGN Home Networking -- TISPAN 05 - TISPAN QoS -- TISPAN 06 - TISPAN Testing -- TISPAN 07 - TISPAN Security -- TISPAN 08 - TISPAN Network Management -- TM - Transmission & Multiplexing -- TM 01 - TM Core networks, fibres and cables -- TM 01 1 - TM Cabled fibres and passive optical components -- TM 01 3 - TM Transport Equipment, Systems and Interfaces -- TM 02 - Transmission Networks Management, Performance -- TM 03 - Interfaces, architecture and functional requirements of transport networks -- TM 04 - TM Fixed Radio Systems -- TM 04 1 - TM Point-to-Point Systems -- TM 04 2 - TM Point-to-Multipoint Systems -- TM 04 4 - TM Antennas -- TM 05 - Coding Speech Processing & Associated Network Issues -- TM 06 - TM Access Networks -- TMN - Telecommunications Management Network -- TMN 02 - Transport and Access Network Management -- TMN 03 - Generic Modelling -- TMN ASM - Access Switching Management -- TMN GOM - Generic Objects Modelling -- TRAC - Technical Recommendations Applications Committee -- UMTS - Universal Mobile Telecommunications Systems -- USER - User Group -- ZSM - Zero-touch network and Service Management -## Select Standard Types -- EN - European Standard (Telecommunications series) -- ES - ETSI Standard -- EG - ETSI Guide -- TS - Technical Specification -- GS - Group Specification -- TR - Technical Report -- SR - Special Report -- ETS - European Telecommunication Standard -- I-ETS - Interim ETS -- TBR - Technical Basis for Regulation -- NET - Norme EuropΓ©enne de TΓ©lΓ©communication -- GTS - GSM Technical Specification -- ETR - ETSI Technical Report -- TCRTR - Technical Committee Reference Technical Report -- GR - Group report \ No newline at end of file diff --git a/download_state.txt b/download_state.txt deleted file mode 100644 index 8fdfcdde5906b4241b6ff392406cd2539f884070..0000000000000000000000000000000000000000 --- a/download_state.txt +++ /dev/null @@ -1,26441 +0,0 @@ -64372 -63040 -62010 -61992 -58436 -58201 -58055 -58053 -56825 -67431 -54755 -63927 -54340 -59231 -54334 -54284 -54295 -54341 -67656 -67658 -47068 -38922 -67260 -64459 -63910 -63078 -60132 -59214 -59209 -58857 -58856 -63939 -63928 -63938 -49740 -46693 -46692 -46690 -59581 -68536 -58004 -63881 -54396 -53603 -43812 -43376 -30487 -30486 -29098 -54395 -29097 -47929 -29099 -29096 -69464 -68033 -67660 -67522 -66755 -66207 -68556 -66206 -64281 -63559 -67520 -66161 -62584 -62004 -61975 -61560 -59251 -58990 -58907 -57511 -57414 -57411 -38282 -44138 -41227 -43755 -43754 -44137 -41225 -41222 -41988 -44136 -41224 -41221 -37680 -69072 -56848 -50936 -49520 -49519 -46573 -46572 -45997 -43807 -42476 -41205 -41204 -41200 -43806 -45996 -44140 -63520 -59340 -59382 -59339 -56357 -56356 -54790 -54481 -53606 -52940 -52932 -52931 -52933 -51370 -51011 -50912 -50531 -50123 -49578 -54789 -66955 -66856 -64383 -64336 -64279 -63972 -63503 -63512 -63500 -63504 -59529 -58467 -68080 -58367 -58463 -58461 -69957 -58459 -55729 -66417 -69956 -64359 -68077 -64358 -68076 -64357 -50985 -69578 -66802 -50986 -66412 -64356 -57988 -66413 -58550 -68074 -56924 -50101 -49495 -63496 -59475 -49481 -59472 -63502 -66420 -49457 -53601 -59460 -69965 -66222 -58458 -49480 -56928 -68737 -49478 -53607 -58546 -58013 -54455 -49499 -63578 -62039 -58542 -58020 -54454 -51357 -53575 -58539 -54453 -59479 -63563 -69964 -68073 -64368 -64355 -47925 -56922 -57483 -61989 -69581 -67382 -64354 -63155 -47923 -58973 -57987 -59538 -68538 -62036 -47619 -51391 -44576 -58466 -56334 -69955 -68736 -62006 -64353 -59478 -51019 -57482 -47603 -54716 -58016 -69954 -67379 -68072 -64369 -64352 -66842 -50639 -53623 -63121 -57986 -43815 -47630 -68537 -64367 -58537 -50636 -46661 -45986 -69580 -64351 -61382 -49433 -57985 -54460 -69579 -67377 -63154 -64350 -52766 -63006 -58972 -57984 -56333 -53962 -42381 -49500 -44578 -69953 -63572 -64349 -64366 -47924 -58971 -57983 -61961 -46039 -69952 -69963 -64348 -64365 -49458 -58970 -57982 -62515 -42379 -47194 -44516 -67375 -64364 -58969 -53504 -53593 -42378 -46041 -44586 -44555 -69959 -64363 -58968 -53503 -50062 -50417 -42377 -43786 -44529 -69958 -64362 -58967 -53502 -46017 -46043 -44582 -43785 -68531 -64361 -44587 -58966 -62970 -46060 -46009 -41964 -45981 -42421 -41980 -41984 -41954 -69497 -67533 -68081 -63146 -58932 -57446 -42457 -67528 -54061 -43827 -56301 -42418 -62014 -58664 -68009 -57415 -54342 -52944 -50058 -49518 -52902 -51333 -47907 -46644 -46544 -46550 -31036 -31035 -31491 -31493 -31492 -63338 -62545 -56776 -62544 -56775 -66280 -56774 -53612 -47908 -46053 -46047 -68734 -67458 -67502 -64371 -63028 -67006 -61952 -68293 -59227 -56918 -56729 -69080 -63120 -62989 -63525 -53966 -53965 -53580 -52949 -63111 -63074 -49546 -49447 -68738 -58111 -49445 -68742 -64344 -48552 -68739 -61571 -48550 -63113 -63112 -48548 -63011 -48553 -66399 -58819 -49451 -67525 -58437 -49421 -49503 -67523 -59237 -48479 -56302 -63988 -57686 -46046 -67951 -58905 -46045 -63970 -53013 -46044 -50573 -43335 -41909 -41908 -37768 -37770 -50045 -50920 -50919 -41272 -41271 -50044 -46638 -46639 -46042 -64314 -63942 -63300 -63016 -62559 -62491 -62479 -62478 -59248 -57426 -47555 -46704 -46702 -46703 -46701 -47113 -46695 -37814 -35804 -35273 -34617 -34616 -31484 -31483 -31481 -31482 -67504 -66929 -64320 -69504 -64321 -63593 -62298 -63122 -62295 -62404 -62297 -61423 -59496 -59239 -59244 -59243 -59242 -59240 -64380 -59507 -59506 -68055 -68051 -64276 -63943 -62591 -62590 -62589 -62588 -62586 -62019 -59544 -58926 -63117 -58217 -56393 -57071 -54509 -63979 -58576 -54085 -64212 -58904 -53598 -52852 -63617 -54722 -52851 -63616 -54723 -52850 -50897 -44174 -44108 -49509 -49508 -44106 -44105 -52917 -52916 -59492 -59487 -59491 -59490 -59489 -68495 -66911 -66894 -63885 -63884 -68595 -63597 -63596 -63595 -63594 -59463 -59341 -66898 -58948 -66897 -58947 -66896 -58946 -66895 -58944 -58942 -68619 -59536 -64379 -69156 -59454 -56428 -66164 -59580 -58304 -58303 -58302 -63046 -58289 -63045 -58288 -49426 -63033 -64318 -64323 -62522 -62521 -67531 -54070 -54069 -54068 -30489 -30488 -24738 -22426 -28468 -28458 -19842 -24397 -25102 -28452 -25101 -28451 -23828 -23518 -35217 -41218 -31383 -30485 -28850 -28799 -25055 -28438 -27313 -25915 -25914 -25541 -25057 -25056 -31849 -26363 -21037 -29252 -29255 -25222 -29251 -25917 -25221 -41217 -25913 -22911 -41328 -39299 -35791 -30477 -31839 -53023 -47060 -35169 -28073 -53022 -47059 -28074 -28078 -28077 -34189 -30481 -34185 -30951 -28080 -28079 -34182 -53017 -38378 -30950 -27727 -53016 -38377 -28070 -34183 -31394 -28072 -25812 -25811 -31838 -52722 -44539 -25810 -52721 -44540 -28083 -28084 -37159 -34205 -29374 -41241 -37162 -31867 -29375 -29067 -41242 -37163 -31866 -30492 -29060 -31836 -52724 -47058 -24383 -52723 -47057 -24382 -24282 -31487 -24281 -30496 -30495 -25502 -30494 -25501 -42399 -31837 -25133 -52726 -47062 -35116 -22909 -52725 -47061 -24381 -31834 -25132 -52718 -47065 -35244 -22908 -52717 -47064 -24380 -34184 -25131 -30949 -22907 -28085 -24379 -34097 -27718 -44110 -25555 -44132 -62000 -29062 -34186 -27728 -28833 -38381 -28087 -19721 -28415 -28414 -28412 -27766 -28849 -26378 -26377 -28417 -25911 -25910 -28416 -21134 -41212 -29361 -27319 -28828 -25808 -28822 -22486 -25223 -21139 -22488 -21349 -33354 -29057 -29058 -50059 -29055 -29362 -28794 -29309 -28791 -35792 -27305 -31381 -27303 -41298 -31877 -29311 -26301 -26300 -28492 -25815 -25814 -28491 -25239 -28490 -28543 -25238 -29059 -29312 -24749 -28489 -29056 -23521 -22951 -31382 -30482 -28793 -21150 -28517 -28488 -23400 -24193 -25487 -23855 -23526 -59552 -25813 -47948 -44076 -25231 -27306 -26354 -28516 -28487 -23391 -27731 -25098 -28518 -28500 -28486 -28485 -28484 -28483 -28499 -28498 -31847 -27036 -27314 -28818 -27299 -25097 -28506 -28466 -22494 -28505 -28465 -22490 -26361 -22489 -31966 -31965 -25096 -30968 -27035 -24757 -28464 -28463 -21157 -21293 -21292 -31848 -33381 -28504 -28462 -28503 -28461 -28460 -28459 -28502 -28457 -28501 -28455 -28453 -27734 -27733 -27732 -28497 -28496 -28764 -25549 -25095 -19662 -41211 -31392 -31440 -34208 -25230 -34209 -28614 -28413 -44523 -25086 -44522 -25085 -44520 -25084 -25083 -28550 -37766 -24730 -24732 -21291 -21140 -25088 -22406 -28408 -28405 -28878 -25081 -23519 -28407 -28404 -28406 -28403 -28400 -28402 -28399 -28409 -28401 -21409 -28411 -25226 -25602 -35218 -24731 -20623 -20622 -28410 -25227 -19676 -25603 -44521 -25052 -25051 -28196 -25049 -24727 -24711 -24349 -19723 -25485 -19848 -25508 -23290 -28853 -29095 -28618 -21144 -21143 -25240 -25152 -19573 -30995 -19850 -21458 -6434 -3480 -27276 -20334 -13347 -13348 -27794 -70975 -64957 -60426 -55348 -52562 -49377 -45804 -41161 -36999 -33309 -30230 -28042 -28041 -28040 -28039 -28038 -70973 -64962 -60425 -55346 -52561 -51425 -70966 -64956 -60424 -55345 -52560 -51424 -70965 -64961 -60423 -55340 -55342 -55343 -70968 -64960 -60422 -55339 -52558 -52025 -70974 -64959 -60421 -55330 -52557 -51423 -70969 -64958 -60420 -55332 -55338 -55335 -70978 -64955 -60429 -55326 -52555 -49376 -45803 -41160 -36998 -33308 -30229 -26900 -24894 -70964 -64954 -60430 -56860 -52554 -49375 -45802 -41159 -36997 -33307 -70959 -64951 -60431 -55325 -52553 -49374 -45801 -41158 -36996 -33306 -30228 -28037 -28036 -28035 -28034 -28033 -70954 -64953 -60432 -55323 -52552 -49373 -45800 -41157 -36995 -33305 -30227 -28032 -28031 -28030 -28029 -28028 -70958 -64952 -60419 -55321 -52551 -49372 -45799 -41156 -36994 -33304 -30226 -28027 -28026 -28025 -28024 -28023 -70952 -64950 -60433 -56859 -52550 -49371 -45798 -41155 -36993 -33303 -30225 -26896 -24581 -71983 -65670 -60625 -54921 -52844 -49725 -45797 -41154 -36992 -33302 -30224 -26895 -23976 -18661 -16832 -13958 -71168 -65606 -61117 -55891 -52137 -49369 -45796 -41153 -36991 -33301 -30223 -27649 -22383 -17203 -16290 -71982 -65669 -60624 -55906 -52843 -49368 -45795 -41152 -36990 -33300 -30222 -26894 -22180 -71167 -65605 -61116 -55890 -52136 -49367 -45794 -41151 -39269 -39268 -33997 -33996 -23380 -17202 -15539 -71166 -65604 -61115 -59364 -59365 -59366 -46501 -43262 -41861 -40159 -40158 -34390 -34389 -34388 -34387 -23975 -22179 -71720 -65234 -61484 -61483 -52317 -49365 -44502 -44501 -44500 -44499 -44498 -44497 -44496 -43261 -43260 -23287 -47735 -44456 -43923 -42902 -70251 -39837 -33430 -30217 -24320 -71719 -65233 -61489 -61488 -54220 -53630 -50892 -44495 -44494 -44493 -44492 -44491 -44490 -44489 -44454 -23503 -21450 -18790 -70249 -52093 -44453 -42898 -39834 -33405 -30390 -24319 -21449 -17610 -70250 -52091 -44452 -42896 -39832 -33404 -30388 -27643 -21448 -17609 -14934 -71165 -65608 -61114 -55889 -52134 -49360 -45787 -41145 -36977 -33292 -30387 -27642 -22883 -22882 -22881 -71164 -65607 -61113 -59363 -59362 -49359 -45786 -41144 -36976 -33291 -30412 -28390 -23376 -20662 -20661 -71356 -65435 -60088 -55229 -51864 -49358 -45785 -41143 -36975 -33290 -30865 -26892 -23286 -18659 -18658 -22172 -22219 -22218 -71263 -66019 -61145 -55924 -52132 -49357 -45784 -41142 -36974 -36973 -36972 -71262 -66024 -61144 -55933 -52131 -49356 -45783 -41141 -39997 -39996 -30384 -26915 -27640 -27639 -27638 -71261 -66018 -61143 -55932 -52130 -49355 -45782 -41140 -36970 -33287 -30383 -27637 -22374 -16284 -15600 -71260 -66023 -61142 -55931 -52129 -49354 -45781 -41139 -36969 -33286 -30382 -27636 -27635 -27634 -15599 -71259 -66022 -61141 -55930 -52128 -49874 -45780 -41138 -36968 -33285 -30381 -27633 -27632 -17180 -15598 -71258 -66016 -61140 -55929 -52127 -49353 -45779 -41137 -36967 -33284 -30380 -27631 -22371 -17659 -14065 -71257 -66015 -61139 -55926 -52126 -49352 -45778 -41136 -36966 -33283 -30379 -27630 -22370 -18213 -14038 -71256 -66014 -61138 -55925 -52125 -49351 -45777 -41135 -36965 -33282 -30378 -27629 -22369 -18212 -14043 -71255 -66013 -61128 -55909 -52124 -49350 -45776 -41134 -36964 -33281 -30377 -27628 -22368 -18211 -15459 -71254 -66021 -61127 -55913 -52123 -49349 -45775 -41133 -39260 -39259 -71253 -66073 -61126 -55907 -52122 -49348 -45774 -41132 -36962 -33279 -30376 -27832 -22367 -17200 -14270 -70887 -64843 -60634 -55823 -52023 -49347 -45773 -41131 -36961 -33278 -30375 -26890 -22171 -18179 -17606 -71252 -66012 -61125 -55679 -55631 -53429 -46495 -46494 -46493 -43917 -43916 -33275 -33274 -25747 -20659 -71251 -66011 -61124 -55901 -52121 -49346 -45769 -41129 -36958 -33273 -30373 -28388 -23888 -21446 -20984 -71249 -66010 -61123 -55900 -52120 -49345 -45768 -41128 -36957 -33272 -30372 -27624 -22364 -18209 -14064 -71244 -66009 -61122 -55899 -53857 -50707 -47521 -46491 -46512 -39254 -38790 -36953 -23499 -20658 -19335 -71242 -66008 -61121 -55895 -52118 -49343 -45764 -41126 -36952 -33269 -30370 -27242 -22362 -18208 -14063 -71238 -66007 -61120 -55894 -52117 -49342 -45763 -41125 -36951 -33268 -30369 -27622 -22361 -18207 -14062 -71236 -66006 -61119 -55893 -52116 -49341 -45762 -41124 -36950 -33267 -30368 -27621 -22360 -16276 -15458 -71233 -66005 -61118 -55892 -52115 -49340 -45761 -41123 -36949 -33266 -30367 -27241 -22359 -18206 -14060 -72108 -65823 -61279 -55398 -51999 -49339 -45760 -41122 -36948 -33265 -30366 -26888 -22170 -16981 -13954 -72109 -65822 -61278 -55397 -51998 -49338 -45759 -41121 -36947 -33264 -30365 -26887 -22169 -16980 -13952 -72170 -65821 -61277 -55396 -51997 -49337 -45758 -41120 -36946 -33263 -30364 -26886 -22168 -16979 -13948 -72110 -65820 -61276 -55394 -51996 -49336 -45757 -41119 -36945 -33262 -30363 -26885 -22167 -22275 -15479 -72111 -65819 -61275 -55393 -51995 -49335 -45756 -41118 -36944 -33261 -30362 -26884 -22166 -16978 -13944 -72112 -65818 -61274 -55392 -51994 -49334 -45755 -41117 -36943 -33260 -30361 -26883 -22165 -16977 -13943 -72113 -65817 -61273 -55391 -51993 -49333 -45754 -41116 -36942 -33259 -30360 -26882 -22164 -16976 -13942 -72114 -65816 -61272 -55390 -51992 -49332 -45753 -41115 -36941 -33258 -30359 -26881 -22163 -16975 -13940 -72166 -65815 -61280 -55389 -51991 -49331 -45752 -41114 -36940 -33257 -30358 -26880 -22162 -16974 -13937 -72187 -66017 -61306 -55395 -51990 -49330 -45751 -41113 -36939 -33256 -30357 -26879 -22161 -16973 -13932 -72115 -65814 -61270 -55386 -51989 -49329 -45750 -41112 -36938 -33255 -30356 -26878 -22160 -16972 -13930 -72116 -65813 -61271 -55385 -51988 -49328 -45749 -41111 -36937 -33254 -30355 -26877 -22159 -16971 -13928 -72117 -65812 -61269 -55383 -51987 -49327 -45748 -41110 -36936 -33253 -30354 -26876 -22158 -16970 -13926 -72165 -65811 -61268 -55379 -51986 -49326 -45747 -41109 -36935 -33252 -30353 -26875 -22157 -16969 -13923 -72118 -65810 -61267 -55376 -51985 -49325 -45746 -41108 -36934 -33251 -30352 -26874 -22156 -16968 -13921 -72119 -65808 -61266 -55374 -51984 -49324 -45745 -41107 -36933 -33250 -30351 -26873 -22155 -16967 -13919 -72120 -65807 -61265 -55371 -51983 -49323 -45744 -41106 -36932 -33249 -30350 -26872 -22154 -16966 -13917 -72121 -65806 -61264 -55367 -51982 -49322 -45743 -41105 -36931 -33248 -30349 -26871 -22153 -16965 -13916 -72122 -65805 -61263 -55365 -51981 -49321 -45742 -41104 -36930 -33247 -30348 -26870 -22152 -16964 -14364 -72123 -65804 -61262 -55364 -51980 -49320 -45741 -41103 -36929 -33246 -30347 -26869 -22151 -16963 -13951 -72164 -65803 -61261 -55363 -51979 -49319 -45740 -43717 -36928 -33245 -30346 -26868 -22150 -16962 -14359 -72124 -65802 -61260 -55362 -51978 -49318 -45739 -41101 -36927 -33244 -30345 -26867 -22149 -16961 -13950 -72163 -65801 -61953 -55360 -51977 -49317 -45738 -41100 -36926 -33243 -30344 -26866 -22148 -16960 -13949 -72162 -65800 -61258 -55388 -51976 -49316 -45737 -41099 -36925 -33242 -30343 -26865 -22147 -16959 -13984 -72125 -65799 -61257 -55359 -51975 -49315 -45736 -41098 -36924 -33241 -30342 -26864 -22146 -16958 -13947 -72126 -65798 -61256 -55358 -51974 -49314 -45735 -41097 -36923 -33240 -30341 -26863 -22145 -16957 -13945 -71230 -65848 -61112 -55977 -52114 -48459 -71228 -65847 -61111 -55980 -52113 -49313 -45734 -41096 -38789 -38788 -31792 -71224 -65846 -61110 -55976 -52112 -49312 -45733 -41095 -36921 -35078 -35077 -71223 -66020 -61109 -55974 -52111 -49311 -45732 -41094 -36920 -33238 -30340 -27240 -71220 -65845 -61108 -55964 -52110 -49310 -45731 -41093 -38841 -33237 -30339 -27620 -22385 -71217 -65844 -61292 -61291 -61290 -61289 -61288 -41092 -36918 -33236 -30338 -27619 -22358 -71214 -65843 -61106 -55962 -52108 -49308 -45729 -41091 -36917 -33235 -30337 -27618 -22357 -17199 -13939 -71210 -65842 -61105 -55961 -52107 -50149 -47032 -41855 -36916 -33234 -30336 -27239 -22356 -17651 -13938 -71207 -65841 -61104 -55957 -52106 -49306 -45727 -41089 -36915 -33233 -30335 -27617 -22355 -17197 -13936 -71206 -65840 -61103 -55956 -52105 -49305 -45726 -41088 -36914 -33232 -30334 -27616 -26912 -26862 -24315 -17133 -17132 -71205 -65839 -61102 -59361 -59360 -57758 -45725 -41854 -36913 -33231 -33230 -33229 -28623 -19334 -19333 -71204 -65838 -61101 -55954 -52103 -49304 -46489 -41086 -36912 -34379 -30332 -27614 -23370 -23369 -23368 -71203 -66003 -59743 -59357 -59358 -59359 -54626 -54625 -43253 -43252 -43251 -43250 -43249 -43248 -43247 -71202 -65837 -59742 -59354 -59355 -59356 -47031 -43716 -43715 -43714 -43713 -43712 -34372 -34371 -34370 -71201 -65836 -59741 -55953 -53424 -51176 -45721 -41083 -36903 -34369 -30327 -29018 -22348 -19736 -15453 -71200 -65835 -61100 -57751 -57750 -57749 -45720 -41852 -36902 -33221 -31786 -31785 -24313 -24312 -22345 -71199 -65834 -59740 -59351 -59352 -59353 -47112 -43246 -43245 -43244 -36899 -36898 -23880 -22343 -19224 -71198 -65833 -61099 -56590 -53420 -51174 -46485 -41080 -38781 -38780 -31784 -31783 -31782 -22870 -22869 -71197 -65991 -61098 -55950 -52101 -49301 -45717 -41079 -36896 -33218 -30322 -27607 -22341 -16266 -71196 -66004 -61097 -55949 -52100 -51173 -45716 -41078 -36895 -33976 -33975 -33974 -33973 -61096 -55948 -52241 -49299 -45715 -41077 -36894 -33216 -30320 -27604 -22340 -20654 -61095 -55947 -52240 -49298 -45714 -41076 -36893 -33215 -30319 -26910 -22867 -22866 -71195 -65990 -61094 -55946 -52099 -49297 -45713 -41075 -36892 -33214 -30318 -27603 -22338 -18205 -17165 -71355 -65434 -60089 -55295 -51863 -49296 -45712 -41074 -36891 -33213 -30317 -27232 -22142 -16828 -16827 -71354 -65433 -60090 -55292 -51862 -49295 -45711 -41073 -36890 -33212 -30316 -27231 -22141 -16826 -16825 -71353 -65432 -60091 -55285 -53716 -50973 -45710 -41072 -36889 -33211 -30315 -27230 -24889 -21289 -21288 -70645 -65431 -60096 -55240 -53718 -53717 -45709 -41071 -38779 -38778 -38777 -38776 -38775 -38774 -38773 -13927 -71194 -65657 -61093 -55676 -53886 -53885 -53884 -47029 -43710 -43709 -39988 -39987 -33969 -30847 -23875 -71352 -65441 -60100 -55239 -51860 -49292 -45707 -41069 -36883 -32993 -30312 -26858 -22138 -16823 -13925 -71351 -65428 -60101 -55238 -51859 -49291 -45706 -41068 -36882 -33209 -30311 -26857 -22137 -16822 -13924 -71193 -65639 -61092 -55945 -52098 -49290 -45705 -41067 -36881 -33208 -30310 -27600 -22334 -18204 -15446 -71192 -65638 -61091 -55675 -54366 -54365 -54364 -43913 -43912 -43911 -43910 -43909 -26856 -26855 -26854 -70886 -64842 -60633 -55825 -52022 -49288 -45703 -41065 -36879 -33204 -30308 -26853 -22136 -18170 -17594 -71191 -65637 -61090 -59350 -59349 -54362 -54361 -54360 -42350 -42349 -42348 -39239 -30842 -30841 -24784 -71190 -65636 -61089 -55944 -52096 -50697 -45701 -41063 -36876 -33200 -33199 -33198 -25924 -20974 -20973 -71350 -65429 -60102 -55234 -51858 -49286 -45700 -41062 -36875 -33197 -30305 -26852 -22135 -16821 -16820 -71189 -65635 -61088 -55943 -52095 -49285 -45699 -41061 -36874 -33196 -30304 -27596 -22326 -18202 -18201 -13920 -71188 -65634 -61087 -55942 -52092 -49284 -45698 -41060 -36873 -33963 -30303 -30401 -30400 -30399 -30398 -71187 -65633 -61086 -55941 -52090 -49283 -45697 -41059 -36872 -33194 -30840 -30839 -23870 -18200 -13999 -71186 -65632 -61085 -55940 -53848 -53847 -53846 -41058 -36871 -33193 -30301 -27818 -23869 -19820 -15443 -71185 -65631 -61084 -55939 -52087 -48263 -45695 -41057 -39238 -33192 -30300 -27594 -22322 -18203 -13997 -71349 -65430 -60107 -55215 -51857 -49281 -45694 -41056 -36869 -33191 -30299 -26850 -22134 -16819 -16818 -17157 -71184 -65629 -61083 -55938 -52085 -49280 -45693 -41055 -36868 -33190 -30298 -71183 -65628 -61082 -55937 -52082 -49279 -47516 -41054 -36867 -33189 -30297 -27658 -71182 -65627 -61081 -55936 -52081 -49278 -45691 -41053 -38840 -33188 -30296 -27593 -22321 -71181 -65626 -61080 -55935 -52028 -51170 -47515 -41052 -36865 -33187 -30838 -28758 -28757 -71180 -65625 -61079 -55923 -52080 -49276 -45689 -41051 -36864 -33186 -30294 -27225 -25741 -71179 -65624 -61078 -55922 -53841 -53843 -53842 -41050 -36863 -33185 -30293 -27590 -22319 -17591 -71178 -65623 -61077 -55921 -53840 -53839 -53838 -43708 -43707 -43706 -43705 -33182 -33181 -71676 -65989 -60053 -55620 -52231 -49273 -45686 -41048 -36861 -33180 -30291 -26848 -22133 -16817 -16816 -71348 -65427 -60110 -55214 -51856 -49272 -47731 -41847 -39234 -39233 -39232 -39231 -26071 -23283 -23282 -71347 -65426 -60112 -55212 -51854 -48478 -47730 -41846 -39230 -39229 -39228 -39227 -26070 -23280 -23279 -71177 -65622 -61076 -59348 -59347 -58805 -45683 -41045 -36858 -33177 -31773 -31145 -25135 -20646 -20645 -13914 -71176 -65621 -61075 -59346 -59345 -53836 -53835 -41044 -36857 -33176 -30286 -27222 -24779 -24778 -24777 -72127 -65831 -62510 -55357 -51973 -49270 -45681 -41043 -36856 -33175 -30285 -26847 -22130 -16954 -13913 -71175 -65620 -61074 -55914 -52077 -49269 -45680 -42347 -36855 -33174 -19309 -30834 -27588 -25921 -22314 -22313 -13912 -71174 -65619 -61073 -55908 -52076 -49268 -45679 -41041 -36854 -33173 -30283 -27587 -22312 -17194 -13911 -71173 -65618 -61072 -55912 -52075 -49267 -45678 -41040 -36853 -33172 -30282 -27586 -22311 -19317 -72128 -65832 -61254 -55356 -51972 -49266 -45677 -41039 -36852 -33171 -30281 -28370 -22129 -16250 -13910 -13908 -70885 -64841 -60632 -55831 -52021 -49265 -45676 -41038 -36851 -33170 -30280 -26845 -22128 -15946 -13906 -16043 -49264 -45675 -41037 -36850 -33169 -30279 -26844 -22127 -16813 -13904 -16812 -13966 -71172 -65617 -61071 -55902 -52074 -49263 -45674 -41036 -36849 -33168 -30278 -27585 -23348 -23347 -23346 -71171 -65616 -61070 -55898 -52073 -49262 -45673 -41035 -36848 -33167 -30277 -27584 -22309 -17192 -13903 -71170 -65615 -61069 -55897 -52072 -50696 -45672 -41034 -36847 -35064 -35063 -27220 -22855 -22854 -22853 -70950 -70238 -70237 -70236 -70235 -70234 -70233 -70232 -70231 -70230 -70229 -28755 -27813 -27812 -27811 -22125 -18657 -17583 -71169 -65614 -61068 -55896 -52071 -48449 -45670 -41032 -36845 -33164 -30274 -27580 -22307 -17190 -13953 -70883 -64840 -60631 -55833 -52020 -49260 -45669 -45859 -45858 -45857 -45856 -26842 -22124 -18163 -17581 -71678 -65988 -60052 -55588 -52235 -49259 -45668 -41030 -36843 -33162 -30272 -26841 -22123 -16809 -13852 -71576 -65207 -61287 -56141 -52837 -49258 -45667 -41029 -36842 -33161 -27219 -23278 -23277 -23276 -71575 -65206 -61286 -56140 -52836 -49257 -45666 -41028 -36841 -33160 -30271 -28369 -23275 -23274 -23273 -71574 -65205 -61285 -56139 -52835 -49256 -45665 -41027 -36840 -33159 -30270 -26840 -22120 -16806 -13849 -13845 -71573 -65204 -61283 -56138 -52834 -49255 -45664 -41026 -36839 -33158 -30269 -26839 -22119 -16805 -13844 -49254 -45663 -41025 -36838 -33157 -30268 -26838 -22118 -16804 -13841 -13842 -16803 -13839 -23272 -23271 -13838 -24885 -18656 -18684 -70902 -64867 -60235 -55928 -53192 -51113 -51168 -49812 -44448 -39225 -39224 -33155 -33154 -33153 -33152 -13835 -49253 -45662 -41023 -36836 -33151 -30265 -26836 -22114 -16800 -13832 -70960 -64948 -60416 -55319 -52538 -49252 -45661 -41022 -36835 -33150 -30264 -26944 -22113 -16799 -13830 -71134 -66176 -70428 -71163 -65613 -61035 -56270 -53597 -71162 -65612 -61034 -56269 -53596 -71724 -69812 -63380 -67798 -71723 -69888 -67778 -63379 -70918 -69925 -59772 -55981 -54265 -55982 -53521 -71147 -71145 -71987 -70275 -69887 -64131 -63377 -70252 -64116 -63378 -71767 -67797 -63376 -69997 -67796 -63375 -71751 -69886 -63374 -58246 -71753 -69801 -69885 -67795 -63373 -71752 -69884 -63372 -59462 -71725 -69883 -67794 -63371 -69882 -63370 -67793 -70262 -68348 -66795 -71730 -69881 -63367 -58235 -71731 -69880 -63368 -58259 -71032 -65535 -62348 -58766 -70585 -70316 -70315 -68892 -71031 -68903 -68902 -61820 -71030 -65533 -60879 -54950 -70562 -69316 -69315 -63357 -71029 -65578 -69898 -69321 -71028 -65575 -70324 -70323 -71027 -65574 -60875 -58761 -71026 -65573 -65572 -58353 -70584 -70317 -69903 -63582 -70583 -68428 -62959 -61811 -71025 -65532 -60908 -58363 -70582 -70314 -70322 -70321 -71024 -68900 -68899 -59151 -71023 -65530 -60871 -58759 -70682 -67108 -60906 -57267 -70507 -69901 -64110 -63555 -71022 -65529 -60988 -60985 -70581 -70320 -70330 -63916 -71021 -68898 -68897 -61804 -71020 -65527 -60869 -55179 -70580 -66591 -63915 -57274 -70579 -70327 -70326 -69305 -70824 -70429 -70390 -70415 -69017 -63476 -70575 -70264 -70374 -70384 -70557 -69026 -67932 -63477 -70574 -70389 -66873 -57826 -71051 -70376 -70375 -66122 -70422 -70381 -63798 -71694 -70285 -70286 -68366 -70379 -70392 -70380 -70586 -69944 -69943 -69022 -71050 -70385 -69015 -63767 -70816 -70383 -69937 -69932 -70578 -69917 -69916 -60653 -70561 -70265 -70269 -65336 -70560 -70267 -70268 -66531 -70577 -70266 -70270 -64203 -70559 -70271 -66537 -64201 -70576 -69924 -69923 -59156 -70558 -64801 -59786 -54947 -71316 -70339 -71693 -70336 -70337 -71692 -70335 -70334 -71137 -69858 -69869 -71314 -70343 -70342 -71140 -69434 -68946 -63858 -70705 -68996 -71133 -70333 -71690 -70309 -69833 -69430 -71691 -70308 -70362 -70361 -71722 -70284 -69825 -70354 -70563 -67278 -66674 -66673 -71106 -70341 -71097 -70340 -71313 -70355 -71312 -70299 -70301 -69426 -71311 -70338 -71310 -70372 -71064 -70295 -70360 -70359 -71309 -70300 -70347 -70346 -70345 -71049 -70283 -70293 -70344 -71308 -70350 -70349 -70351 -71710 -70288 -70287 -70356 -70414 -69915 -69914 -71126 -65366 -61298 -56870 -56175 -50476 -45660 -71125 -65365 -61297 -56869 -52708 -49251 -45659 -41021 -71124 -70363 -69417 -69416 -71264 -71161 -65611 -59778 -71123 -65363 -61296 -56249 -52707 -49250 -46482 -43704 -70276 -55267 -54662 -54663 -54664 -50487 -71122 -65362 -61295 -56248 -52706 -49249 -45656 -41018 -36834 -34641 -70257 -68922 -59325 -54636 -53830 -52086 -48233 -48232 -41842 -70256 -67851 -63381 -59443 -54637 -52083 -48230 -48229 -41841 -70247 -67814 -59324 -54638 -53913 -52069 -48227 -48226 -41839 -70272 -68921 -59322 -54639 -53826 -52067 -48224 -48223 -41838 -70246 -68920 -59323 -54640 -52063 -50878 -48221 -48220 -41836 -70263 -61136 -57021 -70709 -70311 -70708 -70325 -71019 -64878 -70707 -69902 -71018 -68427 -66584 -71017 -65526 -61799 -71016 -65525 -59842 -71015 -65524 -60981 -70413 -65523 -61362 -59147 -57956 -57958 -57959 -57961 -57963 -57964 -57967 -70514 -65554 -61135 -59146 -57966 -57965 -57962 -57960 -57954 -57953 -57948 -70513 -66583 -66581 -66579 -57955 -57952 -57950 -57949 -57946 -57944 -57942 -70512 -65552 -60918 -59145 -57945 -57943 -57941 -57940 -57939 -57938 -57937 -70818 -70386 -70387 -66130 -70819 -69946 -69452 -66144 -71739 -66104 -63414 -56665 -70823 -69447 -66136 -56155 -52290 -49941 -45649 -45648 -38761 -70409 -69913 -69912 -59368 -71120 -65394 -61887 -61886 -61885 -61884 -71420 -70307 -70358 -70357 -62434 -62433 -71415 -70306 -69831 -69404 -64238 -62915 -71119 -65361 -60882 -56256 -56185 -50507 -71697 -70305 -70370 -69847 -64235 -62911 -62910 -62909 -62908 -46468 -71408 -68384 -68383 -68382 -53559 -53560 -71405 -70366 -70367 -69862 -53536 -53535 -50472 -50471 -50470 -35566 -71117 -65359 -63445 -62422 -71116 -65358 -61849 -61848 -71045 -70298 -70297 -70296 -64232 -61844 -71042 -70304 -70369 -69401 -64229 -62895 -62894 -62893 -62892 -43693 -3819 -1897 -5724 -5175 -5174 -5302 -5189 -3596 -70910 -65323 -59867 -71114 -65355 -61201 -56247 -52705 -49243 -45642 -41007 -39810 -39809 -39808 -33144 -71044 -65521 -60868 -56045 -52482 -71160 -65610 -61033 -56268 -52329 -49242 -45641 -71113 -65354 -61193 -56246 -52704 -49241 -45640 -41006 -37117 -37116 -71043 -65520 -60867 -56044 -52469 -49240 -45639 -41005 -38185 -71111 -65353 -61192 -56245 -52703 -49239 -45638 -41004 -36827 -34587 -71110 -65352 -61191 -56849 -52702 -49238 -45637 -41003 -36826 -33956 -71159 -65609 -61032 -56267 -52327 -49237 -45636 -41002 -36825 -33143 -30872 -70907 -65118 -60640 -55983 -52480 -49236 -45635 -41001 -36824 -34586 -71709 -68864 -64173 -59433 -56586 -52056 -50929 -71708 -68863 -68919 -68862 -68861 -57877 -52052 -50862 -71706 -68860 -68918 -67792 -59432 -56651 -52050 -43893 -43892 -42334 -35642 -37098 -59845 -71397 -71396 -59858 -70260 -68543 -63811 -70273 -68859 -64127 -70280 -67964 -67850 -67791 -63383 -70279 -68858 -64126 -59318 -71749 -71748 -69805 -70259 -68857 -67790 -59317 -70258 -68856 -63382 -59316 -71721 -68923 -64171 -59312 -56682 -53820 -52043 -48213 -43227 -39806 -37508 -71704 -68855 -67789 -59309 -54655 -52041 -50881 -43890 -41824 -39977 -34582 -71750 -68854 -67788 -59338 -54656 -53916 -50896 -47501 -47500 -47499 -47498 -71728 -71727 -67805 -67787 -59311 -56660 -52274 -52273 -43888 -50930 -39974 -34578 -71726 -68853 -67786 -59310 -54658 -52039 -50928 -43887 -42870 -39972 -34576 -71729 -68852 -64177 -59307 -54657 -52272 -50027 -43886 -42868 -39208 -34574 -69357 -69356 -69355 -69351 -69354 -50491 -47564 -45623 -39970 -37692 -71703 -68851 -64125 -59306 -54642 -52271 -50870 -43884 -42865 -39796 -34571 -71041 -65519 -60866 -55195 -55188 -53936 -71040 -65518 -60863 -55209 -53938 -53939 -71039 -65517 -60861 -55208 -53472 -50449 -71038 -65516 -60859 -55207 -52468 -49882 -71037 -65515 -60916 -55206 -52466 -49876 -71036 -65514 -60856 -55210 -52548 -49849 -47009 -43220 -71035 -65513 -60853 -55205 -52467 -49226 -45620 -41816 -71034 -65512 -60851 -55204 -52465 -49225 -45619 -41815 -71033 -65538 -60849 -55211 -52547 -49224 -45618 -41814 -70675 -68436 -61798 -57322 -56641 -49848 -47008 -42863 -39968 -37096 -71013 -65509 -60887 -56680 -52464 -49222 -45616 -40988 -37642 -37094 -71012 -65508 -60886 -56679 -53474 -49847 -47007 -42862 -41811 -36806 -71011 -65553 -62335 -56676 -56666 -49846 -47006 -47005 -39206 -36804 -71010 -65506 -60885 -56678 -52463 -49221 -45613 -40985 -38173 -37092 -71009 -65505 -60884 -56677 -52461 -49104 -45612 -40984 -37638 -33126 -71008 -65504 -60883 -56681 -52460 -49103 -45611 -42321 -39794 -37090 -71007 -65503 -60846 -55203 -55186 -50622 -47004 -71006 -65502 -60844 -59144 -53470 -49845 -47003 -40982 -37636 -37088 -30825 -70627 -70313 -70312 -69320 -58754 -58756 -50445 -47001 -43218 -36802 -33938 -71005 -68906 -68905 -57277 -52456 -49101 -45608 -40980 -37634 -37086 -33120 -71004 -65500 -60841 -55201 -52457 -49100 -45607 -41807 -37085 -37084 -29239 -71003 -65550 -60982 -59143 -52471 -49099 -46449 -40978 -38170 -37082 -30253 -71002 -65499 -60839 -55199 -53469 -49098 -46448 -40977 -37632 -37080 -30822 -70674 -70329 -70328 -65584 -58351 -56662 -49842 -45603 -45602 -45601 -34566 -71001 -65498 -59719 -55198 -52454 -49097 -45600 -40975 -37629 -37078 -33113 -71000 -65497 -60838 -55197 -52453 -49096 -45599 -40974 -37628 -33112 -30249 -70999 -65583 -60837 -55196 -52451 -49095 -46446 -43216 -39792 -37076 -34564 -70998 -66555 -60836 -57280 -52472 -50443 -48204 -43215 -39791 -37075 -34562 -71741 -66141 -61343 -56254 -53458 -50665 -71740 -66140 -61342 -56255 -52238 -52237 -71738 -66143 -61341 -59140 -56721 -51200 -48203 -44433 -44432 -44431 -70626 -70377 -70378 -69450 -62372 -62371 -62370 -56198 -56197 -44428 -44427 -71737 -67928 -67929 -64085 -54279 -53455 -50434 -45591 -44425 -33106 -31132 -71742 -66138 -61337 -61336 -53874 -53873 -50432 -40968 -35620 -35041 -34557 -70625 -69942 -69941 -62354 -61826 -56162 -53870 -46991 -43674 -39200 -39199 -71736 -66137 -61340 -57298 -52289 -49939 -45588 -41793 -38158 -34554 -33101 -71394 -70332 -68449 -68448 -68447 -68446 -56169 -56167 -56166 -53523 -53522 -70624 -70382 -70391 -64083 -61349 -61348 -53867 -51193 -48190 -43667 -42305 -70644 -69021 -69020 -69019 -53866 -48429 -46431 -42304 -41787 -41786 -70623 -69939 -69938 -66082 -56707 -54276 -50430 -48188 -48187 -39781 -37608 -71735 -66086 -61308 -61346 -61345 -61344 -50662 -43874 -43200 -38823 -38822 -70673 -70388 -67927 -67926 -62350 -59427 -50427 -48184 -46426 -41781 -33919 -70906 -65117 -60658 -55984 -52479 -49094 -45575 -40959 -38217 -70905 -65116 -62724 -59100 -54264 -53890 -50678 -41780 -36781 -34547 -31756 -69922 -69918 -67017 -63353 -59376 -56740 -53899 -47475 -35033 -31755 -70621 -65321 -64210 -64209 -63341 -62721 -54399 -49925 -47697 -38144 -33090 -71758 -69362 -69361 -63780 -60641 -59091 -52259 -52258 -42295 -33915 -33088 -70903 -65115 -60639 -59371 -52256 -52255 -46975 -41773 -35606 -33914 -30804 -71391 -71109 -68949 -68947 -63835 -56165 -56164 -46419 -42835 -42834 -42833 -71107 -65349 -60881 -54917 -52700 -49092 -46418 -42294 -42293 -39775 -39774 -71014 -70292 -70291 -70302 -64226 -62937 -62935 -62934 -62933 -60902 -60901 -70821 -70310 -70373 -70042 -67285 -67284 -57842 -50907 -50906 -50812 -43190 -70643 -66629 -66628 -66627 -66626 -66625 -66809 -66808 -66807 -66806 -66805 -71105 -65347 -60880 -56868 -52699 -49091 -48175 -48174 -71104 -65346 -60877 -56867 -52698 -49090 -48173 -48172 -71388 -70365 -70364 -70368 -52609 -51254 -46411 -46410 -39767 -39766 -35331 -71102 -65344 -60876 -56242 -52697 -49089 -46968 -46408 -71101 -65343 -60874 -56866 -52696 -49088 -45554 -45553 -71385 -71099 -65342 -60872 -54914 -52695 -49087 -46407 -42285 -42284 -39764 -39763 -71383 -70303 -70371 -65278 -64220 -62888 -62887 -62886 -62885 -57830 -54518 -71379 -71377 -70290 -70289 -69373 -69414 -68987 -68371 -67290 -67289 -53943 -54379 -5204 -5197 -5288 -5103 -5147 -5144 -5146 -5179 -4981 -70951 -64947 -60415 -55318 -52536 -49220 -47458 -70949 -64946 -60414 -55317 -52535 -49219 -46398 -70933 -64945 -60413 -56142 -56143 -49218 -46397 -70938 -64944 -60412 -55315 -52533 -49217 -45544 -39380 -70930 -64943 -60434 -55314 -52532 -49216 -45543 -40943 -36760 -35324 -30212 -27217 -70932 -64942 -60411 -55311 -52531 -49215 -45542 -40942 -36759 -33068 -30211 -26835 -22112 -16798 -13887 -70763 -70762 -70761 -70760 -70759 -70758 -70755 -70756 -70757 -70931 -64941 -60410 -55310 -52530 -49214 -45541 -70940 -64940 -60409 -55309 -52529 -49213 -45540 -70929 -64939 -60408 -58844 -58845 -58846 -58588 -70936 -64938 -60407 -55307 -52527 -49211 -45538 -39379 -70927 -64934 -60405 -55306 -52526 -49210 -45537 -39378 -70922 -64933 -60404 -55305 -52525 -49209 -45536 -39377 -70925 -64937 -60403 -55304 -52524 -49208 -45535 -41753 -41752 -41751 -41750 -41749 -70924 -64936 -60402 -55303 -52523 -49207 -45534 -41748 -41747 -41746 -41745 -41744 -70926 -64935 -60401 -55302 -52522 -49206 -45533 -40939 -36756 -35323 -30208 -27214 -70920 -64932 -60399 -55301 -52521 -49205 -45532 -40938 -36755 -33064 -30798 -27213 -70921 -64931 -60435 -56858 -52520 -49204 -45531 -40937 -36754 -33063 -30206 -26834 -22111 -16797 -14035 -70919 -64930 -60441 -56929 -52519 -49203 -45530 -40936 -36753 -33062 -30205 -26833 -22110 -16796 -14034 -70911 -64929 -60440 -56857 -52518 -49202 -45529 -40935 -36752 -33061 -30204 -26832 -22109 -19110 -14033 -70912 -64928 -60436 -56856 -52517 -49201 -45528 -40934 -36751 -33060 -30203 -26831 -22108 -16794 -14032 -70913 -64927 -60398 -55300 -52516 -49200 -45527 -40933 -36750 -33059 -30202 -26830 -22107 -16793 -14572 -10408 -70914 -64925 -60397 -55299 -52515 -49199 -45526 -40932 -36749 -33058 -30201 -26829 -22106 -16792 -14571 -10407 -70909 -64924 -60396 -55298 -52514 -49198 -45525 -40931 -36748 -33057 -30200 -26828 -23624 -16791 -14570 -10406 -70915 -64923 -60395 -55297 -52513 -49197 -45524 -40930 -36747 -33056 -30199 -26827 -23623 -16790 -15318 -15317 -6730 -2059 -2243 -4718 -3489 -4142 -23806 -71096 -65357 -60870 -56241 -52694 -49196 -45523 -40929 -36746 -33055 -30198 -26826 -22103 -20385 -16246 -7723 -7935 -50934 -47040 -43734 -38713 -38712 -38711 -27804 -19109 -71747 -70277 -64122 -45522 -70282 -67845 -63358 -59439 -54643 -52036 -50927 -48163 -43648 -37587 -30196 -29007 -27803 -70278 -70274 -64118 -59436 -54644 -53909 -48161 -48160 -42276 -34533 -29006 -27802 -25737 -71746 -69347 -64120 -59440 -54635 -52270 -43860 -43859 -42274 -34531 -29005 -27801 -25736 -39013 -39012 -34530 -28751 -26820 -71718 -65232 -60051 -55999 -52315 -49193 -45518 -40927 -36737 -33051 -30192 -26819 -22101 -71095 -66608 -60865 -56240 -52693 -49192 -45517 -40926 -38126 -33900 -33049 -25796 -24573 -20384 -18654 -18653 -70255 -66764 -63543 -59434 -53815 -52033 -48157 -43644 -39938 -37581 -30190 -28362 -25263 -22780 -22779 -70261 -56580 -53907 -53906 -48155 -43642 -39750 -34527 -27575 -26817 -23794 -16788 -14925 -70254 -56579 -53813 -53812 -48153 -43640 -39748 -34525 -27574 -26816 -23792 -16786 -14924 -50853 -39008 -39007 -34523 -29003 -26151 -26062 -20173 -20172 -61749 -56575 -53811 -53810 -48029 -43637 -38704 -34521 -27572 -59698 -59444 -54631 -52029 -50931 -48027 -43052 -38703 -34519 -27571 -24568 -22776 -19443 -19442 -50851 -48026 -39745 -38702 -34518 -29086 -71734 -66133 -61339 -56222 -52288 -49185 -45508 -44075 -44074 -44073 -37575 -36719 -26061 -23261 -21276 -21275 -58774 -56574 -53809 -53808 -48025 -39003 -39002 -34516 -27570 -26060 -23788 -20880 -20879 -4703 -4573 -3595 -3590 -4903 -917 -6739 -4141 -4340 -1898 -70917 -64922 -60394 -55296 -52511 -52512 -70908 -64921 -60393 -55294 -52510 -49183 -45505 -43634 -36716 -33039 -30181 -27569 -30180 -26811 -25729 -70900 -66438 -60392 -55293 -49511 -70899 -64914 -60391 -55291 -52509 -49182 -45504 -40915 -36715 -34515 -70716 -70895 -64912 -59910 -70745 -70717 -70479 -70243 -68789 -58587 -52508 -50744 -70896 -64910 -60390 -55400 -52507 -49181 -45503 -40914 -37573 -37572 -28356 -70897 -64907 -60389 -55288 -52506 -49180 -45502 -40913 -36713 -34513 -30179 -27212 -22774 -27211 -70405 -64906 -64106 -64105 -64104 -13709 -13708 -10214 -70894 -64900 -60386 -55286 -52505 -49179 -45501 -40912 -36712 -33036 -30178 -27210 -13707 -8907 -13706 -8681 -45500 -70431 -67704 -70726 -70898 -66434 -66433 -70489 -70220 -62131 -70747 -70746 -70718 -70715 -70732 -70492 -64521 -70491 -66428 -70701 -70488 -64893 -62130 -70692 -64891 -60363 -70691 -64735 -63229 -70487 -64890 -62129 -70486 -64859 -63668 -70485 -64734 -62127 -70508 -68798 -68797 -70484 -64733 -64103 -70483 -70242 -70241 -70550 -70228 -70481 -70223 -70222 -70224 -70490 -70227 -64968 -70620 -64858 -60385 -55138 -53741 -51126 -47673 -40911 -39001 -39000 -39933 -70893 -68787 -60356 -59294 -56526 -51104 -48024 -48023 -48022 -48021 -37569 -70619 -64787 -62855 -62854 -62853 -62852 -62851 -40909 -36709 -35310 -70493 -64572 -70888 -64889 -60383 -55283 -51562 -49177 -45496 -40908 -39743 -41921 -70618 -70226 -70225 -56967 -51559 -51102 -45495 -41732 -41731 -41730 -34507 -25467 -22087 -70882 -68792 -60382 -55282 -53039 -53038 -50319 -70881 -64857 -60381 -55280 -52501 -49176 -45493 -40906 -36705 -33030 -30175 -28002 -70432 -70239 -70892 -64888 -60380 -58584 -58583 -70884 -64855 -60379 -55279 -53739 -48535 -46384 -42807 -41728 -41727 -31103 -28001 -27565 -70879 -64854 -60378 -55278 -52500 -51127 -45491 -40904 -38998 -34506 -30173 -27022 -26058 -70878 -64511 -70867 -64852 -60437 -56855 -52499 -50241 -45490 -42263 -42262 -33885 -70866 -64731 -60438 -56854 -52498 -49624 -47446 -47445 -47444 -47443 -47442 -70869 -66422 -62121 -55276 -52497 -49172 -45488 -43633 -38821 -34505 -30171 -28000 -24563 -70870 -64851 -60376 -55254 -51561 -49171 -45487 -43632 -36699 -34504 -30170 -27999 -26805 -70617 -67717 -63225 -56966 -53036 -53035 -45486 -42806 -38997 -38996 -38995 -28355 -26803 -70569 -67973 -63669 -61594 -70861 -67050 -60352 -58724 -51558 -48412 -45485 -40898 -37564 -34502 -31100 -27563 -25254 -19440 -70860 -64850 -60375 -55252 -52496 -49169 -45484 -40897 -36696 -33020 -30167 -27209 -70616 -64788 -61592 -61590 -61588 -61586 -47667 -40896 -39741 -35006 -33018 -28354 -27561 -27560 -26801 -22769 -18145 -16041 -70854 -64967 -60374 -55134 -54253 -51128 -46951 -70856 -64966 -60373 -55251 -53738 -70480 -68212 -68211 -67710 -67709 -67713 -70852 -64791 -59769 -58580 -70853 -64965 -60372 -55250 -52493 -49168 -45481 -40895 -36694 -35005 -30165 -25071 -23614 -70497 -70179 -69748 -69749 -70496 -70178 -69744 -59430 -70407 -68760 -68761 -67038 -70482 -67716 -67715 -67714 -13705 -8050 -70404 -70221 -68213 -60343 -58578 -70851 -64963 -64074 -64073 -64072 -70850 -64833 -60370 -55247 -52492 -49167 -45480 -41249 -37706 -37563 -30164 -28353 -70983 -70177 -68758 -61735 -57087 -54257 -53307 -48018 -48017 -46379 -39930 -35305 -23959 -22279 -70980 -65120 -60167 -58185 -57084 -54255 -48016 -48015 -48014 -36688 -36687 -27558 -23958 -19437 -16039 -16038 -70976 -64874 -60163 -55115 -53305 -50235 -47439 -47438 -47437 -33011 -29203 -24255 -22075 -17566 -13701 -8684 -70848 -64825 -60369 -55246 -52491 -49166 -45474 -40891 -36685 -33010 -30161 -26800 -22074 -20877 -20876 -14227 -14919 -14918 -70846 -64818 -60368 -56957 -51622 -49165 -46376 -46375 -46374 -46373 -46372 -25801 -23957 -23956 -18141 -18140 -2827 -4586 -4321 -713 -2781 -4390 -4383 -4384 -4385 -4386 -71981 -65668 -59805 -71980 -65667 -60623 -55905 -52842 -49164 -45890 -45889 -30441 -14493 -45472 -40889 -39929 -50317 -50318 -40887 -36683 -40886 -36682 -35301 -34023 -40885 -36681 -34022 -40884 -36680 -33878 -40883 -36679 -35300 -34020 -40882 -36678 -34019 -40881 -36677 -33877 -44398 -44397 -44396 -35000 -43628 -34998 -44067 -43626 -43625 -34996 -41723 -41722 -32992 -31727 -40877 -36673 -34995 -31726 -34994 -33868 -42962 -38994 -34993 -31724 -40875 -36671 -32988 -30158 -40874 -36670 -32987 -30157 -27557 -25251 -25250 -32986 -30156 -27556 -25249 -40873 -36669 -32985 -30155 -27248 -25248 -40872 -36668 -32984 -30154 -27206 -22068 -40871 -36667 -35299 -30153 -28748 -35298 -30152 -27554 -40870 -36666 -35297 -30151 -27553 -40869 -36665 -32980 -30150 -27089 -40868 -36664 -32979 -30149 -28747 -32978 -30148 -27552 -40867 -36663 -32977 -30147 -26219 -40866 -36662 -32976 -30146 -26218 -40865 -36661 -32975 -30145 -27551 -27550 -22066 -32974 -30144 -27549 -27548 -43049 -43048 -43047 -43046 -27547 -22064 -40863 -36659 -32972 -30142 -26796 -22063 -41721 -41720 -32971 -30141 -26795 -24876 -40861 -38695 -32970 -30140 -26794 -26793 -22214 -40860 -36656 -32969 -30139 -26792 -22213 -22212 -71979 -65666 -60622 -58646 -52841 -49163 -45471 -40859 -36655 -32968 -30138 -26791 -23611 -45470 -40858 -36654 -32967 -30137 -26980 -24874 -22057 -22056 -32966 -30136 -26790 -23949 -23249 -40857 -36653 -32965 -30135 -26789 -22766 -17561 -40856 -36652 -32964 -30134 -26788 -22053 -17560 -32963 -30133 -30132 -71978 -65665 -60621 -58645 -53114 -50316 -45469 -40855 -36651 -32962 -30776 -27278 -22052 -18139 -32961 -30775 -26787 -24556 -21270 -71977 -65664 -60619 -58644 -52886 -49161 -45468 -41719 -36650 -32960 -31723 -30128 -30127 -30126 -71976 -65663 -60618 -58643 -52885 -49160 -45467 -40853 -36649 -32959 -31722 -26785 -22431 -18138 -45466 -42257 -42256 -38693 -38692 -26784 -23948 -21269 -24554 -20872 -19094 -38691 -38690 -27546 -27545 -21268 -19092 -45465 -43283 -38689 -38688 -38687 -26782 -23946 -20160 -19090 -40850 -36646 -32955 -30121 -26781 -22044 -17555 -14433 -45464 -41717 -39927 -39926 -39925 -29001 -27993 -23244 -25399 -21266 -20157 -39924 -39923 -28745 -27991 -22761 -22760 -49723 -49722 -49721 -49720 -28744 -24873 -22758 -22757 -40847 -36643 -32951 -30117 -26779 -22815 -17550 -14411 -40846 -38993 -33866 -30116 -28743 -27988 -22755 -23944 -22753 -17642 -34987 -30115 -28742 -27543 -22751 -16758 -40845 -36641 -34497 -30114 -28741 -25724 -25723 -19427 -40844 -36640 -32947 -30113 -26211 -22034 -16755 -14407 -43045 -43044 -32946 -30112 -27542 -25394 -22747 -23239 -22030 -20864 -32945 -30773 -27541 -27540 -21259 -18633 -42803 -36638 -33863 -31089 -26773 -25722 -21258 -18941 -40841 -36637 -32943 -30109 -26772 -22027 -17542 -14403 -32942 -32941 -71975 -65662 -60617 -58642 -53113 -50315 -45463 -43624 -43623 -35292 -32939 -27539 -26228 -23236 -20860 -22743 -22209 -18130 -35291 -32937 -26771 -23604 -22208 -18129 -71974 -65658 -60616 -58641 -52839 -49158 -45462 -40839 -36635 -35290 -32935 -26209 -25392 -23602 -20364 -71973 -65659 -60614 -55884 -52838 -49157 -45461 -40838 -36634 -32934 -30769 -26770 -22206 -22205 -14398 -34986 -34985 -30103 -71972 -65660 -60613 -58640 -53112 -50314 -45460 -40837 -36633 -22740 -18126 -15297 -34984 -32930 -26769 -23601 -21257 -16738 -71971 -65661 -60612 -58639 -52831 -49155 -45459 -42255 -36632 -32929 -32928 -26768 -22738 -20363 -20362 -71970 -65548 -60611 -59088 -52830 -49154 -45458 -40835 -36631 -32927 -31721 -26767 -22430 -19157 -14394 -71969 -65547 -60610 -58638 -52829 -49153 -45457 -40834 -36630 -34181 -30099 -26766 -21859 -19156 -14491 -71968 -65546 -60609 -55878 -52828 -49152 -45456 -40833 -36629 -34983 -71967 -65543 -60698 -55879 -52827 -49151 -45455 -40832 -38111 -38110 -71966 -66389 -60697 -55876 -52826 -50313 -50312 -50311 -50310 -50309 -71965 -65545 -60608 -55877 -52825 -51162 -45453 -40830 -37551 -37550 -71984 -65542 -60607 -55874 -52824 -49150 -45452 -40829 -37549 -37548 -31720 -71964 -65541 -60606 -55875 -52823 -49149 -45451 -40828 -38109 -38108 -38107 -71963 -65540 -60604 -55872 -52821 -49148 -45450 -40827 -37545 -37544 -32919 -71962 -65539 -60605 -55873 -52820 -49147 -45449 -40826 -37543 -37542 -33859 -71961 -65451 -60602 -55871 -52819 -49146 -45448 -40825 -36621 -34015 -71960 -65450 -60601 -55870 -52818 -51161 -45447 -40824 -36620 -34014 -71959 -65446 -60696 -55869 -52817 -49144 -45446 -42932 -36619 -71958 -65449 -60695 -56853 -52816 -49143 -45445 -40822 -36618 -35287 -71957 -65448 -60600 -55868 -53111 -50308 -45444 -40821 -36617 -33858 -35286 -35285 -71956 -65447 -60599 -55867 -52814 -49141 -45443 -40820 -40152 -35664 -35663 -71955 -65445 -60598 -55866 -52813 -49140 -45442 -40819 -40151 -35561 -35560 -43622 -43621 -43620 -43041 -43040 -43039 -43038 -41710 -41709 -34011 -71954 -66401 -59696 -55863 -54579 -54578 -54576 -54575 -54574 -54573 -54572 -60694 -55861 -52811 -49138 -45440 -60597 -55854 -52810 -49137 -45439 -34495 -71953 -65443 -60595 -55853 -53110 -50307 -45438 -40814 -36610 -34494 -33853 -34493 -30095 -71952 -65442 -60596 -58636 -58637 -58633 -58634 -58635 -36609 -34613 -32904 -71951 -65410 -60594 -55849 -52807 -49134 -45436 -40812 -36608 -33851 -30093 -71950 -65411 -60693 -55848 -52806 -49133 -46371 -40811 -36607 -32902 -30092 -71949 -65409 -60592 -55845 -52805 -49132 -45434 -40810 -36606 -71948 -65408 -60590 -55844 -52804 -49131 -45433 -40809 -36605 -71947 -65407 -60692 -56852 -52803 -48406 -45432 -40808 -36604 -71946 -66400 -60700 -56851 -52802 -49130 -45431 -40697 -36603 -71945 -65402 -59695 -57008 -52798 -49129 -45430 -40696 -36602 -32901 -30917 -71944 -65401 -60591 -58628 -58629 -58630 -45429 -40695 -37539 -38106 -38105 -34009 -71943 -65396 -60589 -55841 -53108 -51160 -45428 -41708 -41707 -38991 -38990 -27018 -36599 -36598 -27205 -71942 -65395 -60588 -55840 -52795 -51159 -46370 -45426 -45866 -32897 -30089 -28348 -71941 -65245 -60586 -55838 -52794 -51158 -45425 -47436 -42799 -42798 -42797 -42796 -71940 -65244 -60585 -52793 -49127 -45424 -40691 -36595 -32895 -30087 -27203 -24550 -71939 -65243 -60691 -55835 -52792 -49126 -45423 -40690 -38988 -38987 -38986 -27202 -24549 -71938 -65242 -60690 -57006 -52791 -49125 -45422 -40689 -38673 -32893 -30085 -27201 -22737 -71937 -65240 -60689 -58620 -58621 -58622 -58623 -58624 -58625 -58626 -58627 -71936 -64610 -59694 -58086 -58085 -58087 -45420 -41703 -39729 -39728 -39727 -71304 -70181 -70180 -60339 -60338 -60336 -60335 -60334 -60326 -60325 -60324 -27200 -25391 -71303 -70190 -70189 -70188 -62822 -62823 -62824 -62825 -60313 -60311 -60310 -42785 -23938 -70672 -69731 -69730 -69729 -59086 -59085 -59084 -59083 -42784 -42783 -42782 -42781 -23231 -32887 -30967 -71935 -65241 -60584 -55836 -51832 -50305 -45415 -42780 -42779 -32886 -30764 -26975 -23598 -32885 -30763 -26765 -25721 -71934 -65239 -60583 -55837 -51567 -51155 -51154 -51153 -51152 -51151 -51150 -27538 -25720 -71933 -65238 -60582 -55832 -54571 -49120 -45413 -40681 -36582 -32883 -30761 -26763 -21849 -71932 -65237 -60580 -55830 -52784 -49119 -45412 -40680 -36581 -32882 -30913 -71931 -65236 -60579 -55829 -53755 -49118 -45411 -40679 -38979 -36579 -31711 -30076 -71930 -65228 -60578 -55828 -52782 -49117 -45410 -40678 -36578 -32880 -30075 -27197 -71929 -65227 -60688 -55827 -52781 -49116 -45409 -40807 -38978 -38977 -38667 -29000 -71928 -66384 -60699 -55826 -52780 -49115 -45408 -45407 -45406 -45405 -45404 -45403 -71927 -65225 -60686 -54911 -52763 -48532 -45402 -45864 -45401 -45400 -45399 -45398 -70671 -65224 -60685 -55125 -53754 -48399 -45397 -40804 -38102 -32876 -31710 -27535 -23596 -23595 -22729 -71926 -65230 -60577 -55824 -54568 -53107 -53106 -53105 -53104 -53103 -53102 -27985 -22429 -22728 -21253 -34008 -71925 -65982 -60575 -55822 -53101 -50303 -45395 -40802 -38665 -38664 -38663 -38662 -35550 -35549 -27534 -71924 -65981 -60574 -55821 -52760 -49113 -45394 -40801 -36571 -32872 -30067 -27533 -71923 -65980 -60573 -55815 -52759 -49112 -45393 -40800 -36570 -32871 -30066 -27194 -38101 -71922 -65979 -60572 -55820 -53100 -50302 -45392 -40799 -41177 -38099 -38098 -38097 -32869 -30064 -26206 -71921 -65165 -60571 -55814 -52755 -49110 -45391 -40798 -36568 -32868 -30063 -28738 -71920 -65166 -60570 -55813 -52754 -49109 -45390 -40797 -36567 -32867 -30062 -26204 -71919 -65168 -60684 -55812 -53099 -50301 -45389 -40796 -36566 -32866 -30061 -27193 -32865 -30060 -27192 -71918 -65978 -60683 -56850 -52752 -49107 -45388 -40795 -36565 -32864 -30059 -27191 -71917 -65977 -60682 -55810 -52751 -49106 -45387 -40794 -36564 -32863 -30058 -28737 -25389 -32862 -30912 -71916 -65164 -60681 -55811 -53098 -50300 -45386 -40793 -36563 -34057 -34620 -27189 -32860 -31709 -26762 -23594 -71915 -65976 -60569 -55809 -52749 -49086 -45385 -42247 -42246 -42245 -30757 -26761 -24547 -71914 -65975 -60567 -55808 -52748 -49085 -45384 -40791 -36561 -32858 -30054 -26760 -21841 -34006 -71913 -65038 -60566 -55802 -53097 -50299 -45383 -40790 -36560 -32857 -33356 -21840 -32856 -30053 -26759 -24546 -71912 -65974 -60565 -55799 -52746 -49083 -45382 -40789 -36559 -32855 -30052 -26758 -25719 -71911 -65973 -60564 -55798 -52745 -49082 -45381 -40788 -36558 -32854 -30051 -26757 -21837 -32853 -30911 -71910 -65972 -60563 -55797 -53096 -50298 -45380 -40787 -36557 -32852 -30756 -30049 -21836 -32851 -30755 -26755 -23592 -71909 -65971 -60562 -55796 -52743 -49080 -45379 -40786 -36556 -32850 -30754 -26754 -24544 -71908 -65970 -60561 -55795 -52742 -49079 -45378 -40785 -36555 -32849 -30753 -26753 -25388 -34005 -71907 -65969 -60560 -55794 -53600 -50297 -45377 -40784 -36554 -32848 -30045 -28736 -25718 -25717 -32847 -29750 -26752 -24542 -71906 -65147 -60559 -55784 -52739 -49077 -45376 -40783 -36553 -32846 -29749 -26751 -25716 -71905 -65968 -60558 -55783 -52737 -49076 -45375 -40782 -36552 -32845 -29748 -26750 -23324 -34004 -71904 -65148 -60557 -55782 -53095 -50296 -45374 -40781 -36551 -32844 -29747 -27187 -22017 -20855 -32843 -29746 -28346 -28345 -20854 -71903 -65967 -60680 -60308 -60307 -60305 -60304 -60303 -60302 -60301 -60300 -28344 -28343 -20853 -71902 -65146 -60556 -55780 -52733 -49073 -45372 -40779 -36549 -32841 -30043 -27247 -22014 -18236 -37526 -30752 -30041 -71901 -65145 -60679 -55779 -53094 -50295 -45371 -40778 -36548 -22013 -32839 -30040 -26747 -26055 -71900 -65113 -60555 -58614 -52731 -49071 -45370 -42244 -42243 -42242 -30039 -26746 -25715 -20137 -20136 -71899 -65114 -60554 -55777 -52730 -49070 -45369 -40776 -38661 -32837 -30038 -26745 -22010 -20135 -20134 -38096 -38095 -30036 -71898 -65112 -60553 -55776 -53093 -50294 -45368 -40775 -38094 -32835 -30035 -26744 -25714 -23323 -18231 -18230 -32834 -30034 -26743 -23935 -18562 -19421 -71897 -65109 -60552 -58613 -52728 -49068 -45367 -41697 -36544 -32833 -30033 -26742 -24537 -22006 -18932 -71896 -65110 -60551 -55774 -52716 -49067 -45366 -40773 -36543 -32832 -30032 -26576 -23321 -18225 -18224 -70615 -65111 -60549 -55773 -52714 -49718 -47334 -42778 -36542 -34487 -30031 -27982 -25146 -25145 -25144 -71895 -70201 -59692 -58080 -54243 -54242 -53090 -51825 -51823 -51821 -47329 -35546 -27528 -71302 -70182 -70193 -62166 -57743 -57742 -57741 -53748 -51141 -51140 -50286 -30028 -27409 -71894 -70211 -61708 -58611 -57739 -50285 -46357 -40769 -38654 -32826 -31356 -28342 -25384 -71893 -65107 -60548 -55772 -51804 -49065 -48007 -42233 -36536 -35543 -30748 -27185 -25383 -71892 -64758 -60547 -55119 -51802 -49064 -46355 -40767 -36535 -32824 -31706 -26570 -23214 -71891 -65105 -60546 -55771 -52713 -49063 -45351 -71301 -69983 -69739 -62164 -71300 -68829 -64066 -62163 -71299 -71890 -64688 -59749 -55770 -51513 -49406 -71889 -65106 -60544 -55768 -52712 -49062 -46354 -44528 -43610 -40139 -40138 -71063 -71888 -65104 -60545 -55765 -55766 -55767 -71887 -67768 -60543 -55117 -53088 -48917 -47658 -71886 -65100 -60542 -55763 -53087 -48916 -47657 -71885 -64614 -59691 -55762 -51794 -49713 -46938 -46937 -46936 -45345 -45344 -71884 -67173 -66375 -66374 -53086 -50752 -47325 -40764 -36531 -32821 -31703 -71883 -65101 -60539 -55760 -51786 -51157 -47656 -46934 -45340 -45339 -43605 -30022 -25711 -71882 -64757 -60538 -55759 -51785 -48914 -46349 -44526 -43603 -43602 -43601 -30020 -25381 -71881 -65102 -60537 -55757 -51781 -48913 -46348 -44525 -39716 -32818 -30019 -30018 -23584 -71298 -65103 -60536 -55758 -51778 -48912 -46153 -44524 -36527 -34805 -30017 -30016 -27407 -71297 -67769 -62829 -57735 -54566 -53746 -53745 -53082 -51136 -51135 -48002 -33835 -26052 -70494 -69291 -71296 -69713 -67750 -71295 -69712 -68825 -59078 -70683 -69738 -69737 -56995 -71880 -65098 -60535 -55756 -52710 -50751 -46929 -46928 -46927 -46926 -27183 -25379 -71879 -64724 -59689 -58075 -56993 -50875 -50282 -48000 -47999 -47998 -44382 -34801 -26567 -71878 -64756 -60534 -55755 -53080 -48911 -46149 -42070 -41682 -41681 -38968 -26566 -26565 -71294 -70184 -64442 -59077 -53079 -50281 -46148 -44381 -36518 -36517 -34315 -26197 -25376 -23578 -18930 -24440 -23206 -23205 -22710 -22709 -23576 -19416 -71877 -65099 -60678 -55754 -52680 -48910 -45326 -40754 -36516 -34003 -71876 -65097 -60677 -55753 -52670 -48909 -45325 -40753 -36515 -34612 -45324 -40752 -36514 -35538 -34056 -26564 -24439 -40751 -36513 -35537 -31698 -27404 -27403 -40750 -36512 -32806 -30006 -26561 -21992 -71062 -72059 -70197 -68816 -71293 -70195 -70194 -60280 -71875 -65095 -60533 -56291 -56290 -55109 -55108 -55107 -71292 -69721 -69720 -69719 -58070 -58071 -58072 -58073 -71874 -67736 -67735 -55752 -54239 -51156 -45320 -40749 -36511 -32805 -30745 -71873 -65093 -60530 -55751 -52668 -48906 -45319 -40748 -36510 -32804 -30004 -27012 -71872 -65092 -60675 -56936 -54238 -49709 -49708 -49707 -49706 -49705 -49704 -53078 -53077 -53076 -53075 -53074 -53073 -30003 -26196 -23202 -52665 -48903 -45315 -40745 -36507 -34800 -30744 -26195 -25375 -71871 -65091 -60529 -55101 -55099 -55098 -55097 -55096 -36506 -34799 -30743 -28341 -24436 -71870 -65090 -60528 -55750 -52664 -48901 -45313 -42766 -36505 -32680 -30000 -26560 -21988 -71869 -65088 -60674 -56846 -52663 -48900 -45312 -42765 -36504 -32679 -29999 -26559 -26558 -71291 -68256 -60527 -55749 -54236 -48899 -46147 -37499 -71868 -65089 -60673 -55748 -53072 -50280 -45311 -40741 -37498 -38967 -37496 -32676 -29998 -71867 -65087 -60525 -55747 -52661 -49061 -45310 -40740 -36502 -32675 -29997 -71866 -65086 -60524 -55746 -52660 -49060 -45309 -40739 -36501 -32674 -34633 -32673 -31349 -71865 -65085 -60522 -55745 -53071 -50536 -46146 -40738 -38077 -32672 -30742 -27660 -27659 -23199 -23198 -19414 -15288 -40134 -40133 -40132 -26741 -23925 -18548 -15286 -71864 -65082 -60523 -58068 -58067 -58066 -58065 -58064 -58063 -58062 -58061 -26092 -25374 -25373 -22568 -22567 -71863 -65083 -60521 -55744 -52657 -49057 -46919 -46918 -46917 -46916 -46915 -26740 -23307 -18221 -18220 -12052 -8908 -71862 -65084 -61692 -61691 -61690 -61689 -61687 -44378 -13693 -14466 -15267 -20125 -14464 -17637 -13688 -13687 -13685 -11492 -8909 -13682 -21249 -71860 -65080 -64440 -62156 -62155 -62154 -62153 -62152 -61675 -71859 -65079 -60518 -55739 -52871 -49054 -45303 -43025 -36497 -32668 -32667 -27981 -21981 -20353 -20504 -11479 -71858 -65081 -60277 -54909 -51764 -49053 -45302 -47320 -42763 -42762 -42761 -42760 -24434 -19411 -16005 -13677 -20123 -20122 -4388 -576 -2779 -5556 -4200 -3394 -3210 -4827 -3718 -71688 -65223 -60050 -55998 -51448 -29989 -26739 -21979 -52314 -48392 -71687 -65222 -60049 -55997 -52313 -49052 -45300 -40732 -36495 -32664 -29988 -27181 -24433 -24432 -24431 -24430 -71686 -65221 -60048 -55996 -52312 -49051 -45299 -41169 -36494 -35536 -30738 -71685 -65220 -60047 -55995 -52311 -49050 -45298 -41168 -36493 -33820 -33819 -71684 -65218 -61482 -61481 -52310 -51289 -45297 -43024 -43023 -43022 -43021 -43020 -43019 -71683 -65217 -60045 -55993 -54351 -49048 -45296 -40730 -36491 -36490 -36489 -36488 -71682 -65216 -60206 -57294 -52308 -49047 -45295 -40729 -36487 -32654 -32653 -32652 -21977 -71716 -70154 -60208 -59881 -59229 -51840 -45294 -40728 -39711 -38965 -32650 -32649 -31695 -70141 -70142 -69679 -62088 -56791 -53632 -53232 -46913 -46912 -46911 -33813 -30735 -27401 -24146 -24145 -24144 -71681 -69198 -66076 -61486 -58049 -48389 -45292 -42757 -36483 -35532 -29980 -27400 -27399 -26272 -26271 -26045 -70140 -69680 -62085 -58052 -53634 -47997 -46138 -43016 -37489 -33811 -31346 -27397 -23920 -23919 -23918 -71715 -65214 -60041 -55991 -52303 -49046 -45289 -40725 -36480 -32798 -32797 -26730 -21972 -22197 -22196 -21971 -71714 -65213 -60205 -57295 -52302 -51839 -47532 -42755 -42754 -42753 -38960 -32794 -23189 -71713 -65212 -59686 -59877 -52301 -49044 -47317 -42968 -42967 -42966 -42965 -42065 -23188 -29975 -26729 -22195 -18537 -29974 -26728 -21968 -21967 -29973 -26727 -21966 -16718 -71986 -70153 -70151 -68124 -57551 -56784 -56785 -56786 -56787 -56841 -56789 -38953 -38952 -31689 -31688 -26723 -15287 -12041 -70753 -71679 -65209 -61474 -61473 -52300 -49043 -46908 -46907 -71680 -64656 -61472 -61471 -57549 -53638 -45284 -44046 -44045 -44044 -44043 -41665 -41664 -41663 -71711 -70143 -70152 -67089 -58046 -54336 -54209 -54210 -54211 -54212 -54213 -41658 -41657 -40121 -23182 -23181 -71717 -66610 -63215 -59871 -54206 -50393 -47308 -46905 -46131 -46130 -46129 -37712 -24270 -21956 -21955 -22248 -23560 -2817 -3713 -4052 -4309 -4138 -3957 -3200 -3624 -4297 -6258 -5637 -4325 -4324 -2801 -3887 -3886 -3206 -1090 -3423 -6732 -6733 -4332 -6729 -3500 -2818 -4372 -32777 -29968 -26147 -21953 -16710 -13898 -32776 -29967 -26146 -32775 -29966 -26145 -21952 -16709 -13897 -32774 -29965 -26144 -21951 -16708 -14489 -32773 -29964 -26143 -21950 -16707 -13902 -32772 -29963 -26142 -22204 -20935 -32771 -29962 -26141 -21949 -16705 -14698 -32770 -29961 -26140 -21948 -16704 -13896 -12718 -71346 -65425 -61397 -55168 -51853 -49042 -45280 -40720 -36467 -32769 -30397 -27179 -21947 -18191 -18190 -18189 -20070 -70877 -64839 -60630 -55839 -52366 -48525 -47990 -71675 -66603 -71674 -65231 -60207 -56824 -52254 -49041 -45279 -41295 -70880 -64838 -60629 -55846 -52365 -49040 -45278 -40719 -36466 -32768 -29959 -21946 -16237 -70515 -68135 -68134 -71673 -65161 -63654 -70455 -70107 -64020 -70876 -64837 -60628 -55355 -52019 -49039 -45277 -40718 -39705 -39704 -39703 -70721 -67088 -70700 -67571 -63652 -70450 -67003 -64418 -63274 -70460 -69646 -64427 -70766 -70751 -70743 -71345 -68723 -68722 -70476 -69659 -70551 -69175 -70475 -68103 -70719 -67190 -70474 -70116 -70544 -67605 -70543 -67630 -70472 -69645 -70451 -68115 -67187 -67186 -70447 -70118 -70117 -59025 -70439 -70112 -70111 -66502 -70706 -70157 -70547 -69183 -70457 -69672 -64403 -70456 -70114 -70113 -70444 -68687 -63270 -63271 -70477 -69667 -70465 -70161 -70471 -67628 -70470 -68116 -70468 -69675 -70448 -66269 -64417 -62793 -70552 -69189 -70469 -70162 -70445 -69643 -66266 -66265 -70461 -66495 -66494 -70459 -69202 -67618 -70744 -70698 -66493 -62106 -70742 -70462 -69190 -63644 -70458 -67169 -63643 -70502 -67168 -64402 -62645 -70549 -67641 -70473 -69637 -70466 -70133 -70464 -67639 -70538 -67621 -70539 -69673 -70687 -70137 -69634 -69633 -30729 -70463 -70100 -70099 -70453 -67625 -66985 -64415 -70452 -69676 -59870 -58110 -70511 -66984 -64035 -61662 -70158 -70165 -63696 -70509 -68683 -64425 -60306 -70820 -69644 -68133 -68132 -70495 -69648 -69647 -69650 -70499 -70134 -68119 -64399 -70454 -68157 -63258 -70694 -69663 -69662 -70503 -70160 -70159 -67611 -70504 -70171 -70170 -62771 -71577 -70156 -70155 -68145 -70688 -66482 -63636 -59314 -70438 -70106 -69185 -64397 -70501 -70110 -66477 -66478 -70441 -70168 -70169 -69653 -70440 -69166 -64411 -64421 -70446 -70108 -70136 -64011 -70505 -70109 -70139 -64009 -70686 -70098 -68633 -64007 -70500 -70102 -70101 -62633 -70685 -69657 -67085 -61539 -70437 -70105 -69193 -61537 -70697 -70164 -70163 -70875 -64672 -60627 -59046 -58690 -55351 -53211 -39702 -70764 -30435 -28334 -38068 -30434 -29084 -34789 -34788 -70874 -64836 -60626 -55850 -52018 -51183 -45275 -40717 -36464 -34787 -29957 -26716 -25705 -25704 -25703 -70872 -64853 -60620 -55856 -52017 -51182 -45274 -40716 -36463 -32763 -30727 -30726 -25702 -25701 -25700 -70689 -70319 -70318 -70331 -33806 -28775 -71672 -65158 -60039 -55619 -52230 -48524 -71671 -65966 -59768 -58532 -58531 -71670 -65157 -59767 -58530 -58529 -70695 -64657 -59862 -71363 -66735 -66736 -70871 -64849 -60615 -58687 -58688 -48383 -47823 -47822 -70614 -65156 -60038 -55616 -52229 -48523 -46902 -46901 -46900 -46899 -46898 -71669 -65965 -60037 -58528 -58527 -53687 -48151 -71668 -65154 -60036 -58526 -58525 -53685 -48150 -70873 -64848 -60249 -58706 -58707 -50692 -47821 -70613 -69168 -69167 -69165 -69164 -69163 -69162 -69170 -71667 -65964 -62689 -55614 -53682 -53681 -48149 -48148 -70642 -69196 -69195 -69194 -58523 -54133 -50804 -50803 -71666 -64767 -60033 -55613 -52228 -50198 -45264 -41648 -41647 -41646 -71665 -70131 -70130 -70129 -70128 -70127 -70126 -44372 -44371 -34785 -71664 -64806 -62684 -62683 -62682 -62681 -62680 -42742 -42741 -42055 -42054 -30723 -71663 -64805 -60032 -55612 -52227 -50191 -46115 -42740 -42739 -42051 -42050 -32757 -32756 -70765 -71662 -65963 -62679 -62069 -58521 -51095 -48144 -42738 -42048 -38632 -38631 -30720 -25367 -23557 -70612 -67081 -62068 -62067 -59007 -59006 -59005 -50800 -49639 -48140 -48139 -34778 -31682 -31681 -70868 -64835 -60603 -55859 -52016 -49037 -46891 -46890 -46889 -46888 -46887 -70467 -66470 -71661 -65962 -60030 -54901 -54555 -54554 -54553 -54552 -42730 -42729 -42728 -70611 -70119 -62678 -57534 -53676 -53675 -45137 -44369 -44368 -44367 -44366 -70865 -64810 -60593 -58685 -58686 -56484 -56482 -47817 -47816 -47815 -47814 -71660 -67558 -67557 -67556 -67555 -53673 -71659 -65960 -60028 -55610 -52253 -48516 -45135 -41629 -41628 -40113 -40112 -70610 -67080 -62677 -59004 -53345 -53344 -46107 -42039 -38058 -34296 -33793 -71658 -65959 -60027 -55609 -52225 -49036 -46886 -44361 -44360 -44359 -38624 -71657 -65150 -60026 -55608 -52224 -49035 -45132 -40698 -36444 -32741 -29943 -71656 -65958 -60025 -55607 -52223 -49034 -45131 -40677 -36443 -32740 -29942 -24143 -22547 -22546 -71655 -65957 -60024 -55606 -52222 -49033 -45130 -41626 -39692 -34294 -34293 -71654 -65956 -60023 -55605 -52221 -49032 -46106 -40675 -38623 -37460 -37459 -71653 -65143 -60022 -55604 -52220 -50184 -48138 -48137 -42721 -38941 -35518 -70609 -70104 -69660 -58481 -54811 -54810 -54809 -54127 -54126 -54125 -54124 -70608 -68112 -61529 -58515 -58514 -53669 -48135 -47283 -47282 -47281 -47280 -70607 -70135 -66573 -59003 -58513 -54549 -54548 -54547 -54546 -54545 -44233 -70541 -66240 -70537 -69182 -70542 -67626 -70864 -64590 -59766 -58684 -58177 -70863 -64847 -59765 -58176 -58175 -70434 -70132 -70138 -61526 -58104 -71652 -64768 -60203 -56832 -52219 -49031 -45122 -40670 -36431 -32727 -29935 -26712 -23174 -71651 -64807 -59675 -56833 -51628 -50178 -46882 -42713 -42712 -34767 -70862 -64809 -60587 -57179 -57178 -57177 -57176 -57206 -57205 -57175 -57174 -42707 -42706 -42705 -42704 -42703 -42702 -71650 -64804 -60021 -55603 -52218 -51088 -46092 -42701 -42700 -38046 -32718 -28986 -28985 -28721 -26708 -71649 -65142 -60020 -55602 -52252 -49030 -45117 -40665 -36211 -33576 -33575 -70606 -64744 -63625 -61524 -56620 -54120 -54119 -54118 -47276 -46878 -46087 -38042 -38041 -71648 -66571 -59673 -58511 -58510 -51086 -48131 -47808 -42029 -42028 -42027 -42026 -31662 -27380 -71647 -64769 -59672 -58509 -58508 -53663 -53331 -47806 -42993 -42992 -42991 -42021 -35507 -35506 -70449 -68142 -68141 -68140 -70859 -64846 -60581 -58682 -58683 -58172 -58171 -58170 -70858 -64871 -60576 -58704 -58705 -51123 -70857 -64834 -60568 -58680 -58681 -55347 -55344 -55341 -57195 -57194 -57192 -70605 -68680 -64408 -64026 -58679 -54778 -50221 -47803 -57182 -57181 -57180 -40095 -70604 -64716 -60246 -58676 -58677 -57189 -57188 -57187 -57186 -57185 -57184 -38027 -70855 -68679 -61627 -59045 -58675 -58167 -58166 -58165 -50227 -46073 -46072 -43556 -26704 -25690 -38023 -26702 -21924 -23774 -21234 -71646 -65955 -60019 -55600 -52217 -49029 -45259 -40508 -38589 -35850 -35849 -35848 -24841 -24840 -24839 -71645 -65954 -60018 -55599 -52216 -49028 -45258 -40507 -35847 -32696 -29919 -26193 -71644 -65953 -60017 -55598 -52215 -49027 -45257 -40506 -37218 -32695 -30432 -26700 -21921 -18085 -18084 -70849 -64782 -60550 -54891 -51548 -51118 -49762 -32694 -31655 -32693 -31654 -32692 -31653 -26973 -32691 -31652 -26972 -32690 -31651 -26947 -32689 -31650 -26971 -32688 -31649 -26970 -32687 -31648 -27842 -32686 -31647 -27841 -26699 -32685 -31646 -26967 -26698 -32684 -31645 -27840 -26697 -32683 -31644 -26696 -26695 -32682 -31643 -26965 -26694 -32681 -31812 -26964 -26693 -32644 -31811 -26963 -26692 -32643 -31810 -26962 -26691 -32642 -31809 -26961 -26690 -32641 -31808 -26689 -26688 -32640 -31807 -26687 -26686 -44024 -44023 -26685 -26684 -32349 -31805 -26683 -26682 -32348 -31804 -26681 -26680 -32347 -29730 -27177 -32346 -29729 -27839 -27838 -32639 -29728 -26119 -24825 -22202 -32638 -29727 -26118 -24824 -23144 -32637 -29726 -26117 -24823 -24105 -24104 -32636 -29725 -26116 -24822 -24102 -24101 -32635 -32634 -29724 -24821 -24099 -24098 -32633 -29723 -26115 -24820 -22262 -18511 -32632 -29722 -26114 -24819 -24096 -24095 -32631 -29721 -24988 -23142 -21893 -32630 -29720 -30444 -32629 -29719 -26112 -24987 -22258 -32628 -29911 -24986 -23140 -32627 -29910 -26111 -24985 -22256 -32626 -29909 -26110 -24984 -22254 -21884 -32625 -29908 -27176 -25681 -22252 -20818 -32624 -29907 -26109 -25680 -24981 -24091 -32623 -29906 -26108 -25679 -25075 -24214 -14458 -70749 -70748 -71643 -65141 -60001 -55597 -51625 -49026 -46775 -41582 -41581 -41580 -70603 -65952 -64388 -59000 -58999 -58998 -58997 -46773 -46772 -46771 -71642 -68646 -68641 -62578 -58475 -53329 -53328 -48125 -48124 -37214 -71641 -64743 -59670 -56631 -54115 -53661 -53660 -48122 -48121 -48120 -34745 -70602 -69201 -63246 -63254 -62768 -62767 -62766 -59044 -59039 -47264 -42003 -70842 -64845 -60541 -56059 -52015 -49025 -45250 -40500 -35836 -34742 -31312 -27003 -70841 -64664 -59669 -58667 -58668 -58672 -58673 -57167 -57166 -57164 -57163 -43170 -41178 -70923 -64808 -59668 -56862 -51750 -50209 -47258 -43548 -41570 -37205 -37204 -34736 -23773 -45244 -40497 -35830 -32613 -29899 -26233 -25678 -70840 -64781 -60532 -58160 -58159 -58158 -70839 -64870 -60526 -58700 -58701 -51106 -70837 -64844 -60520 -58669 -58670 -51105 -26678 -28238 -71640 -65951 -59998 -55595 -52213 -49613 -49612 -49611 -70403 -67543 -67542 -58474 -58473 -54113 -70436 -70167 -70166 -68686 -71639 -65950 -59997 -55594 -52212 -49023 -45242 -40496 -35829 -32612 -29898 -26677 -21873 -16676 -16228 -12036 -71638 -65169 -59996 -55593 -52211 -49022 -45241 -40495 -35828 -32611 -29897 -26676 -21872 -16675 -13872 -10331 -70641 -65424 -60115 -54888 -54179 -54178 -46339 -44212 -44211 -43167 -40081 -70435 -66957 -61618 -61617 -61615 -71637 -65135 -59994 -54887 -51595 -49021 -47257 -47435 -47434 -47433 -47432 -42230 -28236 -70997 -65495 -60835 -56043 -52450 -49020 -45238 -40655 -37201 -32604 -29894 -25025 -24977 -20813 -18498 -18497 -64783 -60515 -55960 -52013 -49019 -47431 -47430 -47429 -71636 -65949 -59993 -55592 -52210 -49018 -45234 -41562 -35905 -34254 -34253 -34252 -31634 -31633 -31632 -31631 -64538 -64025 -63240 -54187 -51712 -49756 -49757 -49760 -49759 -42674 -33539 -29890 -23319 -23318 -23317 -71635 -67071 -66568 -66567 -54112 -51430 -47428 -46333 -46504 -46503 -39559 -38007 -32598 -23768 -20488 -20487 -71344 -65423 -60117 -55167 -51851 -48505 -45225 -43541 -40077 -40076 -40075 -27174 -25675 -19378 -19377 -19376 -71343 -65422 -60118 -55166 -51850 -49017 -45224 -40649 -35899 -32596 -29886 -26671 -21865 -16662 -16661 -12032 -71677 -65948 -59992 -55591 -52883 -49016 -45223 -40648 -35898 -32595 -32594 -32593 -32592 -32591 -32590 -32589 -71634 -65134 -59990 -55590 -52209 -49015 -45222 -40647 -35897 -32588 -29884 -26669 -21863 -16659 -16949 -7918 -71633 -65229 -63998 -57219 -52208 -48358 -45221 -44008 -44207 -38849 -34247 -27173 -24973 -21215 -20485 -20484 -70836 -64832 -60513 -57161 -57160 -57159 -57158 -57157 -57156 -57154 -57153 -28712 -24972 -24971 -24083 -20806 -8674 -70653 -69192 -69191 -62060 -58117 -51082 -50133 -50134 -50135 -50136 -50137 -34244 -34243 -27358 -27357 -20803 -3301 -4378 -4377 -3623 -3755 -4435 -5511 -3040 -3530 -2205 -2980 -70702 -70711 -70714 -70713 -71061 -70712 -70710 -70722 -45911 -71857 -65077 -60516 -55738 -53069 -50279 -45218 -44205 -71856 -65078 -60517 -55737 -52654 -49012 -45217 -44204 -71855 -65076 -60514 -55735 -52653 -49011 -45216 -44203 -71854 -65075 -60503 -55734 -53070 -50278 -45215 -44202 -71853 -65074 -60502 -55733 -52651 -49009 -45214 -44201 -71852 -65072 -60501 -55732 -52650 -49008 -45213 -44200 -71851 -65073 -60500 -55730 -53068 -50277 -49699 -49698 -71850 -65070 -60672 -55728 -54234 -54233 -54232 -44198 -71849 -65071 -60671 -55727 -52647 -49005 -45210 -44197 -71848 -65069 -60499 -56989 -53067 -50276 -45209 -44196 -71847 -65066 -60497 -56988 -52645 -49003 -45208 -44195 -71846 -65065 -60498 -55093 -52644 -49002 -45207 -44194 -71844 -65068 -60495 -55726 -53066 -50275 -49696 -49695 -71843 -65067 -60496 -55725 -52642 -49000 -45205 -44354 -71842 -65064 -60494 -55724 -52641 -48999 -45204 -44353 -71841 -65063 -60493 -55723 -53065 -50274 -46330 -46329 -71840 -65062 -60670 -55722 -52639 -48997 -46328 -46327 -71839 -65058 -60492 -56464 -52638 -48996 -45200 -44350 -71845 -65061 -60491 -55713 -52637 -49381 -71838 -65060 -60669 -56935 -52636 -49694 -71837 -65059 -60490 -55712 -52635 -49403 -71836 -65057 -60667 -56934 -52634 -48503 -71835 -65056 -60489 -55711 -53064 -50273 -45199 -44349 -71834 -65055 -60488 -55710 -52632 -48994 -45198 -44348 -71833 -65050 -60487 -55709 -52631 -48993 -45197 -44347 -71832 -65049 -60486 -55708 -53063 -50272 -45196 -44346 -71831 -65052 -60485 -55707 -52600 -48991 -46326 -46325 -71827 -65048 -60484 -55706 -52599 -48990 -45194 -44344 -71826 -65047 -60483 -55705 -53062 -50271 -46324 -71825 -65046 -60482 -55704 -52593 -48988 -46323 -71824 -65045 -60481 -55703 -52592 -48987 -46322 -71290 -65041 -60480 -58607 -53061 -50747 -50269 -50268 -71289 -65042 -60479 -59075 -52590 -50267 -50266 -50265 -71823 -65043 -60668 -55699 -52589 -48984 -45191 -44341 -70631 -66363 -59594 -59074 -57713 -57712 -57711 -57710 -70630 -66362 -62151 -62150 -57706 -57707 -57708 -57709 -70629 -65034 -60478 -56460 -52586 -50262 -46318 -44338 -71822 -65035 -62567 -55698 -53059 -50746 -50260 -50259 -71821 -65036 -60476 -58605 -52584 -50258 -50257 -50256 -71820 -65031 -60477 -55696 -52583 -48978 -45183 -44335 -71288 -65033 -60475 -54826 -53058 -50255 -49687 -49685 -71287 -65032 -60474 -55695 -52581 -48976 -48099 -48098 -71819 -67992 -60473 -55694 -52580 -48975 -46315 -44332 -71818 -65029 -60472 -55693 -53057 -50254 -49678 -49677 -71817 -69736 -69735 -55692 -54231 -48973 -45177 -44330 -71816 -65024 -60470 -55691 -52577 -48972 -45176 -44329 -71815 -65027 -60469 -54825 -53056 -50253 -48097 -48096 -71814 -65025 -61671 -57704 -52576 -48356 -46314 -44327 -71813 -65026 -61399 -54883 -52574 -52575 -49675 -49674 -71812 -65023 -60467 -57703 -53055 -50252 -45172 -44325 -71830 -65021 -60466 -58604 -52572 -48969 -45171 -44324 -71811 -65022 -60464 -58603 -52571 -48968 -45170 -44323 -71286 -70199 -69732 -68254 -61666 -61665 -61664 -61663 -71285 -70200 -69709 -69252 -68251 -68250 -68249 -68248 -71810 -65019 -60463 -58599 -51563 -48965 -45167 -44320 -71809 -65018 -60465 -58598 -53052 -53051 -53050 -53049 -71808 -65020 -60666 -58597 -53048 -50250 -46313 -71807 -65015 -60665 -56932 -52567 -48962 -46312 -71806 -65016 -60664 -56931 -52566 -48961 -46311 -71306 -71284 -68245 -71805 -69771 -71804 -64508 -71283 -70186 -69733 -68821 -71282 -70187 -69725 -60271 -71281 -69724 -69723 -69722 -64725 -61655 -60266 -71280 -70192 -70191 -69740 -71803 -67731 -59831 -56978 -71279 -69710 -71802 -69727 -59869 -71278 -69728 -69250 -71801 -69249 -69248 -71277 -69247 -69246 -69288 -71276 -70196 -69699 -68820 -71275 -69235 -69243 -69287 -70478 -68227 -68226 -59064 -71800 -65012 -60462 -56973 -54229 -71799 -65011 -60461 -55088 -51441 -71798 -69285 -60460 -56972 -54565 -71797 -65008 -60459 -55087 -54564 -71796 -65010 -60458 -55086 -53151 -71795 -65007 -60457 -55085 -53161 -71794 -65002 -60456 -55084 -53159 -71793 -65004 -60455 -55083 -53156 -71792 -65003 -60454 -55082 -54228 -71791 -65005 -60453 -55081 -53046 -71790 -65000 -60452 -55080 -51443 -71789 -64999 -60451 -55079 -53045 -71788 -65001 -60450 -55078 -53148 -71787 -64996 -60449 -55077 -53147 -71786 -64998 -60448 -55377 -54563 -71785 -64997 -60447 -55375 -54562 -71784 -69706 -69705 -69704 -51751 -71274 -64995 -59926 -71273 -67728 -64054 -71272 -67726 -67720 -71783 -64992 -60663 -56930 -52565 -48502 -71782 -64993 -60445 -55372 -52564 -48960 -46000 -71781 -64991 -61022 -55369 -52563 -48959 -46310 -71060 -71059 -71058 -71780 -70198 -71779 -64694 -71778 -64693 -71271 -69701 -69702 -71270 -69698 -71777 -64990 -59853 -70693 -69234 -69241 -71269 -64986 -61715 -71268 -64985 -59923 -71267 -64984 -59922 -71776 -64983 -60444 -54953 -71775 -64982 -61021 -56971 -71774 -64981 -61019 -54951 -71773 -64975 -60443 -55368 -53152 -71829 -64973 -61020 -55370 -53154 -71772 -64974 -60442 -55366 -53153 -70750 -71057 -71771 -69233 -62134 -71770 -69232 -69240 -71056 -71266 -70183 -71265 -70185 -71769 -67121 -72161 -65827 -61253 -55715 -51971 -48958 -45158 -40643 -35893 -32581 -30674 -26667 -26666 -21828 -21827 -3848 -4152 -4151 -3799 -2492 -6433 -6432 -6431 -6430 -6429 -6428 -3420 -2815 -2995 -13659 -7712 -16647 -15844 -15843 -16646 -13655 -11465 -70834 -64831 -60512 -56056 -52010 -48957 -45157 -40642 -35892 -35480 -35479 -26665 -21826 -20033 -18871 -18870 -70835 -64872 -60511 -56055 -52009 -48956 -45156 -40641 -35891 -35478 -35477 -26664 -21825 -16642 -15840 -15839 -70670 -69640 -66731 -66732 -57121 -54596 -54595 -43152 -42661 -42660 -38465 -33532 -33531 -33530 -33529 -33528 -71342 -65421 -60120 -55165 -51848 -48955 -45154 -40639 -38278 -38277 -38276 -26318 -21822 -22245 -22244 -16639 -70833 -64830 -60510 -56054 -52008 -48954 -45153 -40638 -35888 -32574 -29875 -26662 -21821 -16226 -13646 -12028 -70832 -64868 -60509 -56053 -52007 -48953 -45152 -40637 -35887 -35475 -35474 -26661 -21820 -16225 -14101 -12027 -70831 -64829 -60507 -55852 -52006 -48952 -45151 -40636 -35886 -35473 -35472 -26660 -25673 -25672 -25671 -23127 -1500 -2473 -2747 -2574 -6731 -3605 -768 -2857 -4022 -4021 -4020 -4019 -4018 -4017 -3017 -577 -72102 -65630 -70424 -67206 -72103 -65793 -61252 -55569 -51970 -50391 -72104 -65792 -59809 -71701 -72171 -65790 -61251 -55566 -51776 -72105 -65789 -61250 -55563 -51771 -49402 -72106 -65791 -61249 -55559 -51969 -48951 -45150 -40635 -35885 -32571 -29872 -26659 -21818 -13869 -72107 -65786 -61248 -55556 -51968 -48950 -45149 -40634 -35884 -32570 -29871 -26658 -21817 -19362 -72077 -65787 -61247 -55554 -51967 -48949 -45148 -40633 -35883 -32569 -29870 -26478 -21816 -16948 -14680 -14739 -72160 -67671 -61421 -57152 -72078 -65785 -61245 -55544 -51966 -48353 -45147 -40632 -35882 -35881 -35880 -72079 -65784 -61244 -55667 -51965 -48948 -45146 -40631 -35879 -33344 -71756 -72080 -65054 -72081 -65783 -59812 -55543 -72082 -65782 -61243 -55542 -51766 -72159 -67205 -72083 -65781 -61242 -55541 -53289 -72084 -65780 -61241 -55666 -51762 -72158 -65779 -59665 -55540 -51964 -50389 -50390 -72085 -65778 -61240 -55539 -51963 -48946 -45145 -40630 -35878 -72086 -65777 -61239 -55538 -53273 -50787 -72087 -65775 -61238 -55537 -51961 -48501 -72157 -65772 -61237 -55536 -51960 -48945 -45144 -42200 -72088 -65774 -61236 -56173 -51959 -48352 -46751 -43537 -35877 -37073 -30449 -26477 -25351 -72089 -65771 -61420 -55535 -51958 -48944 -45106 -43448 -35876 -32567 -29869 -27171 -72156 -65770 -61234 -55534 -51957 -48943 -45105 -40627 -35875 -32566 -29868 -26476 -21815 -70729 -72090 -64763 -59830 -56582 -72091 -65769 -61233 -55532 -51956 -49430 -45999 -72092 -65768 -61232 -55531 -51955 -48942 -45104 -40626 -35874 -32565 -29867 -26475 -21814 -19361 -72155 -65767 -61231 -55530 -51954 -48941 -45103 -40625 -35873 -32564 -29866 -26474 -24536 -72093 -65766 -61230 -55529 -51953 -48940 -45102 -40624 -35872 -32563 -29865 -27953 -21813 -72094 -65765 -61229 -54881 -71699 -72095 -65763 -59811 -70411 -65756 -62290 -70703 -70410 -65053 -59847 -72096 -65755 -61419 -55528 -51952 -51028 -72097 -65754 -61228 -55527 -51951 -48500 -72098 -65753 -61418 -55526 -51950 -51027 -72154 -65824 -59856 -72100 -65752 -59800 -72061 -65751 -59757 -54927 -72062 -65750 -61281 -54930 -51447 -7823 -72063 -65749 -61225 -55525 -51949 -48939 -44944 -40623 -35871 -32562 -29864 -27170 -13641 -8075 -72064 -65748 -61224 -55716 -51948 -48938 -44943 -40622 -35870 -32561 -30440 -25477 -21812 -18476 -18475 -18474 -72065 -65747 -59832 -72066 -65746 -62571 -55524 -51761 -72067 -65745 -62570 -55523 -51947 -48937 -44942 -72068 -65744 -62569 -55522 -51946 -48936 -48089 -72069 -65743 -62602 -55521 -51945 -48935 -44940 -40621 -72070 -65742 -61222 -56174 -51944 -48934 -44939 -40620 -35869 -72071 -65741 -61221 -55518 -51943 -48933 -44938 -40619 -35868 -34002 -72153 -65740 -61220 -55516 -51942 -48932 -44937 -40618 -35867 -32560 -29863 -27952 -9889 -70704 -68836 -70546 -68782 -71696 -72058 -72057 -70421 -70174 -69767 -70419 -70176 -70175 -70730 -72072 -69227 -70412 -70173 -70172 -72073 -65739 -59750 -55511 -51941 -50786 -72074 -65738 -59751 -55508 -51940 -49734 -72152 -65737 -64145 -72075 -65736 -61218 -55505 -51939 -48931 -44936 -72054 -65735 -59664 -55503 -51938 -48930 -44935 -72053 -65734 -59663 -57731 -57730 -57729 -57728 -72052 -65733 -59662 -55498 -51936 -48928 -46306 -72051 -67675 -60971 -60970 -60969 -60968 -60967 -72050 -65731 -59661 -55494 -51934 -48926 -44931 -65730 -64143 -66936 -66225 -66223 -64140 -72049 -65729 -64139 -64138 -64137 -64136 -64135 -72151 -65728 -64150 -64149 -64148 -64147 -64146 -72150 -65727 -64155 -64154 -64153 -64152 -64151 -72048 -65726 -61216 -55466 -51929 -48921 -46300 -72047 -65720 -61960 -55464 -51928 -48920 -44926 -40617 -35866 -34001 -72149 -65721 -61214 -56220 -51927 -48919 -44925 -40616 -35865 -32559 -29862 -26472 -23311 -72046 -65722 -61213 -55460 -51926 -48918 -44924 -40615 -35864 -32558 -29861 -27355 -27354 -72148 -67773 -61212 -55457 -51925 -48897 -44923 -40614 -35863 -32557 -29860 -27353 -27352 -72147 -65724 -61211 -55456 -51924 -48896 -44922 -40613 -35862 -32556 -29859 -27166 -24967 -72045 -65725 -61210 -55455 -51923 -48895 -44921 -40612 -35861 -32555 -29858 -26471 -22510 -72044 -65703 -61209 -55454 -51922 -48894 -44920 -40611 -35860 -32554 -29857 -26470 -21809 -72043 -65702 -61208 -55453 -51921 -48893 -44919 -40610 -35859 -32553 -29856 -27165 -21808 -72042 -65701 -61206 -55452 -51920 -48892 -44918 -40609 -35818 -32552 -29855 -26469 -23757 -72039 -65700 -61205 -55451 -51919 -48891 -44917 -40608 -35817 -32551 -29854 -27164 -22509 -72041 -66463 -59839 -72040 -67672 -61415 -60947 -53788 -72038 -69770 -67942 -61907 -57130 -51725 -51723 -50775 -46870 -44317 -39140 -39139 -39138 -72037 -65709 -61203 -55448 -51918 -48082 -72146 -65707 -61202 -55447 -51917 -48890 -45099 -40606 -35815 -32549 -29852 -26299 -24965 -72036 -65710 -61200 -55446 -51916 -48889 -45098 -40605 -35814 -32548 -29851 -27163 -23121 -72035 -65711 -61199 -55445 -51720 -72145 -65706 -61198 -55444 -51915 -48888 -45097 -40604 -35813 -32547 -29850 -26467 -24531 -72144 -65705 -61197 -55443 -51914 -48887 -45096 -40603 -36427 -32546 -29849 -27162 -24964 -72143 -65704 -61196 -55442 -54311 -48350 -45095 -40602 -36426 -35596 -35595 -72142 -65714 -61195 -55441 -51912 -48886 -45094 -45093 -36425 -36424 -36423 -72032 -65689 -61194 -55440 -51911 -48885 -45092 -40600 -36422 -36421 -36420 -70498 -65713 -61190 -59281 -72031 -65712 -61189 -56573 -70684 -71757 -71705 -71698 -71702 -71700 -70640 -69472 -69471 -60944 -55438 -54309 -46298 -46297 -46296 -72030 -65698 -61188 -55437 -51910 -48884 -45090 -40598 -36419 -32541 -29848 -26466 -25347 -72029 -65697 -61187 -55436 -51909 -48883 -45089 -40597 -36418 -32540 -29847 -26465 -21802 -70601 -65696 -61729 -55435 -54308 -54307 -50773 -40596 -38460 -38459 -31533 -27950 -26464 -72140 -65695 -61180 -55434 -51907 -48882 -45087 -43442 -36415 -32538 -29845 -26463 -21800 -72139 -64797 -61987 -54949 -72024 -64798 -61179 -55433 -51906 -48881 -45086 -43441 -43145 -43144 -38456 -45085 -40593 -36412 -32535 -29843 -28230 -27348 -23118 -45084 -40592 -36411 -32534 -29842 -28229 -27346 -16106 -13639 -72025 -65694 -62286 -56571 -52000 -51025 -50333 -44314 -42645 -42644 -31531 -31530 -30666 -22704 -18024 -54879 -51905 -48880 -45082 -44000 -43999 -37178 -29840 -26461 -21796 -16101 -16099 -72026 -65693 -61178 -55432 -51904 -48879 -45081 -40589 -36407 -32532 -29839 -26460 -21795 -22247 -72138 -65692 -61176 -55665 -51903 -48878 -45080 -40588 -36406 -32531 -29838 -28226 -21794 -21075 -72027 -65691 -61175 -55664 -51902 -48877 -45079 -40587 -36405 -32530 -29837 -26458 -21793 -16223 -70402 -66462 -63283 -63282 -63281 -63280 -72137 -68279 -59659 -55431 -53253 -49673 -46869 -40586 -36404 -32529 -29836 -27343 -27342 -27341 -72023 -65687 -61174 -55430 -51512 -48875 -45077 -40585 -39550 -32528 -30451 -26457 -21790 -17449 -72022 -65686 -61173 -55429 -51900 -48874 -45076 -40584 -36402 -32527 -29834 -28703 -21789 -16221 -72021 -65685 -61172 -55428 -51899 -48873 -45075 -40583 -39270 -32526 -29833 -26455 -21788 -16220 -72020 -65684 -61171 -55427 -51898 -48872 -45074 -40582 -36400 -32525 -29832 -26454 -24961 -16219 -72019 -65683 -61170 -55426 -51897 -48871 -45073 -40581 -36399 -32524 -29831 -26453 -21786 -16218 -72018 -65682 -61169 -55425 -51896 -48870 -45072 -40580 -36398 -32523 -29830 -26452 -21785 -16095 -72017 -65681 -61168 -55424 -51895 -48869 -45071 -40579 -36397 -32522 -29829 -26451 -23116 -16217 -72016 -65680 -59746 -55423 -51894 -50772 -72136 -65679 -61167 -55718 -51893 -48868 -45070 -43437 -36396 -32521 -29828 -26450 -21783 -72135 -68271 -61166 -55717 -51892 -49669 -45069 -40577 -36395 -32520 -29827 -26449 -21782 -18023 -72134 -68500 -61165 -57127 -54306 -49668 -46868 -40576 -36394 -32519 -29826 -27340 -27339 -27338 -72169 -65676 -61164 -55421 -51890 -48865 -45067 -40575 -36393 -32518 -29825 -27157 -21779 -16216 -72015 -65675 -61163 -55420 -51889 -48864 -45066 -40574 -36392 -33523 -70752 -72014 -65674 -61162 -55419 -51888 -48863 -45065 -40573 -36391 -32344 -31529 -31290 -70600 -65673 -61161 -55418 -51887 -48862 -45064 -40572 -36390 -32343 -29823 -26985 -24528 -70652 -65672 -61728 -55417 -51886 -48348 -45063 -40571 -36389 -32342 -29822 -27156 -24527 -18021 -72013 -65671 -59865 -70651 -68274 -59658 -58723 -58722 -53250 -49666 -46293 -46292 -46291 -46290 -29820 -26014 -19356 -17447 -17446 -70650 -67674 -59657 -58721 -58719 -53247 -49663 -43433 -43432 -43431 -36385 -27946 -26013 -17445 -17444 -17443 -71755 -71707 -70408 -64737 -63289 -62291 -70420 -70245 -70244 -72012 -64866 -64156 -56567 -56566 -56565 -72011 -65655 -62566 -55663 -51882 -48861 -45060 -40568 -36384 -32339 -29818 -26446 -21774 -16946 -13631 -70669 -68779 -68268 -62969 -62967 -62968 -58830 -50769 -50768 -50767 -50766 -39546 -72010 -65654 -61159 -55412 -51881 -48860 -45056 -40566 -36381 -32337 -29815 -28701 -28700 -18863 -13630 -12835 -72168 -65653 -61158 -55411 -51880 -48859 -45055 -40565 -36380 -32336 -29814 -26444 -21772 -16944 -13629 -13628 -72133 -65652 -59656 -55668 -51879 -48858 -45054 -40564 -36379 -32335 -29813 -26983 -21771 -20479 -19077 -18467 -72167 -65651 -59655 -55410 -51878 -50765 -45053 -40563 -36378 -36377 -36376 -26443 -24526 -21769 -21768 -16632 -72009 -65650 -61157 -55669 -51511 -48856 -45052 -40562 -36375 -36374 -36373 -27155 -21767 -18466 -18465 -18464 -72008 -65649 -61156 -55409 -51877 -48855 -45051 -40561 -36372 -32331 -29810 -26442 -21766 -16941 -15835 -16078 -72007 -65648 -61155 -55408 -51876 -48854 -45050 -40560 -36371 -32330 -29809 -26441 -24960 -16940 -13623 -8073 -72006 -65647 -62568 -55657 -51875 -48853 -45049 -40559 -36370 -32329 -29808 -26440 -24959 -18018 -16215 -12816 -72005 -65646 -61153 -55407 -51874 -48852 -45048 -40558 -36369 -32328 -29807 -26439 -21763 -16938 -13622 -8055 -72004 -65645 -61152 -55406 -51873 -48851 -45047 -40557 -36368 -32327 -29806 -26438 -21762 -16937 -13621 -8054 -72003 -65644 -61151 -55405 -51872 -48850 -45046 -40556 -37994 -37993 -31286 -31285 -21761 -16936 -13620 -8053 -72132 -65643 -61150 -55656 -51871 -48849 -45045 -40555 -36366 -32325 -29804 -26436 -21760 -16935 -13868 -72131 -66166 -62292 -55649 -51870 -48848 -45044 -43426 -36365 -32517 -29803 -26435 -21759 -16934 -14297 -14296 -72130 -65641 -61148 -55403 -51869 -48847 -45043 -40553 -36364 -32516 -29802 -26982 -21758 -20478 -15235 -15233 -72002 -65640 -61147 -55402 -51868 -48846 -45042 -40552 -36363 -32515 -29801 -26434 -21757 -16932 -13603 -8052 -2750 -3534 -3310 -3768 -3767 -3766 -3765 -3764 -3763 -1154 -28224 -71158 -66061 -61067 -55817 -52478 -52318 -45041 -40551 -36362 -32514 -29800 -26433 -20275 -27944 -27943 -71157 -66063 -61066 -55807 -52287 -48347 -45040 -40550 -36361 -33515 -33791 -28699 -25345 -25344 -25343 -25342 -71156 -66060 -61031 -56266 -52299 -48844 -45039 -40549 -36360 -32511 -29798 -26432 -20024 -18014 -8667 -71093 -65380 -60864 -56239 -52692 -48843 -45038 -40548 -36359 -71092 -65379 -60862 -56238 -52691 -48842 -45037 -40547 -36358 -32510 -30948 -71091 -65378 -60860 -56237 -52690 -48841 -45036 -40546 -36357 -32509 -30448 -30447 -71089 -65377 -60858 -56236 -52689 -48840 -45035 -40545 -36356 -32508 -29796 -28222 -21753 -16076 -13824 -13808 -13807 -18462 -71088 -65392 -60857 -56865 -52688 -48839 -45034 -40544 -36355 -32507 -29795 -26431 -25341 -13598 -13805 -26087 -26086 -14294 -14293 -71087 -65391 -60855 -56235 -52687 -48838 -45033 -40543 -36354 -32506 -29794 -26430 -21752 -16630 -16629 -71085 -65390 -60854 -56234 -52686 -48837 -45032 -40542 -39545 -32505 -29793 -29792 -22700 -20796 -16627 -16626 -7784 -14670 -13802 -15834 -13788 -20022 -70995 -65494 -60834 -58021 -52544 -48836 -45031 -40541 -37175 -37068 -29791 -26178 -24957 -24956 -24522 -25026 -71155 -66059 -61065 -55805 -52477 -48835 -45030 -40540 -36351 -32503 -31374 -9782 -49449 -45998 -41175 -12022 -21751 -26291 -25666 -25665 -25664 -25663 -26429 -23747 -20795 -20794 -20793 -71084 -65389 -60852 -56273 -52685 -48834 -45029 -41540 -37174 -32502 -29790 -27153 -32501 -29789 -42416 -71154 -66065 -61030 -56265 -52298 -48833 -45028 -40538 -36349 -31880 -29788 -26428 -32500 -71082 -65388 -60850 -56272 -52684 -48832 -45027 -40537 -36348 -32499 -29787 -27654 -27941 -71153 -66058 -61064 -55806 -52476 -48831 -45026 -40536 -36347 -32498 -29786 -27151 -27150 -25339 -26427 -21337 -70996 -66552 -60833 -56042 -52449 -48830 -45025 -42188 -40068 -70994 -65492 -60832 -56041 -52448 -49840 -46287 -42187 -37991 -70993 -65491 -60831 -56040 -52447 -49839 -46286 -70992 -65490 -60830 -56039 -52446 -49838 -46862 -44313 -44312 -34953 -33789 -70991 -65489 -60829 -56038 -52445 -49837 -46284 -42185 -37990 -37989 -33787 -70990 -66551 -60828 -56035 -52444 -48825 -46283 -43425 -40066 -38446 -35462 -70989 -65487 -60827 -57969 -57936 -57935 -57934 -57933 -57932 -57931 -57930 -27940 -26177 -26425 -70988 -65486 -60826 -57929 -57928 -57927 -57926 -57925 -57924 -57923 -57922 -27333 -26423 -70987 -65485 -60825 -57921 -57920 -57919 -57918 -57917 -57916 -57915 -57914 -26422 -24071 -70986 -65483 -60824 -57913 -57912 -57911 -57910 -57909 -57908 -57907 -57906 -26174 -22695 -70985 -65482 -60821 -56046 -52441 -49834 -46282 -43424 -43423 -43422 -43421 -43420 -26011 -26010 -70984 -65481 -60819 -56049 -52543 -48822 -45014 -40525 -37445 -37058 -29779 -27331 -20271 -15999 -70982 -65480 -60816 -56034 -52440 -48821 -45013 -40524 -36340 -32485 -29778 -24648 -20257 -15998 -70981 -65478 -60815 -56033 -52439 -48820 -45012 -40523 -37444 -37057 -29777 -27330 -23742 -22999 -70979 -65477 -60813 -56031 -52438 -49833 -49832 -40522 -38443 -37056 -33780 -70977 -65476 -60812 -56030 -52437 -48819 -45010 -40521 -37442 -37055 -70972 -65475 -60811 -56029 -52436 -48818 -45009 -40520 -37441 -37070 -29775 -24647 -20256 -17439 -13778 -10085 -70971 -65474 -60810 -56032 -51585 -48342 -45008 -42183 -41412 -38441 -37438 -31281 -28969 -25337 -20016 -20015 -70970 -65472 -60809 -56048 -52542 -48817 -45007 -40518 -37437 -37053 -29772 -27937 -22996 -22995 -16618 -16617 -70967 -65471 -62565 -54876 -53468 -50441 -50440 -44311 -43418 -43417 -43416 -43415 -28696 -25335 -21212 -21340 -70963 -65470 -60808 -56022 -52435 -48816 -45005 -40516 -37433 -37052 -29769 -26170 -20254 -17433 -13771 -7767 -70962 -65469 -60807 -56028 -52370 -48815 -45004 -40515 -37432 -37051 -29768 -24642 -20253 -15974 -13770 -13769 -70961 -65468 -60806 -56021 -52369 -48814 -45003 -40514 -37431 -37050 -29767 -27524 -22992 -22991 -17339 -16611 -70957 -65467 -60805 -56027 -52368 -48813 -45002 -40513 -37430 -37048 -32469 -27523 -25660 -22989 -20010 -20009 -70956 -65466 -60804 -56026 -52367 -48812 -45001 -40512 -37429 -37047 -29765 -25019 -24951 -21210 -17337 -16608 -70955 -65465 -60803 -56025 -52470 -48340 -46279 -46859 -38438 -38437 -37426 -31277 -29762 -22986 -20007 -20006 -70953 -65464 -60802 -56024 -52336 -48811 -44999 -40510 -37425 -37044 -29761 -25782 -23737 -23736 -16605 -16604 -70948 -65463 -60801 -54875 -54062 -53932 -53931 -44310 -43413 -43412 -43411 -43410 -28694 -24516 -24065 -20903 -70947 -65537 -60800 -56047 -52541 -48810 -44997 -40493 -37421 -37043 -29758 -27519 -24064 -17332 -17331 -16003 -70946 -65536 -60799 -56023 -52335 -48809 -44996 -40492 -37420 -37069 -29757 -24634 -20247 -15971 -13755 -13754 -70945 -65461 -60798 -56020 -52334 -48808 -44995 -40491 -37419 -37042 -30653 -26167 -22980 -22979 -15813 -15812 -70944 -65460 -60797 -56017 -52333 -48807 -46277 -42177 -37983 -37982 -37981 -24632 -21589 -20459 -20001 -19066 -70943 -65459 -60796 -56016 -52331 -48806 -44993 -40489 -37417 -37040 -29754 -25779 -24949 -22683 -17998 -17324 -70942 -65458 -60795 -56015 -52330 -48805 -44992 -40488 -37416 -37039 -29753 -25442 -25333 -21207 -19999 -18448 -70941 -65457 -59654 -55182 -53464 -50437 -46857 -43998 -42634 -42633 -37413 -30651 -27932 -22976 -20457 -19556 -70939 -65456 -60794 -56014 -52328 -48804 -44990 -40486 -37412 -37037 -29751 -25015 -24947 -21587 -17318 -12852 -70937 -65455 -60793 -56019 -52540 -48803 -44989 -40485 -37411 -37034 -29718 -27516 -21321 -21205 -14152 -14151 -70934 -65454 -60792 -56018 -52539 -48337 -44988 -40484 -37410 -37033 -30650 -24626 -24514 -20776 -17316 -17315 -70935 -66550 -60791 -56013 -52326 -48802 -46275 -40483 -37409 -37032 -31273 -28964 -28963 -22972 -17990 -16583 -70928 -65452 -62564 -56012 -52483 -48336 -44986 -41403 -37408 -37031 -29715 -28693 -25655 -22970 -17988 -16580 -71152 -66064 -61063 -55818 -52286 -48801 -44985 -42174 -35820 -35453 -32447 -71151 -66062 -61062 -55819 -52285 -48800 -44984 -40480 -35819 -33765 -32445 -28214 -28213 -71476 -66799 -61924 -56587 -54356 -54357 -54358 -54359 -50480 -44980 -44306 -44305 -38428 -38427 -38426 -21582 -71150 -66057 -61061 -55865 -52284 -48799 -44979 -44304 -44303 -44302 -71149 -66056 -61060 -55864 -52283 -48798 -44978 -40478 -36059 -32440 -29176 -25043 -24943 -23726 -21579 -21578 -71148 -66055 -61059 -55862 -52282 -48797 -44977 -40477 -37403 -34939 -32438 -27925 -27924 -27923 -17308 -17307 -71146 -66054 -61058 -55855 -52281 -48796 -44976 -42169 -37402 -37401 -34456 -31267 -28687 -24055 -20762 -20761 -71144 -66053 -61057 -56009 -51587 -51187 -46271 -43531 -41395 -41394 -41393 -35448 -30639 -28957 -20758 -20757 -71143 -66052 -61056 -55804 -51589 -50424 -47409 -44301 -38424 -38423 -38422 -32430 -40473 -37395 -36051 -24506 -71142 -66050 -61055 -54874 -51590 -50534 -46269 -43995 -38421 -38820 -38819 -36047 -26001 -21571 -71141 -66051 -61054 -55793 -52280 -48795 -44972 -43994 -43993 -43992 -43991 -43990 -43989 -43988 -43987 -28324 -71139 -66821 -61911 -55621 -53444 -53443 -53442 -50422 -43521 -41380 -37382 -38419 -30629 -30628 -30627 -19982 -71138 -66048 -61052 -55792 -52279 -48330 -46266 -40469 -36041 -32419 -29699 -27495 -20755 -20754 -19980 -19979 -71136 -66822 -61051 -55791 -52278 -48329 -48078 -43520 -41378 -40052 -37379 -31498 -28321 -23712 -20446 -20445 -71135 -66046 -61050 -55790 -52277 -48794 -44967 -40467 -36038 -32416 -29162 -24611 -23109 -23108 -16557 -16556 -71132 -66045 -61049 -55789 -52276 -52142 -48077 -48076 -48075 -34928 -34927 -34926 -25317 -23710 -19539 -19538 -71131 -66044 -61048 -55788 -52275 -48327 -44965 -40465 -36036 -34446 -34445 -34444 -28319 -23708 -17295 -17294 -71130 -66043 -61284 -54873 -53834 -52139 -50420 -71121 -66041 -61047 -55787 -52475 -48793 -46851 -40464 -37378 -34443 -34442 -34441 -25995 -20444 -20443 -19041 -71118 -66040 -61046 -55786 -52434 -48792 -44962 -41376 -37959 -36033 -35445 -31623 -25994 -24044 -21193 -19535 -71115 -66039 -61045 -55785 -52433 -48791 -44961 -40462 -37953 -37952 -37951 -28709 -24043 -18425 -17959 -15768 -71112 -66038 -61044 -55769 -52432 -48790 -44960 -40461 -38416 -38415 -34439 -31253 -30612 -30611 -21191 -17285 -71108 -66037 -61043 -55764 -52431 -48789 -44959 -40460 -38414 -38413 -38412 -38411 -28946 -28945 -23100 -17282 -71103 -66036 -61042 -55741 -52430 -50411 -50410 -40459 -36029 -33731 -31620 -27911 -23706 -23098 -22657 -22656 -71100 -66035 -61041 -54824 -52257 -50672 -50671 -47405 -43985 -39112 -39111 -35442 -25645 -23096 -18420 -18419 -71098 -66034 -61040 -55736 -52429 -48261 -44955 -41374 -36026 -34918 -32398 -32397 -24501 -23094 -19970 -19969 -71094 -66033 -61039 -54823 -51580 -50406 -50407 -43984 -43983 -43982 -43981 -43980 -25644 -23092 -17273 -17272 -71090 -66032 -61038 -55720 -52428 -50670 -50666 -44298 -36024 -34916 -34915 -34914 -31613 -24040 -17270 -17269 -71086 -66031 -61037 -55714 -52390 -48787 -44952 -40454 -36023 -32392 -29683 -25422 -71083 -66030 -61036 -55700 -52388 -48786 -44951 -41370 -36022 -32391 -29138 -27905 -23089 -23088 -16528 -16527 -71081 -65387 -60848 -56231 -52683 -48785 -46258 -71080 -65386 -60847 -56230 -52682 -48784 -46257 -40452 -36021 -71079 -65385 -60845 -56229 -52681 -48783 -44948 -40451 -36020 -32390 -29682 -25067 -24934 -71078 -65384 -60843 -56863 -52679 -48782 -44947 -40450 -36019 -40449 -39532 -35440 -30600 -26927 -71077 -65383 -60842 -56228 -52678 -48781 -46256 -41369 -41368 -39530 -39529 -34911 -26653 -26652 -26651 -71076 -65382 -60840 -56271 -52677 -50459 -48074 -48073 -40049 -40048 -40047 -33723 -31245 -31244 -30595 -26646 -71075 -65381 -59593 -57351 -53921 -53920 -50457 -48071 -44914 -41365 -39660 -32380 -31241 -27475 -25990 -25989 -71074 -65376 -59651 -54872 -54685 -54686 -49894 -46847 -43517 -43516 -42613 -31607 -30591 -27472 -24496 -23690 -71073 -65375 -59650 -54871 -54369 -54368 -50810 -43976 -43975 -42155 -42154 -36006 -29674 -29673 -29672 -19955 -71072 -65374 -60823 -56226 -52676 -48779 -44912 -40443 -36005 -71071 -65373 -60822 -54870 -52675 -50456 -47403 -47402 -37938 -36003 -35430 -26159 -24492 -19954 -17935 -13539 -71070 -65372 -60820 -56225 -52674 -48777 -44910 -40441 -36002 -32372 -29671 -28429 -71069 -65371 -60818 -56221 -52673 -48776 -46249 -41358 -41357 -39654 -39653 -34901 -26639 -26638 -26637 -71068 -65370 -60817 -56218 -52672 -53553 -48070 -48069 -40040 -40039 -40038 -33712 -31235 -31234 -29665 -28303 -71067 -65369 -59649 -57325 -53537 -52602 -48068 -48067 -41354 -41353 -39647 -31602 -31231 -25984 -25983 -25982 -71066 -65368 -60814 -56224 -52629 -48774 -44905 -43513 -40036 -40035 -40034 -37933 -36318 -36317 -29658 -25296 -71065 -65367 -59648 -57800 -51480 -50065 -49887 -54684 -49889 -49890 -49891 -34892 -30582 -25632 -25631 -25630 -3800 -3794 -3772 -3506 -2087 -2875 -2310 -3313 -831 -3782 -60121 -55164 -53188 -53185 -71341 -65420 -60122 -55163 -51845 -48773 -46241 -71340 -65419 -60159 -55162 -51843 -48772 -46845 -40435 -38401 -38584 -38583 -38582 -71362 -65418 -59647 -54868 -51836 -48771 -44901 -42149 -42148 -42147 -42146 -71339 -65417 -59646 -54867 -51835 -48770 -44900 -40433 -37357 -34891 -34890 -70599 -65416 -59645 -54866 -51833 -48769 -44899 -42605 -42604 -42603 -42602 -70668 -65415 -59644 -54865 -51831 -49791 -49792 -43510 -42144 -41346 -41345 -71338 -64561 -60153 -55161 -54188 -50383 -50382 -42143 -41343 -41342 -41341 -70598 -64601 -59643 -58137 -58136 -48490 -48066 -41340 -39093 -39092 -39091 -71361 -65414 -59642 -54864 -51826 -48767 -44895 -41339 -36304 -34887 -34886 -71337 -65413 -59641 -54863 -51717 -49799 -47400 -47399 -47398 -47397 -47396 -71360 -64711 -59640 -57106 -57105 -48489 -46237 -46236 -38573 -38572 -38571 -71336 -65412 -59639 -54861 -51824 -48488 -46235 -43123 -43122 -43121 -43120 -71359 -65405 -59638 -54860 -51822 -48766 -44891 -42601 -42600 -42599 -42598 -71358 -65404 -59637 -54859 -51518 -48320 -46234 -43972 -43971 -43970 -43969 -71335 -65403 -59636 -58569 -58568 -58567 -58565 -58564 -39631 -39630 -39629 -70667 -65400 -59635 -55159 -51473 -48764 -46843 -41333 -41332 -41331 -41330 -70597 -64661 -59634 -54857 -51715 -49634 -49800 -47765 -47764 -47763 -47762 -70418 -67588 -62762 -70417 -67589 -66733 -70737 -70523 -66728 -62265 -62264 -62263 -70680 -64548 -64484 -64483 -64195 -70741 -70740 -70720 -70733 -70699 -67586 -64196 -71305 -70425 -69045 -70536 -69692 -70535 -70150 -70430 -68174 -70531 -68695 -68712 -70530 -68172 -68713 -70529 -68171 -68189 -70528 -70148 -68721 -70527 -68711 -69062 -70545 -69689 -70548 -70149 -71334 -64712 -62259 -41534 -41533 -70510 -67651 -66719 -62255 -71333 -65484 -60123 -55157 -51819 -50380 -50378 -71332 -65399 -60124 -55156 -53219 -53218 -53215 -71331 -65398 -60125 -55145 -51814 -48762 -46229 -64663 -69688 -34881 -42593 -41532 -47761 -51060 -70525 -68709 -68708 -62253 -70524 -70146 -69301 -66709 -70526 -68193 -68191 -70521 -69641 -67599 -67598 -67597 -64300 -70520 -66457 -66456 -66455 -66454 -63659 -70519 -64777 -60191 -60190 -60189 -51742 -70678 -68167 -65184 -65341 -65183 -60180 -42137 -44289 -28287 -28475 -28286 -35412 -28425 -28284 -28930 -71330 -64659 -59758 -58147 -54177 -39085 -28668 -71329 -66714 -59759 -55142 -51454 -28280 -38564 -28666 -41530 -28276 -28275 -43967 -28273 -39622 -28271 -28270 -31217 -31216 -71328 -64815 -59633 -54999 -51688 -48761 -46228 -71357 -64816 -60158 -57116 -51687 -51686 -51685 -50729 -70518 -68717 -68716 -68715 -68714 -71327 -68176 -67601 -56422 -56421 -51684 -51683 -51682 -51680 -70676 -67223 -67222 -67221 -64188 -64189 -70517 -69690 -67102 -67095 -66743 -64182 -71326 -64779 -64199 -64198 -64197 -62755 -62754 -70596 -66711 -62753 -56416 -55169 -50353 -47757 -44880 -37350 -70595 -64750 -59632 -57103 -51709 -50352 -50351 -44287 -44286 -44285 -44284 -44283 -71325 -65271 -60157 -55110 -51813 -50350 -50349 -43500 -43499 -70639 -64600 -60128 -56447 -56446 -56445 -50398 -71324 -65340 -59631 -56437 -56436 -56433 -51704 -44875 -40415 -37348 -34414 -34413 -71323 -66706 -60214 -57586 -57585 -48756 -44874 -40414 -36285 -32303 -30568 -71322 -65339 -60129 -55100 -51811 -48314 -44873 -71321 -65338 -60130 -55054 -51810 -48755 -46222 -46221 -71320 -65479 -60131 -55150 -53209 -50732 -48060 -46834 -46833 -39620 -39619 -71319 -65270 -59630 -56414 -51809 -48754 -47754 -47753 -36283 -32300 -31213 -30565 -71318 -65269 -60133 -55053 -51807 -48753 -44869 -40411 -36282 -36281 -36280 -71317 -65268 -61396 -55052 -51806 -48752 -44868 -42587 -53280 -53279 -53278 -70594 -69684 -60221 -58146 -57097 -57096 -57080 -57079 -57975 -37904 -37903 -70593 -69300 -69299 -58991 -57119 -55055 -51045 -46830 -44864 -42128 -37340 -71315 -65473 -60134 -55051 -51805 -48751 -44863 -40407 -37900 -37899 -71250 -65267 -60135 -54993 -53272 -50717 -50718 -50719 -50720 -50721 -50722 -71248 -65436 -60136 -55050 -51803 -48750 -44861 -40405 -36267 -36266 -36265 -71247 -65266 -60137 -55049 -51801 -48749 -44860 -40404 -36264 -35404 -34869 -70522 -70145 -70144 -63291 -63292 -70679 -67592 -66702 -66701 -66700 -71246 -65265 -60138 -55048 -53262 -53260 -53258 -53257 -53585 -53254 -53252 -27895 -70406 -64814 -59770 -55042 -51554 -70638 -64776 -60213 -56829 -51799 -48310 -44858 -44857 -44856 -44855 -31208 -70540 -69685 -71245 -64594 -62194 -57077 -57075 -71243 -65264 -60139 -55047 -51797 -48747 -44854 -41514 -41513 -41512 -41511 -35401 -29622 -70637 -65462 -64478 -54854 -53239 -50716 -47376 -71241 -65263 -59629 -54853 -51795 -48746 -44852 -40400 -36258 -32281 -32280 -71240 -65262 -60141 -55046 -53775 -48745 -44851 -42123 -36257 -32279 -32278 -70592 -66698 -60162 -58538 -57582 -51038 -51037 -51036 -48055 -47372 -43106 -46210 -40240 -37330 -46824 -44273 -44272 -37886 -36250 -28663 -25293 -70591 -70147 -69207 -69206 -69205 -68689 -68178 -68177 -57036 -57035 -57033 -44840 -44839 -39070 -25290 -71239 -65261 -60142 -55045 -51517 -48742 -44838 -41500 -36244 -34860 -34859 -34858 -28660 -71237 -65260 -59798 -58498 -70416 -68703 -63298 -70739 -71235 -64709 -62239 -62238 -62193 -62192 -62191 -62190 -62189 -62188 -71234 -64560 -60661 -54852 -54583 -54582 -54581 -54580 -54577 -54561 -37319 -71232 -66453 -59868 -70690 -66452 -62739 -70666 -64599 -59628 -58497 -57081 -50332 -46203 -42115 -36239 -33659 -32265 -31200 -70665 -65155 -59988 -55568 -52207 -48740 -44834 -40233 -36238 -33658 -70664 -64559 -59627 -57038 -57037 -49805 -46202 -40232 -39069 -34395 -32263 -31576 -31575 -71231 -64812 -59626 -55040 -51792 -48739 -44832 -40231 -36236 -36235 -71229 -65259 -60087 -55039 -53179 -51032 -70817 -70395 -59625 -54984 -53178 -53177 -53176 -46200 -46199 -46198 -44827 -44826 -28657 -70590 -64775 -60086 -55038 -51788 -48305 -44825 -40229 -36233 -35389 -35388 -35387 -35386 -71227 -65257 -60085 -55037 -51787 -50327 -46197 -57042 -71632 -65947 -59986 -55567 -52206 -48738 -44823 -40227 -36232 -32055 -29603 -26621 -21542 -16496 -16931 -15368 -71226 -68700 -68699 -68698 -68697 -71225 -65255 -59921 -55035 -53300 -70636 -66451 -60083 -55034 -51549 -49807 -44822 -43945 -43478 -43477 -43476 -43475 -37873 -71222 -65254 -60082 -55011 -51784 -49605 -71221 -65253 -62738 -62737 -62736 -62735 -62734 -71631 -65946 -59985 -55565 -52205 -48737 -44821 -40225 -36230 -32053 -29601 -26620 -21540 -16495 -16930 -7915 -71630 -65945 -59984 -55564 -52204 -48736 -44820 -40224 -36229 -32052 -29600 -26619 -21539 -16494 -16929 -7914 -71629 -65944 -59983 -55562 -52203 -48735 -44819 -40223 -36228 -32051 -29599 -26618 -21538 -16493 -16928 -7913 -71628 -65943 -59982 -55561 -52202 -48734 -44818 -40222 -36227 -32050 -29598 -26617 -21537 -16492 -16927 -7828 -71627 -65942 -59981 -55560 -52201 -48733 -44817 -40221 -36226 -32049 -29597 -26616 -21536 -16491 -16926 -7911 -71626 -65941 -59980 -55558 -52200 -48732 -44816 -40284 -36225 -32048 -29596 -26615 -21535 -16490 -16925 -7910 -71625 -65940 -59979 -55557 -52199 -48731 -44815 -40283 -36224 -32047 -29595 -26614 -21534 -16489 -16924 -7909 -71624 -65939 -59978 -55555 -52198 -48730 -44814 -40282 -36223 -32046 -29594 -26613 -21533 -16488 -16923 -7908 -71623 -65938 -59977 -55553 -52197 -48729 -44813 -40281 -36222 -32045 -29593 -26612 -21532 -16487 -16922 -7907 -71622 -65937 -59976 -55552 -52196 -48728 -44812 -40280 -36221 -32044 -29592 -26611 -21531 -16486 -16921 -7906 -71621 -65936 -59973 -55551 -52195 -48727 -44811 -40279 -36220 -32043 -31197 -31196 -21530 -16485 -16920 -7905 -71620 -65935 -59972 -55550 -52194 -48726 -44810 -40278 -36219 -32042 -29590 -26609 -21529 -16484 -16919 -11398 -70659 -64636 -64391 -58116 -58115 -48725 -44809 -40277 -36218 -34356 -34355 -27448 -22635 -21527 -21526 -19732 -71619 -65934 -59971 -55548 -52192 -48724 -44808 -40276 -36217 -32040 -29588 -26608 -21525 -16480 -16918 -7902 -71618 -65133 -59970 -55547 -52191 -48723 -44807 -40275 -36216 -32039 -29587 -26607 -21524 -16479 -14341 -14340 -9749 -71617 -65933 -59969 -55546 -52190 -48722 -44806 -40274 -36215 -32038 -29586 -26999 -26606 -16478 -15365 -15364 -70830 -64828 -60506 -55847 -52005 -48721 -44805 -40273 -36198 -32037 -29585 -26605 -21522 -19940 -19005 -19004 -9050 -71219 -66450 -60164 -57579 -56405 -54155 -44804 -40272 -36197 -32036 -31195 -31194 -23066 -19003 -17050 -13497 -71616 -65932 -59968 -55545 -52189 -48720 -44803 -40271 -37317 -32035 -29583 -26603 -21520 -16476 -15363 -15362 -70658 -68696 -62747 -61557 -58547 -58545 -54152 -54348 -54150 -54149 -54148 -33652 -33651 -24922 -27446 -24012 -70657 -67209 -62195 -57040 -51690 -48564 -44799 -40269 -36192 -32032 -31192 -24234 -23667 -22631 -21516 -20716 -71218 -64591 -59623 -55009 -51621 -48563 -44798 -40268 -36191 -32031 -30539 -26600 -21515 -19114 -19113 -19112 -1269 -3382 -3708 -3707 -3706 -3704 -3703 -3702 -1952 -3090 -70815 -64919 -60099 -55033 -51619 -48719 -44797 -40267 -36190 -32030 -29579 -26599 -23666 -21180 -70814 -64918 -60098 -55032 -51620 -48718 -44639 -40266 -36189 -32029 -29578 -26598 -23062 -70813 -64917 -60097 -55031 -51618 -48717 -44638 -40265 -36188 -32028 -29577 -26597 -21512 -70812 -64916 -60095 -55030 -51617 -48716 -44637 -40264 -36187 -32027 -29576 -26596 -21511 -70811 -64915 -60211 -55230 -53654 -48715 -44636 -40263 -70810 -64913 -59860 -9807 -70778 -21510 -13490 -6775 -70809 -64911 -60094 -55029 -51615 -48714 -44635 -40262 -36186 -7157 -70808 -64909 -60093 -55028 -51614 -48713 -44634 -40261 -36185 -32026 -29575 -26998 -15357 -15356 -13482 -10276 -22628 -23316 -17424 -13479 -10289 -13478 -10278 -70807 -64908 -60092 -55027 -51613 -48712 -44633 -40260 -36184 -33342 -29574 -26593 -22626 -13477 -70635 -66339 -63718 -59037 -54821 -54820 -47363 -43093 -70696 -67070 -66564 -29573 -70735 -71047 -69756 -70777 -64570 -70427 -68794 -70776 -70433 -70115 -70572 -67607 -66561 -58101 -27881 -27880 -28922 -27879 -28921 -28920 -28919 -27877 -27876 -28918 -70571 -70210 -70209 -63180 -70556 -70204 -70208 -69223 -70555 -70203 -69762 -64446 -72056 -64970 -59844 -70806 -64987 -60179 -58562 -51597 -48301 -48047 -70775 -70774 -70773 -70216 -69750 -70772 -27874 -28917 -70634 -64685 -59622 -54849 -54537 -54536 -50163 -46190 -46189 -44262 -39063 -70663 -69765 -68763 -67029 -59032 -59031 -49591 -46187 -46186 -46185 -42107 -71615 -64771 -63329 -62669 -51516 -51081 -50792 -50791 -43939 -43938 -40010 -70771 -69752 -59883 -58154 -56602 -71614 -65931 -59967 -55520 -51594 -49604 -44627 -40255 -36177 -35380 -71613 -70125 -70124 -70123 -70122 -70121 -70120 -41487 -41486 -34850 -71612 -64764 -62664 -62663 -62662 -62661 -62660 -41485 -41484 -32094 -29569 -28437 -50654 -44624 -40252 -36174 -32093 -31570 -70565 -69216 -69221 -70779 -69220 -70805 -68772 -60080 -54846 -51510 -51066 -49588 -70804 -64905 -60078 -54845 -51509 -51065 -46180 -44259 -44258 -36172 -34344 -70770 -66302 -70568 -70202 -67026 -70567 -68197 -66322 -70564 -66301 -63186 -70803 -66321 -61492 -59029 -59030 -71611 -65132 -59966 -55517 -52188 -48709 -44621 -41483 -41482 -70570 -64501 -64449 -56945 -70554 -64499 -62277 -55577 -55576 -70769 -69753 -62278 -57575 -57168 -70768 -70219 -70218 -70217 -55571 -70802 -64904 -60076 -55026 -51612 -48627 -44620 -40249 -36170 -32090 -29566 -27444 -71610 -65930 -59965 -55515 -52187 -48626 -44619 -40248 -36169 -32089 -29565 -24673 -24011 -21179 -70566 -70205 -70207 -70801 -64762 -60074 -54844 -54141 -54140 -47356 -47355 -44256 -43089 -39592 -70628 -64785 -60073 -59028 -54533 -54138 -44617 -44255 -42102 -42101 -32085 -32084 -23665 -21504 -21740 -70800 -64903 -60071 -55025 -51610 -48625 -44616 -40219 -39054 -71216 -65252 -60212 -56828 -51782 -48562 -44615 -40218 -36163 -34340 -29562 -70426 -69759 -70532 -68281 -70799 -64902 -60069 -56384 -53646 -50159 -44614 -43467 -42556 -41473 -41472 -26592 -24477 -70533 -70206 -70798 -64901 -59618 -58556 -53645 -48291 -47741 -46800 -39052 -38526 -31186 -27442 -26590 -70797 -64899 -60210 -55228 -51608 -48624 -44612 -40215 -36158 -32080 -29559 -26589 -22622 -70796 -64898 -60106 -58555 -51462 -48290 -48042 -48041 -48040 -41469 -33633 -70795 -64897 -60066 -55023 -51507 -48289 -44610 -40213 -39050 -32077 -32076 -27146 -24476 -23661 -51421 -44609 -40212 -36155 -32075 -29556 -28647 -25284 -71609 -65929 -59964 -55514 -52186 -48623 -44608 -40211 -36154 -32073 -31184 -70587 -64679 -64043 -64042 -64041 -64298 -64299 -47352 -47351 -34845 -33631 -32070 -25976 -24918 -15684 -15683 -70794 -64896 -60065 -55022 -51607 -48708 -44606 -40209 -36152 -32069 -29552 -27144 -21732 -16048 -70767 -69755 -69754 -69757 -70793 -64894 -59616 -56954 -56953 -48287 -44605 -44252 -44251 -41465 -41464 -27869 -21731 -21176 -16411 -71215 -65251 -60079 -55008 -51780 -48286 -44689 -42551 -36149 -34336 -33627 -32064 -24917 -24916 -70633 -66315 -66316 -58553 -51505 -50647 -50157 -44250 -42549 -39048 -39047 -70792 -64720 -61490 -56952 -56951 -70791 -64892 -60209 -55227 -51606 -48707 -44687 -40205 -36146 -32061 -29548 -26925 -23657 -23656 -27867 -71608 -65928 -59963 -55513 -52185 -48706 -47349 -40204 -37860 -37859 -37292 -28256 -28255 -28254 -25281 -70790 -64887 -59614 -54837 -52239 -50156 -50155 -43086 -36142 -33625 -33624 -30525 -70789 -64692 -64040 -58822 -54816 -51052 -48039 -46174 -46173 -46172 -46171 -39586 -70829 -64827 -60505 -55816 -52004 -48704 -44683 -40201 -36139 -34839 -29544 -26586 -22614 -32013 -29543 -27864 -22613 -21175 -72055 -64507 -51435 -70828 -64826 -60504 -56052 -52003 -48703 -44682 -40200 -36138 -32012 -29542 -26585 -24471 -23052 -20419 -70632 -64680 -63173 -60104 -56389 -49583 -46797 -44248 -44247 -44246 -43079 -43078 -70788 -64886 -60063 -55021 -51605 -51048 -71607 -65927 -59962 -55512 -52251 -51076 -44680 -40198 -39583 -39582 -30521 -27141 -23652 -23651 -23650 -70827 -64861 -60635 -55803 -52002 -48702 -44679 -40197 -36133 -32007 -29538 -26583 -21722 -16403 -11516 -71606 -65926 -60204 -58099 -52250 -48701 -44678 -40196 -36132 -32006 -70787 -64885 -60062 -55020 -52999 -52998 -52997 -40195 -36131 -32005 -29537 -27432 -27431 -30520 -20712 -18987 -16400 -70786 -64884 -60061 -55019 -51603 -48699 -48037 -42096 -71605 -65925 -59961 -55510 -52184 -48698 -44675 -40193 -36130 -32004 -29536 -26582 -21719 -16399 -16210 -11971 -21718 -16398 -15662 -14379 -26581 -24469 -70656 -67587 -64436 -57578 -54980 -50713 -50324 -41454 -37856 -37287 -37286 -28249 -23046 -19497 -19496 -19495 -16396 -71604 -65924 -59960 -55509 -52183 -48697 -44673 -40191 -36128 -32001 -29534 -26580 -21716 -16395 -13458 -10234 -71603 -65923 -59959 -55507 -52182 -48696 -44672 -40190 -37855 -32000 -29533 -27140 -21715 -16394 -15349 -15348 -70785 -64883 -60060 -55018 -51602 -48695 -44671 -40189 -36126 -31999 -29532 -26579 -21714 -19897 -13456 -10025 -71213 -65250 -60077 -55007 -51779 -48561 -44670 -40188 -36125 -31998 -29531 -26578 -21713 -16393 -17011 -10024 -70784 -64882 -60064 -55017 -51601 -48694 -44669 -40187 -38517 -38516 -38515 -27429 -24468 -21711 -17895 -17405 -70783 -64881 -60059 -55016 -51600 -48693 -44668 -40186 -36123 -31996 -29529 -26556 -21710 -20286 -13453 -12861 -71602 -65922 -59958 -55506 -52181 -48692 -44667 -40185 -36122 -32021 -29528 -26555 -21709 -16391 -13426 -10022 -71601 -65921 -59957 -55504 -52180 -48691 -44666 -40184 -36121 -32020 -29527 -26554 -24001 -16390 -13425 -16209 -71600 -65920 -59956 -56219 -52179 -48690 -44665 -40183 -36120 -32019 -29526 -27139 -21707 -16389 -13424 -11966 -71599 -65919 -59955 -55501 -52178 -48689 -44664 -40182 -36119 -32018 -29525 -28640 -21706 -16388 -13423 -11965 -71598 -65918 -59954 -55499 -52177 -48688 -44663 -40181 -36118 -32017 -29524 -26552 -21705 -17404 -17403 -11964 -71597 -65130 -59953 -55497 -52176 -48687 -44662 -40180 -36117 -32257 -29523 -26551 -24156 -16386 -13422 -11963 -71596 -65917 -59952 -55495 -52175 -48686 -44661 -43930 -36116 -32256 -29522 -26550 -21703 -16385 -13421 -11962 -71595 -65916 -59951 -55493 -52174 -48685 -44660 -40178 -36115 -32255 -29521 -26549 -21702 -16384 -13420 -11961 -71594 -65915 -59950 -55491 -52173 -48684 -44659 -40177 -36114 -32254 -29520 -26548 -24000 -16383 -13419 -11960 -71593 -65914 -59949 -55490 -52172 -48683 -44658 -40176 -36113 -32253 -29519 -26547 -23999 -16382 -13418 -11959 -71592 -65913 -59948 -55488 -52171 -48682 -44657 -40175 -36112 -32252 -29518 -26546 -21699 -14333 -13451 -11957 -71591 -65129 -59947 -55486 -52170 -48681 -44656 -40174 -36111 -32251 -29517 -26545 -21698 -17402 -15345 -11956 -71590 -65912 -59946 -55484 -52169 -48680 -44655 -40173 -36110 -32250 -29516 -27860 -21697 -16381 -16380 -16379 -71589 -65911 -59945 -55482 -52168 -48679 -44654 -40172 -36109 -32249 -29515 -26543 -21696 -18606 -17400 -17399 -71588 -65910 -59944 -55480 -52167 -48678 -44653 -40171 -36108 -32248 -29514 -27138 -23998 -23997 -17893 -17892 -71587 -65128 -59943 -55476 -52166 -48677 -44652 -40170 -38514 -38513 -38512 -31559 -31558 -31557 -20666 -20413 -13414 -8772 -71586 -65909 -59942 -55475 -52165 -48676 -44651 -40169 -36106 -32246 -29512 -26542 -21692 -16371 -16917 -11949 -7845 -71585 -65908 -59941 -55473 -52164 -48675 -44650 -40168 -36105 -32245 -30420 -27137 -22604 -16370 -16916 -14328 -71584 -65907 -59940 -55470 -52163 -48674 -44649 -40167 -36104 -32244 -29510 -26541 -21690 -19919 -16915 -11380 -70782 -64880 -59612 -56949 -56948 -50644 -48036 -46169 -44646 -42093 -42092 -37279 -25619 -25618 -25617 -25616 -70781 -64879 -60058 -55015 -51599 -48673 -44645 -40165 -36100 -32240 -29508 -26540 -19915 -17392 -15636 -13445 -7844 -72129 -65829 -61146 -55401 -51867 -48672 -44644 -40164 -36099 -32239 -29507 -26539 -21688 -16914 -14933 -23041 -23040 -71212 -65249 -60075 -55006 -51777 -48560 -44643 -40163 -36098 -32238 -29506 -26538 -21687 -16365 -14967 -8031 -70399 -66230 -60143 -57577 -54147 -49608 -47345 -42091 -41448 -41447 -41446 -26313 -19913 -19912 -18598 -16362 -71211 -68719 -60072 -57576 -51774 -50712 -44641 -42090 -36096 -34830 -31554 -30515 -28637 -28636 -28635 -28634 -16358 -13442 -11945 -70655 -65248 -60070 -55005 -52249 -48559 -44640 -40397 -36095 -32234 -32233 -26312 -21685 -21300 -21299 -8033 -70845 -64824 -60367 -55244 -52490 -48671 -44598 -40396 -36094 -32232 -29504 -26932 -21684 -17389 -17388 -17387 -71209 -65247 -60068 -55004 -53628 -53627 -53626 -40395 -36093 -32231 -29503 -26537 -21683 -18597 -13441 -12757 -70647 -64691 -64039 -56392 -54531 -48670 -44596 -40394 -36092 -32230 -29502 -26536 -21682 -18596 -17883 -17882 -70844 -64823 -60366 -55243 -52489 -48669 -44595 -40393 -36091 -32229 -29501 -26931 -21681 -17881 -17880 -17879 -71583 -64633 -59939 -55468 -52162 -48668 -44594 -42089 -42088 -38505 -38504 -28906 -25278 -25277 -18594 -18593 -71582 -65906 -59938 -55467 -52161 -48667 -44593 -40391 -36089 -33611 -33610 -26535 -21679 -20409 -20408 -20407 -70649 -69666 -69669 -57216 -52160 -48666 -47344 -42543 -36088 -32226 -30514 -27136 -21678 -16351 -16913 -7837 -71208 -65246 -60067 -55003 -51770 -48557 -44591 -40389 -36087 -32225 -29497 -26534 -21677 -17382 -17381 -17380 -71581 -65905 -59937 -55463 -52159 -48665 -44590 -41443 -37275 -34827 -31552 -26994 -24909 -19487 -13410 -11365 -71580 -65904 -59936 -55461 -52158 -48664 -44589 -40387 -36085 -32223 -29495 -26533 -21675 -16349 -16912 -11941 -71579 -65903 -59935 -55459 -52157 -48663 -44588 -41442 -41441 -41440 -41439 -29493 -29492 -29491 -19909 -18970 -71578 -64772 -59610 -57522 -54105 -54107 -54106 -50168 -46165 -42084 -42083 -32219 -32218 -32217 -18968 -18967 -70646 -70103 -59609 -58471 -57520 -53316 -48034 -43928 -39034 -38502 -35365 -27134 -23989 -19907 -19906 -20119 -70648 -68650 -68649 -63995 -54541 -53655 -48033 -44601 -44600 -44599 -44796 -39030 -39029 -24905 -25273 -25272 -70780 -64684 -60056 -54831 -51504 -50642 -47341 -42540 -44242 -37843 -35361 -29486 -23988 -19481 -18962 -17370 -3849 -2074 -2905 -2034 -3419 -3761 -3734 -3732 -3731 -3730 -70516 -70677 -71572 -65203 -60790 -58336 -52833 -48662 -44794 -71571 -65202 -60789 -56137 -52427 -48661 -44793 -40381 -36075 -71569 -65201 -60788 -56136 -52426 -48660 -44792 -40380 -36074 -32211 -71567 -65200 -60787 -56135 -52425 -48659 -44791 -40379 -36073 -32210 -71564 -65199 -60786 -56134 -52424 -48658 -44790 -40378 -36072 -32209 -29485 -71563 -65198 -60785 -58335 -52423 -48657 -44789 -40377 -36071 -32208 -29484 -71562 -65197 -60784 -58334 -52422 -48656 -44788 -40376 -36070 -32207 -29483 -71570 -65196 -60783 -56133 -52421 -48655 -44787 -40375 -36069 -32206 -29482 -71568 -65195 -60782 -56132 -52420 -48654 -44786 -40374 -36068 -32205 -29481 -28807 -71566 -65194 -60781 -56131 -52419 -48653 -44785 -40373 -36067 -32204 -29480 -26531 -21668 -4354 -71561 -65193 -60780 -56130 -52418 -48652 -44784 -40372 -36066 -32203 -29479 -26185 -5809 -5808 -71559 -65192 -60779 -56129 -52417 -48651 -44783 -40371 -36065 -32202 -29478 -71556 -65191 -60778 -56128 -52416 -48650 -44782 -40370 -36064 -32201 -29477 -24657 -5807 -71558 -64515 -59607 -56127 -52415 -48649 -44781 -40369 -35858 -32200 -29476 -26184 -71555 -65190 -60777 -56126 -52414 -48648 -44780 -40368 -35857 -32199 -29475 -26530 -24904 -71552 -65189 -60776 -56125 -52413 -48647 -44779 -40367 -35995 -32198 -29474 -26529 -21666 -71549 -65188 -60775 -56156 -52412 -48646 -44778 -40366 -35994 -32197 -29473 -26528 -21665 -71565 -65187 -60774 -56124 -52411 -48645 -44777 -40365 -35993 -34819 -29472 -26527 -21664 -71560 -65186 -60773 -56123 -52410 -48644 -44776 -40364 -35992 -32195 -29471 -71557 -65185 -60772 -58333 -52409 -48643 -44775 -40363 -35991 -8039 -71554 -65902 -60771 -56122 -52408 -48642 -44774 -40362 -35990 -32194 -29470 -26526 -21663 -16335 -71551 -65182 -60770 -56121 -52407 -48641 -44773 -40361 -35989 -32193 -29469 -71548 -65901 -60769 -56120 -52406 -48640 -44772 -40360 -35988 -32192 -29468 -24127 -21662 -48639 -44771 -40359 -35987 -32191 -29467 -71546 -65900 -60768 -56119 -52405 -48638 -44770 -40358 -35986 -32190 -29466 -27133 -48637 -44769 -40357 -35985 -34818 -29465 -48636 -44768 -40356 -35984 -34817 -29464 -26525 -19480 -70423 -4525 -5806 -71545 -65181 -60767 -56118 -52404 -48635 -44767 -40355 -35983 -32187 -29463 -71553 -65899 -60766 -56117 -52403 -48634 -44766 -40354 -35982 -32186 -29462 -5805 -71550 -65898 -60765 -58332 -52402 -48633 -44765 -40353 -71547 -65180 -59833 -71544 -65179 -60764 -56116 -52401 -48632 -44764 -40352 -35981 -32185 -29461 -24126 -71541 -65897 -61293 -56115 -52400 -48631 -44763 -28903 -71543 -64517 -59606 -55646 -52399 -48275 -44762 -28902 -28783 -71539 -65896 -60763 -58331 -53604 -51262 -44761 -40351 -37268 -71542 -65895 -60762 -56114 -52397 -48273 -71538 -65894 -60761 -56113 -52396 -48630 -44760 -40350 -35979 -32184 -29460 -24125 -22597 -71540 -64514 -59777 -71537 -65211 -59754 -54926 -51650 -71534 -65893 -59753 -54925 -54610 -70553 -64496 -60638 -55645 -55644 -71536 -65178 -60760 -56112 -52395 -48629 -44759 -40349 -35978 -32183 -29459 -23987 -71533 -64506 -62809 -62808 -62807 -62806 -48032 -40348 -35977 -34816 -32181 -28246 -69040 -65892 -61872 -56554 -53281 -48271 -44757 -41427 -41426 -41425 -71531 -64497 -71528 -66175 -59854 -71055 -69696 -69695 -63748 -71530 -65891 -60759 -58330 -52393 -48628 -44756 -40346 -35975 -32180 -29457 -24198 -71527 -65890 -60758 -56111 -52392 -48622 -44755 -40345 -35974 -32179 -29456 -26524 -21660 -71535 -65889 -60757 -56110 -52391 -48621 -44754 -40344 -35973 -32178 -29455 -29454 -24461 -71532 -65177 -60756 -58329 -52389 -48620 -44753 -40343 -35972 -32177 -29453 -26522 -20115 -71529 -65888 -60755 -56109 -52387 -48619 -44752 -40342 -35971 -32176 -29452 -26521 -21658 -71526 -65887 -60754 -59216 -52889 -48618 -44751 -43451 -35970 -34815 -30442 -29451 -21657 -50710 -44750 -40340 -35969 -32174 -33348 -27418 -24901 -71524 -65886 -60753 -56108 -52888 -48616 -44749 -40339 -37267 -35967 -30506 -30505 -20114 -16069 -71525 -64512 -59603 -55640 -51542 -48270 -47340 -41424 -41423 -41422 -41421 -27417 -24460 -24459 -71522 -65176 -60752 -56107 -52386 -48615 -44747 -40337 -35966 -32171 -29447 -26520 -21654 -15705 -71520 -65885 -60751 -58328 -52385 -48614 -44746 -40336 -40002 -40001 -71523 -65210 -59773 -56552 -71519 -65884 -60750 -56106 -55638 -71517 -65883 -60749 -56105 -52384 -48269 -44745 -40335 -35963 -32169 -71515 -65882 -60748 -56104 -52383 -48268 -44744 -40334 -35962 -32168 -31166 -70589 -65125 -59602 -54830 -51450 -48480 -71516 -65175 -60747 -58327 -52382 -48613 -44743 -40333 -35961 -32167 -29445 -26519 -21653 -71514 -64505 -59601 -54829 -51436 -49793 -49794 -49795 -49798 -44239 -44238 -28633 -41420 -70588 -66182 -59600 -56103 -51438 -48031 -44741 -40331 -35959 -32164 -28901 -71521 -65174 -60746 -58326 -52381 -48612 -44740 -42458 -38490 -32163 -29442 -29441 -29440 -15704 -71518 -65881 -60745 -58325 -52380 -48611 -44739 -40330 -35957 -32162 -29439 -65880 -60744 -58324 -52379 -48610 -44738 -40329 -35956 -32161 -29438 -24124 -23984 -15703 -71513 -65879 -60743 -56102 -52378 -48609 -44737 -40328 -35955 -32160 -29437 -26518 -22594 -17864 -18215 -11333 -71510 -65173 -60742 -56101 -52377 -48608 -44736 -40327 -35954 -32159 -29436 -26517 -21649 -16331 -17863 -12050 -65878 -60741 -56100 -52376 -48607 -44735 -40326 -35953 -32158 -28113 -26311 -21648 -16329 -15327 -15326 -32157 -29435 -24457 -22593 -26516 -15693 -71054 -70240 -62804 -16327 -15692 -16326 -13605 -16325 -11328 -71505 -65208 -61871 -71053 -66397 -61869 -59013 -59016 -59018 -46789 -40325 -37841 -33600 -28421 -27415 -27414 -27413 -20108 -20107 -29434 -26515 -21645 -16200 -13864 -71502 -65877 -60740 -56099 -52375 -48606 -46158 -43450 -35952 -34812 -28109 -26309 -23636 -16324 -15690 -12795 -70573 -64495 -60636 -71052 -68785 -68784 -68783 -54260 -53276 -46157 -46156 -46502 -46155 -39998 -30502 -26513 -26512 -20404 -20403 -14614 -71512 -65172 -60739 -56098 -52374 -48605 -44731 -40322 -35951 -32151 -29432 -26511 -21642 -16322 -15676 -12048 -71509 -65876 -60738 -56097 -52373 -48604 -44730 -40321 -35950 -32150 -29431 -26510 -21641 -16468 -13686 -8767 -71507 -65875 -60737 -56096 -52372 -48603 -44729 -40320 -35949 -32149 -29430 -26509 -21640 -16467 -15675 -9732 -71504 -65171 -60736 -56095 -52371 -48602 -44728 -40319 -35948 -32148 -29429 -26508 -21639 -16466 -13683 -8765 -71501 -65874 -60735 -56094 -52364 -48601 -44727 -40318 -35947 -32147 -29428 -26507 -21638 -16465 -13575 -12047 -71498 -65873 -60734 -56093 -52363 -48600 -44726 -40317 -35946 -32146 -29427 -25038 -21637 -16464 -13573 -9993 -71511 -65872 -60733 -56092 -52362 -48599 -44725 -43072 -35945 -32145 -29426 -26506 -21636 -16463 -15674 -12314 -71508 -65871 -60732 -56091 -52361 -48598 -44724 -40315 -35944 -32144 -29425 -26505 -21635 -16462 -13678 -9840 -71506 -65870 -60731 -56090 -52360 -48597 -44723 -40314 -35943 -32143 -29424 -26504 -23031 -23030 -13674 -8760 -71503 -65167 -60730 -56089 -52359 -48596 -44722 -40313 -35942 -32142 -29423 -26503 -21633 -16460 -15673 -8759 -71500 -65869 -60728 -56088 -52358 -48595 -44721 -40312 -35941 -32141 -29422 -26502 -21632 -16459 -15672 -8758 -71497 -65163 -60727 -56087 -52357 -48594 -44720 -40311 -35940 -32140 -29421 -26501 -21631 -16458 -15671 -8757 -71494 -65868 -60726 -56086 -52356 -48593 -44719 -40310 -35939 -32139 -29420 -26500 -21630 -16457 -15670 -20508 -71491 -65867 -60725 -56085 -52355 -48592 -44718 -40309 -35938 -32138 -29419 -26499 -21629 -16456 -15669 -11324 -71499 -65162 -60724 -56084 -52354 -48591 -44717 -40308 -35937 -32137 -29418 -26498 -21628 -16455 -13666 -8754 -71496 -65866 -60723 -56083 -52353 -48590 -44716 -40307 -35936 -32136 -29417 -23980 -23635 -22589 -15668 -15667 -72001 -65830 -60722 -55399 -51866 -48589 -44715 -40306 -35935 -32135 -29416 -26497 -21626 -16453 -14932 -71493 -65160 -60721 -56082 -52352 -48588 -44714 -40305 -35934 -32134 -29415 -26496 -21625 -16452 -13664 -8752 -71490 -65159 -60720 -59296 -51437 -48030 -44713 -40304 -35933 -34810 -29414 -23979 -21624 -20401 -20400 -20399 -71495 -65865 -60719 -56080 -52351 -48587 -44712 -43449 -35932 -32132 -28106 -26308 -21623 -16451 -15663 -8748 -71492 -65864 -61282 -56079 -52350 -48586 -44711 -40302 -35931 -32131 -29413 -26495 -21622 -18957 -13552 -11316 -71488 -65863 -60718 -56078 -52349 -48585 -44710 -40301 -35930 -32130 -29412 -26494 -21621 -18581 -16448 -12044 -71489 -65862 -60717 -56077 -52348 -48584 -44709 -40300 -35929 -32129 -29411 -26493 -21620 -16447 -15659 -8745 -72000 -65828 -60716 -55660 -51865 -48583 -44708 -40299 -35928 -32128 -29410 -26492 -21619 -16910 -14931 -18956 -14476 -11309 -71486 -65861 -60715 -56076 -52347 -48582 -44707 -40298 -35927 -32127 -29409 -26491 -21618 -18955 -18954 -8743 -71483 -65153 -60714 -56075 -52346 -48581 -44706 -43071 -43070 -43069 -43068 -26307 -21617 -16445 -13550 -13548 -71487 -65860 -60713 -56074 -52345 -48580 -44705 -40296 -37001 -32125 -29246 -24232 -23634 -20095 -20094 -20093 -71484 -65152 -60712 -56073 -52344 -48579 -44704 -40295 -35925 -32124 -29408 -26490 -21615 -16444 -16443 -9988 -70843 -64822 -60365 -55242 -52487 -48578 -44703 -40294 -35924 -32123 -29407 -26930 -21614 -16442 -16441 -16440 -70847 -64821 -60364 -55241 -52484 -48577 -44702 -40293 -35923 -32122 -29406 -26929 -21613 -17859 -17858 -17857 -71481 -65859 -60711 -56072 -51643 -48576 -45805 -40292 -35922 -32121 -29102 -24257 -22791 -16439 -15657 -11933 -71480 -65151 -60710 -56071 -52343 -48575 -44701 -40291 -35921 -32120 -29405 -26489 -23028 -23027 -13658 -8739 -65858 -60709 -56070 -52342 -48574 -44700 -40290 -35920 -34318 -34317 -28631 -21610 -17366 -16437 -16436 -66183 -60708 -56069 -52341 -48573 -44699 -40289 -35919 -32118 -31543 -31542 -21609 -16909 -16435 -16434 -70660 -66395 -61867 -56544 -56542 -50292 -47339 -47338 -47337 -34316 -39570 -28244 -21608 -17365 -17364 -17363 -71485 -65857 -60707 -56068 -52340 -48572 -44697 -40287 -35917 -32116 -28102 -26305 -21607 -20708 -20707 -16430 -71482 -65856 -60706 -56067 -52339 -48571 -44696 -40286 -35916 -32115 -29401 -27131 -21606 -16429 -15651 -14176 -71479 -65149 -60705 -56066 -52338 -48570 -44695 -40285 -35915 -32114 -29400 -26486 -21605 -16428 -14175 -13537 -71478 -65855 -60729 -56065 -52337 -48569 -44694 -40246 -35914 -32113 -29399 -26485 -21604 -16427 -15649 -9985 -3729 -3728 -3727 -3723 -3722 -3720 -3719 -2330 -5314 -2791 -11297 -67952 -66546 -58749 -54792 -11295 -70901 -70215 -70214 -70213 -53379 -50418 -44693 -41416 -35913 -32112 -30500 -26484 -23633 -23632 -18949 -14606 -17361 -35912 -32111 -29397 -26483 -19765 -70661 -66340 -62697 -57016 -56398 -53190 -49822 -49809 -38488 -37262 -33598 -27412 -21602 -20090 -20089 -20088 -68292 -68291 -68290 -70891 -64864 -60239 -54991 -53189 -51114 -49808 -44478 -44477 -39024 -39023 -70890 -68487 -68288 -68287 -68286 -51112 -51166 -49797 -44236 -39021 -39020 -15321 -15320 -71689 -64745 -62045 -62044 -53639 -48568 -44690 -40242 -35908 -32107 -32106 -32105 -24897 -23024 -23023 -23022 -18579 -18683 -70889 -68285 -68284 -68283 -68282 -51111 -51167 -49788 -44234 -39018 -39017 -32103 -32102 -32101 -32100 -32099 -3756 -1281 -3572 -3571 -3570 -3569 -3568 -3567 -3565 -4745 -1368 -2070 -759 -2195 -1931 -2401 -2327 -2105 -1452 -2753 -64337 -39422 -47937 -43757 -49468 -66851 -66850 -66847 -59578 -47571 -47570 -47575 -54467 -66849 -66848 -47580 -47579 -56728 -66845 -66846 -68841 -47574 -66853 -66852 -67507 -53589 -39395 -66210 -67975 -57792 -58431 -47246 -62009 -58831 -61997 -59228 -39370 -47093 -63978 -47092 -68497 -47098 -34223 -67991 -47097 -68498 -47096 -64272 -47095 -42494 -64271 -59590 -67990 -66167 -54415 -34222 -67516 -47091 -34221 -64273 -47090 -66935 -54389 -66922 -56885 -39371 -47256 -31409 -67940 -59276 -47089 -38238 -39394 -57591 -69084 -49467 -66169 -52897 -47037 -50838 -50837 -39420 -41293 -41292 -41291 -41290 -34231 -41289 -39488 -47088 -39487 -47087 -41287 -41286 -41285 -41284 -34230 -41283 -47975 -39479 -47086 -68046 -47085 -39499 -34229 -39498 -39497 -39496 -39415 -47972 -39477 -47084 -68550 -47083 -39495 -39494 -39493 -39492 -39414 -47973 -39474 -47082 -64294 -47081 -53501 -64293 -63929 -56214 -39398 -39392 -49465 -54330 -2436 -2199 -3385 -3196 -1105 -2449 -2328 -1296 -1435 -2904 -2863 -69056 -63893 -69544 -61134 -63035 -47957 -49544 -49542 -54030 -49514 -49537 -49528 -43775 -43773 -43770 -43769 -43768 -66924 -68584 -68612 -53579 -68586 -54055 -56917 -54503 -56826 -53486 -69609 -56827 -53485 -68604 -62090 -53484 -53483 -62046 -53412 -58220 -47628 -58219 -68627 -47624 -47625 -68626 -56363 -53411 -63514 -54482 -47622 -54054 -53410 -69092 -50129 -46057 -68605 -56831 -50580 -47613 -68607 -56819 -53482 -47607 -68608 -56818 -53480 -47617 -56817 -53481 -47610 -56839 -53478 -47611 -50574 -47608 -56821 -53383 -49539 -56816 -53382 -43765 -66925 -56367 -49516 -47609 -1042 -4395 -2419 -2073 -479 -3455 -529 -3390 -2748 -2069 -2762 -2707 -1384 -2038 -2234 -1096 -2384 -3123 -1971 -1853 -2239 -3195 -159 -2563 -772 -5313 -2754 -4584 -2315 -2809 -1023 -2078 -2251 -1250 -2188 -585 -962 -2329 -2752 -2090 -2028 -5586 -1375 -832 -304 -2462 -2033 -2098 -1427 -1906 -1834 -3739 -340 -813 -1434 -1840 -2862 -1068 -1039 -6723 -1882 -151 -1396 -1287 -2916 -306 -1383 -624 -6028 -1616 -1816 -1615 -1614 -1613 -1612 -1815 -7362 -4498 -1611 -1814 -5276 -1813 -1764 -3854 -2266 -3938 -4458 -1691 -1690 -3113 -4639 -3543 -59451 -51282 -51275 -1633 -1938 -1433 -341 -344 -4201 -315 -1856 -314 -807 -4382 -4225 -4732 -1609 -6080 -1608 -1812 -5571 -4731 -1606 -4736 -5264 -1605 -5263 -1604 -5209 -1603 -4494 -1602 -1811 -1601 -633 -921 -1474 -6714 -6713 -6712 -1380 -1410 -1043 -1067 -25050 -1416 -31389 -4581 -1600 -1599 -8291 -1598 -2109 -1810 -5208 -1597 -4010 -1596 -5198 -1595 -5190 -1594 -6390 -1593 -10369 -1592 -2108 -7624 -1591 -5194 -1590 -5469 -1589 -5177 -1588 -1249 -870 -1503 -3582 -1987 -1986 -959 -1475 -647 -644 -311 -1382 -4735 -6073 -4491 -1587 -4490 -1586 -4728 -1585 -1353 -1093 -1038 -1037 -2879 -1040 -853 -922 -600 -2115 -1584 -1583 -1582 -1581 -1580 -1579 -1429 -1134 -752 -1978 -1036 -2880 -1034 -4737 -3809 -1031 -1030 -1029 -1028 -1151 -1001 -5496 -2679 -4154 -1450 -336 -2052 -4537 -4442 -1578 -4727 -1577 -1809 -4701 -1576 -1808 -1575 -4700 -1574 -4726 -1573 -6536 -1572 -1807 -41946 -41945 -27084 -47544 -63133 -54712 -49988 -41916 -56882 -49990 -56881 -49989 -39335 -43350 -49987 -43349 -49981 -57852 -57851 -56880 -44113 -44114 -35707 -31887 -56884 -49993 -46659 -41914 -31466 -29357 -43348 -49991 -28608 -39341 -28607 -28605 -28604 -56883 -49982 -20672 -39337 -49992 -313 -4146 -3654 -872 -607 -3309 -2346 -606 -601 -1975 -4675 -618 -763 -751 -2430 -4674 -4024 -1893 -1300 -3391 -368 -4023 -3492 -1187 -1054 -4247 -1571 -5210 -1570 -4488 -1569 -4570 -4007 -1568 -1567 -4487 -4699 -1566 -4223 -1565 -1564 -4698 -1563 -1806 -2107 -4246 -1562 -1561 -1560 -1559 -5733 -1558 -4484 -1557 -5120 -1556 -25166 -23421 -23420 -23419 -23418 -23417 -23416 -23415 -23414 -23413 -23412 -23411 -23410 -23409 -23408 -23407 -23406 -23405 -23404 -22919 -70027 -70000 -69598 -69595 -69583 -68014 -67989 -56288 -1094 -3212 -4577 -1888 -691 -3211 -880 -2171 -3490 -3606 -379 -3293 -3652 -4032 -532 -512 -46 -4031 -5499 -617 -2893 -5770 -2998 -586 -3525 -48 -1896 -4696 -5211 -5201 -1555 -5199 -5202 -5203 -5192 -1554 -6841 -5128 -1553 -4482 -4481 -4122 -4480 -4245 -2054 -6051 -5126 -1551 -1550 -1549 -1548 -4692 -1547 -4691 -1546 -4690 -2053 -2271 -6830 -5417 -5125 -1544 -4242 -1543 -5124 -1542 -1805 -1541 -6388 -1540 -5719 -1539 -5412 -1538 -5123 -1537 -1536 -5122 -1535 -4241 -1534 -4472 -1533 -4471 -1532 -59192 -67664 -67988 -63081 -68592 -68504 -68067 -68524 -68523 -68522 -68521 -68520 -68519 -68518 -63962 -63961 -50848 -43405 -50847 -37114 -66950 -68753 -68493 -67993 -67087 -67082 -66524 -52325 -68031 -61464 -66188 -67969 -67517 -67521 -66187 -67490 -67962 -67349 -67007 -66072 -69551 -64275 -67657 -62606 -67020 -63955 -67481 -66949 -25878 -22424 -22423 -22422 -22421 -22420 -22419 -22418 -22417 -22416 -22414 -22413 -22412 -22411 -22410 -22409 -25861 -25860 -25859 -19243 -39381 -35715 -66927 -66803 -38912 -67470 -66791 -66792 -66752 -66193 -66192 -68588 -67457 -55059 -67456 -55058 -44548 -64360 -64377 -63987 -64385 -61368 -59527 -64267 -64268 -62287 -63537 -63536 -63535 -63989 -61446 -63952 -63521 -69582 -63967 -69091 -63544 -63758 -62503 -63618 -62605 -63609 -63608 -63604 -63603 -61976 -67486 -66953 -62611 -56813 -66793 -63953 -66824 -63926 -61426 -61425 -61424 -63171 -66952 -63132 -63076 -63114 -63105 -59253 -63793 -37152 -69076 -62533 -62532 -62531 -62526 -62523 -59530 -64021 -62530 -62529 -62528 -62527 -62525 -62524 -62115 -59545 -62563 -62541 -62540 -59924 -57468 -57467 -62513 -61900 -61465 -62497 -62495 -62494 -61910 -63092 -61958 -61468 -61738 -67065 -59532 -61437 -61440 -61439 -61435 -61434 -61430 -59523 -59485 -59519 -59920 -59562 -59561 -60234 -59520 -56944 -59575 -59560 -59457 -62484 -62296 -59090 -59089 -59516 -59482 -59380 -69505 -52918 -59234 -59455 -59267 -59220 -56901 -59134 -58893 -58340 -58339 -58338 -58337 -59263 -59262 -63409 -59255 -67655 -67440 -69550 -69549 -58894 -58928 -58457 -59233 -50098 -58665 -61737 -58483 -58200 -64260 -57260 -56659 -58449 -58448 -58447 -58446 -68609 -67976 -66163 -64174 -58573 -57470 -58838 -70008 -58832 -58465 -58468 -58434 -52942 -57989 -58113 -56812 -56810 -56814 -57372 -58982 -33428 -58034 -58232 -58036 -58012 -58042 -50839 -63498 -56876 -58874 -58925 -58009 -58924 -58008 -58923 -58007 -58922 -56426 -52141 -57504 -57867 -57866 -63054 -57848 -57518 -57437 -62560 -59588 -66843 -68529 -68528 -68527 -57448 -57434 -63101 -63100 -63099 -57436 -38306 -57432 -57433 -58910 -59526 -56940 -59525 -56939 -59524 -56938 -63041 -56888 -54041 -62442 -62441 -58921 -54489 -56708 -54751 -69970 -66926 -58019 -57991 -54761 -59540 -63957 -53620 -58920 -52912 -61891 -56395 -56336 -68086 -68085 -68084 -68083 -68082 -53700 -64378 -54785 -54727 -56310 -56303 -54805 -54802 -67981 -63620 -66181 -54407 -54441 -51414 -51369 -54526 -54483 -54349 -56808 -54522 -48242 -46749 -54480 -69610 -54404 -52881 -52880 -52879 -67959 -54337 -59565 -54411 -54410 -62486 -54412 -54409 -54400 -54063 -54051 -54026 -54044 -53491 -53690 -50966 -58917 -66178 -54488 -54006 -53900 -53371 -53993 -53989 -53992 -53991 -53998 -67967 -53970 -53608 -62534 -57769 -51212 -57768 -51211 -57767 -51210 -51368 -51274 -52899 -52898 -49979 -54525 -50926 -69994 -53495 -53568 -66527 -61890 -58659 -53570 -52987 -57257 -57393 -53552 -49439 -49440 -49437 -56354 -52927 -53167 -63055 -53014 -52903 -52896 -58416 -58415 -58414 -58413 -58412 -58411 -58410 -58409 -58408 -58407 -58406 -58405 -58404 -58403 -58402 -58401 -58400 -58399 -58398 -58397 -58396 -58395 -58394 -58393 -58392 -58391 -58390 -58389 -58388 -50988 -50092 -47216 -50597 -47210 -50600 -52938 -58935 -52936 -54046 -54045 -52934 -62733 -66180 -50000 -50001 -50003 -52910 -52909 -52908 -51315 -66202 -66201 -66200 -51678 -57979 -57980 -63031 -51314 -52293 -56335 -51390 -51420 -51419 -51418 -51408 -51405 -51403 -51401 -51400 -51396 -51392 -54498 -49573 -51376 -51318 -66650 -66934 -35174 -50989 -50004 -50002 -50005 -50634 -42948 -50947 -50901 -50939 -56872 -50635 -49510 -47653 -47652 -39510 -37164 -49567 -70088 -67496 -67495 -67494 -67493 -67434 -61888 -58044 -61321 -52941 -44554 -43366 -57104 -50094 -50095 -50093 -50489 -50490 -58031 -64022 -64023 -63522 -54713 -57748 -50113 -58054 -61741 -50249 -57394 -50110 -66854 -50116 -50103 -50057 -49883 -50051 -63083 -50054 -54100 -56802 -56801 -50080 -47926 -44085 -44084 -44083 -44082 -44081 -44080 -50419 -49429 -49984 -47208 -46713 -49570 -58855 -47099 -61986 -61985 -61984 -49423 -42475 -47547 -62507 -48470 -49524 -49523 -49522 -58901 -47847 -49505 -52775 -43756 -49434 -47585 -47934 -49419 -34674 -54047 -56292 -48245 -66804 -61436 -53015 -51406 -51404 -51402 -59268 -59269 -59270 -59271 -59272 -68491 -47584 -44559 -47970 -47950 -47876 -42951 -47903 -53619 -47209 -42495 -47586 -59264 -47253 -62518 -43403 -47557 -64494 -37756 -39878 -27083 -43850 -42489 -46561 -42488 -54770 -54769 -47829 -44565 -47638 -46071 -47077 -47076 -47893 -47892 -47891 -52869 -52868 -44166 -47531 -47530 -62993 -47231 -46686 -46682 -49549 -47110 -54081 -47109 -47120 -46655 -45959 -45958 -47121 -45973 -41308 -44180 -37153 -37154 -54462 -50828 -47114 -50827 -62487 -52953 -52952 -62485 -53720 -43384 -44530 -50114 -46062 -41310 -28593 -56803 -45969 -46660 -46549 -43801 -66189 -54461 -46012 -59453 -42935 -58906 -50077 -46541 -43369 -43788 -47195 -46067 -53602 -44153 -46026 -46023 -45860 -54040 -54039 -54038 -54037 -43804 -43803 -54036 -54035 -43802 -45962 -45961 -45886 -69118 -58896 -63591 -54744 -63905 -54745 -50126 -67997 -54743 -50125 -54742 -50124 -64493 -54741 -47904 -45868 -45884 -44533 -44556 -59277 -56051 -66956 -61955 -63991 -45854 -43816 -45888 -45944 -44185 -42454 -47187 -43356 -47186 -43358 -47185 -43357 -42496 -44511 -45965 -63944 -45964 -68029 -41313 -44102 -54414 -41213 -54485 -70041 -50499 -42512 -42914 -42981 -56823 -42467 -43841 -41309 -63993 -47631 -43760 -44550 -44551 -44549 -44099 -57502 -44092 -57772 -63056 -47836 -44091 -44561 -44152 -44151 -44150 -44149 -44148 -44147 -41312 -41311 -43326 -43735 -43784 -43845 -63098 -63097 -63096 -43325 -43304 -45960 -68574 -57407 -50052 -58915 -58914 -58913 -58912 -58911 -43400 -43753 -43752 -43751 -43750 -43749 -43748 -43747 -43746 -43745 -35226 -43744 -43743 -43742 -43741 -43740 -43739 -41187 -41953 -43404 -39921 -42936 -43379 -42985 -37143 -59484 -42988 -43344 -63385 -43340 -46673 -46672 -57463 -56394 -64330 -70040 -43336 -42944 -42481 -29301 -37166 -50245 -50242 -51030 -46582 -41234 -46588 -63870 -46589 -58962 -31955 -58963 -31407 -50232 -31406 -50238 -46583 -50234 -46584 -31403 -43828 -42511 -57469 -42498 -42497 -56355 -50618 -42923 -42922 -46536 -44146 -42523 -42522 -42909 -31033 -45853 -29294 -28785 -50970 -54803 -42520 -59547 -59550 -59549 -59548 -57508 -57507 -57506 -52777 -52776 -42957 -43382 -41273 -31883 -39349 -41912 -50987 -43818 -33319 -33318 -18755 -63515 -41206 -39322 -59465 -49385 -39345 -42456 -38257 -41927 -34227 -42435 -34226 -35234 -34225 -37761 -37139 -30973 -34719 -29310 -31995 -34173 -34172 -34171 -34170 -34169 -34168 -34167 -34166 -34165 -34164 -34163 -34162 -34161 -34160 -34159 -34158 -34157 -34156 -34155 -34154 -34153 -34152 -41971 -42448 -41960 -43360 -41961 -42465 -41932 -42388 -54083 -41975 -41947 -47639 -47214 -53621 -47213 -47212 -44470 -53622 -42392 -47074 -42394 -42393 -47075 -42395 -38855 -63925 -39297 -39910 -66526 -41943 -50091 -51216 -41302 -41949 -38240 -56835 -41185 -38241 -43839 -41294 -38852 -38854 -35133 -38245 -37739 -37718 -70039 -65124 -61405 -61404 -49996 -61403 -61402 -61401 -65123 -65122 -38239 -39876 -38228 -38227 -71861 -71732 -38872 -39874 -39873 -39524 -39518 -62562 -52598 -52597 -52596 -52595 -39424 -39525 -35687 -38827 -52950 -39331 -59537 -41994 -38337 -51215 -54528 -59265 -66199 -66198 -66197 -49576 -39311 -39456 -39455 -39470 -39469 -35154 -35730 -47930 -43347 -49571 -38339 -37676 -46581 -38344 -39526 -14106 -15616 -14981 -30999 -37103 -37681 -35269 -38838 -27257 -33397 -34213 -34132 -39346 -34655 -34677 -42426 -42429 -42428 -34178 -41992 -34079 -34078 -34074 -31908 -34059 -34058 -16171 -50521 -41326 -41233 -18218 -13878 -41239 -34724 -59392 -24261 -19272 -24260 -21381 -16149 -19855 -21414 -18742 -14051 -14050 -14049 -13972 -18743 -1892 -850 -2023 -1891 -3523 -3522 -1356 -687 -4721 -3521 -49 -2387 -426 -2215 -2211 -156 -2575 -609 -2842 -4647 -1186 -2841 -1977 -2914 -999 -427 -5498 -524 -2015 -6045 -4637 -6333 -5411 -5535 -5119 -1531 -6043 -5117 -5116 -5115 -5114 -3995 -1530 -6154 -7640 -7639 -4630 -4236 -4235 -4725 -4629 -6330 -6327 -5110 -1529 -5715 -5328 -4627 -1528 -6814 -1526 -10940 -1525 -1520 -1804 -1518 -4626 -1517 -1516 -1803 -4624 -1514 -4622 -1513 -4466 -1512 -8227 -1511 -38933 -30439 -34638 -34637 -33411 -29268 -33478 -33487 -33486 -42385 -33484 -33483 -33482 -43295 -43294 -43293 -57439 -27740 -27742 -27741 -47144 -27676 -30972 -42911 -21042 -27251 -28162 -21045 -23813 -20345 -37130 -49575 -37137 -37138 -45846 -35794 -63911 -58941 -37123 -37107 -35758 -35757 -50513 -35807 -35796 -33492 -65437 -65438 -65439 -35168 -37826 -35719 -35696 -35714 -35685 -67488 -34682 -67487 -34681 -64382 -59280 -59261 -50638 -66519 -46726 -31919 -31918 -31917 -34662 -38913 -44510 -41248 -44509 -41247 -31476 -31475 -34665 -34643 -54048 -34629 -44504 -34624 -42424 -42423 -31987 -31473 -58484 -38934 -43275 -42455 -34108 -34107 -34106 -34105 -49416 -49415 -19642 -22401 -22400 -22399 -22398 -22397 -22396 -22395 -22394 -22393 -22392 -22391 -22390 -22389 -22388 -22387 -22386 -22281 -28044 -24262 -16152 -15179 -15178 -15177 -15176 -15175 -15174 -15173 -15172 -15171 -15170 -38858 -47116 -33464 -22942 -35766 -39457 -41240 -37160 -34725 -31868 -64217 -31968 -31914 -66951 -49410 -67968 -31913 -35784 -37737 -31841 -53030 -35172 -53029 -31488 -51379 -54519 -33406 -33335 -33333 -33332 -31843 -44094 -44095 -39514 -52788 -54739 -33321 -31981 -31975 -31980 -31979 -31978 -31977 -31974 -38328 -37805 -37806 -38388 -38389 -31886 -38400 -50963 -31970 -59571 -59570 -59569 -59568 -59567 -59566 -57404 -57403 -57402 -57401 -57400 -57399 -34094 -41911 -31467 -31947 -31944 -31943 -31964 -59574 -59573 -59572 -39318 -39317 -46654 -31907 -28566 -28565 -28564 -37168 -45976 -35204 -38286 -31872 -31419 -26277 -31378 -25961 -54020 -34042 -35200 -63589 -38274 -41933 -39356 -39352 -39351 -37808 -43368 -34710 -30471 -31056 -31431 -30470 -30468 -39291 -37823 -30878 -35150 -31922 -38910 -28857 -28856 -30947 -28176 -26362 -47118 -31434 -35242 -28174 -28173 -28172 -35281 -35209 -35590 -35208 -35589 -35207 -43372 -35280 -35279 -35249 -47117 -31875 -50578 -39872 -39871 -18715 -39870 -23458 -39869 -22480 -39868 -18716 -39867 -39866 -39865 -33466 -69543 -25939 -22470 -39899 -47931 -34696 -23448 -27768 -69042 -42419 -22288 -22287 -24405 -18264 -17243 -21482 -31402 -29274 -51413 -31442 -31379 -28611 -28610 -25963 -31477 -30473 -30472 -31063 -31062 -31061 -31024 -43292 -43291 -43290 -68486 -33327 -28897 -33362 -35173 -44131 -41256 -42526 -37801 -31828 -42525 -37800 -31830 -42524 -37799 -31829 -59390 -29270 -29269 -50959 -30422 -63091 -63090 -33488 -45896 -63089 -28548 -28189 -31986 -31942 -31941 -34235 -31004 -31003 -28561 -45983 -35143 -49384 -29341 -35747 -29339 -47069 -29332 -27328 -25105 -42516 -34602 -42515 -25535 -34601 -27268 -30879 -26350 -31023 -42408 -42407 -28510 -28478 -28474 -46070 -64333 -35127 -25955 -27763 -24387 -28007 -35261 -26296 -27678 -22438 -21077 -28802 -38396 -38395 -35211 -34216 -27130 -27129 -27128 -27127 -27126 -27125 -27124 -27123 -27122 -35210 -27121 -27120 -27119 -25165 -26337 -25919 -64339 -54795 -64338 -54793 -26920 -33398 -22943 -28801 -31429 -67489 -28154 -31427 -28043 -28005 -46668 -37028 -31420 -47190 -28898 -33325 -28896 -44170 -28895 -31046 -29296 -67966 -31022 -31021 -57412 -67963 -31019 -67965 -31016 -31015 -31014 -31013 -31012 -29048 -29047 -39387 -39386 -39385 -39384 -39383 -39382 -31052 -31049 -54797 -28524 -34626 -28523 -26373 -43848 -41321 -43847 -30490 -35251 -44466 -44465 -54715 -54076 -41275 -27787 -27786 -27785 -30991 -67064 -63792 -41181 -41180 -67527 -62460 -62459 -62458 -62457 -56879 -56878 -56877 -42976 -41318 -37165 -30931 -29360 -34113 -57572 -57571 -50568 -43271 -41317 -35763 -58423 -58422 -43392 -39430 -35202 -57570 -50656 -49483 -49484 -58011 -58010 -35764 -70401 -70034 -70033 -42918 -37819 -35765 -69065 -63982 -63981 -63980 -57569 -46732 -58015 -58014 -37150 -31911 -49501 -30460 -38271 -38270 -38384 -37695 -33360 -31390 -31028 -31027 -30466 -41973 -20587 -30476 -35245 -28810 -28797 -28798 -28795 -30465 -35773 -30462 -26276 -26275 -26274 -26273 -26244 -26243 -67469 -67468 -67467 -67465 -67464 -67463 -56274 -56276 -56275 -47169 -33491 -46007 -31055 -28554 -33340 -56807 -28574 -25512 -31870 -22900 -30417 -30421 -54737 -30976 -70038 -67253 -51361 -25567 -26330 -24991 -26295 -27264 -22899 -38343 -25565 -25819 -25818 -22903 -21412 -6602 -6601 -6598 -5609 -28872 -28893 -28892 -33382 -25966 -42519 -30998 -35233 -35232 -31926 -31925 -31002 -26370 -31001 -25169 -31000 -26369 -29349 -29348 -29347 -29346 -29345 -46538 -28530 -55979 -28533 -55978 -35282 -28531 -64452 -64451 -38234 -28571 -56806 -38233 -28572 -58961 -61977 -56805 -28570 -38231 -28569 -38230 -28568 -38229 -28567 -27744 -27743 -28817 -28816 -27745 -28145 -31495 -27737 -44125 -28515 -28560 -24758 -27697 -27696 -27695 -28067 -56891 -56890 -56889 -56887 -56886 -37786 -37785 -37784 -37783 -27254 -24388 -46580 -27253 -26324 -54084 -27289 -27288 -27666 -63904 -58865 -56300 -56299 -56298 -56297 -56296 -56295 -56294 -56293 -25009 -31924 -33353 -27284 -41238 -52894 -27106 -46722 -27105 -26374 -43733 -50576 -43731 -26364 -25168 -27096 -25851 -23860 -25571 -39889 -39888 -39887 -39886 -24384 -24370 -24359 -28187 -28186 -28185 -28184 -31923 -30977 -25934 -31921 -31920 -30944 -25905 -62577 -62576 -57343 -57457 -57456 -57455 -57342 -57454 -57340 -57339 -57338 -34652 -34651 -34650 -34649 -34648 -42472 -37730 -37760 -37026 -20294 -44482 -25183 -24812 -24584 -21040 -52989 -25967 -49388 -47143 -28151 -50565 -24293 -50532 -24294 -38842 -24173 -24169 -43780 -31414 -21380 -25839 -23461 -54005 -35744 -27073 -15491 -50627 -33424 -25584 -47182 -41952 -25244 -24366 -24348 -19717 -23812 -25110 -30445 -24733 -25511 -24655 -24654 -29308 -29307 -29306 -27667 -19713 -21048 -53963 -25113 -25496 -25492 -25488 -27679 -31430 -25079 -47168 -31450 -47167 -37101 -47165 -31448 -47163 -37100 -47162 -31446 -47161 -31445 -47160 -37099 -27767 -25078 -33351 -22895 -24722 -24721 -46532 -24331 -24330 -46534 -27118 -27117 -24667 -31026 -22500 -31025 -24801 -23389 -53789 -46069 -53715 -25545 -53713 -19866 -24290 -21497 -21483 -24726 -22905 -25519 -43832 -37738 -24386 -25199 -20685 -25202 -25201 -25200 -25198 -20680 -24586 -20700 -21472 -20964 -20963 -46533 -24285 -23304 -22792 -34699 -41192 -25895 -25894 -25893 -25123 -25122 -25121 -23447 -23446 -23445 -23444 -23443 -23442 -23441 -23440 -23439 -23438 -23437 -23436 -23435 -22921 -69530 -50248 -27685 -31426 -25583 -31425 -25582 -30881 -30880 -54078 -27797 -22807 -33423 -34080 -27796 -25568 -22822 -20670 -49810 -22817 -20588 -24346 -47877 -43361 -18266 -18265 -17026 -21052 -27782 -27781 -27780 -30990 -27778 -18757 -23897 -57461 -37776 -35657 -35656 -35655 -56916 -57288 -57287 -57286 -30963 -29320 -24266 -52988 -25058 -20617 -21031 -38353 -21030 -24196 -23332 -30946 -23819 -29377 -33352 -37731 -29350 -23816 -23815 -23814 -20302 -20301 -20300 -42509 -42508 -42507 -42506 -42505 -23331 -21352 -52913 -12924 -23849 -46687 -46688 -53699 -23809 -21133 -21007 -47140 -23305 -13384 -21343 -63020 -23383 -20995 -20994 -20999 -20993 -20992 -20991 -20990 -23390 -28803 -22896 -23308 -19805 -39330 -24755 -30985 -30984 -21080 -26297 -20511 -28160 -17624 -20961 -20960 -20959 -20958 -30438 -22224 -21369 -21416 -20616 -18332 -22222 -17783 -20341 -19711 -19812 -20509 -20506 -15618 -31989 -66811 -66157 -66156 -59533 -54782 -54781 -57429 -57428 -35729 -30987 -30986 -27286 -22938 -7987 -10133 -7985 -9849 -7986 -9848 -6249 -6248 -9944 -7984 -10220 -6247 -22283 -22285 -24345 -63042 -22837 -21126 -21124 -22836 -21123 -22835 -21122 -22834 -21121 -21120 -21119 -21118 -22833 -21117 -22832 -21116 -22831 -21115 -22830 -21114 -21113 -54486 -21459 -67372 -29391 -23800 -22191 -21298 -21032 -21033 -25892 -25891 -25890 -25889 -25888 -25887 -25886 -25885 -25884 -25883 -25881 -25880 -25879 -25867 -11826 -20288 -19586 -19585 -19584 -19583 -19582 -19594 -19593 -19592 -19591 -19590 -19589 -19588 -19587 -19581 -19714 -24286 -23837 -23834 -18826 -23831 -18825 -57574 -57590 -42410 -41306 -38273 -29328 -19719 -19718 -18708 -19307 -20675 -21390 -30943 -59592 -47072 -21402 -26240 -19744 -19743 -19742 -21393 -33337 -33336 -46667 -69043 -28062 -21022 -18707 -21090 -23455 -52774 -19869 -19845 -19578 -24303 -24302 -24301 -63663 -47880 -59218 -27266 -59217 -27265 -19665 -22906 -21084 -42504 -19865 -22301 -39459 -42503 -18748 -20678 -19306 -21039 -47960 -34697 -28512 -20921 -22189 -20913 -28804 -20912 -20572 -23470 -18722 -47139 -20593 -19675 -20677 -19244 -50619 -38237 -31384 -29303 -29302 -25597 -25593 -25592 -25591 -25590 -25589 -31045 -18734 -20687 -21127 -25562 -25560 -25563 -25561 -19722 -27312 -19670 -24264 -20281 -21496 -16318 -18327 -50983 -25606 -46680 -24402 -24401 -18333 -20505 -38283 -19886 -19808 -18331 -19257 -16133 -20307 -19778 -21389 -20631 -19576 -21503 -21477 -21489 -21476 -19577 -21488 -22841 -19787 -19772 -43373 -39884 -39883 -28882 -23512 -19781 -20293 -14975 -70002 -44129 -39879 -6237 -16136 -19898 -16995 -19683 -19760 -15617 -38897 -50012 -46537 -25954 -41255 -57262 -12458 -30978 -54470 -12459 -19168 -19167 -17714 -44512 -19777 -19782 -19686 -35230 -35761 -48249 -17079 -14772 -14768 -14771 -14769 -19246 -50046 -43787 -23402 -19766 -18831 -18334 -18275 -25476 -15610 -19814 -14509 -14508 -14507 -14506 -14505 -14504 -14503 -14013 -19571 -18328 -19342 -17232 -69525 -47034 -67526 -62575 -62574 -57337 -57405 -57336 -57335 -57331 -33450 -24203 -20676 -27735 -17852 -46650 -20330 -15540 -18687 -17234 -17233 -13884 -13883 -13882 -13881 -13905 -19241 -18830 -51378 -58383 -58382 -58381 -31040 -58380 -26375 -58379 -33475 -58378 -28559 -58377 -19748 -14107 -46526 -41993 -20347 -14313 -56353 -37155 -14974 -66826 -69137 -63529 -63528 -58871 -57451 -57450 -47858 -58432 -38929 -37133 -33511 -25212 -66812 -68054 -38359 -38358 -38357 -29082 -24205 -23292 -18688 -17056 -19707 -17051 -33493 -17732 -17705 -24811 -24810 -68025 -35734 -68024 -28846 -70037 -35094 -69528 -34672 -69527 -37743 -68020 -37742 -69536 -38243 -24809 -31945 -21357 -17215 -70075 -68070 -68069 -68068 -68056 -57620 -57619 -57618 -57617 -70074 -69069 -69068 -69067 -57614 -57611 -57610 -46737 -42409 -33499 -33494 -33498 -33497 -33496 -33495 -14512 -14513 -19691 -70063 -66942 -66941 -62028 -62027 -54758 -46636 -41930 -41929 -41928 -38904 -33508 -30959 -66945 -66944 -62026 -62025 -62024 -54756 -46004 -38928 -38927 -38926 -38925 -33507 -25215 -70066 -70065 -70064 -59498 -54768 -54767 -54766 -56338 -56339 -56340 -29081 -25216 -21469 -69796 -69795 -69794 -58265 -58264 -46591 -44184 -38385 -38903 -38876 -38875 -31463 -24217 -23475 -67474 -66840 -54765 -56008 -56007 -54764 -56006 -56005 -56004 -56003 -25843 -24694 -23473 -23472 -23471 -71743 -67970 -63906 -59447 -58238 -51339 -47654 -43374 -38362 -35163 -35162 -35161 -35160 -26385 -26384 -26383 -15545 -15025 -29388 -29387 -46679 -41235 -27287 -41236 -30989 -34194 -29390 -59275 -59274 -34193 -29389 -70068 -57810 -18815 -19261 -17794 -12131 -23527 -14415 -21363 -19786 -42406 -37732 -42404 -37135 -62501 -16185 -16184 -17730 -16183 -16182 -18797 -19902 -17240 -17726 -17725 -17724 -19616 -19615 -19614 -19624 -19623 -19622 -19621 -19620 -19619 -19618 -19617 -19613 -17009 -17008 -46535 -13305 -10612 -46523 -9336 -17612 -20997 -17628 -11668 -17787 -22273 -20901 -20900 -20899 -20898 -20897 -20896 -20895 -20893 -20892 -20888 -17081 -51021 -17082 -10342 -47562 -16127 -11619 -57466 -22937 -58056 -41969 -15006 -28066 -28065 -21359 -31439 -21358 -17785 -25800 -25799 -20591 -18196 -19579 -15501 -15887 -25503 -19716 -63565 -34712 -24195 -17097 -17217 -17080 -15615 -15614 -14948 -7603 -17788 -15094 -14973 -13381 -21083 -21082 -21081 -18321 -18320 -18319 -18318 -18317 -18316 -18315 -18314 -18313 -18312 -18311 -18310 -12135 -12134 -12133 -12132 -17617 -7553 -34050 -16146 -17188 -17222 -14104 -14983 -18669 -27304 -11730 -14783 -54763 -56286 -56285 -56284 -56283 -56282 -56281 -56280 -56279 -30954 -15021 -13373 -16988 -21471 -18322 -16984 -35274 -22499 -15959 -13980 -10715 -12350 -12349 -30425 -12376 -12351 -57771 -15506 -17241 -15512 -15511 -15509 -15508 -15507 -16178 -18721 -15106 -5942 -9935 -5380 -7287 -16144 -6359 -12931 -4410 -5835 -47232 -4826 -6109 -5607 -6005 -11013 -11012 -11011 -11010 -6519 -6517 -6190 -6189 -6502 -5064 -6186 -6185 -6505 -5063 -6179 -6178 -6501 -5062 -6424 -6901 -8787 -27673 -5821 -23506 -7591 -4370 -5819 -6256 -15603 -18798 -12923 -14319 -20346 -56352 -21046 -17697 -14473 -12925 -12913 -14108 -17674 -14555 -19177 -15880 -17722 -11657 -25950 -25949 -53489 -50075 -58462 -55074 -46665 -55073 -46666 -35103 -46664 -35102 -46663 -34709 -30877 -11176 -21026 -44186 -10816 -9335 -14901 -21162 -16175 -21161 -16176 -16177 -16137 -25532 -14688 -31051 -35776 -25529 -15132 -19572 -46649 -46648 -53698 -14078 -14518 -14414 -25817 -12537 -11658 -20306 -19348 -17211 -17210 -12081 -41327 -27736 -15500 -19841 -10788 -10786 -13350 -19769 -17231 -17230 -12600 -15165 -47115 -46022 -15163 -15162 -15020 -15019 -9299 -12535 -27294 -23393 -19800 -19746 -17059 -15115 -19799 -19745 -17058 -15114 -12650 -15939 -15608 -15107 -15108 -12653 -8872 -14511 -15109 -15110 -28881 -49398 -38845 -31963 -30896 -30895 -31962 -18720 -30894 -30893 -30892 -30891 -14587 -30952 -30890 -25539 -14500 -20570 -20569 -47199 -21368 -21367 -47200 -11044 -11659 -11607 -14576 -11606 -11605 -14575 -14574 -10293 -44111 -41955 -41182 -14069 -14957 -14950 -46677 -31418 -3584 -6585 -14303 -20613 -47561 -39416 -50567 -5769 -2675 -2348 -2437 -1998 -1472 -170 -1905 -1362 -324 -2132 -272 -1471 -2789 -4460 -1470 -2221 -1469 -2788 -141 -1451 -2222 -2948 -1295 -513 -234 -1508 -6357 -500 -5106 -4226 -4604 -4227 -7077 -14646 -8244 -12732 -28191 -19725 -14514 -10741 -13909 -15628 -15627 -13907 -11124 -15621 -25918 -19678 -12145 -12144 -12556 -15515 -17723 -23859 -14249 -15882 -15037 -68591 -37763 -27291 -16162 -12593 -13374 -13987 -14071 -25167 -11490 -6770 -18383 -17229 -18382 -17228 -18381 -13988 -14067 -14053 -7878 -61410 -13790 -6962 -13981 -12143 -14089 -13978 -14087 -12538 -24259 -13975 -14088 -7078 -13407 -21595 -17618 -13970 -14558 -14557 -14563 -18835 -14081 -13969 -31042 -31041 -14084 -14085 -14420 -27759 -20627 -16150 -14083 -14082 -17099 -31043 -14993 -11726 -17692 -11628 -10321 -10320 -10316 -10315 -14582 -25247 -8258 -11618 -10809 -7035 -10818 -15571 -14952 -10832 -12066 -10781 -12065 -12064 -10780 -10881 -10224 -10223 -10222 -7798 -24172 -24171 -46522 -10382 -47191 -56837 -7061 -10383 -10381 -9947 -9946 -8786 -8785 -11065 -22300 -22299 -17752 -17750 -22296 -17760 -22294 -22293 -22292 -19630 -22290 -22280 -15609 -10776 -8916 -19813 -12232 -14044 -14011 -14010 -14009 -24340 -14007 -14006 -14980 -19815 -14004 -14003 -14958 -19724 -13371 -14444 -14523 -13367 -24713 -15607 -15606 -13334 -13333 -20628 -13331 -15483 -21076 -54728 -50990 -47911 -34073 -47936 -34072 -47910 -34071 -47909 -34070 -56368 -49574 -51334 -44505 -37816 -34069 -28525 -28526 -54431 -51009 -34068 -28051 -57417 -49569 -51337 -43297 -37795 -34067 -28050 -61364 -51010 -43288 -37790 -34066 -28049 -47033 -28495 -21397 -51008 -34063 -28048 -24186 -17799 -50941 -17784 -10294 -12473 -12472 -34595 -28862 -24185 -22190 -12471 -34663 -28861 -24184 -15005 -12470 -34065 -28494 -24183 -15015 -12469 -39295 -34064 -28493 -24182 -15014 -12468 -57431 -49568 -51336 -43298 -37794 -34062 -28047 -24181 -15013 -12467 -50586 -51007 -43286 -37789 -38394 -28046 -24180 -15012 -12466 -66228 -53611 -46739 -43287 -37793 -34060 -28045 -24175 -15002 -12465 -14501 -15624 -14502 -15623 -15622 -9024 -7429 -35243 -10889 -10888 -10823 -10822 -10742 -10749 -14431 -8840 -10688 -42907 -9294 -12512 -11862 -11861 -11860 -11859 -11858 -9906 -12657 -15918 -10418 -17064 -11540 -17065 -11539 -17066 -11538 -18271 -17696 -17695 -17694 -14776 -19689 -9909 -19685 -14773 -9911 -9910 -12061 -9071 -9069 -63088 -38301 -28444 -59387 -21373 -50952 -26360 -63085 -25246 -64431 -28442 -15024 -50949 -26358 -15023 -47864 -28440 -15514 -25472 -18703 -16123 -25471 -11187 -14073 -64429 -28439 -11186 -14072 -13383 -11612 -11611 -10375 -10301 -10300 -10828 -10760 -10884 -15629 -11810 -9809 -11667 -11666 -11665 -15068 -15067 -15066 -23902 -35238 -52926 -10297 -10296 -10295 -8873 -10807 -11014 -32098 -19164 -19163 -19162 -19161 -54710 -19854 -6347 -12439 -12438 -12437 -12436 -12435 -12431 -22845 -21386 -38915 -27100 -27104 -21006 -38916 -27099 -27103 -21005 -38917 -27098 -27102 -21004 -38918 -27097 -27101 -21003 -9083 -8830 -7889 -8828 -8794 -10347 -10808 -52864 -52863 -20536 -52862 -17803 -52861 -17806 -52860 -17805 -52859 -34653 -47632 -33509 -41934 -39355 -39354 -39353 -24747 -47605 -37832 -52268 -35228 -10537 -8280 -26328 -26327 -46531 -8856 -12659 -6363 -18736 -27077 -30993 -10404 -10403 -10402 -10400 -10399 -10398 -18370 -18369 -18368 -18367 -18366 -18365 -12426 -12425 -19876 -19875 -8188 -19874 -8185 -19873 -8182 -18376 -7069 -18375 -7070 -18374 -7072 -7118 -15064 -15063 -1244 -10925 -10924 -10923 -10922 -6232 -6231 -7255 -10983 -10981 -10982 -8001 -12769 -12768 -12767 -12766 -11049 -10210 -9091 -14443 -10932 -10931 -10930 -6515 -25176 -25178 -12445 -12444 -12443 -18373 -18372 -18371 -12451 -12450 -12449 -15613 -8193 -15612 -8192 -15611 -8190 -15061 -10121 -10120 -10118 -10117 -10116 -10115 -10114 -10113 -10112 -7578 -7796 -19741 -10232 -19740 -9975 -19739 -9905 -19661 -19659 -19658 -19657 -19656 -10835 -20596 -19671 -12618 -9822 -17224 -10834 -10833 -9795 -8874 -8875 -6618 -9277 -8855 -5980 -9828 -7597 -6774 -20529 -6138 -28575 -29336 -25952 -29358 -24737 -10557 -8243 -10000 -11182 -9339 -8169 -7696 -29367 -29366 -46521 -7242 -8374 -3622 -3954 -7017 -17704 -16173 -15119 -8639 -5537 -8165 -11740 -9270 -6494 -4929 -3417 -9305 -6293 -6292 -7993 -15033 -15034 -14577 -14580 -14578 -21092 -11600 -8793 -8792 -59464 -47927 -3762 -12911 -12912 -12910 -15478 -13143 -6341 -10357 -7376 -8642 -7008 -9938 -7006 -9372 -6446 -8685 -9131 -5072 -8633 -8632 -8629 -8631 -8628 -8627 -5836 -41926 -34720 -8179 -9954 -5335 -8152 -24333 -19861 -25570 -24344 -8150 -8151 -13971 -9393 -27411 -15219 -17127 -17126 -20703 -20702 -13402 -10747 -47137 -11510 -7248 -7247 -7246 -7244 -9276 -6415 -9937 -6408 -9921 -16877 -7096 -15217 -9920 -3845 -3843 -23344 -9971 -15216 -9149 -7102 -12701 -11080 -7100 -9168 -9167 -7094 -7007 -8176 -7602 -8181 -6616 -6615 -5587 -2470 -5838 -6608 -5581 -988 -6745 -8045 -8044 -6773 -45867 -5834 -7595 -7558 -6287 -6251 -47136 -34131 -5873 -6140 -6304 -6303 -9727 -6300 -4300 -8918 -54475 -54476 -25220 -8789 -5973 -14075 -9351 -5291 -4611 -3202 -6760 -4707 -4705 -5827 -6104 -7630 -9290 -7628 -9289 -6592 -9288 -6591 -15060 -15059 -15058 -39466 -7051 -6465 -4038 -43809 -7320 -11617 -43798 -20686 -2159 -18188 -18187 -18186 -18185 -5753 -10182 -8610 -7527 -16879 -8603 -7517 -10138 -8559 -7494 -13862 -7492 -9973 -9972 -7490 -9850 -8485 -7476 -8453 -7468 -9844 -9843 -7456 -8340 -7453 -8338 -7450 -8337 -7449 -10389 -7447 -11569 -8331 -7436 -8327 -7432 -8319 -7422 -8317 -7417 -6411 -8315 -7416 -8313 -7413 -8311 -7410 -7402 -7401 -6614 -4711 -3296 -6617 -6625 -4708 -5831 -5154 -5153 -5152 -39468 -39467 -38824 -55969 -39462 -38350 -39461 -38349 -39460 -38345 -38244 -37675 -41245 -38914 -39915 -54529 -38857 -53021 -38380 -53020 -38379 -52720 -38372 -52719 -38371 -53028 -38370 -53027 -38369 -53025 -38368 -53024 -38367 -34117 -38352 -38351 -37798 -38866 -53019 -37775 -53018 -37825 -37161 -37158 -48255 -42971 -38829 -38804 -38805 -39465 -37157 -39464 -37677 -39463 -37678 -54497 -29273 -27698 -31032 -37746 -51380 -56261 -43406 -43842 -51410 -54771 -34628 -53977 -53976 -34631 -41913 -37752 -34721 -37698 -35750 -35153 -47237 -33399 -39902 -38354 -35698 -34175 -34176 -35250 -35224 -49557 -35221 -39451 -38839 -35131 -42480 -48257 -42973 -48256 -42972 -43383 -33477 -63103 -59546 -50127 -46585 -54711 -59256 -44086 -44542 -47073 -39898 -39897 -47071 -35682 -35262 -41962 -41963 -57481 -69074 -57480 -35275 -41956 -15198 -31993 -35136 -35192 -35112 -35129 -35225 -37809 -35135 -38844 -38843 -46645 -20642 -20641 -16885 -14262 -16871 -15201 -26479 -22847 -20947 -5274 -7996 -6383 -27081 -24304 -8654 -8653 -8652 -22851 -22850 -22849 -3054 -7377 -47888 -19256 -11651 -13831 -6480 -11321 -10123 -13799 -13302 -9225 -6496 -9747 -12677 -12675 -15480 -13146 -6482 -58385 -30988 -15481 -11551 -11558 -24776 -10362 -51417 -41931 -37689 -33317 -13110 -9226 -68530 -39320 -8626 -22892 -9904 -23452 -8625 -8624 -13008 -13007 -8623 -58045 -28508 -8160 -9751 -12991 -11335 -6294 -13345 -6897 -13344 -6882 -13343 -6879 -57413 -50874 -47939 -51332 -47254 -58114 -38376 -51326 -38856 -51331 -25117 -21079 -51325 -20590 -51324 -26298 -53904 -18686 -51323 -17825 -20535 -12308 -20534 -30981 -35270 -49477 -18685 -58103 -16292 -58112 -16291 -15912 -63623 -37771 -24799 -15911 -51320 -15909 -17729 -15908 -58100 -27758 -17728 -20944 -15907 -47056 -25118 -15905 -22804 -51322 -46029 -51327 -15902 -58096 -44531 -28528 -58095 -35778 -50899 -15899 -51313 -30979 -18705 -18704 -18380 -9087 -10929 -10928 -10927 -10926 -6514 -6513 -10975 -10974 -10973 -10972 -10971 -7240 -8009 -10921 -10920 -10919 -10918 -6230 -6229 -13342 -6885 -7613 -6621 -3630 -983 -8813 -17343 -13404 -14579 -5822 -47135 -37757 -6495 -8040 -39305 -6941 -6940 -6939 -6938 -6937 -6936 -6935 -6934 -6933 -64259 -46683 -5551 -4025 -8807 -3581 -14640 -8839 -8838 -8837 -8836 -5269 -47134 -24292 -8806 -7971 -26294 -13341 -6891 -14422 -6888 -13340 -6876 -13339 -6873 -13338 -6894 -8647 -20946 -21487 -47133 -21296 -15883 -15884 -50120 -42502 -47131 -22843 -47130 -28577 -17634 -17633 -47129 -8388 -6401 -3491 -9945 -4159 -11583 -8866 -7045 -47128 -8387 -51014 -21021 -47126 -14059 -47125 -12970 -9092 -7090 -9876 -7038 -9171 -9170 -7044 -16420 -9132 -13843 -11114 -23011 -6477 -61429 -61428 -50624 -17824 -6957 -10359 -8329 -7901 -6150 -5833 -43840 -30875 -15868 -5773 -5813 -8546 -7167 -8455 -7166 -8690 -7165 -18061 -18060 -8688 -6805 -5563 -59367 -39439 -27082 -9360 -3593 -6466 -9296 -5781 -19170 -6499 -3905 -6586 -2822 -6290 -11491 -8987 -8995 -8991 -9012 -9010 -8984 -9020 -8977 -9021 -8993 -8988 -9009 -9013 -9014 -8986 -8996 -9016 -9018 -8999 -9000 -9008 -9004 -9019 -9007 -9005 -9001 -9003 -9017 -9022 -9015 -8989 -8982 -8979 -8990 -8985 -9002 -11731 -9333 -8998 -8992 -9006 -8983 -8975 -8994 -8974 -8978 -25537 -22433 -8981 -8976 -8980 -25536 -8922 -8923 -8924 -8921 -8925 -8926 -8927 -8928 -8920 -44575 -27723 -20922 -44574 -27722 -20920 -50808 -27721 -20919 -38880 -27720 -20918 -38881 -27719 -14354 -50807 -27715 -14353 -38883 -20911 -50763 -44569 -50806 -50764 -27711 -8936 -8937 -8939 -44566 -27710 -20915 -38889 -20928 -8940 -15550 -15549 -38890 -15548 -8944 -8945 -8946 -38891 -38892 -27709 -15547 -8950 -20951 -8951 -8952 -8953 -8954 -8955 -8956 -8957 -8958 -8959 -38893 -20926 -14332 -8961 -8962 -8963 -8965 -8966 -8967 -38894 -20925 -8964 -8968 -8970 -8969 -38895 -8973 -38896 -20924 -20914 -20942 -8971 -6448 -7103 -6381 -9395 -6993 -6992 -5485 -6922 -15635 -15634 -8341 -6493 -4965 -3816 -4704 -3810 -3818 -23343 -9941 -6489 -3496 -5812 -47124 -22844 -5231 -5232 -26323 -26322 -47598 -6578 -13806 -9326 -15206 -15205 -15204 -20635 -8689 -9114 -23479 -10365 -17124 -10364 -17123 -10363 -23314 -23313 -18047 -11085 -18046 -11084 -15226 -15224 -8137 -7667 -17346 -9953 -17345 -9952 -20640 -14260 -14259 -6380 -6379 -6378 -7576 -7729 -9301 -6208 -6195 -6193 -5882 -5881 -5880 -15105 -63189 -11537 -9310 -9907 -8699 -15120 -15121 -6375 -15122 -8832 -15101 -7561 -5879 -6373 -12148 -8267 -6372 -7550 -6371 -7033 -11857 -7701 -6369 -5875 -5874 -6367 -14774 -7575 -14775 -11535 -5872 -5871 -5870 -6365 -6926 -14642 -6364 -5868 -5866 -14778 -15118 -19660 -14510 -11536 -8042 -6011 -8004 -8003 -16884 -8102 -8288 -16883 -8101 -6017 -14621 -9787 -9786 -17768 -5378 -10161 -8600 -7566 -6462 -20967 -17118 -17117 -7162 -8788 -5460 -59334 -16168 -10748 -5409 -15168 -15167 -8543 -7623 -8454 -7134 -8328 -6818 -10607 -6525 -9344 -11039 -11038 -11037 -11036 -6160 -6159 -1899 -3802 -4680 -2011 -9285 -29378 -11828 -19789 -4845 -6105 -26481 -16902 -7672 -9940 -8336 -7444 -6584 -15057 -15056 -20525 -4840 -6563 -5971 -7114 -3380 -15055 -15053 -15052 -7115 -15051 -9367 -8342 -7455 -6387 -8303 -6913 -12696 -5721 -5710 -9152 -5708 -5707 -6547 -5705 -12690 -11075 -6426 -5151 -5150 -4655 -4066 -12077 -22947 -7359 -22946 -7360 -14057 -7361 -7551 -7552 -22897 -6597 -5565 -16163 -9830 -5977 -5455 -5464 -5463 -5451 -5461 -5462 -71745 -67662 -67483 -63530 -63531 -54024 -54019 -54014 -54010 -35158 -33504 -33503 -24697 -24696 -15125 -14367 -8791 -4153 -19159 -4930 -7895 -7894 -4380 -3784 -9345 -10800 -9279 -14649 -9300 -8693 -9342 -10820 -11184 -11593 -6399 -61978 -30970 -5395 -4762 -3828 -5892 -7869 -7868 -5344 -7283 -7282 -6278 -14274 -5348 -7867 -5343 -5346 -7866 -7865 -17702 -5362 -5841 -7400 -5393 -5392 -14609 -5390 -5367 -5351 -5323 -50577 -6271 -20352 -37122 -7266 -8164 -7086 -7356 -6301 -3791 -5997 -6902 -6286 -6903 -5996 -5992 -23014 -8140 -7645 -10386 -8316 -5541 -9366 -24168 -35755 -52799 -19280 -2022 -5941 -4652 -3182 -6156 -5600 -5945 -1020 -2856 -2622 -5987 -4337 -7610 -6136 -31906 -31905 -47181 -5562 -17239 -4853 -4834 -705 -58890 -10713 -10712 -6637 -43814 -13349 -6299 -7629 -4844 -68028 -39522 -6099 -6238 -4298 -5286 -4610 -3808 -5990 -6280 -3656 -2403 -6272 -7239 -5026 -5024 -3574 -3573 -5055 -5054 -5053 -5052 -4644 -4033 -5825 -11720 -11716 -11713 -11712 -10825 -10824 -10821 -7880 -4640 -4642 -4615 -7940 -7939 -4614 -7938 -7937 -10787 -3314 -6103 -9914 -11603 -2451 -987 -3220 -758 -5564 -8084 -9361 -15489 -837 -15492 -17782 -12643 -7583 -7582 -16319 -7580 -4042 -2357 -4147 -9365 -2864 -5582 -6907 -3825 -5584 -5583 -6122 -6121 -9213 -10274 -9974 -3041 -5377 -10943 -9105 -6332 -6577 -5758 -9951 -8343 -6978 -6023 -18038 -7445 -7129 -13847 -7269 -6331 -18820 -13142 -8097 -5331 -13834 -13833 -6918 -6018 -13829 -8096 -6022 -6506 -5555 -3579 -3414 -4893 -3827 -4988 -2853 -4964 -4963 -3213 -4986 -4719 -4055 -46653 -46652 -24284 -46651 -24271 -3503 -4061 -5494 -3632 -31160 -10332 -19214 -9164 -16309 -16904 -7333 -23019 -5577 -10152 -8595 -7508 -5775 -7257 -2190 -5635 -7256 -986 -5379 -9364 -4687 -2773 -4387 -3811 -10327 -4685 -4686 -4651 -6908 -4574 -5530 -5529 -5528 -5527 -5596 -5595 -8827 -12647 -12646 -12645 -12644 -10978 -10976 -9066 -6168 -9399 -9065 -6167 -9398 -3562 -2728 -6524 -12626 -12625 -12624 -5040 -3889 -3888 -10775 -6905 -4190 -5594 -5593 -5592 -8798 -5039 -5038 -5037 -5036 -5181 -3875 -5035 -5034 -5033 -5032 -5180 -3873 -4331 -18819 -5533 -3904 -9866 -3881 -63128 -63126 -63125 -64376 -46720 -23900 -64375 -46719 -27274 -64374 -54523 -39500 -7037 -64373 -46718 -23898 -63127 -64315 -46717 -3874 -4292 -6246 -5550 -4535 -4534 -11110 -11109 -8697 -10334 -10333 -9135 -8353 -20081 -20080 -7127 -3812 -5552 -3035 -20344 -5547 -6255 -9275 -8649 -7446 -7644 -4408 -4044 -8170 -6633 -4291 -38336 -8138 -7448 -6053 -7036 -3505 -5253 -5262 -5261 -5259 -5258 -5257 -5256 -5255 -5254 -5252 -3655 -936 -4828 -3651 -39513 -39512 -39511 -57503 -3724 -3383 -5234 -3657 -5074 -15484 -5265 -4299 -7346 -11089 -534 -29272 -7350 -3947 -3388 -9272 -4058 -2536 -2012 -223 -6609 -1386 -7224 -5251 -5096 -4379 -3783 -7342 -2798 -9076 -9273 -9067 -9258 -3563 -2729 -11023 -11022 -11021 -11020 -11150 -11149 -5031 -5030 -5029 -5028 -3576 -3575 -2735 -1884 -13351 -11185 -3432 -1408 -232 -3517 -3613 -5480 -3609 -50 -2642 -2734 -649 -230 -3051 -1044 -229 -2484 -2627 -4034 -63983 -57974 -47106 -47105 -47104 -47103 -55920 -35241 -49470 -41282 -41918 -882 -2656 -1017 -2036 -39863 -42459 -31443 -30429 -25036 -25007 -26302 -25181 -22893 -22894 -19773 -19853 -24230 -19255 -18335 -18277 -8027 -2653 -1431 -227 -612 -35706 -31421 -25006 -19759 -19169 -9923 -8092 -7947 -34233 -35647 -9026 -9025 -9023 -15054 -21023 -19767 -2654 -789 -308 -1430 -70080 -23829 -15586 -10179 -15585 -9155 -7526 -4980 -26480 -15252 -10253 -6828 -9383 -9382 -9381 -8614 -7531 -4979 -20392 -19469 -19468 -11082 -8361 -10148 -8590 -7504 -4976 -10147 -8588 -7503 -4974 -6127 -10144 -8578 -7500 -4973 -10143 -8575 -7499 -4972 -10142 -8572 -7498 -6241 -10137 -8556 -7493 -4970 -5774 -10136 -8553 -7491 -4969 -5737 -10135 -8094 -7489 -4968 -10146 -8582 -7502 -5107 -6130 -10145 -8581 -7501 -4996 -14421 -10141 -14363 -8569 -14362 -7497 -14361 -5105 -14360 -10140 -8564 -7496 -4995 -14450 -11074 -14449 -8095 -14448 -11072 -14447 -11071 -10134 -8093 -7488 -4994 -6123 -15214 -9325 -14102 -9324 -9319 -9318 -8541 -7487 -5102 -8540 -7486 -5101 -8535 -6984 -6393 -8532 -7485 -5099 -8530 -7483 -5098 -8529 -7482 -5097 -8127 -7481 -5092 -8528 -7480 -5091 -19730 -19729 -7622 -10249 -9854 -10248 -9127 -10247 -9126 -10246 -9124 -10245 -9853 -10244 -9122 -10243 -10242 -9119 -8514 -7477 -3844 -9380 -9379 -9330 -12684 -11285 -8114 -11284 -7475 -11282 -7163 -9847 -8460 -7474 -5431 -14495 -8501 -7473 -4933 -16869 -16868 -12010 -5430 -15196 -6530 -5086 -20082 -10257 -19339 -10255 -19205 -10254 -9142 -9329 -9141 -5428 -30396 -9959 -13033 -9958 -9957 -9881 -16865 -9956 -9955 -7471 -4939 -16864 -8458 -6988 -4951 -8450 -7465 -5084 -23016 -19466 -19465 -19464 -6840 -23015 -19462 -19461 -19460 -6839 -12679 -16856 -5081 -9745 -8650 -7451 -5729 -17344 -13406 -13789 -6819 -27844 -8017 -8248 -6047 -8648 -7439 -5079 -19459 -19458 -19457 -10945 -8263 -23013 -10358 -8350 -7421 -6816 -23012 -8349 -7420 -6815 -8318 -8348 -8239 -8312 -7411 -4960 -9102 -6859 -7331 -7122 -13401 -13400 -4957 -24895 -9838 -9837 -9836 -8232 -7633 -7634 -7375 -8230 -8229 -4982 -18568 -13801 -8282 -8601 -6987 -6354 -8028 -6986 -6349 -8115 -8617 -7693 -19315 -10279 -12276 -10284 -12275 -9150 -12273 -6068 -23863 -10273 -14855 -10272 -12267 -10271 -16876 -7174 -23862 -10956 -17352 -10269 -16875 -9181 -12260 -8346 -22306 -10955 -9143 -7658 -6541 -16873 -6063 -19211 -10954 -14850 -10266 -14849 -10264 -14848 -7657 -16841 -7636 -7635 -9936 -9933 -6316 -8308 -7405 -5700 -8011 -7404 -5699 -10953 -10952 -10951 -11222 -7619 -16852 -6492 -6834 -15183 -15182 -6822 -6821 -6490 -5725 -10843 -10842 -2738 -3282 -4339 -3714 -3539 -2240 -4068 -4070 -1352 -4069 -1918 -4202 -12921 -3801 -3709 -6865 -3121 -2997 -2264 -2263 -2259 -5145 -12073 -4060 -6277 -3817 -12075 -2775 -4071 -9291 -9287 -9286 -2854 -1011 -1459 -1458 -4873 -4872 -4869 -22842 -20578 -20583 -19258 -19259 -8868 -3864 -3950 -1274 -3381 -3377 -3428 -3953 -2290 -6862 -3024 -6861 -2289 -3023 -2288 -4569 -4376 -13398 -4375 -4553 -4552 -52925 -3327 -3326 -2439 -4415 -4403 -3711 -3814 -3813 -2029 -3495 -3494 -9348 -2897 -2360 -4616 -20528 -2480 -2479 -2478 -2764 -4557 -17632 -17631 -17630 -16160 -10806 -4160 -16158 -10805 -3424 -4207 -4206 -4205 -4203 -7608 -5023 -5022 -5442 -5441 -8010 -2731 -3325 -3324 -2203 -2202 -2832 -11123 -2986 -10292 -4391 -12072 -3716 -3488 -3527 -3526 -1426 -1425 -10611 -10801 -3401 -2941 -3946 -3944 -3943 -3945 -19281 -3721 -3710 -2459 -3307 -34722 -3392 -681 -7351 -3298 -4096 -5864 -4336 -5863 -4335 -3715 -2537 -5021 -5020 -5019 -5018 -5686 -2706 -5650 -2705 -47590 -2548 -54065 -3653 -3949 -1832 -867 -4157 -1854 -18259 -15583 -9154 -7525 -5661 -2994 -2993 -1844 -3538 -3850 -10159 -8599 -7513 -4137 -10157 -9166 -9165 -9153 -10155 -8597 -7511 -4135 -10154 -8596 -7510 -4134 -10153 -8126 -7509 -6548 -12700 -10151 -12699 -8594 -12698 -7507 -12697 -4132 -10150 -8593 -7506 -4131 -12694 -11079 -12693 -11078 -12692 -11077 -12691 -11076 -3853 -6587 -3268 -24751 -24750 -46518 -2021 -4144 -2678 -18699 -47953 -10666 -57408 -10609 -7317 -3502 -3705 -1922 -1920 -994 -993 -992 -990 -4912 -16164 -3884 -16165 -3883 -16166 -3303 -3859 -2940 -3858 -2939 -2943 -3857 -3856 -2244 -2453 -54080 -6925 -3486 -2456 -29365 -29364 -29363 -53986 -2255 -3159 -3158 -3157 -3156 -2447 -2201 -2200 -6842 -2445 -1455 -1454 -11122 -2213 -11121 -2212 -12291 -2210 -12290 -2209 -11120 -2208 -2726 -2261 -1828 -1827 -1262 -3701 -2870 -1158 -2235 -5300 -887 -46579 -35227 -35751 -17007 -2966 -2237 -52895 -18706 -52870 -46510 -15894 -7020 -41278 -15893 -7019 -2256 -6467 -2869 -2888 -20343 -6139 -2477 -1100 -2725 -2724 -2723 -2722 -2721 -2720 -2719 -2717 -2718 -2716 -2715 -2714 -2713 -2712 -2711 -2710 -2709 -2708 -3323 -13982 -7974 -14955 -7973 -3531 -7972 -2125 -2792 -2101 -800 -2347 -1422 -4697 -2160 -6284 -4938 -6956 -1351 -2457 -10703 -2774 -2192 -2191 -7344 -2800 -3693 -3692 -3691 -7057 -3516 -4846 -1270 -3269 -7274 -5478 -6087 -3384 -9347 -2338 -2343 -1839 -9363 -842 -2359 -1271 -9349 -2901 -16835 -2356 -2340 -7409 -9346 -841 -20390 -16847 -4448 -2657 -6576 -5767 -18572 -9332 -7533 -2337 -8326 -7431 -5536 -2091 -16314 -16313 -16312 -6409 -1801 -1800 -1794 -8662 -7674 -6412 -5766 -16905 -9792 -1792 -10158 -8149 -1791 -5779 -1790 -1789 -2057 -37834 -32577 -10326 -16311 -16310 -6855 -3869 -2849 -6089 -8302 -3451 -8301 -24450 -18330 -18329 -18285 -9875 -14872 -9328 -14871 -9852 -6980 -14870 -3177 -14869 -7394 -14868 -9874 -14867 -9873 -16895 -9872 -14865 -9871 -6567 -3460 -8136 -6852 -4619 -13817 -13816 -6079 -7276 -3173 -1769 -8613 -7530 -1768 -8612 -7529 -1767 -8611 -7528 -1766 -3465 -11081 -2273 -5662 -12411 -10174 -9204 -3925 -16889 -8607 -7524 -1760 -16888 -8606 -7523 -3471 -16887 -8605 -7522 -3676 -16886 -8604 -7521 -3469 -13813 -13812 -13810 -13809 -3468 -19316 -16882 -10366 -6636 -16881 -8022 -7519 -3466 -16880 -8021 -7518 -1752 -3463 -1750 -16878 -8602 -7516 -3462 -3172 -8041 -7515 -4915 -1747 -1746 -3922 -3376 -5887 -3375 -6124 -2044 -2043 -2042 -2041 -6242 -2039 -4262 -6129 -1743 -1740 -6128 -14446 -11070 -6125 -4441 -7175 -5514 -4199 -8344 -4916 -1733 -3671 -5656 -14827 -7656 -21427 -15211 -6539 -3917 -2282 -4212 -1726 -8531 -7484 -4449 -1724 -4172 -4171 -1721 -4170 -3459 -6533 -3554 -3933 -3932 -11950 -4218 -3457 -4161 -19204 -7650 -5491 -1712 -1711 -1710 -1709 -16862 -8457 -6989 -1708 -8456 -7470 -1707 -7890 -8499 -7469 -1706 -8452 -7467 -3929 -8451 -7466 -1704 -1702 -8449 -7464 -3666 -8448 -7463 -1700 -8446 -7462 -1699 -8527 -8296 -4447 -8019 -7460 -6582 -8438 -7458 -1696 -7620 -9746 -8339 -7452 -1693 -3550 -3937 -3171 -4457 -1684 -4216 -5403 -8335 -8245 -1682 -8104 -7443 -1681 -9939 -8334 -7442 -1680 -8333 -7441 -1679 -4446 -12672 -7125 -7438 -1677 -8332 -7437 -4228 -18944 -18943 -4455 -9385 -8264 -1674 -7435 -1672 -10944 -3163 -9744 -6976 -4454 -8737 -8030 -1669 -8325 -7430 -3916 -8324 -7428 -3915 -8323 -7427 -3914 -8322 -7426 -3913 -8321 -7425 -1662 -3912 -8016 -7424 -3911 -3170 -8320 -7423 -6317 -8314 -7415 -1659 -7123 -7414 -3664 -3169 -3456 -3663 -1653 -3168 -10942 -10941 -10939 -4260 -3166 -9835 -5703 -5702 -3165 -3907 -1639 -1638 -3164 -9093 -7631 -8226 -3658 -2942 -1933 -1932 -6148 -4673 -6147 -4672 -6149 -4671 -6146 -4670 -6145 -4669 -6144 -4668 -6143 -4667 -6142 -4666 -6141 -4665 -2102 -2431 -4649 -15010 -3519 -4650 -15009 -3518 -4648 -15008 -2935 -2552 -1936 -3410 -3409 -3208 -3405 -3404 -1919 -3411 -3209 -53562 -1157 -5337 -47123 -1851 -811 -11015 -2697 -2554 -2238 -1099 -5305 -2129 -888 -3600 -1969 -3284 -1968 -6276 -3815 -5163 -3015 -5162 -3014 -5161 -3011 -5160 -3010 -5159 -3013 -5158 -3012 -5157 -2937 -1466 -5165 -3183 -5164 -2938 -5355 -3120 -50575 -4334 -9222 -9897 -4420 -2676 -1066 -68557 -3896 -1967 -10291 -2933 -2156 -1007 -9813 -2006 -7587 -7586 -2490 -6741 -2489 -7585 -2488 -6738 -2487 -9829 -2486 -6736 -2485 -1265 -1263 -5336 -1846 -2151 -1954 -1484 -1482 -3610 -1982 -8853 -9867 -4759 -2031 -10815 -954 -10814 -955 -10813 -953 -10812 -950 -10811 -951 -10810 -949 -1830 -4602 -4429 -2260 -49441 -17823 -2241 -11055 -11054 -11053 -11052 -10892 -2670 -5601 -5068 -1119 -1423 -5131 -673 -33513 -33512 -4421 -52892 -1347 -2204 -3545 -4568 -2124 -2694 -1401 -4544 -3546 -6628 -2123 -2452 -12071 -2497 -12074 -1298 -26333 -26332 -4910 -4631 -47179 -2236 -15487 -840 -15488 -6021 -2547 -1973 -1241 -15050 -1231 -15049 -1195 -2017 -2016 -50006 -49512 -47596 -44079 -53883 -44078 -4634 -757 -5316 -2546 -11119 -945 -12294 -944 -11118 -943 -16297 -7864 -2928 -2927 -7968 -2926 -2925 -9818 -2924 -2923 -9817 -2922 -7965 -2921 -9816 -2920 -7963 -2918 -9815 -2919 -7961 -2917 -3771 -2915 -6296 -710 -3393 -310 -2535 -2534 -1491 -2482 -2471 -14644 -835 -11183 -834 -2744 -4198 -1065 -2858 -628 -6198 -3033 -7235 -3032 -3031 -3030 -11042 -1866 -7998 -1870 -4567 -7999 -1127 -5611 -3027 -3026 -2435 -7227 -1867 -2434 -1871 -1128 -50097 -21095 -3891 -1428 -2562 -2363 -2362 -2361 -7873 -12137 -11709 -11851 -5798 -11850 -11708 -4657 -11602 -4588 -66937 -47843 -6722 -27726 -4327 -27724 -11660 -27713 -6720 -27712 -6719 -30938 -6718 -18719 -7874 -18718 -6710 -12548 -5784 -18717 -6708 -6153 -5207 -5277 -11715 -11855 -11854 -11714 -11711 -11849 -11848 -11710 -6310 -5796 -5793 -5790 -11721 -11853 -11852 -11719 -11718 -11847 -11846 -11717 -5791 -4656 -6728 -6727 -6726 -6725 -58452 -44469 -21499 -12006 -6724 -3511 -3510 -6717 -6260 -6715 -52149 -43838 -33671 -22934 -54052 -62701 -31949 -25481 -24226 -18362 -22274 -13376 -23853 -34143 -6705 -6704 -4119 -37828 -4118 -62582 -41991 -6703 -35805 -37772 -4115 -11839 -11838 -4120 -64384 -19144 -6699 -35802 -35801 -4108 -18663 -4106 -19143 -6696 -30934 -11646 -4102 -22931 -6695 -4100 -42975 -23846 -4098 -4097 -25951 -2400 -4095 -4094 -6694 -11833 -4091 -11837 -11836 -4088 -19145 -6690 -11832 -4084 -18662 -4082 -11830 -6687 -4079 -11645 -4078 -18336 -6686 -4075 -11842 -4073 -4072 -18349 -2382 -7059 -6461 -6270 -6683 -6269 -6682 -6457 -6268 -6680 -18348 -6679 -15133 -6678 -24229 -6677 -6676 -6265 -6675 -6460 -19146 -7062 -18347 -7060 -6264 -6671 -6263 -19140 -6669 -6459 -23845 -6262 -9283 -18346 -7063 -6455 -7064 -18345 -6458 -56350 -54004 -66933 -54524 -25130 -22944 -6707 -56351 -54003 -22929 -22930 -4582 -4580 -2375 -69049 -56348 -56347 -47920 -56346 -47636 -62580 -56345 -56344 -47635 -56343 -47634 -69048 -56342 -56341 -47921 -18360 -18359 -42382 -4664 -30900 -50695 -4662 -30898 -11678 -46712 -2374 -67532 -47646 -24227 -19867 -6706 -56349 -52891 -6661 -2164 -3016 -1059 -8213 -9839 -4548 -4757 -47178 -676 -4197 -2223 -2071 -2350 -2405 -5548 -795 -53551 -38322 -4428 -7319 -1829 -4603 -979 -1917 -1409 -39296 -38256 -1156 -1939 -7050 -1393 -7049 -1392 -1874 -7048 -1391 -1873 -7047 -1390 -1381 -3787 -2808 -2807 -2692 -5297 -2693 -1394 -28839 -28840 -38335 -5133 -670 -1833 -9295 -2889 -10290 -3712 -11027 -2612 -11026 -2611 -11025 -2610 -11024 -2609 -3893 -1177 -3892 -1321 -6660 -80 -4677 -22 -15048 -3413 -15047 -3684 -15046 -1232 -15045 -1197 -15044 -1230 -15097 -1193 -218 -10970 -2616 -10969 -2615 -10967 -2614 -10966 -2613 -10965 -1167 -7236 -1311 -70 -10707 -11 -14943 -3690 -4598 -3689 -4597 -3688 -16985 -4596 -3330 -4592 -3329 -4591 -219 -15504 -10421 -8694 -4565 -4322 -8146 -5230 -214 -8145 -5228 -212 -8144 -5227 -211 -8143 -5225 -210 -8142 -5224 -208 -8141 -5222 -207 -8121 -5221 -205 -8120 -5220 -204 -8116 -5219 -200 -8113 -5218 -199 -8112 -5217 -198 -8111 -5216 -197 -8110 -5215 -196 -8109 -5214 -195 -8108 -5212 -194 -8107 -5206 -193 -14573 -4601 -2112 -8105 -4600 -171 -2096 -568 -3603 -978 -14412 -9306 -6804 -1860 -81 -632 -1104 -2688 -8821 -2691 -4750 -6788 -2690 -6789 -4749 -6783 -2689 -6782 -4748 -3529 -5526 -1389 -3312 -5524 -809 -15499 -126 -39 -217 -215 -4433 -2658 -4431 -8195 -10356 -4756 -47177 -1292 -4427 -1826 -1824 -52943 -50873 -66879 -56371 -34593 -53975 -53974 -58747 -6870 -672 -3588 -222 -216 -47 -3649 -3648 -1297 -39276 -39275 -4405 -46716 -3870 -1348 -4434 -14366 -9863 -4940 -51206 -38391 -4145 -2351 -4414 -4413 -4412 -1927 -2682 -8820 -2685 -4747 -6786 -2684 -6785 -4746 -6787 -2683 -6784 -4744 -8584 -6734 -1388 -2804 -8537 -4381 -808 -15498 -1916 -2954 -1915 -2953 -1913 -2951 -1912 -2950 -2949 -1910 -83 -1114 -90 -4029 -1116 -4028 -1108 -4027 -1112 -4026 -88 -82 -1113 -89 -1115 -1107 -1111 -87 -1495 -4196 -4195 -1098 -893 -892 -891 -3430 -5226 -2163 -2317 -9893 -2318 -3604 -2866 -2865 -2894 -294 -38361 -38333 -4755 -47176 -677 -16170 -4609 -873 -2855 -767 -6464 -3867 -594 -2787 -11117 -948 -12293 -43728 -947 -2786 -11116 -946 -2114 -2113 -2802 -16169 -1101 -15544 -3374 -15543 -3373 -6223 -3372 -5960 -3371 -5685 -1180 -5649 -1329 -6 -22497 -318 -1841 -146 -3148 -249 -4426 -2262 -1823 -787 -1024 -784 -788 -1025 -785 -782 -780 -778 -777 -879 -5296 -2664 -5295 -2663 -5294 -2662 -5290 -1861 -7226 -1869 -2696 -7225 -92 -77 -76 -56 -3225 -32 -44 -15043 -3412 -15042 -3683 -15041 -3408 -15040 -3682 -13888 -3407 -13885 -3681 -421 -420 -43359 -334 -550 -977 -484 -2785 -11115 -942 -3608 -12292 -941 -940 -522 -260 -521 -520 -262 -258 -3429 -3431 -1415 -1159 -1930 -3149 -1206 -10397 -3403 -13889 -3406 -15039 -3680 -5578 -123 -726 -14992 -3619 -833 -2567 -293 -2472 -704 -16167 -5558 -3485 -750 -701 -815 -703 -699 -46681 -5569 -748 -8854 -10351 -4409 -50898 -5137 -859 -861 -860 -47900 -47945 -47951 -6474 -38375 -8804 -47882 -38373 -9343 -8221 -756 -12517 -8210 -4402 -47175 -675 -519 -786 -1085 -1084 -1083 -781 -779 -783 -776 -878 -570 -5955 -2608 -5954 -2607 -5953 -2606 -5952 -2605 -5683 -1176 -5646 -1320 -12 -14956 -5013 -2592 -11018 -5012 -2591 -11017 -5011 -2590 -11016 -5010 -2589 -11046 -6226 -2700 -1178 -4194 -11045 -6225 -2699 -1323 -69 -68 -66 -67 -3628 -25 -3627 -10702 -24 -5 -10711 -4 -4761 -15486 -533 -4760 -2345 -15485 -299 -10996 -2580 -10995 -2579 -10994 -2578 -10993 -2577 -5067 -1182 -4193 -4192 -2702 -5066 -97 -5017 -2620 -5016 -2619 -5015 -2618 -5014 -2617 -14552 -10894 -5299 -1181 -14551 -10893 -5298 -1330 -2389 -1204 -960 -877 -876 -7887 -875 -12640 -2604 -5931 -2603 -12639 -2602 -5929 -2601 -5678 -1171 -4191 -5640 -1315 -4204 -71 -29 -6220 -2600 -5927 -2599 -6219 -2598 -5925 -2597 -5677 -1170 -4189 -4188 -3311 -5639 -1314 -4187 -74 -3625 -26 -11008 -2588 -11007 -2587 -11006 -2586 -11005 -2585 -5061 -1172 -4184 -4183 -5060 -1506 -63 -15 -14 -13 -2505 -61443 -18822 -3855 -61431 -14123 -2247 -360 -3192 -59289 -19289 -3191 -59288 -19288 -5518 -4396 -59287 -19287 -3189 -59286 -19286 -5487 -59285 -19285 -3187 -59284 -19284 -3186 -59283 -19283 -3185 -59282 -19282 -2246 -4989 -1480 -3902 -11779 -3402 -11770 -731 -730 -729 -667 -7862 -297 -7861 -295 -73 -27 -5560 -523 -24163 -24162 -21392 -4607 -3647 -3646 -3162 -417 -3645 -3050 -1081 -1934 -1302 -2522 -1080 -10560 -8845 -9856 -5490 -357 -358 -290 -244 -7863 -2569 -2515 -2514 -2513 -1076 -1075 -6216 -2584 -5958 -2583 -6215 -2582 -5956 -2581 -5684 -1179 -4182 -4181 -5648 -1328 -79 -28 -11598 -3358 -12632 -7230 -5919 -3357 -6213 -3356 -5917 -3355 -5675 -1168 -4180 -2698 -5636 -4541 -65 -21 -26335 -26334 -4909 -374 -220 -2232 -2965 -2964 -2230 -2963 -2229 -2962 -2231 -2961 -2228 -2960 -2959 -34714 -29291 -66179 -10337 -5178 -63070 -2402 -63071 -1379 -1299 -6212 -2596 -5950 -2595 -6211 -2594 -5948 -2593 -5682 -1175 -4179 -5645 -1319 -72 -3626 -3 -5303 -1414 -95 -372 -371 -5687 -1183 -4178 -5651 -284 -17792 -221 -42 -42961 -43800 -15949 -19276 -337 -29293 -338 -29292 -1479 -19273 -335 -2521 -2520 -2519 -4158 -2517 -34646 -34645 -4754 -56373 -50060 -2461 -536 -124 -38 -37 -36 -35 -383 -382 -242 -2432 -125 -177 -94 -1865 -1402 -93 -224 -45 -554 -6210 -3370 -5946 -3369 -5944 -3368 -5943 -3367 -5681 -1174 -4177 -5643 -1318 -6207 -3366 -5939 -3365 -5938 -3364 -5937 -3363 -5680 -1173 -4176 -2320 -5642 -1317 -64 -10 -9224 -9 -12636 -3346 -5907 -3345 -12635 -3344 -5905 -3343 -5671 -1164 -4175 -5631 -1308 -12638 -3342 -5903 -3341 -12637 -3340 -5901 -3339 -5670 -1163 -4173 -2319 -4174 -1403 -9090 -5630 -1307 -62 -10180 -8 -10178 -7258 -7 -247 -33320 -33316 -4753 -4401 -47173 -176 -150 -149 -148 -145 -144 -1378 -157 -1137 -2506 -2913 -1413 -241 -240 -1412 -237 -412 -411 -1136 -1135 -1983 -236 -7689 -2020 -18691 -18690 -18689 -5130 -50111 -359 -6754 -3334 -5895 -3333 -5894 -3332 -5893 -3331 -5628 -1161 -4169 -5627 -3318 -61 -19 -6752 -3362 -5923 -3361 -5922 -3360 -5921 -3359 -5676 -1169 -4168 -5638 -1313 -60 -16 -12634 -3354 -5911 -3353 -12633 -3352 -5909 -3351 -5673 -1166 -4167 -5633 -1310 -59 -3629 -18 -5672 -1165 -4166 -4165 -5632 -1309 -58 -19790 -4436 -17 -6748 -3338 -5899 -3337 -12629 -3336 -5897 -3335 -5669 -1162 -4164 -5629 -1306 -57 -20 -2783 -2782 -138 -137 -136 -135 -134 -133 -132 -131 -130 -129 -1989 -2540 -3520 -1149 -1990 -3558 -2811 -407 -4163 -2111 -2066 -2065 -404 -403 -402 -400 -399 -20285 -2061 -1991 -397 -2539 -1992 -2538 -2064 -1144 -395 -3174 -394 -1143 -392 -14991 -14990 -391 -2796 -390 -1142 -1141 -387 -2110 -2106 -1985 -5884 -2063 -1138 -4465 -2967 -1150 -2067 -56909 -3737 -18733 -6650 -973 -61889 -6649 -972 -59494 -6648 -971 -50592 -970 -2423 -50599 -2422 -226 -4876 -50088 -327 -50089 -331 -61883 -330 -18728 -4143 -18727 -969 -18726 -968 -18725 -967 -42486 -966 -2414 -42485 -1818 -791 -42484 -965 -42483 -964 -6619 -790 -1301 -1132 -4818 -4817 -4816 -4815 -4814 -4813 -9892 -2502 -4162 -1276 -2503 -1082 -4812 -4811 -9891 -2501 -1275 -2504 -1079 -1267 -288 -2121 -10848 -3638 -6605 -2118 -805 -2119 -19130 -2799 -127 -52 -378 -377 -376 -375 -2516 -5333 -4323 diff --git a/missing_files.log b/missing_files.log new file mode 100644 index 0000000000000000000000000000000000000000..ca375fda19aa401d1b9d9c594a70b1311674e8cd --- /dev/null +++ b/missing_files.log @@ -0,0 +1 @@ +Document_Number 53378: Both PDF and metadata files are missing. diff --git a/process-3GPP.ipynb b/process-3GPP.ipynb deleted file mode 100644 index 3329ec244e75ac9be312b50b22c79672c67de94c..0000000000000000000000000000000000000000 --- a/process-3GPP.ipynb +++ /dev/null @@ -1,502 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Introduction: Parallel File Processing for 3GPP Documents\n", - "\n", - "This Python script is designed to automate and optimize the processing of document files, specifically for a collection of 3GPP documents. It follows a two-step parallel processing approach to efficiently handle large volumes of files. The script operates within a specified base directory, targeting the `3GPP-all` folder, and processes documents found in its subdirectories.\n", - "\n", - "Key Features:\n", - "1. `file_exists`: Verifies the existence of files, ensuring efficient handling of file operations.\n", - "2. `unzip_task_directory`: Automates the unzipping of archives in the `3GPP-all` directory, with checks to avoid unnecessary processing of already unzipped files.\n", - "3. Systematic traversal through nested directory structures, identifying and preparing files for processing.\n", - "4. Implements `ThreadPoolExecutor` for parallel processing, significantly enhancing the efficiency of unzipping and document conversion tasks.\n", - "5. Innovative use of multiple LibreOffice instances for parallel\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "import zipfile\n", - "import subprocess\n", - "from concurrent.futures import ThreadPoolExecutor, TimeoutError\n", - "\n", - "def file_exists(file_path):\n", - " return os.path.exists(file_path)\n", - "\n", - "def unzip_task_directory(directory):\n", - " print(f\"Unzipping files in {directory}...\")\n", - " for item in os.listdir(directory):\n", - " if item.endswith('.zip'):\n", - " file_path = os.path.join(directory, item)\n", - " if not file_exists(file_path.replace('.zip', '')):\n", - " try:\n", - " with zipfile.ZipFile(file_path, 'r') as zip_ref:\n", - " zip_ref.extractall(directory)\n", - " print(f\" Unzipped {item}\")\n", - " except zipfile.BadZipFile:\n", - " print(f\" Warning: {file_path} is not a valid zip file and will be skipped.\")\n", - " else:\n", - " print(f\" Skipping unzipping {item}, already exists.\")\n", - "\n", - "\n", - "base_directory = \"./3GPP-all\"\n", - "base_directory = os.path.abspath(base_directory)\n", - "directories_to_process = []\n", - "\n", - "# Collect directories for unzipping\n", - "for release_dir in os.listdir(base_directory):\n", - " release_path = os.path.join(base_directory, release_dir)\n", - " if os.path.isdir(release_path):\n", - " for version_dir in os.listdir(release_path):\n", - " version_path = os.path.join(release_path, version_dir)\n", - " if os.path.isdir(version_path):\n", - " directories_to_process.append(version_path)\n", - "\n", - "\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Unzip files" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "\n", - "\n", - "# First ThreadPoolExecutor for unzipping\n", - "with ThreadPoolExecutor(max_workers=10) as executor:\n", - " executor.map(unzip_task_directory, directories_to_process)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Use Libreoffice to convert doc files to docx and the to markdown in parallel\n", - "\n", - "THey key problem I had solved:\n", - "I ended up going with an advice for starting many libreoffice instances in parallel. This works by adding a -env:UserInstallation=file:///tmp/... command line variable:\n", - "\n", - "libreoffice -env:UserInstallation=file:///tmp/delete_me_#{timestamp} \\\n", - " --headless \\\n", - " --convert-to pdf \\\n", - " --outdir /tmp \\\n", - " /path/to/my_file.doc\n", - "\n", - "The advice itself was spotted in a long discussion to an issue on GitHub called \"Parallel conversions and synchronization\".\n", - "\n", - "GPT4 break down:\n", - "The response you found describes a method for running multiple instances of LibreOffice in parallel for file conversion tasks. This technique is particularly useful when you need to process a large number of documents simultaneously, which can be a common requirement in server-side applications or batch processing scripts.\n", - "\n", - "Here’s a breakdown of the response and how the method works:\n", - "\n", - "1. **Multiple LibreOffice Instances**: By default, LibreOffice is designed to run as a single instance. This can be a limitation when trying to convert multiple documents at the same time, as each conversion task would need to wait for the previous one to complete.\n", - "\n", - "2. **Using `-env:UserInstallation`**: The key to running multiple instances is the `-env:UserInstallation` command-line option. This option allows you to specify a unique user profile directory for each LibreOffice instance. By setting a different user profile directory for each instance (like using a unique `/tmp/delete_me_#{timestamp}` in the example), you essentially isolate these instances from each other.\n", - "\n", - "3. **How it Works**:\n", - " - `libreoffice`: The command to run LibreOffice.\n", - " - `-env:UserInstallation=file:///tmp/delete_me_#{timestamp}`: This sets a unique user profile directory. The `#{timestamp}` part is a placeholder and should be replaced with a unique identifier for each instance, such as a timestamp or a unique sequence number.\n", - " - `--headless`: This option runs LibreOffice without its GUI, which is necessary for server-side or command-line operations.\n", - " - `--convert-to pdf`: This instructs LibreOffice to convert the input document to a PDF. This can be changed to other formats as needed.\n", - " - `--outdir /tmp`: Specifies the output directory for the converted file.\n", - " - `/path/to/my_file.doc`: The path to the document that needs to be converted.\n", - "\n", - "4. **Benefits**:\n", - " - **Parallel Processing**: This approach allows for true parallel processing of document conversions, significantly reducing the time required to process multiple files.\n", - " - **Isolation of Instances**: Each instance operates independently, reducing the chances of conflicts or crashes affecting other instances.\n", - "\n", - "5. **Use Cases**: This method is particularly beneficial in scenarios where you have to convert a large batch of documents in a short amount of time, such as in web servers, document management systems, or batch processing scripts.\n", - "\n", - "6. **Cleanup**: Since this approach creates temporary user profiles, it's important to implement a cleanup mechanism to delete these temporary directories after the conversions are complete to avoid cluttering the file system.\n", - "\n", - "This method is an effective solution for overcoming the limitations of LibreOffice's default single-instance mode, enabling efficient parallel processing of document conversion tasks.\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "import subprocess\n", - "import time\n", - "\n", - "def file_exists(file_path):\n", - " return os.path.exists(file_path)\n", - "\n", - "\n", - "def convert_doc_to_docx_and_markdown(doc_path):\n", - " directory = os.path.dirname(doc_path)\n", - " docx_path = doc_path + 'x'\n", - " markdown_file = os.path.splitext(docx_path)[0] + '.md'\n", - "\n", - " # Ensure a temp directory exists in the current working directory\n", - " temp_dir = os.path.join(os.getcwd(), 'temp')\n", - " os.makedirs(temp_dir, exist_ok=True)\n", - "\n", - " # Generate a unique identifier for the LibreOffice user profile\n", - " unique_id = str(time.time()).replace('.', '')\n", - "\n", - " # Create a LibreOffice user profile directory inside the temp folder\n", - " temp_libreoffice_dir = os.path.join(temp_dir, f\"libreoffice_temp_{unique_id}\")\n", - " os.makedirs(temp_libreoffice_dir, exist_ok=True)\n", - " user_installation_path = f\"file://{temp_libreoffice_dir}\"\n", - "\n", - " # Convert DOC to DOCX\n", - " if not file_exists(docx_path):\n", - " try:\n", - " subprocess.run([\n", - " \"libreoffice\", \n", - " \"-env:UserInstallation=\" + user_installation_path,\n", - " \"--headless\", \n", - " \"--convert-to\", \"docx\", \n", - " doc_path, \n", - " \"--outdir\", directory], \n", - " check=True, \n", - " stderr=subprocess.PIPE)\n", - " print(f\" Converted {os.path.basename(doc_path)} to .docx\")\n", - " except subprocess.CalledProcessError as e:\n", - " print(f\" Error converting {os.path.basename(doc_path)} to .docx: {e}\")\n", - " print(f\" LibreOffice error: {e.stderr.decode()}\")\n", - "\n", - " # Check if DOCX file exists before converting to Markdown\n", - " if file_exists(docx_path):\n", - " if not file_exists(markdown_file):\n", - " try:\n", - " subprocess.run(['pandoc', '-s', docx_path, '-o', markdown_file], check=True)\n", - " print(f\" Converted {os.path.basename(docx_path)} to Markdown\")\n", - " except subprocess.CalledProcessError as e:\n", - " print(f\" Error converting {os.path.basename(docx_path)} to Markdown: {e}\")\n", - " else:\n", - " print(f\" {docx_path} does not exist. Skipping Markdown conversion.\")\n", - "\n", - "def process_task_file(doc_file):\n", - " print(f\"Processing {doc_file}...\")\n", - " convert_doc_to_docx_and_markdown(doc_file)\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Convert files to docs and markdown format in parallel" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Collect .doc files for processing\n", - "doc_files_to_process = []\n", - "for directory in directories_to_process:\n", - " for item in os.listdir(directory):\n", - " if item.endswith('.doc'):\n", - " doc_files_to_process.append(os.path.join(directory, item))\n", - " \n", - "# Second ThreadPoolExecutor for processing .doc files\n", - "with ThreadPoolExecutor(max_workers=20) as executor:\n", - " list(executor.map(process_task_file, doc_files_to_process)) " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Now let's clean up the folder. First we copy the files to a new folder and then keep only the markdown files and docx files." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import os\n", - "\n", - "def clean_directory(directory, keep_extensions=['.docx', '.md']):\n", - " total_files = sum([len(files) for r, d, files in os.walk(directory)])\n", - " processed_files = 0\n", - "\n", - " for root, dirs, files in os.walk(directory):\n", - " for file in files:\n", - " processed_files += 1\n", - " if not any(file.endswith(ext) for ext in keep_extensions):\n", - " file_path = os.path.join(root, file)\n", - " print(f\"Deleting: {file_path}\")\n", - " os.remove(file_path) # Remove the file\n", - " \n", - " # Update and display the progress\n", - " progress = (processed_files / total_files) * 100\n", - " print(f\"Progress: {progress:.2f}% ({processed_files}/{total_files})\")\n", - "\n", - "# Path to the directory you want to clean\n", - "directory_path = './3GPP-clean'\n", - "\n", - "# Perform the cleaning\n", - "clean_directory(directory_path)\n", - "\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 3GPP-Clean Directory Markdown and DOCX File Size Analysis\n", - "\n", - "This Python script is designed to analyze the file sizes of Markdown (`.md`) documents in the `3GPP-clean` directory structure. The script will:\n", - "\n", - "1. Traverse through the `Rel-*` folders, each corresponding to a different release of the 3GPP documentation.\n", - "2. Within each release, iterate through version subfolders.\n", - "3. Calculate the accumulated file size of all `.md` files within each version and release.\n", - "4. Compile this data into a comprehensive report, breaking down the sizes by version and release.\n", - "5. Convert file sizes to a more human-readable format (megabytes).\n", - "6. Save this report as a JSON file for easy reference.\n", - "7. Print a summary to the console for the entire repository and each individual release.\n", - "\n", - "This utility is particularly useful for managing and understanding the distribution of document sizes within structured documentation repositories.\n", - "\n", - "### How to Run the Script\n", - "\n", - "- Ensure the script is executed in an environment with access to the `3GPP-clean` directory.\n", - "- Modify `directory_path` in the script to point to the location of your `3GPP-clean` directory.\n", - "- Run the script using a Python interpreter.\n", - "- The output will be a JSON file named `md_sizes_report.json`, and a console printout of the summarized data.\n", - "\n", - "Below is the Python script that performs this analysis:\n" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Total size of .md files in the repository: 4238.73 MB\n", - "Rel-11: Total size of .md files: 256.03 MB\n", - "Rel-10: Total size of .md files: 215.36 MB\n", - "Rel-12: Total size of .md files: 280.84 MB\n", - ".ipynb_checkpoints: Total size of .md files: 0.00 MB\n", - "Rel-18: Total size of .md files: 594.03 MB\n", - "Rel-14: Total size of .md files: 340.49 MB\n", - "Rel-19: Total size of .md files: 9.28 MB\n", - "Rel-15: Total size of .md files: 523.03 MB\n", - "Rel-13: Total size of .md files: 353.18 MB\n", - "Rel-16: Total size of .md files: 548.83 MB\n", - "Rel-8: Total size of .md files: 186.79 MB\n", - "Rel-9: Total size of .md files: 194.27 MB\n", - "Rel-17: Total size of .md files: 736.61 MB\n" - ] - } - ], - "source": [ - "import os\n", - "import json\n", - "\n", - "def bytes_to_megabytes(bytes_value):\n", - " return bytes_value / (1024 * 1024)\n", - "\n", - "def calculate_md_sizes(directory):\n", - " report = {\"total_size\": 0, \"releases\": {}}\n", - "\n", - " for release in os.listdir(directory):\n", - " release_path = os.path.join(directory, release)\n", - " if os.path.isdir(release_path):\n", - " release_size = 0\n", - " report[\"releases\"][release] = {\"total_size\": 0, \"versions\": {}}\n", - "\n", - " for version in os.listdir(release_path):\n", - " version_path = os.path.join(release_path, version)\n", - " if os.path.isdir(version_path):\n", - " version_size = 0\n", - "\n", - " for file in os.listdir(version_path):\n", - " if file.endswith('.md'):\n", - " file_path = os.path.join(version_path, file)\n", - " version_size += os.path.getsize(file_path)\n", - "\n", - " report[\"releases\"][release][\"versions\"][version] = bytes_to_megabytes(version_size)\n", - " report[\"releases\"][release][\"total_size\"] += version_size\n", - " release_size += version_size\n", - "\n", - " report[\"releases\"][release][\"total_size\"] = bytes_to_megabytes(release_size)\n", - " report[\"total_size\"] += release_size\n", - "\n", - " report[\"total_size\"] = bytes_to_megabytes(report[\"total_size\"])\n", - " return report\n", - "\n", - "def save_report_to_json(report, filename):\n", - " with open(filename, 'w') as file:\n", - " json.dump(report, file, indent=4)\n", - "\n", - "def print_summary(report):\n", - " print(f\"Total size of .md files in the repository: {report['total_size']:.2f} MB\")\n", - " for release, data in report['releases'].items():\n", - " print(f\"{release}: Total size of .md files: {data['total_size']:.2f} MB\")\n", - "\n", - "# Main execution\n", - "directory_path = './3GPP-clean'\n", - "md_sizes_report = calculate_md_sizes(directory_path)\n", - "json_filename = 'md_sizes_report.json'\n", - "save_report_to_json(md_sizes_report, json_filename)\n", - "print_summary(md_sizes_report)\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 3GPP Documentation Analysis\n", - "\n", - "This repository contains analysis data for the 3GPP documentation releases. The primary focus is on the file sizes of Markdown documents within each release.\n", - "\n", - "## File Size Analysis\n", - "\n", - "The analysis involves calculating the total size of Markdown (`.md`) files in each release of the 3GPP documentation. The data provides insights into the volume of documentation across different releases.\n", - "\n", - "### Graphical Representation\n", - "\n", - "Below is a bar plot that shows the total size of `.md` files in each release, from `Rel-8` to `Rel-19`. The sizes are represented in megabytes (MB).\n", - "\n", - "\n", - "\"3GPP\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Total size of .md files in the repository: 4238.73 MB\n", - "Total words in .md files in the repository: 534914482\n", - "Rel-11: Total size of .md files: 256.03 MB, Total words: 32817026\n", - "Rel-10: Total size of .md files: 215.36 MB, Total words: 27820131\n", - "Rel-12: Total size of .md files: 280.84 MB, Total words: 36218498\n", - "Rel-18: Total size of .md files: 594.03 MB, Total words: 73825439\n", - "Rel-14: Total size of .md files: 340.49 MB, Total words: 43484442\n", - "Rel-19: Total size of .md files: 9.28 MB, Total words: 1221658\n", - "Rel-15: Total size of .md files: 523.03 MB, Total words: 65165959\n", - "Rel-13: Total size of .md files: 353.18 MB, Total words: 45118710\n", - "Rel-16: Total size of .md files: 548.83 MB, Total words: 69425169\n", - "Rel-8: Total size of .md files: 186.79 MB, Total words: 24117232\n", - "Rel-9: Total size of .md files: 194.27 MB, Total words: 24953249\n", - "Rel-17: Total size of .md files: 736.61 MB, Total words: 90746969\n" - ] - } - ], - "source": [ - "import os\n", - "import json\n", - "\n", - "def bytes_to_megabytes(bytes_value):\n", - " return bytes_value / (1024 * 1024)\n", - "\n", - "def count_words_in_file(file_path):\n", - " with open(file_path, 'r', encoding='utf-8') as file:\n", - " contents = file.read()\n", - " words = contents.split()\n", - " return len(words)\n", - "\n", - "def calculate_md_sizes_and_word_count(directory):\n", - " report = {\"total_size\": 0, \"total_words\": 0, \"releases\": {}}\n", - "\n", - " for release in os.listdir(directory):\n", - " release_path = os.path.join(directory, release)\n", - " if os.path.isdir(release_path):\n", - " release_size, release_word_count = 0, 0\n", - " report[\"releases\"][release] = {\"total_size\": 0, \"total_words\": 0, \"versions\": {}}\n", - "\n", - " for version in os.listdir(release_path):\n", - " version_path = os.path.join(release_path, version)\n", - " if os.path.isdir(version_path):\n", - " version_size, version_word_count = 0, 0\n", - "\n", - " for file in os.listdir(version_path):\n", - " if file.endswith('.md'):\n", - " file_path = os.path.join(version_path, file)\n", - " version_size += os.path.getsize(file_path)\n", - " version_word_count += count_words_in_file(file_path)\n", - "\n", - " report[\"releases\"][release][\"versions\"][version] = {\n", - " \"size_mb\": bytes_to_megabytes(version_size),\n", - " \"words\": version_word_count\n", - " }\n", - " report[\"releases\"][release][\"total_size\"] += version_size\n", - " report[\"releases\"][release][\"total_words\"] += version_word_count\n", - " release_size += version_size\n", - " release_word_count += version_word_count\n", - "\n", - " report[\"releases\"][release][\"total_size\"] = bytes_to_megabytes(release_size)\n", - " report[\"releases\"][release][\"total_words\"] = release_word_count\n", - " report[\"total_size\"] += release_size\n", - " report[\"total_words\"] += release_word_count\n", - "\n", - " report[\"total_size\"] = bytes_to_megabytes(report[\"total_size\"])\n", - " return report\n", - "\n", - "def save_report_to_json(report, filename):\n", - " with open(filename, 'w') as file:\n", - " json.dump(report, file, indent=4)\n", - "\n", - "def print_summary(report):\n", - " print(f\"Total size of .md files in the repository: {report['total_size']:.2f} MB\")\n", - " print(f\"Total words in .md files in the repository: {report['total_words']}\")\n", - " for release, data in report['releases'].items():\n", - " print(f\"{release}: Total size of .md files: {data['total_size']:.2f} MB, Total words: {data['total_words']}\")\n", - "\n", - "# Main execution\n", - "directory_path = './3GPP-clean'\n", - "md_sizes_report = calculate_md_sizes_and_word_count(directory_path)\n", - "json_filename = 'md_sizes_word_count_report.json'\n", - "save_report_to_json(md_sizes_report, json_filename)\n", - "print_summary(md_sizes_report)\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.12" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/process-ETSI.ipynb b/process-ETSI.ipynb index 7dada644d3455f1ea02c1fc0b2c91a6d49abb5f7..feda85e13e298471b3d6db3422673dff9f917fd9 100644 --- a/process-ETSI.ipynb +++ b/process-ETSI.ipynb @@ -176,6 +176,377 @@ "download_etsi_documents(csv_path, download_dir) # Uncomment to execute\n" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# import os\n", + "# import shutil\n", + "# from math import ceil\n", + "# from collections import defaultdict\n", + "\n", + "# def flatten_directory(root_dir):\n", + "# \"\"\"\n", + "# Moves all files from subdirectories into the root_dir.\n", + "# \"\"\"\n", + "# print(f\"Flattening directory: {root_dir}\")\n", + "# for subdir, dirs, files in os.walk(root_dir):\n", + "# # Skip the root directory itself\n", + "# if subdir == root_dir:\n", + "# continue\n", + "# for file in files:\n", + "# src_path = os.path.join(subdir, file)\n", + "# dest_path = os.path.join(root_dir, file)\n", + " \n", + "# # Handle potential filename conflicts\n", + "# if os.path.exists(dest_path):\n", + "# base, extension = os.path.splitext(file)\n", + "# count = 1\n", + "# new_filename = f\"{base}_{count}{extension}\"\n", + "# dest_path = os.path.join(root_dir, new_filename)\n", + "# while os.path.exists(dest_path):\n", + "# count += 1\n", + "# new_filename = f\"{base}_{count}{extension}\"\n", + "# dest_path = os.path.join(root_dir, new_filename)\n", + "# print(f\"Filename conflict for '{file}'. Renamed to '{new_filename}'.\")\n", + " \n", + "# shutil.move(src_path, dest_path)\n", + "# print(f\"Moved: {src_path} -> {dest_path}\")\n", + " \n", + "# # Remove the empty subdirectory after moving files\n", + "# try:\n", + "# os.rmdir(subdir)\n", + "# print(f\"Removed empty directory: {subdir}\")\n", + "# except OSError:\n", + "# print(f\"Directory not empty, cannot remove: {subdir}\")\n", + "\n", + "# def group_files(root_dir):\n", + "# \"\"\"\n", + "# Groups files by their base name (without extension or metadata suffix).\n", + "# Returns a dictionary where each key is a base name and the value is a list of associated files.\n", + "# \"\"\"\n", + "# print(\"Grouping files by base name.\")\n", + "# files = os.listdir(root_dir)\n", + "# groups = defaultdict(list)\n", + " \n", + "# for file in files:\n", + "# if os.path.isfile(os.path.join(root_dir, file)):\n", + "# if file.endswith('_metadata.txt'):\n", + "# base_name = file.replace('_metadata.txt', '')\n", + "# else:\n", + "# base_name = os.path.splitext(file)[0]\n", + "# groups[base_name].append(file)\n", + " \n", + "# print(f\"Total groups found: {len(groups)}\")\n", + "# return groups\n", + "\n", + "# def split_groups_into_parts(groups, num_parts=3, max_files_per_dir=10000):\n", + "# \"\"\"\n", + "# Splits groups into specified number of parts without exceeding the maximum number of files per directory.\n", + "# Each group is assumed to have multiple files (e.g., PDF and metadata).\n", + "# Returns a list of lists, where each sublist contains group keys assigned to that part.\n", + "# \"\"\"\n", + "# print(f\"Splitting {len(groups)} groups into {num_parts} parts with up to {max_files_per_dir} files each.\")\n", + " \n", + "# # Each group has 2 files (PDF and metadata)\n", + "# max_groups_per_dir = max_files_per_dir // 2\n", + "# total_groups = len(groups)\n", + "# groups_per_part = ceil(total_groups / num_parts)\n", + " \n", + "# parts = []\n", + "# group_keys = list(groups.keys())\n", + " \n", + "# for i in range(num_parts):\n", + "# start_index = i * groups_per_part\n", + "# end_index = start_index + groups_per_part\n", + "# part = group_keys[start_index:end_index]\n", + "# parts.append(part)\n", + "# print(f\"Part {i+1}: {len(part)} groups\")\n", + " \n", + "# return parts\n", + "\n", + "# def move_groups_to_subdirectories(root_dir, groups, parts):\n", + "# \"\"\"\n", + "# Moves groups of files into their respective subdirectories.\n", + "# \"\"\"\n", + "# for idx, part in enumerate(parts, start=1):\n", + "# part_dir = os.path.join(root_dir, f\"part{idx}\")\n", + "# os.makedirs(part_dir, exist_ok=True)\n", + "# print(f\"Moving {len(part)} groups to '{part_dir}'\")\n", + " \n", + "# for group_key in part:\n", + "# for file in groups[group_key]:\n", + "# src_path = os.path.join(root_dir, file)\n", + "# dest_path = os.path.join(part_dir, file)\n", + " \n", + "# # Handle potential filename conflicts (unlikely if grouped correctly)\n", + "# if os.path.exists(dest_path):\n", + "# base, extension = os.path.splitext(file)\n", + "# count = 1\n", + "# new_filename = f\"{base}_{count}{extension}\"\n", + "# dest_path = os.path.join(part_dir, new_filename)\n", + "# while os.path.exists(dest_path):\n", + "# count += 1\n", + "# new_filename = f\"{base}_{count}{extension}\"\n", + "# dest_path = os.path.join(part_dir, new_filename)\n", + "# print(f\"Filename conflict in part{idx} for '{file}'. Renamed to '{new_filename}'.\")\n", + " \n", + "# shutil.move(src_path, dest_path)\n", + "# print(f\"Moved: {src_path} -> {dest_path}\")\n", + " \n", + "# print(f\"Completed moving to '{part_dir}'\\n\")\n", + "\n", + "# def main():\n", + "# # Define the root data directory\n", + "# root_dir = os.path.join(os.getcwd(), \"data\")\n", + " \n", + "# if not os.path.exists(root_dir):\n", + "# print(f\"The directory '{root_dir}' does not exist.\")\n", + "# return\n", + " \n", + "# # Step 1: Flatten the directory structure\n", + "# flatten_directory(root_dir)\n", + " \n", + "# # # Step 2: Group files by base name\n", + "# # groups = group_files(root_dir)\n", + " \n", + "# # # Step 3: Determine the number of parts based on total files and git limit\n", + "# # # Git allows up to 10,000 files per directory, and each group has 2 files\n", + "# # # So, max groups per directory = 10,000 / 2 = 5,000\n", + "# # # Calculate the required number of parts\n", + "# # total_groups = len(groups)\n", + "# # max_groups_per_dir = 5000 # Each group has 2 files\n", + "# # num_parts = ceil(total_groups / max_groups_per_dir)\n", + " \n", + "# # print(f\"Number of parts needed: {num_parts}\")\n", + " \n", + "# # # Adjust num_parts if you want to limit the number of parts (e.g., 3)\n", + "# # # Uncomment the following lines if you prefer a fixed number of parts\n", + "# # # desired_num_parts = 3\n", + "# # # num_parts = ceil(total_groups / max_groups_per_dir)\n", + "# # # num_parts = max(desired_num_parts, num_parts)\n", + " \n", + "# # # Step 4: Split groups into parts\n", + "# # parts = split_groups_into_parts(groups, num_parts=num_parts, max_files_per_dir=10000)\n", + " \n", + "# # # Step 5: Move groups to their respective subdirectories\n", + "# # move_groups_to_subdirectories(root_dir, groups, parts)\n", + " \n", + "# # print(\"All groups have been successfully moved into their respective subdirectories.\")\n", + "\n", + "# if __name__ == \"__main__\":\n", + "# main()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# πŸ“ Organize ETSI Documents by Working Group\n", + "\n", + "This script automates the organization of ETSI (European Telecommunications Standards Institute) documents and their corresponding metadata into dedicated folders based on their **Working Group** classifications. By categorizing files this way, you maintain a structured directory that adheres to Git's file limit constraints and enhances data manageability.\n", + "\n", + "## πŸ” Overview\n", + "\n", + "- **Input Files**:\n", + " - **CSV File**: `Grouped_ETSI_Documents_with_Document_Number_by_Working_Group.csv`\n", + " - **Columns**:\n", + " - `Document_Number`: Unique identifier for each document.\n", + " - `Working_Group`: Designates the working group (e.g., `GR`, `GS`).\n", + " - `Concept`: Description of the document.\n", + " - `ID`: Full ETSI deliverable ID.\n", + " - **Data Directory**: `data/`\n", + " - Contains all PDF files and their corresponding metadata files (e.g., `64372.pdf` and `64372_metadata.txt`).\n", + "\n", + "- **Output**:\n", + " - Organized `data/` directory with subfolders for each **Working Group** (e.g., `GR`, `GS`).\n", + " - Each subfolder contains the relevant PDF files and their metadata files.\n", + "\n", + "## πŸ› οΈ Prerequisites\n", + "\n", + "- **Python 3.x**: Ensure Python is installed on your system.\n", + "- **Python Packages**:\n", + " - `pandas`: For handling CSV data.\n", + " - `tqdm`: For displaying progress bars.\n", + "- **Files**:\n", + " - `Grouped_ETSI_Documents_with_Document_Number_by_Working_Group.csv`\n", + " - `data/` directory with all relevant PDF and metadata files.\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Organizing Documents: 100%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ| 26442/26442 [00:16<00:00, 1641.14it/s]" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Some files were missing or could not be moved. Check 'missing_files.log' for details.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "import os\n", + "import shutil\n", + "import pandas as pd\n", + "from tqdm import tqdm\n", + "import logging\n", + "\n", + "# Configure logging\n", + "logging.basicConfig(\n", + " filename='organize_by_working_group.log',\n", + " level=logging.INFO,\n", + " format='%(asctime)s - %(levelname)s - %(message)s'\n", + ")\n", + "\n", + "def read_csv_mapping(csv_path):\n", + " \"\"\"\n", + " Reads the CSV file and returns a DataFrame with necessary columns.\n", + " \"\"\"\n", + " try:\n", + " df = pd.read_csv(csv_path)\n", + " required_columns = ['Document_Number', 'Working_Group', 'Concept', 'ID']\n", + " if not all(col in df.columns for col in required_columns):\n", + " missing = list(set(required_columns) - set(df.columns))\n", + " raise ValueError(f\"CSV file is missing columns: {missing}\")\n", + " return df\n", + " except Exception as e:\n", + " logging.error(f\"Error reading CSV file: {e}\")\n", + " print(f\"Error reading CSV file: {e}\")\n", + " exit(1)\n", + "\n", + "def validate_files(root_dir, doc_number):\n", + " \"\"\"\n", + " Checks if the PDF and metadata files exist for a given Document_Number.\n", + " Returns a tuple of (pdf_path, metadata_path) or (None, None) if missing.\n", + " \"\"\"\n", + " pdf_filename = f\"{doc_number}.pdf\"\n", + " metadata_filename = f\"{doc_number}_metadata.txt\"\n", + " pdf_path = os.path.join(root_dir, pdf_filename)\n", + " metadata_path = os.path.join(root_dir, metadata_filename)\n", + " \n", + " pdf_exists = os.path.isfile(pdf_path)\n", + " metadata_exists = os.path.isfile(metadata_path)\n", + " \n", + " return (pdf_path if pdf_exists else None, metadata_path if metadata_exists else None)\n", + "\n", + "def organize_documents(df, root_dir, log_file='missing_files.log'):\n", + " \"\"\"\n", + " Organizes documents into Working Group folders based on the DataFrame.\n", + " \"\"\"\n", + " missing_files = []\n", + " \n", + " # Iterate over each row with progress bar\n", + " for index, row in tqdm(df.iterrows(), total=df.shape[0], desc=\"Organizing Documents\"):\n", + " doc_number = str(row['Document_Number']).strip()\n", + " working_group = str(row['Working_Group']).strip()\n", + " \n", + " pdf_path, metadata_path = validate_files(root_dir, doc_number)\n", + " \n", + " if not pdf_path and not metadata_path:\n", + " missing_files.append((doc_number, 'Both PDF and metadata files are missing.'))\n", + " logging.warning(f\"Document_Number {doc_number}: Both PDF and metadata files are missing.\")\n", + " continue\n", + " elif not pdf_path:\n", + " missing_files.append((doc_number, 'PDF file is missing.'))\n", + " logging.warning(f\"Document_Number {doc_number}: PDF file is missing.\")\n", + " elif not metadata_path:\n", + " missing_files.append((doc_number, 'Metadata file is missing.'))\n", + " logging.warning(f\"Document_Number {doc_number}: Metadata file is missing.\")\n", + " \n", + " # Only proceed if both files exist\n", + " if pdf_path and metadata_path:\n", + " # Define destination directory\n", + " dest_dir = os.path.join(root_dir, working_group)\n", + " os.makedirs(dest_dir, exist_ok=True)\n", + " \n", + " # Define destination file paths\n", + " dest_pdf = os.path.join(dest_dir, os.path.basename(pdf_path))\n", + " dest_metadata = os.path.join(dest_dir, os.path.basename(metadata_path))\n", + " \n", + " # Handle potential filename conflicts\n", + " if os.path.exists(dest_pdf):\n", + " base, extension = os.path.splitext(os.path.basename(pdf_path))\n", + " count = 1\n", + " new_pdf_filename = f\"{base}_{count}{extension}\"\n", + " dest_pdf = os.path.join(dest_dir, new_pdf_filename)\n", + " while os.path.exists(dest_pdf):\n", + " count += 1\n", + " new_pdf_filename = f\"{base}_{count}{extension}\"\n", + " dest_pdf = os.path.join(dest_dir, new_pdf_filename)\n", + " logging.info(f\"Filename conflict for PDF '{base}.pdf'. Renamed to '{new_pdf_filename}'.\")\n", + " \n", + " if os.path.exists(dest_metadata):\n", + " base, extension = os.path.splitext(os.path.basename(metadata_path))\n", + " count = 1\n", + " new_metadata_filename = f\"{base}_{count}{extension}\"\n", + " dest_metadata = os.path.join(dest_dir, new_metadata_filename)\n", + " while os.path.exists(dest_metadata):\n", + " count += 1\n", + " new_metadata_filename = f\"{base}_{count}{extension}\"\n", + " dest_metadata = os.path.join(dest_dir, new_metadata_filename)\n", + " logging.info(f\"Filename conflict for metadata '{base}_metadata.txt'. Renamed to '{new_metadata_filename}'.\")\n", + " \n", + " try:\n", + " shutil.move(pdf_path, dest_pdf)\n", + " shutil.move(metadata_path, dest_metadata)\n", + " logging.info(f\"Moved Document_Number {doc_number} to {dest_dir}\")\n", + " except Exception as e:\n", + " missing_files.append((doc_number, f'Error moving files: {e}'))\n", + " logging.error(f\"Document_Number {doc_number}: Error moving files: {e}\")\n", + " \n", + " # Log missing files\n", + " if missing_files:\n", + " with open(log_file, 'w') as f:\n", + " for doc_num, message in missing_files:\n", + " f.write(f\"Document_Number {doc_num}: {message}\\n\")\n", + " print(f\"\\nSome files were missing or could not be moved. Check '{log_file}' for details.\")\n", + " logging.info(f\"Organization completed with missing files. See {log_file} for details.\")\n", + " else:\n", + " print(\"\\nAll files have been successfully organized.\")\n", + " logging.info(\"Organization completed successfully with no missing files.\")\n", + "\n", + "def main():\n", + " # Configuration\n", + " csv_path = 'Grouped_ETSI_Documents_with_Document_Number_by_Working_Group.csv' # Path to your CSV file\n", + " root_dir = os.path.join(os.getcwd(), 'data') # Ensure this is the correct path\n", + " log_file = 'missing_files.log' # Log file for missing or failed moves\n", + " \n", + " # Check if root_dir exists\n", + " if not os.path.exists(root_dir):\n", + " logging.error(f\"The directory '{root_dir}' does not exist.\")\n", + " print(f\"The directory '{root_dir}' does not exist.\")\n", + " exit(1)\n", + " \n", + " # Step 1: Read CSV mapping\n", + " df = read_csv_mapping(csv_path)\n", + " \n", + " # Step 2: Organize documents\n", + " organize_documents(df, root_dir, log_file)\n", + "\n", + "if __name__ == \"__main__\":\n", + " main()\n" + ] + }, { "cell_type": "code", "execution_count": null,