├── .gitignore ├── LICENSE ├── README.md ├── bin └── env.py ├── data ├── eight.m ├── eight.mat ├── eight.pkl ├── eight.vtk ├── torus.m ├── torus.mat └── torus.vtk ├── hello ├── requirements.txt ├── scripts ├── m2mat.py ├── m2vtk.py └── mat2vtk.py ├── src ├── ccgeom │ ├── __init__.py │ └── manifold.py ├── demo │ ├── __init__.py │ └── wildfire.py └── tools │ ├── __init__.py │ ├── converter.py │ └── viewer.py ├── test └── tests │ ├── __init__.py │ └── test_manifold.py └── zh_CN └── 2020lecture └── exc_20200705.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | env/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | 27 | # PyInstaller 28 | # Usually these files are written by a python script from a template 29 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 30 | *.manifest 31 | *.spec 32 | 33 | # Installer logs 34 | pip-log.txt 35 | pip-delete-this-directory.txt 36 | 37 | # Unit test / coverage reports 38 | htmlcov/ 39 | .tox/ 40 | .coverage 41 | .coverage.* 42 | .cache 43 | nosetests.xml 44 | coverage.xml 45 | *,cover 46 | .hypothesis/ 47 | 48 | # Translations 49 | *.mo 50 | *.pot 51 | 52 | # Django stuff: 53 | *.log 54 | local_settings.py 55 | 56 | # Flask stuff: 57 | instance/ 58 | .webassets-cache 59 | 60 | # Scrapy stuff: 61 | .scrapy 62 | 63 | # Sphinx documentation 64 | docs/_build/ 65 | 66 | # PyBuilder 67 | target/ 68 | 69 | # IPython Notebook 70 | .ipynb_checkpoints 71 | 72 | # pyenv 73 | .python-version 74 | 75 | # celery beat schedule file 76 | celerybeat-schedule 77 | 78 | # dotenv 79 | .env 80 | 81 | # virtualenv 82 | venv/ 83 | ENV/ 84 | 85 | # Spyder project settings 86 | .spyderproject 87 | 88 | # Rope project settings 89 | .ropeproject 90 | 91 | 92 | .idea/ 93 | 94 | .py/ 95 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | CC0 1.0 Universal 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer 6 | exclusive Copyright and Related Rights (defined below) upon the creator and 7 | subsequent owner(s) (each and all, an "owner") of an original work of 8 | authorship and/or a database (each, a "Work"). 9 | 10 | Certain owners wish to permanently relinquish those rights to a Work for the 11 | purpose of contributing to a commons of creative, cultural and scientific 12 | works ("Commons") that the public can reliably and without fear of later 13 | claims of infringement build upon, modify, incorporate in other works, reuse 14 | and redistribute as freely as possible in any form whatsoever and for any 15 | purposes, including without limitation commercial purposes. These owners may 16 | contribute to the Commons to promote the ideal of a free culture and the 17 | further production of creative, cultural and scientific works, or to gain 18 | reputation or greater distribution for their Work in part through the use and 19 | efforts of others. 20 | 21 | For these and/or other purposes and motivations, and without any expectation 22 | of additional consideration or compensation, the person associating CC0 with a 23 | Work (the "Affirmer"), to the extent that he or she is an owner of Copyright 24 | and Related Rights in the Work, voluntarily elects to apply CC0 to the Work 25 | and publicly distribute the Work under its terms, with knowledge of his or her 26 | Copyright and Related Rights in the Work and the meaning and intended legal 27 | effect of CC0 on those rights. 28 | 29 | 1. Copyright and Related Rights. A Work made available under CC0 may be 30 | protected by copyright and related or neighboring rights ("Copyright and 31 | Related Rights"). Copyright and Related Rights include, but are not limited 32 | to, the following: 33 | 34 | i. the right to reproduce, adapt, distribute, perform, display, communicate, 35 | and translate a Work; 36 | 37 | ii. moral rights retained by the original author(s) and/or performer(s); 38 | 39 | iii. publicity and privacy rights pertaining to a person's image or likeness 40 | depicted in a Work; 41 | 42 | iv. rights protecting against unfair competition in regards to a Work, 43 | subject to the limitations in paragraph 4(a), below; 44 | 45 | v. rights protecting the extraction, dissemination, use and reuse of data in 46 | a Work; 47 | 48 | vi. database rights (such as those arising under Directive 96/9/EC of the 49 | European Parliament and of the Council of 11 March 1996 on the legal 50 | protection of databases, and under any national implementation thereof, 51 | including any amended or successor version of such directive); and 52 | 53 | vii. other similar, equivalent or corresponding rights throughout the world 54 | based on applicable law or treaty, and any national implementations thereof. 55 | 56 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, 57 | applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and 58 | unconditionally waives, abandons, and surrenders all of Affirmer's Copyright 59 | and Related Rights and associated claims and causes of action, whether now 60 | known or unknown (including existing as well as future claims and causes of 61 | action), in the Work (i) in all territories worldwide, (ii) for the maximum 62 | duration provided by applicable law or treaty (including future time 63 | extensions), (iii) in any current or future medium and for any number of 64 | copies, and (iv) for any purpose whatsoever, including without limitation 65 | commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes 66 | the Waiver for the benefit of each member of the public at large and to the 67 | detriment of Affirmer's heirs and successors, fully intending that such Waiver 68 | shall not be subject to revocation, rescission, cancellation, termination, or 69 | any other legal or equitable action to disrupt the quiet enjoyment of the Work 70 | by the public as contemplated by Affirmer's express Statement of Purpose. 71 | 72 | 3. Public License Fallback. Should any part of the Waiver for any reason be 73 | judged legally invalid or ineffective under applicable law, then the Waiver 74 | shall be preserved to the maximum extent permitted taking into account 75 | Affirmer's express Statement of Purpose. In addition, to the extent the Waiver 76 | is so judged Affirmer hereby grants to each affected person a royalty-free, 77 | non transferable, non sublicensable, non exclusive, irrevocable and 78 | unconditional license to exercise Affirmer's Copyright and Related Rights in 79 | the Work (i) in all territories worldwide, (ii) for the maximum duration 80 | provided by applicable law or treaty (including future time extensions), (iii) 81 | in any current or future medium and for any number of copies, and (iv) for any 82 | purpose whatsoever, including without limitation commercial, advertising or 83 | promotional purposes (the "License"). The License shall be deemed effective as 84 | of the date CC0 was applied by Affirmer to the Work. Should any part of the 85 | License for any reason be judged legally invalid or ineffective under 86 | applicable law, such partial invalidity or ineffectiveness shall not 87 | invalidate the remainder of the License, and in such case Affirmer hereby 88 | affirms that he or she will not (i) exercise any of his or her remaining 89 | Copyright and Related Rights in the Work or (ii) assert any associated claims 90 | and causes of action with respect to the Work, in either case contrary to 91 | Affirmer's express Statement of Purpose. 92 | 93 | 4. Limitations and Disclaimers. 94 | 95 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 96 | surrendered, licensed or otherwise affected by this document. 97 | 98 | b. Affirmer offers the Work as-is and makes no representations or warranties 99 | of any kind concerning the Work, express, implied, statutory or otherwise, 100 | including without limitation warranties of title, merchantability, fitness 101 | for a particular purpose, non infringement, or the absence of latent or 102 | other defects, accuracy, or the present or absence of errors, whether or not 103 | discoverable, all to the greatest extent permissible under applicable law. 104 | 105 | c. Affirmer disclaims responsibility for clearing rights of other persons 106 | that may apply to the Work or any use thereof, including without limitation 107 | any person's Copyright and Related Rights in the Work. Further, Affirmer 108 | disclaims responsibility for obtaining any necessary consents, permissions 109 | or other rights required for any use of the Work. 110 | 111 | d. Affirmer understands and acknowledges that Creative Commons is not a 112 | party to this document and has no duty or obligation with respect to this 113 | CC0 or use of the Work. 114 | 115 | For more information, please see 116 | 117 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Jupyter Notes on Computational Conformal Geometry 2 | 3 | How to start 4 | ------------- 5 | 6 | To view the book, just issue below commands in your terminal 7 | 8 | in bash: 9 | ```bash 10 | . hello 11 | jupyter notebook 12 | ``` 13 | 14 | or in zsh: 15 | ```bash 16 | . ./hello 17 | jupyter notebook 18 | ``` 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /bin/env.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3.6 2 | # -*- coding: utf-8 -*- 3 | 4 | import sys 5 | import os 6 | import virtualenv as venv 7 | 8 | """ 9 | Colorful output 10 | """ 11 | 12 | HEADER = '\033[95m' 13 | OKBLUE = '\033[94m' 14 | OKGREEN = '\033[92m' 15 | WARNING = '\033[93m' 16 | FAIL = '\033[91m' 17 | ENDC = '\033[0m' 18 | BOLD = "\033[1m" 19 | 20 | def head(msg): 21 | print(HEADER + msg + ENDC) 22 | 23 | def info(msg): 24 | print(msg) 25 | 26 | def infog(msg): 27 | print(OKGREEN + msg + ENDC) 28 | 29 | def infob(msg): 30 | print(OKBLUE + msg + ENDC) 31 | 32 | def warn(msg): 33 | print(WARNING + msg + ENDC) 34 | 35 | def err(msg): 36 | print(FAIL + msg + ENDC) 37 | 38 | """ 39 | Welcome message 40 | """ 41 | 42 | head("Welcome!") 43 | 44 | """ 45 | Check python version 46 | """ 47 | 48 | info("checking python version...") 49 | 50 | req_version = (3, 7) 51 | cur_version = sys.version_info 52 | 53 | if cur_version < req_version: 54 | err("Your Python interpreter is too old. Please consider upgrading to 3.6 or above.") 55 | sys.exit(-1) 56 | 57 | """ 58 | Check virtual enviroment 59 | """ 60 | 61 | if not os.path.exists(".py"): 62 | if cur_version >= (3, 7, 7): 63 | sys.argv = ['.py'] 64 | venv.cli_run(sys.argv) 65 | #else: 66 | #sys.argv = ['virtualenv', '.py'] 67 | #venv.main() 68 | -------------------------------------------------------------------------------- /data/eight.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgeom/ccg-notes/6fade9e0ebbbe747d0f07457aa8047470d15ca1b/data/eight.mat -------------------------------------------------------------------------------- /data/eight.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgeom/ccg-notes/6fade9e0ebbbe747d0f07457aa8047470d15ca1b/data/eight.pkl -------------------------------------------------------------------------------- /data/eight.vtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgeom/ccg-notes/6fade9e0ebbbe747d0f07457aa8047470d15ca1b/data/eight.vtk -------------------------------------------------------------------------------- /data/torus.m: -------------------------------------------------------------------------------- 1 | Vertex 1 25.8158 -0.13335 -0.00428593 2 | Vertex 2 24.1204 4.82474 0.751529 3 | Vertex 3 20.204 7.32086 1.91223 4 | Vertex 4 15.8411 6.84558 1.3424 5 | Vertex 5 24.519 -4.08549 -2.39398 6 | Vertex 6 24.5399 -3.9877 2.80013 7 | Vertex 7 20.549 -5.25224 11.9263 8 | Vertex 8 15.2411 -6.55743 -1.72405 9 | Vertex 9 20.8439 -7.14888 -1.2672 10 | Vertex 10 23.9358 -5.03955 -0.851327 11 | Vertex 11 20.8731 -0.0575917 -15.2084 12 | Vertex 12 19.9651 4.87363 -13.4823 13 | Vertex 13 -19.3462 -7.41224 -4.34218 14 | Vertex 14 13.2104 6.62804 -8.00313 15 | Vertex 15 23.452 -3.89752 7.90726 16 | Vertex 16 25.7413 0.472653 1.88689 17 | Vertex 17 24.752 -1.20278 6.93376 18 | Vertex 18 11.3115 -6.57019 -10.3893 19 | Vertex 19 -13.1615 7.30506 -11.0814 20 | Vertex 20 18.8739 -4.96473 -14.8483 21 | Vertex 21 7.99633 -0.0197226 -24.5627 22 | Vertex 22 8.25659 4.90477 -22.604 23 | Vertex 23 13.2648 7.38218 11.3907 24 | Vertex 24 6.23915 6.63952 -14.1416 25 | Vertex 25 21.8915 -4.36225 10.9194 26 | Vertex 26 22.505 -2.79086 11.5294 27 | Vertex 27 -13.4524 7.07038 -9.34671 28 | Vertex 28 3.06839 -6.59299 -15.0828 29 | Vertex 29 4.97415 7.40925 16.9785 30 | Vertex 30 6.61172 -4.94385 -23.103 31 | Vertex 31 -7.93458 -0.0645345 -24.5766 32 | Vertex 32 -6.53581 4.88305 -23.1816 33 | Vertex 33 -6.21719 7.41117 16.557 34 | Vertex 34 -3.19163 6.63089 -15.1101 35 | Vertex 35 -14.0356 7.1957 9.19811 36 | Vertex 36 -12.9611 5.97059 -6.50575 37 | Vertex 37 19.6315 -7.25414 6.05684 38 | Vertex 38 -6.49485 -6.66958 -14.0868 39 | Vertex 39 -7.48226 -7.12976 -19.5636 40 | Vertex 40 -8.2098 -4.97152 -22.5593 41 | Vertex 41 -20.8203 0.106045 -15.2687 42 | Vertex 42 -18.8574 4.93069 -14.9183 43 | Vertex 43 -22.6221 -5.69737 -5.59062 44 | Vertex 44 -11.6725 6.84507 -10.7633 45 | Vertex 45 24.3382 -4.51604 0.951467 46 | Vertex 46 22.5399 -5.7919 5.49488 47 | Vertex 47 2.85545 3.84056 -12.3772 48 | Vertex 48 -13.5258 -6.61716 -7.43988 49 | Vertex 49 6.23149 0.6279 -9.94521 50 | Vertex 50 -19.9724 -4.76911 -13.6297 51 | Vertex 51 -25.8242 -0.0740658 -0.028855 52 | Vertex 52 -24.1562 4.78173 -0.853009 53 | Vertex 53 -19.5611 7.45208 -0.836427 54 | Vertex 54 -15.5594 6.73172 -1.6475 55 | Vertex 55 19.4756 -6.87674 9.24058 56 | Vertex 56 16.5393 -7.17878 -2.55714 57 | Vertex 57 15.9082 -7.06263 3.79657 58 | Vertex 58 -15.6082 -6.77581 1.96182 59 | Vertex 59 -24.4511 -4.36155 -1.02547 60 | Vertex 60 -24.0508 -4.90402 0.804043 61 | Vertex 61 -20.9199 0.029256 15.1505 62 | Vertex 62 -20.0406 4.79097 13.4997 63 | Vertex 63 17.2828 7.34484 0.578464 64 | Vertex 64 -13.761 6.79644 7.71488 65 | Vertex 65 8.61501 2.39797 -8.47319 66 | Vertex 66 19.1871 -7.43796 4.30261 67 | Vertex 67 14.7231 -6.81199 5.73216 68 | Vertex 68 -11.444 -6.68346 10.516 69 | Vertex 69 -19.7216 -7.2202 -6.11214 70 | Vertex 70 -19.1134 -4.75566 14.8306 71 | Vertex 71 -8.11354 0.100821 24.5117 72 | Vertex 72 -8.30771 5.04451 22.4627 73 | Vertex 73 -20.6482 5.2333 11.7972 74 | Vertex 74 -6.378 7.01997 14.9776 75 | Vertex 75 16.6521 -7.48147 7.49205 76 | Vertex 76 -11.6891 3.57034 -4.58163 77 | Vertex 77 11.0448 -3.65464 6.06992 78 | Vertex 78 -3.06774 -6.66714 15.2014 79 | Vertex 79 7.32198 6.08822 -12.6695 80 | Vertex 80 -6.82494 -4.75096 23.2127 81 | Vertex 81 7.85356 0.132194 24.5917 82 | Vertex 82 6.46147 5.0396 23.0666 83 | Vertex 83 11.8416 1.90171 1.56852 84 | Vertex 84 3.93359 7.02193 15.7952 85 | Vertex 85 -12.3798 6.39071 -8.57432 86 | Vertex 86 16.3976 -7.05909 -0.190009 87 | Vertex 87 14.1149 -5.77369 2.14338 88 | Vertex 88 6.41733 -6.67751 14.1429 89 | Vertex 89 13.1721 7.11958 -9.98108 90 | Vertex 90 8.12044 -4.73332 22.808 91 | Vertex 91 20.8269 0.110579 15.2588 92 | Vertex 92 18.8053 5.0647 14.802 93 | Vertex 93 8.96347 0.730707 7.58759 94 | Vertex 94 12.1943 6.89251 10.327 95 | Vertex 95 -11.5881 5.37214 -7.53524 96 | Vertex 96 -20.1216 7.3571 0.610327 97 | Vertex 97 10.1074 0.293608 5.91214 98 | Vertex 98 13.4533 -6.64545 7.63521 99 | Vertex 99 10.1206 5.91573 -10.2998 100 | Vertex 100 19.9575 -4.76784 13.6529 101 | Vertex 101 24.7078 3.18207 -4.65474 102 | Vertex 102 23.5361 1.56184 -10.2032 103 | Vertex 103 21.2462 6.88772 -3.44311 104 | Vertex 104 21.3954 5.95495 -8.45731 105 | Vertex 105 17.0353 7.324 -2.67423 106 | Vertex 106 -17.8505 6.9562 -11.8406 107 | Vertex 107 8.43292 -1.72113 -8.39286 108 | Vertex 108 13.2642 5.48762 -4.35046 109 | Vertex 109 11.5299 1.0782 -2.43336 110 | Vertex 110 11.2463 3.35182 -5.34704 111 | Vertex 111 12.1351 -3.21564 -2.50409 112 | Vertex 112 10.6354 -0.846694 -4.96423 113 | Vertex 113 13.058 -5.39001 -4.63132 114 | Vertex 114 7.88167 3.39622 -9.66754 115 | Vertex 115 -24.5364 4.25514 0.94604 116 | Vertex 116 14.949 -7.30016 -8.42505 117 | Vertex 117 22.0325 -6.15173 -5.68124 118 | Vertex 118 2.40657 4.50462 12.9092 119 | Vertex 119 24.9104 -1.93508 -5.61755 120 | Vertex 120 22.5293 -3.51419 -10.7286 121 | Vertex 121 17.1787 3.37454 -18.2077 122 | Vertex 122 13.079 1.72 -22.016 123 | Vertex 123 -21.0526 5.65137 10.1105 124 | Vertex 124 12.2744 5.997 -19.3934 125 | Vertex 125 12.5047 7.34087 -11.9992 126 | Vertex 126 -14.4615 6.19099 -3.08778 127 | Vertex 127 11.7721 6.34136 -9.27305 128 | Vertex 128 8.32867 5.4958 -11.2221 129 | Vertex 129 7.8691 0.971211 -8.74537 130 | Vertex 130 5.98507 3.33992 -10.9135 131 | Vertex 131 8.32742 -3.25516 -9.19877 132 | Vertex 132 5.65189 -0.896964 -10.2966 133 | Vertex 133 7.83874 -5.43264 -11.4804 134 | Vertex 134 10.5526 5.19117 -8.68898 135 | Vertex 135 -15.477 7.14411 -6.04186 136 | Vertex 136 7.25376 -7.31259 -15.6157 137 | Vertex 137 14.5609 -6.03985 -17.6722 138 | Vertex 138 11.2259 7.16286 12.3006 139 | Vertex 139 16.8669 -1.76372 -19.2491 140 | Vertex 140 11.9705 -3.4234 -21.9534 141 | Vertex 141 3.24584 3.37749 -24.8201 142 | Vertex 142 -2.31034 1.70648 -25.5082 143 | Vertex 143 13.6018 7.4147 14.4322 144 | Vertex 144 -1.3719 5.98645 -22.9266 145 | Vertex 145 3.24847 7.33023 -16.9904 146 | Vertex 146 5.53456 7.398 -19.1672 147 | Vertex 147 12.6137 7.45678 -14.8287 148 | Vertex 148 0.229457 5.49399 -13.9761 149 | Vertex 149 1.2049 0.963584 -11.7019 150 | Vertex 150 -1.55036 3.37548 -12.3654 151 | Vertex 151 1.266 -3.28991 -12.3592 152 | Vertex 152 -1.53894 -0.919945 -11.6485 153 | Vertex 153 -0.441377 -5.47373 -13.939 154 | Vertex 154 6.50914 -3.32528 -10.5985 155 | Vertex 155 -16.3066 7.49747 -9.38275 156 | Vertex 156 -3.35779 -7.32406 -16.9347 157 | Vertex 157 1.47534 -6.02917 -22.8623 158 | Vertex 158 3.07377 7.4306 17.5538 159 | Vertex 159 2.38754 -1.75724 -25.4838 160 | Vertex 160 -3.16843 -3.41741 -24.8062 161 | Vertex 161 -11.9865 3.27366 -22.0426 162 | Vertex 162 -16.8206 1.84996 -19.2515 163 | Vertex 163 -9.66908 6.8737 -19.2706 164 | Vertex 164 -13.9804 6.51989 -17.2759 165 | Vertex 165 -7.28876 7.33781 -15.7166 166 | Vertex 166 -23.4163 5.6015 0.654138 167 | Vertex 167 10.4617 7.1195 -12.8069 168 | Vertex 168 -8.15345 5.6971 -11.5903 169 | Vertex 169 -5.87099 1.0039 -10.2012 170 | Vertex 170 -8.21665 3.11195 -9.21425 171 | Vertex 171 -6.5465 -2.87774 -10.3507 172 | Vertex 172 -8.21834 -0.803748 -8.39413 173 | Vertex 173 -8.67855 -5.43864 -10.8541 174 | Vertex 174 -9.99683 -3.75682 -7.78618 175 | Vertex 175 -22.8909 5.72931 -4.16585 176 | Vertex 176 -12.725 -7.31466 -11.5972 177 | Vertex 177 -12.167 -6.08494 -19.3258 178 | Vertex 178 -18.4916 5.69478 14.2103 179 | Vertex 179 -13.0307 -1.79071 -22.0171 180 | Vertex 180 -17.1293 -3.33135 -18.2867 181 | Vertex 181 -22.6064 3.35693 -10.7762 182 | Vertex 182 -24.9771 1.72501 -5.64127 183 | Vertex 183 -18.8995 6.93516 -10.077 184 | Vertex 184 -22.0949 6.08877 -5.772 185 | Vertex 185 -15.0776 7.30147 -8.23516 186 | Vertex 186 -18.7446 7.46015 -5.21378 187 | Vertex 187 -10.9674 4.00298 -6.57314 188 | Vertex 188 -13.3414 5.5976 -4.4743 189 | Vertex 189 -10.8054 1.15682 -4.74409 190 | Vertex 190 -12.3116 3.54059 -2.35523 191 | Vertex 191 -11.394 -3.03412 -4.65128 192 | Vertex 192 -11.5639 -0.706091 -2.03218 193 | Vertex 193 14.7533 6.85234 15.7787 194 | Vertex 194 -20.1869 4.46789 -13.7004 195 | Vertex 195 -18.489 -7.37399 -7.61098 196 | Vertex 196 -17.3245 -7.36407 -1.83982 197 | Vertex 197 -21.2173 -6.05945 -8.53317 198 | Vertex 198 -24.8113 1.01479 6.84432 199 | Vertex 199 -23.4946 -1.6623 -10.2353 200 | Vertex 200 -24.611 -3.32051 -4.735 201 | Vertex 201 -24.6898 3.21897 4.63738 202 | Vertex 202 -23.5643 1.63208 10.0994 203 | Vertex 203 -21.011 7.00296 3.23488 204 | Vertex 204 -21.341 6.0107 8.40282 205 | Vertex 205 -17.3295 7.36801 2.04518 206 | Vertex 206 -18.2952 7.44906 6.96744 207 | Vertex 207 13.8151 7.48678 -13.327 208 | Vertex 208 -13.5655 5.71703 4.16545 209 | Vertex 209 -11.5506 1.22961 2.47683 210 | Vertex 210 -11.3588 3.32596 5.07133 211 | Vertex 211 -11.8432 -2.81912 3.02859 212 | Vertex 212 -10.5134 -0.520493 5.21734 213 | Vertex 213 6.63743 5.74463 -22.3 214 | Vertex 214 -21.5281 5.69609 -8.93616 215 | Vertex 215 -19.8766 -7.26775 4.88299 216 | Vertex 216 -15.2129 -7.3686 8.55015 217 | Vertex 217 -21.6636 -6.40709 5.6905 218 | Vertex 218 -23.5719 3.75835 7.84213 219 | Vertex 219 -24.9499 -1.88022 5.52533 220 | Vertex 220 -22.6839 -3.33693 10.6346 221 | Vertex 221 -17.1586 3.4395 18.1757 222 | Vertex 222 -13.1154 1.84941 21.9442 223 | Vertex 223 -15.1453 7.01979 14.8566 224 | Vertex 224 -12.1254 6.33121 18.9668 225 | Vertex 225 -12.5889 7.42691 12.5512 226 | Vertex 226 -11.1349 7.23135 17.3554 227 | Vertex 227 10.9961 5.74492 -20.4839 228 | Vertex 228 -8.47246 5.97782 11.769 229 | Vertex 229 -7.89073 1.47946 8.83886 230 | Vertex 230 -6.2475 3.55099 10.871 231 | Vertex 231 -7.69343 -2.67272 9.42528 232 | Vertex 232 -5.41618 -0.360644 10.3892 233 | Vertex 233 19.2188 4.3681 -15.1447 234 | Vertex 234 -19.4467 7.20037 -7.09285 235 | Vertex 235 -12.9503 -7.36296 15.3099 236 | Vertex 236 -7.21111 -7.34686 15.7879 237 | Vertex 237 -14.6492 -6.02446 17.6216 238 | Vertex 238 -25.7105 -0.693044 1.86675 239 | Vertex 239 -16.9774 -1.62519 19.2134 240 | Vertex 240 -12.1453 -3.26123 21.9614 241 | Vertex 241 -3.33246 3.36081 24.8196 242 | Vertex 242 2.27335 1.8356 25.4683 243 | Vertex 243 -3.45457 7.05477 20.8475 244 | Vertex 244 1.21578 6.39475 22.3813 245 | Vertex 245 -2.89691 7.41629 17.4688 246 | Vertex 246 1.36939 7.28679 20.3524 247 | Vertex 247 15.2393 5.66439 -17.6876 248 | Vertex 248 0.235369 5.94997 14.4682 249 | Vertex 249 -1.21853 1.54429 11.7989 250 | Vertex 250 1.38157 3.56523 12.4682 251 | Vertex 251 -0.712368 -2.6325 12.1295 252 | Vertex 252 1.67153 -0.336673 11.5965 253 | Vertex 253 8.988 7.28381 -18.3328 254 | Vertex 254 -20.4505 5.26058 -12.0994 255 | Vertex 255 -1.50528 -7.36368 19.9928 256 | Vertex 256 3.42056 -7.34975 17.0306 257 | Vertex 257 -1.53911 -6.02645 22.8602 258 | Vertex 258 9.39147 4.38336 9.04905 259 | Vertex 259 -2.51272 -1.6455 25.5096 260 | Vertex 260 3.06192 -3.26247 24.9077 261 | Vertex 261 11.895 3.50088 21.9451 262 | Vertex 262 16.8052 1.83877 19.27 263 | Vertex 263 9.36202 7.02015 19.0356 264 | Vertex 264 14.2967 6.23817 17.5601 265 | Vertex 265 8.3559 7.4521 15.8825 266 | Vertex 266 4.76682 -6.37096 21.9388 267 | Vertex 267 17.6191 5.3272 -15.8352 268 | Vertex 268 8.67336 5.98564 11.638 269 | Vertex 269 5.88751 1.52894 10.2976 270 | Vertex 270 8.3559 3.48254 9.3082 271 | Vertex 271 6.45714 -2.65553 10.3034 272 | Vertex 272 8.09369 -0.38635 8.49055 273 | Vertex 273 16.8972 6.36626 -14.8009 274 | Vertex 274 -19.3609 6.28883 -11.626 275 | Vertex 275 10.5202 -7.36083 17.0868 276 | Vertex 276 12.7501 -7.34653 11.7797 277 | Vertex 277 12.1877 -6.01317 19.4212 278 | Vertex 278 -22.8452 1.10191 11.8533 279 | Vertex 279 12.9685 -1.59884 22.1285 280 | Vertex 280 17.1185 -3.25731 18.3542 281 | Vertex 281 22.5844 3.38022 10.7921 282 | Vertex 282 25.0148 1.62891 5.62008 283 | Vertex 283 18.6115 7.10006 9.75949 284 | Vertex 284 22.2897 5.92672 5.85459 285 | Vertex 285 15.4343 7.39383 8.37512 286 | Vertex 286 19.1305 7.41847 4.89508 287 | Vertex 287 6.44187 1.13695 -24.9168 288 | Vertex 288 13.5639 5.76979 4.31171 289 | Vertex 289 10.786 1.31527 4.85223 290 | Vertex 290 12.1246 3.21948 2.56337 291 | Vertex 291 11.2293 -2.70231 4.71848 292 | Vertex 292 11.5469 -0.672506 2.10128 293 | Vertex 293 13.2117 -5.34848 4.0412 294 | Vertex 294 11.4721 1.14363 -23.0265 295 | Vertex 295 18.4465 -7.38403 7.56944 296 | Vertex 296 17.0029 -7.28965 1.94699 297 | Vertex 297 21.1987 -6.09069 8.47368 298 | Vertex 298 15.9379 7.05233 3.71596 299 | Vertex 299 23.4825 -1.709 10.2238 300 | Vertex 300 24.5545 -3.44228 4.66296 301 | Vertex 301 25.0769 3.2924 0.534816 302 | Vertex 302 23.1535 3.20944 -9.74836 303 | Vertex 303 21.3896 6.93712 0.963822 304 | Vertex 304 20.3536 6.84671 -7.30323 305 | Vertex 305 18.6308 7.49038 1.10449 306 | Vertex 306 16.076 7.35892 -6.60305 307 | Vertex 307 19.668 -0.624338 -16.6849 308 | Vertex 308 12.2751 4.36508 -4.33707 309 | Vertex 309 -25.7046 1.03457 1.56997 310 | Vertex 310 12.0391 -3.19282 2.86391 311 | Vertex 311 10.5582 -1.22026 5.25547 312 | Vertex 312 12.7124 3.9727 -1.23479 313 | Vertex 313 13.9582 -5.54699 -1.23521 314 | Vertex 314 15.9811 1.14961 -20.1511 315 | Vertex 315 19.2215 -7.48281 -1.06569 316 | Vertex 316 -25.443 1.14216 -3.8077 317 | Vertex 317 22.5367 -6.29814 -1.09502 318 | Vertex 318 20.0062 -6.41103 -10.0813 319 | Vertex 319 25.5662 -1.8717 -0.297688 320 | Vertex 320 23.2121 -1.87907 -10.7003 321 | Vertex 321 20.5978 3.34194 -14.2644 322 | Vertex 322 13.0422 3.37924 -21.3594 323 | Vertex 323 17.6017 7.08959 -11.5549 324 | Vertex 324 12.4124 6.72395 -18.0378 325 | Vertex 325 14.995 7.43898 -9.69251 326 | Vertex 326 9.50533 7.37443 -14.6338 327 | Vertex 327 9.67504 5.37966 -21.5652 328 | Vertex 328 7.44796 4.34954 -10.6682 329 | Vertex 329 -21.888 -0.488314 -13.6791 330 | Vertex 330 11.39 0.850112 2.83786 331 | Vertex 331 10.7903 2.80244 5.74611 332 | Vertex 332 14.7378 6.36561 2.8997 333 | Vertex 333 10.5431 -5.57895 -9.2792 334 | Vertex 334 13.9234 7.21274 9.45316 335 | Vertex 335 14.6858 -7.48533 -12.3787 336 | Vertex 336 -24.0739 1.17516 -9.03124 337 | Vertex 337 17.6097 -6.26642 -14.1802 338 | Vertex 338 10.3366 -6.37895 -19.9316 339 | Vertex 339 20.5024 -1.78602 -15.3255 340 | Vertex 340 12.5351 -1.76298 -22.3194 341 | Vertex 341 8.31565 3.37657 -23.6143 342 | Vertex 342 -1.94571 3.36391 -24.9601 343 | Vertex 343 7.53922 7.11089 -19.5959 344 | Vertex 344 -0.444198 6.72104 -21.8986 345 | Vertex 345 6.67881 7.43382 -16.5308 346 | Vertex 346 -0.742659 7.37162 -17.4098 347 | Vertex 347 13.2824 6.14497 6.32697 348 | Vertex 348 -0.19444 4.36608 -13.0209 349 | Vertex 349 -23.5755 5.30031 -2.55693 350 | Vertex 350 11.7411 3.70146 4.66331 351 | Vertex 351 12.8483 6.53819 8.35148 352 | Vertex 352 11.94 5.52748 7.34445 353 | Vertex 353 3.06789 -5.61131 -13.738 354 | Vertex 354 19.9786 7.38478 -0.11255 355 | Vertex 355 4.69461 -7.48394 -18.6471 356 | Vertex 356 -23.6079 3.87443 -7.48317 357 | Vertex 357 5.99278 -6.25614 -21.8196 358 | Vertex 358 -3.26686 -6.35783 -22.249 359 | Vertex 359 7.63254 -1.75199 -24.4449 360 | Vertex 360 -2.93127 -1.76597 -25.429 361 | Vertex 361 -7.09198 3.33789 -24.0339 362 | Vertex 362 -16.177 3.56417 -18.9582 363 | Vertex 363 -5.23363 7.09523 -20.3687 364 | Vertex 364 14.3937 3.97009 -20.076 365 | Vertex 365 -4.10721 7.42795 -17.3166 366 | Vertex 366 -11.1129 7.47723 -14.3652 367 | Vertex 367 -22.6773 0.634467 -12.2757 368 | Vertex 368 -7.92151 4.50512 -10.4415 369 | Vertex 369 18.6111 0.549787 -17.8735 370 | Vertex 370 18.7207 7.4884 3.14885 371 | Vertex 371 15.7617 7.21848 5.98752 372 | Vertex 372 18.5817 2.26655 -17.4213 373 | Vertex 373 -5.67407 -5.75629 -13.0371 374 | Vertex 374 16.8199 7.48656 9.2136 375 | Vertex 375 -6.82197 -7.47169 -18.1563 376 | Vertex 376 -22.2357 2.31338 -12.3862 377 | Vertex 377 -7.94522 -6.26755 -21.1701 378 | Vertex 378 -15.7306 -6.3168 -16.1546 379 | Vertex 379 -8.16898 -1.79116 -24.2568 380 | Vertex 380 -17.3018 -1.66809 -18.9092 381 | Vertex 381 -19.7841 3.46012 -15.267 382 | Vertex 382 -24.3592 3.36218 -5.78131 383 | Vertex 383 -16.9456 6.89097 -13.2499 384 | Vertex 384 -20.5547 6.97263 -5.67522 385 | Vertex 385 -14.1449 7.49311 -12.2934 386 | Vertex 386 -16.9883 7.412 -4.85269 387 | Vertex 387 23.2811 5.71575 -0.772204 388 | Vertex 388 -12.5344 4.50314 -3.82829 389 | Vertex 389 23.0556 5.59056 4.12337 390 | Vertex 390 20.1886 4.5145 13.6324 391 | Vertex 391 21.5078 5.7042 8.96466 392 | Vertex 392 -21.3402 -3.80436 -12.6719 393 | Vertex 393 -12.2573 -5.61804 -6.95145 394 | Vertex 394 19.6988 7.15332 6.81676 395 | Vertex 395 -16.2607 -7.46455 -10.6921 396 | Vertex 396 -18.2341 -3.80568 -16.8361 397 | Vertex 397 -18.9829 -6.05733 -12.7757 398 | Vertex 398 -22.4872 -6.10553 -3.88966 399 | Vertex 399 -20.8692 -1.61133 -14.9251 400 | Vertex 400 -25.1108 -1.68622 -5.10312 401 | Vertex 401 -25.0827 3.28063 -0.603323 402 | Vertex 402 -23.1688 3.25997 9.63965 403 | Vertex 403 -21.2324 7.00336 -1.08847 404 | Vertex 404 -20.0081 6.93088 7.65601 405 | Vertex 405 -18.1836 7.47994 -1.43329 406 | Vertex 406 -16.7525 7.4316 6.04429 407 | Vertex 407 20.3715 5.39804 11.9661 408 | Vertex 408 -12.4315 4.61798 4.38931 409 | Vertex 409 18.9753 6.56373 11.4258 410 | Vertex 410 25.7073 1.0097 -1.59967 411 | Vertex 411 25.4686 1.05925 3.76392 412 | Vertex 412 21.8881 -0.495896 13.68 413 | Vertex 413 -14.3111 -5.88372 1.44319 414 | Vertex 414 24.085 1.11704 9.04546 415 | Vertex 415 -19.8512 -7.3935 1.2652 416 | Vertex 416 -9.61436 -5.4831 -21.4824 417 | Vertex 417 -22.7621 -6.13551 0.97247 418 | Vertex 418 -20.4613 -6.08729 10.165 419 | Vertex 419 -25.5963 -1.78447 0.267768 420 | Vertex 420 -23.3094 -1.73572 10.6026 421 | Vertex 421 -20.6303 3.31984 14.2401 422 | Vertex 422 -13.0425 3.5062 21.2753 423 | Vertex 423 -18.0284 6.93783 11.5552 424 | Vertex 424 -3.23386 -5.6963 23.0758 425 | Vertex 425 -15.5024 7.47996 9.89842 426 | Vertex 426 -10.1762 7.4886 15.5733 427 | Vertex 427 23.5973 5.28684 2.46192 428 | Vertex 428 -7.5025 4.86365 11.1052 429 | Vertex 429 23.6601 3.781 7.52352 430 | Vertex 430 22.6772 0.628267 12.2785 431 | Vertex 431 22.2286 2.34021 12.3761 432 | Vertex 432 21.3281 -3.8161 12.6771 433 | Vertex 433 -10.7428 -5.76905 9.34685 434 | Vertex 434 18.2211 -3.77618 16.8782 435 | Vertex 435 -15.163 -7.45499 12.3183 436 | Vertex 436 -14.3228 -4.01266 -20.091 437 | Vertex 437 -18.0042 -6.01231 14.2192 438 | Vertex 438 -10.6455 -6.08875 20.2111 439 | Vertex 439 -20.5958 -1.65411 15.2754 440 | Vertex 440 -12.6606 -1.60527 22.3091 441 | Vertex 441 -8.40042 3.49317 23.5157 442 | Vertex 442 1.93713 3.49727 24.8849 443 | Vertex 443 4.60011 -7.16283 20.3116 444 | Vertex 444 11.9409 -2.20945 1.46045 445 | Vertex 445 -7.27882 7.49138 17.7037 446 | Vertex 446 1.10478 7.4778 18.3183 447 | Vertex 447 9.61798 -5.20216 21.7795 448 | Vertex 448 0.57333 4.85364 13.387 449 | Vertex 449 14.3193 -3.77153 20.2872 450 | Vertex 450 19.6174 0.700845 16.7198 451 | Vertex 451 15.9112 -1.03004 20.2434 452 | Vertex 452 11.2899 -4.28841 21.7655 453 | Vertex 453 -3.1843 -5.73887 13.8383 454 | Vertex 454 11.4178 -2.71244 22.6042 455 | Vertex 455 -5.03379 -7.45709 18.857 456 | Vertex 456 -19.6015 0.694732 -16.7403 457 | Vertex 457 -6.27008 -6.01282 22.0666 458 | Vertex 458 3.24469 -6.08442 22.6167 459 | Vertex 459 -7.77777 -1.61653 24.448 460 | Vertex 460 2.8515 -1.61128 25.4903 461 | Vertex 461 7.02564 3.50797 23.9536 462 | Vertex 462 16.1885 3.47833 19.0129 463 | Vertex 463 3.57722 -7.4881 18.8253 464 | Vertex 464 13.178 7.12746 16.2773 465 | Vertex 465 4.69215 7.49102 18.5301 466 | Vertex 466 11.7337 7.49245 15.0652 467 | Vertex 467 18.1433 -7.14378 10.3269 468 | Vertex 468 8.25284 4.83397 10.5287 469 | Vertex 469 18.456 -3.96554 -16.4379 470 | Vertex 470 -15.9407 -1.13739 -20.1873 471 | Vertex 471 12.375 -7.20409 16.5884 472 | Vertex 472 19.1767 -4.27465 15.308 473 | Vertex 473 5.50886 -5.75288 13.1108 474 | Vertex 474 15.0265 -5.66598 17.8561 475 | Vertex 475 6.99428 -7.45542 18.2415 476 | Vertex 476 -11.3076 -4.4952 -21.5806 477 | Vertex 477 7.89071 -5.99982 21.5579 478 | Vertex 478 15.9085 -6.08608 16.3967 479 | Vertex 479 8.0864 -1.5889 24.3576 480 | Vertex 480 17.2927 -1.6023 18.9475 481 | Vertex 481 19.7903 3.51713 15.2046 482 | Vertex 482 24.4249 3.25269 5.77289 483 | Vertex 483 -6.76052 -7.38853 18.8197 484 | Vertex 484 20.7823 6.89526 5.51009 485 | Vertex 485 14.3229 7.49672 12.5805 486 | Vertex 486 17.3124 7.45033 4.69051 487 | Vertex 487 21.4528 -3.99404 -12.2347 488 | Vertex 488 12.6689 4.60469 3.62726 489 | Vertex 489 10.3514 -6.83067 19.0147 490 | Vertex 490 14.9167 -7.18937 7.66113 491 | Vertex 491 10.7314 -7.13533 12.6317 492 | Vertex 492 23.347 -5.5351 -2.55897 493 | Vertex 493 12.1282 -5.74741 7.41784 494 | Vertex 494 13.0738 -7.40844 14.9389 495 | Vertex 495 16.3275 -7.46181 10.616 496 | Vertex 496 -11.472 -2.93001 -22.4593 497 | Vertex 497 19.0243 -6.03119 12.7758 498 | Vertex 498 22.357 -6.22237 3.76898 499 | Vertex 499 20.863 -1.61826 14.9297 500 | Vertex 500 25.0836 -1.79545 5.05303 501 | Vertex 501 25.1623 1.51511 -5.03894 502 | Vertex 502 22.4236 4.69644 -9.17741 503 | Vertex 503 25.2266 -0.213191 -5.3659 504 | Vertex 504 20.8997 1.67532 -14.8442 505 | Vertex 505 22.6027 6.01577 -3.90387 506 | Vertex 506 18.5619 7.33253 -7.99199 507 | Vertex 507 23.8514 4.71006 -4.23655 508 | Vertex 508 18.9462 6.18348 -12.541 509 | Vertex 509 -18.0854 -7.15263 -10.3779 510 | Vertex 510 8.5779 -6.88963 13.4324 511 | Vertex 511 19.9554 7.29445 -4.02569 512 | Vertex 512 16.2511 7.47322 -10.5244 513 | Vertex 513 9.11451 -7.48803 15.9647 514 | Vertex 514 12.1407 -4.95103 5.81929 515 | Vertex 515 15.5316 6.7803 -2.5887 516 | Vertex 516 11.9341 5.65241 -7.53141 517 | Vertex 517 5.58526 -3.64148 11.2932 518 | Vertex 518 23.4217 -4.14738 -7.47806 519 | Vertex 519 -8.75523 -7.37685 -18.0295 520 | Vertex 520 10.0668 2.85911 -6.98609 521 | Vertex 521 21.9246 0.500959 -13.6224 522 | Vertex 522 11.8917 -4.64316 -5.80832 523 | Vertex 523 -19.2036 -4.27116 -15.2792 524 | Vertex 524 9.678 -1.24981 -6.78774 525 | Vertex 525 12.3195 -4.2275 -3.96563 526 | Vertex 526 13.6738 -6.72679 -7.60318 527 | Vertex 527 13.5057 -7.14247 9.64318 528 | Vertex 528 10.3044 -6.03983 10.3184 529 | Vertex 529 16.5314 -7.30829 -4.78921 530 | Vertex 530 18.715 -7.20727 -8.84651 531 | Vertex 531 -15.1853 -5.66659 -17.7278 532 | Vertex 532 13.4666 -7.41832 -11.5184 533 | Vertex 533 20.7739 -6.81482 -6.27645 534 | Vertex 534 21.4787 -5.03084 -10.6038 535 | Vertex 535 19.4515 -7.36457 -4.82993 536 | Vertex 536 16.1719 -7.13934 -13.2571 537 | Vertex 537 24.2333 -3.57675 -5.78578 538 | Vertex 538 23.5539 -0.159436 -10.5252 539 | Vertex 539 23.2142 -5.03287 -5.86438 540 | Vertex 540 19.8372 -3.44413 -15.211 541 | Vertex 541 17.3476 1.71717 -18.8449 542 | Vertex 542 12.8066 4.8539 -20.4099 543 | Vertex 543 17.2521 -0.0244993 -19.205 544 | Vertex 544 8.22427 1.71278 -24.2664 545 | Vertex 545 15.7577 6.3304 -16.0993 546 | Vertex 546 10.5558 7.3202 -17.2944 547 | Vertex 547 16.7306 4.91219 -17.278 548 | Vertex 548 7.99452 6.21893 -21.2201 549 | Vertex 549 -10.5233 -6.88647 -18.7824 550 | Vertex 550 -14.9637 -7.1938 -7.5887 551 | Vertex 551 14.1434 7.16627 -15.3248 552 | Vertex 552 7.14053 7.47638 -17.9383 553 | Vertex 553 4.74536 0.430673 10.7021 554 | Vertex 554 24.0406 -1.34968 -8.98866 555 | Vertex 555 11.3231 6.80046 -11.0247 556 | Vertex 556 5.40863 5.66759 -13.0504 557 | Vertex 557 10.8734 -4.55668 7.42562 558 | Vertex 558 -10.7448 2.59366 -5.66603 559 | Vertex 559 -11.3974 0.839073 -2.79803 560 | Vertex 560 4.06579 2.85754 -11.558 561 | Vertex 561 8.11676 -2.9476 9.1951 562 | Vertex 562 6.18951 -4.68604 -11.7346 563 | Vertex 563 -10.719 -7.08436 -12.4233 564 | Vertex 564 3.78905 -1.28736 -11.2052 565 | Vertex 565 7.61276 -4.2697 -10.5009 566 | Vertex 566 6.66293 -6.75608 -14.2254 567 | Vertex 567 5.52606 -1.12246 10.4144 568 | Vertex 568 11.1713 4.20155 6.51099 569 | Vertex 569 10.7581 -7.35052 -13.6022 570 | Vertex 570 10.0431 -7.19369 -18.1587 571 | Vertex 571 23.9479 -4.57977 -4.1271 572 | Vertex 572 4.20139 -7.42245 -17.2431 573 | Vertex 573 13.2017 -6.76221 -17.379 574 | Vertex 574 11.2025 -4.96649 -21.2314 575 | Vertex 575 13.032 -7.34045 -15.4008 576 | Vertex 576 5.38025 -7.13401 -20.2271 577 | Vertex 577 16.2391 -3.42395 -19.0096 578 | Vertex 578 12.9155 -0.019777 -22.3543 579 | Vertex 579 15.3887 -4.89905 -18.4913 580 | Vertex 580 7.16874 -3.41621 -23.9636 581 | Vertex 581 3.00612 1.7194 -25.4362 582 | Vertex 582 -1.56284 4.83978 -24.0582 583 | Vertex 583 2.71939 -0.0208082 -25.6734 584 | Vertex 584 -7.56635 1.66747 -24.4958 585 | Vertex 585 3.36897 6.33961 -22.2568 586 | Vertex 586 -1.46495 7.31985 -20.2142 587 | Vertex 587 3.43912 4.92042 -23.7981 588 | Vertex 588 -5.90927 6.20135 -21.9195 589 | Vertex 589 24.8497 -3.03594 -3.99394 590 | Vertex 590 18.0553 -7.14818 -10.4572 591 | Vertex 591 2.55364 7.1739 -20.6705 592 | Vertex 592 -4.51462 7.47462 -18.7632 593 | Vertex 593 -12.7186 -7.46858 -14.6282 594 | Vertex 594 7.5411 1.11335 9.04977 595 | Vertex 595 2.86251 6.78993 -15.5233 596 | Vertex 596 -3.29167 5.68752 -13.7577 597 | Vertex 597 5.40387 3.03424 11.0564 598 | Vertex 598 -8.63403 -6.85984 -13.3359 599 | Vertex 599 -9.06888 -7.49626 -16.1487 600 | Vertex 600 -3.47589 2.92336 -11.7754 601 | Vertex 601 10.436 6.50807 11.113 602 | Vertex 602 -1.92394 -4.74244 -13.169 603 | Vertex 603 -6.01241 -3.85114 -11.2086 604 | Vertex 604 -3.57855 -1.30478 -11.2758 605 | Vertex 605 -0.0637779 -4.30964 -12.9968 606 | Vertex 606 -3.07294 -6.80121 -15.4972 607 | Vertex 607 6.30944 7.27297 15.8034 608 | Vertex 608 7.38151 6.35808 13.1023 609 | Vertex 609 0.745705 -7.35735 -17.3467 610 | Vertex 610 -2.45119 -7.18479 -20.6385 611 | Vertex 611 -13.4951 -7.10204 -9.48587 612 | Vertex 612 -7.09331 -7.46946 -16.6785 613 | Vertex 613 0.552401 -6.75218 -21.8327 614 | Vertex 614 -3.35382 -4.94904 -23.7831 615 | Vertex 615 1.57507 -7.3382 -20.128 616 | Vertex 616 19.7442 -7.39568 -2.87169 617 | Vertex 617 2.02865 -3.41469 -24.9236 618 | Vertex 618 -2.64445 -0.0296196 -25.6795 619 | Vertex 619 1.65494 -4.88782 -24.0083 620 | Vertex 620 -8.26534 -3.44969 -23.5876 621 | Vertex 621 -12.5282 1.65674 -22.3643 622 | Vertex 622 -15.261 5.1762 -18.2944 623 | Vertex 623 -12.8842 -0.0590571 -22.3663 624 | Vertex 624 -20.4467 1.81955 -15.3811 625 | Vertex 625 -10.4616 5.9598 -20.5041 626 | Vertex 626 -12.7213 7.33282 -15.7012 627 | Vertex 627 -11.2771 4.72596 -21.428 628 | Vertex 628 -17.7166 6.06373 -14.488 629 | Vertex 629 -10.4443 -5.83537 -9.82399 630 | Vertex 630 6.83373 3.96042 10.7872 631 | Vertex 631 12.2877 7.46977 13.3276 632 | Vertex 632 -16.0107 7.41616 -11.6529 633 | Vertex 633 5.80166 6.69946 14.4596 634 | Vertex 634 5.54511 5.76705 13.1291 635 | Vertex 635 -6.88672 6.84238 -14.3197 636 | Vertex 636 -10.9175 5.938 -9.4847 637 | Vertex 637 16.116 7.30483 12.3944 638 | Vertex 638 20.2344 -4.46648 -13.6284 639 | Vertex 639 21.3827 -5.77922 -9.06123 640 | Vertex 640 -9.74343 3.05991 -7.55037 641 | Vertex 641 -4.70337 -0.131258 -10.7224 642 | Vertex 642 8.77177 -0.159157 -7.74952 643 | Vertex 643 21.018 -6.92013 -4.30467 644 | Vertex 644 -9.61231 -1.20429 -6.85248 645 | Vertex 645 -7.75813 -4.2407 -10.3671 646 | Vertex 646 -11.6211 -6.75545 -10.5546 647 | Vertex 647 11.9368 -7.19539 -11.8084 648 | Vertex 648 -19.8494 1.18209 16.3621 649 | Vertex 649 -9.73932 -7.336 -14.3083 650 | Vertex 650 -14.1587 -7.17728 -15.2553 651 | Vertex 651 10.1076 7.37976 14.2633 652 | Vertex 652 -15.3782 -7.44564 -9.23973 653 | Vertex 653 -12.3463 -6.77182 -17.9641 654 | Vertex 654 -16.686 -4.8751 -17.3629 655 | Vertex 655 -10.5643 -7.34763 -17.1433 656 | Vertex 656 -17.5976 -7.01418 -11.8913 657 | Vertex 657 -12.9756 -3.45556 -21.3487 658 | Vertex 658 -17.2027 0.0861793 -19.2378 659 | Vertex 659 -12.7204 -4.93699 -20.3777 660 | Vertex 660 -20.5837 -3.25705 -14.3678 661 | Vertex 661 -23.2398 1.74295 -10.7496 662 | Vertex 662 -23.3856 4.84842 -5.81953 663 | Vertex 663 -23.5502 0.0465342 -10.5696 664 | Vertex 664 -25.6454 1.63868 -0.323809 665 | Vertex 665 -20.4688 6.03293 -10.3163 666 | Vertex 666 -8.41932 -3.29967 -9.14225 667 | Vertex 667 -21.6766 4.80576 -10.6322 668 | Vertex 668 -22.8487 6.06798 -1.0405 669 | Vertex 669 -12.7839 4.08958 1.11603 670 | Vertex 670 2.76559 -7.20275 -16.5881 671 | Vertex 671 -17.3741 7.34517 -10.2724 672 | Vertex 672 15.1059 -7.05655 -6.22772 673 | Vertex 673 8.80813 7.44442 17.5217 674 | Vertex 674 19.0137 5.86043 13.1886 675 | Vertex 675 -13.9641 6.77814 -7.31004 676 | Vertex 676 -14.2464 5.80413 -1.13282 677 | Vertex 677 15.901 5.78223 16.9113 678 | Vertex 678 -5.48034 -1.58696 -10.5193 679 | Vertex 679 17.728 -7.47556 -7.62381 680 | Vertex 680 -12.3422 3.10399 -0.325398 681 | Vertex 681 8.29555 4.48203 22.9313 682 | Vertex 682 -13.1036 -4.66156 -1.81592 683 | Vertex 683 -10.6832 -1.58631 -5.15201 684 | Vertex 684 -11.7759 -1.03996 0.0126328 685 | Vertex 685 15.2663 -6.79567 -3.94375 686 | Vertex 686 -15.8523 -6.87372 -1.70886 687 | Vertex 687 11.9864 5.95335 19.6593 688 | Vertex 688 18.0343 -7.48971 -3.68042 689 | Vertex 689 -16.388 -7.34189 -5.65949 690 | Vertex 690 -20.7976 -7.08427 -3.34755 691 | Vertex 691 11.6446 7.27799 16.8088 692 | Vertex 692 -18.2491 -7.48541 1.77109 693 | Vertex 693 -20.0625 -6.89639 -7.72582 694 | Vertex 694 -23.7389 -4.8174 -4.32413 695 | Vertex 695 -19.4635 -6.87282 -9.28851 696 | Vertex 696 -21.3062 -6.9769 0.809294 697 | Vertex 697 -23.0815 -3.30957 -9.77198 698 | Vertex 698 -25.2428 0.0189472 -5.41308 699 | Vertex 699 -22.3089 -4.80978 -9.19631 700 | Vertex 700 -25.0043 -3.42004 0.552118 701 | Vertex 701 -25.1588 1.57197 5.003 702 | Vertex 702 -22.4177 4.75371 9.06458 703 | Vertex 703 -25.2487 -0.151019 5.30499 704 | Vertex 704 -20.9216 1.70991 14.793 705 | Vertex 705 -22.6487 5.99998 3.77621 706 | Vertex 706 -7.58116 0.664688 -8.95489 707 | Vertex 707 -23.8447 4.72059 4.22368 708 | Vertex 708 -19.1583 6.02621 12.5949 709 | Vertex 709 -12.1609 -3.3007 -2.55753 710 | Vertex 710 9.46575 5.36448 21.6816 711 | Vertex 711 20.4428 7.18296 3.63104 712 | Vertex 712 -22.5163 -2.76329 -11.5365 713 | Vertex 713 8.68608 6.47454 20.5398 714 | Vertex 714 21.6411 1.24371 13.8754 715 | Vertex 715 -15.8516 6.8862 2.00788 716 | Vertex 716 -12.337 6.02336 7.76459 717 | Vertex 717 18.2723 1.27294 18.0597 718 | Vertex 718 -5.31269 2.48556 -10.8839 719 | Vertex 719 -13.2691 -4.70618 0.513213 720 | Vertex 720 -10.2495 3.35836 7.0954 721 | Vertex 721 9.64232 -0.448261 23.9392 722 | Vertex 722 -11.3231 -4.22249 6.25213 723 | Vertex 723 -9.92033 6.34807 -11.2723 724 | Vertex 724 -9.42561 -0.83078 6.98711 725 | Vertex 725 -13.2642 -5.55055 4.58288 726 | Vertex 726 -13.9633 -6.88404 7.75697 727 | Vertex 727 14.0998 1.28247 21.4679 728 | Vertex 728 17.4503 5.42147 15.8843 729 | Vertex 729 -16.8842 -7.40568 5.05211 730 | Vertex 730 -18.8122 -7.07089 9.54939 731 | Vertex 731 14.5576 4.02303 19.9159 732 | Vertex 732 -13.6053 -7.45884 11.8514 733 | Vertex 733 -8.01069 -5.6173 21.9901 734 | Vertex 734 -21.7331 -4.8034 10.5142 735 | Vertex 735 -5.0706 7.10592 -15.6829 736 | Vertex 736 -16.7145 -6.96786 13.2716 737 | Vertex 737 -24.278 -3.55116 5.65509 738 | Vertex 738 -23.6134 -0.0577984 10.4256 739 | Vertex 739 -23.2107 -5.0843 5.68582 740 | Vertex 740 -19.9869 -3.27178 15.1738 741 | Vertex 741 -17.3598 1.80353 18.7943 742 | Vertex 742 -12.7423 5.02458 20.279 743 | Vertex 743 -17.3007 0.0915619 19.1497 744 | Vertex 744 -8.32514 1.82483 24.1919 745 | Vertex 745 -16.0166 6.14159 16.1986 746 | Vertex 746 -6.65235 6.01452 -12.9429 747 | Vertex 747 -16.6972 4.91684 17.3033 748 | Vertex 748 -7.99811 6.41831 20.9054 749 | Vertex 749 -6.61422 3.51582 -10.6339 750 | Vertex 750 11.1004 0.703792 23.2598 751 | Vertex 751 21.7944 6.52719 4.26957 752 | Vertex 752 4.44111 -6.43065 14.456 753 | Vertex 753 10.6856 2.40061 23.0617 754 | Vertex 754 9.79689 -3.76245 22.8332 755 | Vertex 755 -11.4296 7.01957 11.5828 756 | Vertex 756 -5.43774 6.21798 13.7828 757 | Vertex 757 4.81863 -3.76931 24.3698 758 | Vertex 758 -5.00517 6.35817 -14.1567 759 | Vertex 759 -4.93974 5.26832 -12.8163 760 | Vertex 760 -4.16254 3.50335 11.8171 761 | Vertex 761 -5.00722 -5.22101 23.2571 762 | Vertex 762 -5.4437 -4.14159 11.6787 763 | Vertex 763 -16.9037 -7.29945 2.76054 764 | Vertex 764 -3.52634 -0.718661 11.1829 765 | Vertex 765 -7.99489 -5.45556 11.4162 766 | Vertex 766 -6.68082 -6.83777 14.4021 767 | Vertex 767 -0.331557 -3.79341 24.8151 768 | Vertex 768 6.01461 0.710329 25.0623 769 | Vertex 769 -10.5273 -7.35101 13.821 770 | Vertex 770 -9.60965 -7.07985 18.7576 771 | Vertex 771 0.979543 -1.0571 25.7249 772 | Vertex 772 -4.03463 -7.45517 17.5575 773 | Vertex 773 -13.5307 -6.8742 16.7721 774 | Vertex 774 -11.4665 -4.78153 21.2663 775 | Vertex 775 13.2014 -7.05993 -9.71776 776 | Vertex 776 -5.7566 -6.97125 20.5434 777 | Vertex 777 -16.4081 -3.27251 18.976 778 | Vertex 778 -12.9861 0.123563 22.2962 779 | Vertex 779 -15.618 -4.77226 18.4374 780 | Vertex 780 -7.33881 -3.25544 24.0063 781 | Vertex 781 -3.09993 1.749 25.4155 782 | Vertex 782 1.58668 5.04505 23.8809 783 | Vertex 783 -2.82338 0.0574071 25.6571 784 | Vertex 784 7.49373 1.85259 24.4523 785 | Vertex 785 -3.56378 6.11005 22.5451 786 | Vertex 786 -9.80905 7.35077 -17.5807 787 | Vertex 787 -3.51556 4.82822 23.8697 788 | Vertex 788 5.80576 6.40805 21.6322 789 | Vertex 789 12.6789 -5.81401 -6.66424 790 | Vertex 790 -3.65028 -4.31415 24.2265 791 | Vertex 791 15.4204 7.15797 14.0134 792 | Vertex 792 6.35864 -5.85399 -12.8928 793 | Vertex 793 -4.04634 -2.74954 24.9807 794 | Vertex 794 8.63277 -7.11726 19.089 795 | Vertex 795 -2.33558 6.99666 16.0474 796 | Vertex 796 3.93974 6.237 14.3155 797 | Vertex 797 -21.8979 -4.34316 -10.9388 798 | Vertex 798 -8.98586 7.22478 -14.2736 799 | Vertex 799 5.03637 -7.0809 -15.6405 800 | Vertex 800 3.61341 3.52701 12.0058 801 | Vertex 801 -7.85299 7.50075 -17.3038 802 | Vertex 802 2.40742 -4.14096 12.6567 803 | Vertex 803 -18.8892 5.92657 -13.2325 804 | Vertex 804 3.64738 -0.716126 11.1419 805 | Vertex 805 0.219915 -5.44569 13.9259 806 | Vertex 806 3.03217 -6.84249 15.5953 807 | Vertex 807 0.284845 -7.20722 20.6838 808 | Vertex 808 6.51405 -4.25474 23.6724 809 | Vertex 809 -0.40859 -7.35 17.3638 810 | Vertex 810 3.2281 -7.07625 20.8367 811 | Vertex 811 1.67348 -5.67198 23.2709 812 | Vertex 812 7.03471 -7.45817 16.6071 813 | Vertex 813 -1.12424 -6.87454 21.5186 814 | Vertex 814 3.20124 -4.77924 23.9492 815 | Vertex 815 -15.6493 6.05022 -16.7058 816 | Vertex 816 7.40619 -6.96303 20.027 817 | Vertex 817 -2.18351 -3.28416 24.984 818 | Vertex 818 2.58305 0.11207 25.6742 819 | Vertex 819 -1.85283 -4.77803 24.0864 820 | Vertex 820 8.17642 -3.23264 23.7477 821 | Vertex 821 12.4302 1.85126 22.3447 822 | Vertex 822 15.3314 4.97077 18.4601 823 | Vertex 823 12.7967 0.127901 22.4058 824 | Vertex 824 20.4599 1.84429 15.3492 825 | Vertex 825 10.3973 6.23031 20.1398 826 | Vertex 826 -8.34358 4.33634 -23.031 827 | Vertex 827 11.21 4.99279 21.2022 828 | Vertex 828 17.3753 6.43456 14.0706 829 | Vertex 829 -12.1423 5.61194 -20.01 830 | Vertex 830 -24.768 -1.11108 -6.96651 831 | Vertex 831 17.1199 7.31648 10.901 832 | Vertex 832 11.6559 -0.0477383 -1.15165 833 | Vertex 833 -2.7802 -6.83998 21.4509 834 | Vertex 834 7.59374 -7.21966 15.0605 835 | Vertex 835 7.95509 7.08088 14.3907 836 | Vertex 836 11.3343 6.06663 9.22688 837 | Vertex 837 1.29775 -7.13281 16.5146 838 | Vertex 838 -15.1606 7.30834 -13.6028 839 | Vertex 839 -11.9645 7.09121 -17.2885 840 | Vertex 840 9.87126 3.33935 7.60316 841 | Vertex 841 3.60452 -5.40115 13.3766 842 | Vertex 842 9.29436 -4.16422 8.93987 843 | Vertex 843 -9.46104 5.20881 -21.8524 844 | Vertex 844 9.43857 -0.78474 6.96547 845 | Vertex 845 8.30391 -5.4675 11.2062 846 | Vertex 846 11.5897 -6.84085 10.8644 847 | Vertex 847 1.82059 -7.40844 19.7665 848 | Vertex 848 -0.905527 -6.8792 15.8925 849 | Vertex 849 9.85362 -7.35539 14.3209 850 | Vertex 850 14.8416 -7.07898 14.9687 851 | Vertex 851 -1.9765 -7.48681 18.2581 852 | Vertex 852 15.3913 -7.44869 9.26168 853 | Vertex 853 11.7294 -6.86759 18.0936 854 | Vertex 854 16.6631 -4.77807 17.4985 855 | Vertex 855 -8.69371 6.3955 -20.6694 856 | Vertex 856 17.7208 -6.9856 11.8228 857 | Vertex 857 12.9233 -3.25265 21.514 858 | Vertex 858 17.1806 0.1223 19.2508 859 | Vertex 859 12.6595 -4.75719 20.5959 860 | Vertex 860 20.567 -3.26652 14.382 861 | Vertex 861 23.2376 1.72872 10.7659 862 | Vertex 862 23.5091 4.70254 5.84635 863 | Vertex 863 23.55 0.00937441 10.5757 864 | Vertex 864 25.6536 1.61636 0.278851 865 | Vertex 865 20.2803 6.17994 10.2707 866 | Vertex 866 -21.6372 1.23037 -13.8883 867 | Vertex 867 21.5939 4.89177 10.6337 868 | Vertex 868 22.831 6.08322 0.931076 869 | Vertex 869 -18.2572 1.27953 -18.0725 870 | Vertex 870 6.49043 -4.9479 11.7828 871 | Vertex 871 24.1861 4.27793 4.08086 872 | Vertex 872 11.4947 -3.28184 -4.69615 873 | Vertex 873 -2.02236 -3.6215 12.4265 874 | Vertex 874 -9.72099 -0.65916 -23.8825 875 | Vertex 875 14.3152 6.93737 7.28429 876 | Vertex 876 14.4691 5.9551 0.914124 877 | Vertex 877 5.28229 -7.15447 15.7722 878 | Vertex 878 -14.1946 1.1463 -21.4481 879 | Vertex 879 -17.2993 5.45095 -16.0151 880 | Vertex 880 12.3327 3.0824 0.317108 881 | Vertex 881 2.34234 -6.02542 14.3818 882 | Vertex 882 12.9467 -4.57492 2.4635 883 | Vertex 883 -14.6605 3.99265 -19.863 884 | Vertex 884 11.8044 -1.16663 0.115014 885 | Vertex 885 25.0012 2.73554 3.96273 886 | Vertex 886 15.5039 -6.71258 1.85913 887 | Vertex 887 -11.1865 0.495752 -23.253 888 | Vertex 888 -10.7612 2.18953 -23.1218 889 | Vertex 889 16.2478 -7.3126 5.70341 890 | Vertex 890 20.6274 -7.15087 3.25919 891 | Vertex 891 -2.37813 0.435352 11.4631 892 | Vertex 892 17.8884 -7.44791 -1.66123 893 | Vertex 893 20.0246 -6.92214 7.66697 894 | Vertex 894 23.6447 -4.94662 4.2238 895 | Vertex 895 -9.85308 -4.00421 -22.6373 896 | Vertex 896 -25.7343 0.540678 -1.93104 897 | Vertex 897 23.0654 -3.3559 9.74291 898 | Vertex 898 25.2426 -0.0796704 5.37836 899 | Vertex 899 22.2914 -4.84988 9.14855 900 | Vertex 900 24.9407 -3.53165 -0.583541 901 | Vertex 901 25.4085 2.19528 2.13444 902 | Vertex 902 24.5114 2.60591 -6.52649 903 | Vertex 903 22.0432 6.53504 2.58642 904 | Vertex 904 18.4286 4.01826 16.4167 905 | Vertex 905 21.4543 3.96117 12.2771 906 | Vertex 906 17.1967 7.43353 -4.70264 907 | Vertex 907 13.6246 5.37901 2.34694 908 | Vertex 908 13.079 4.81242 -2.66009 909 | Vertex 909 11.7392 -1.65922 -1.83467 910 | Vertex 910 4.57297 -4.54449 12.3294 911 | Vertex 911 1.31173 -2.91359 12.1971 912 | Vertex 912 -1.55001 -1.1064 11.6917 913 | Vertex 913 12.8724 -4.17657 -0.896509 914 | Vertex 914 5.32608 4.44812 11.9479 915 | Vertex 915 17.9931 -7.45517 0.427609 916 | Vertex 916 17.8951 -7.49573 -5.66321 917 | Vertex 917 21.6228 -6.84239 0.35752 918 | Vertex 918 4.39562 7.16725 20.3412 919 | Vertex 919 25.1789 -2.95944 1.27702 920 | Vertex 920 24.2599 -2.51088 -7.40014 921 | Vertex 921 21.8045 2.22113 -13.1973 922 | Vertex 922 15.9259 2.85636 -19.5999 923 | Vertex 923 19.3547 6.53608 -10.8581 924 | Vertex 924 18.5536 -0.45536 17.9338 925 | Vertex 925 -4.9274 -3.93221 -24.24 926 | Vertex 926 11.6233 7.45646 -13.7747 927 | Vertex 927 12.0485 4.88299 -5.87095 928 | Vertex 928 9.06261 4.75682 -9.74593 929 | Vertex 929 9.53719 3.83028 -8.38305 930 | Vertex 930 -23.4831 -3.82559 -7.96208 931 | Vertex 931 4.85255 -5.41759 -23.0949 932 | Vertex 932 0.874696 1.16845 11.7571 933 | Vertex 933 9.85754 -4.20328 -8.35253 934 | Vertex 934 -2.10152 3.02543 12.1221 935 | Vertex 935 14.9313 -7.46692 -10.2808 936 | Vertex 936 11.3683 -7.49586 -15.0485 937 | Vertex 937 17.6847 -6.86806 -12.3593 938 | Vertex 938 7.70282 7.26882 18.9762 939 | Vertex 939 21.1027 -2.91643 -13.8337 940 | Vertex 940 15.3069 -2.35152 -20.305 941 | Vertex 941 9.92317 2.2822 -23.4492 942 | Vertex 942 1.41667 2.8526 -25.2171 943 | Vertex 943 9.30229 6.57125 -20.0805 944 | Vertex 944 18.5357 -2.1643 17.5311 945 | Vertex 945 0.181749 -4.00496 -24.6786 946 | Vertex 946 1.47285 7.45522 -17.9333 947 | Vertex 947 6.42388 4.90124 -11.7708 948 | Vertex 948 1.69299 4.76295 -13.207 949 | Vertex 949 2.04809 6.55118 15.186 950 | Vertex 950 -4.48561 7.2376 16.313 951 | Vertex 951 -1.86128 6.26719 14.7804 952 | Vertex 952 -6.08824 0.534173 -25.0764 953 | Vertex 953 3.02692 -4.23965 -12.5842 954 | Vertex 954 -0.76908 3.96025 12.7449 955 | Vertex 955 6.13738 -7.46944 -17.097 956 | Vertex 956 0.420135 -7.4965 -18.8721 957 | Vertex 957 7.13086 -6.85696 -20.3897 958 | Vertex 958 16.9387 4.47138 17.5399 959 | Vertex 959 8.99716 -2.86893 -23.5986 960 | Vertex 960 0.505921 -2.34625 -25.425 961 | Vertex 961 -5.70565 2.25343 -24.8273 962 | Vertex 962 -13.707 2.8247 -21.2297 963 | Vertex 963 -4.15143 6.5504 -21.7694 964 | Vertex 964 -11.128 6.70963 -18.8491 965 | Vertex 965 -1.05656 -1.19244 -25.6859 966 | Vertex 966 -9.32317 7.48742 -15.8174 967 | Vertex 967 -1.68945 4.92018 -13.3192 968 | Vertex 968 -6.50989 4.87651 -11.7064 969 | Vertex 969 -4.05768 6.63139 14.9443 970 | Vertex 970 -3.36151 5.69031 13.7836 971 | Vertex 971 6.03268 7.26838 19.5568 972 | Vertex 972 3.52704 -4.42916 -24.1577 973 | Vertex 973 -4.86101 -4.44982 -12.1327 974 | Vertex 974 -16.1585 -7.13612 -3.67793 975 | Vertex 975 -5.08421 -7.47309 -17.4817 976 | Vertex 976 -10.9284 -7.49745 -15.3754 977 | Vertex 977 -6.14396 -6.828 -20.7729 978 | Vertex 978 17.7296 2.94459 17.927 979 | Vertex 979 -6.56282 -2.88681 -24.3787 980 | Vertex 980 -14.5145 -2.34438 -20.8818 981 | Vertex 981 -19.1159 2.4066 -16.7439 982 | Vertex 982 -23.5578 2.82941 -9.13829 983 | Vertex 983 -16.1486 6.6273 -14.9921 984 | Vertex 984 -19.9542 6.77217 -8.68379 985 | Vertex 985 3.91228 -2.87457 -24.9414 986 | Vertex 986 -16.6174 7.46784 -7.19914 987 | Vertex 987 -9.4269 5.3332 -10.0771 988 | Vertex 988 -12.1321 4.87756 -5.68121 989 | Vertex 989 6.29715 -1.02173 24.9801 990 | Vertex 990 -0.572548 7.29572 17.0979 991 | Vertex 991 10.9032 0.69018 -4.35065 992 | Vertex 992 -3.31127 7.47258 19.0505 993 | Vertex 993 -11.3304 -4.21195 -6.21137 994 | Vertex 994 7.62143 5.79236 21.9306 995 | Vertex 995 -14.4423 -7.47374 -11.0811 996 | Vertex 996 -18.0147 -7.50037 -5.81523 997 | Vertex 997 -17.2029 -6.7434 -13.4198 998 | Vertex 998 -21.3718 -6.40179 -6.70026 999 | Vertex 999 -19.644 -2.72004 -15.9877 1000 | Vertex 1000 -24.0434 -2.22561 -8.43119 1001 | Vertex 1001 -25.3867 2.23616 -2.19452 1002 | Vertex 1002 -24.4927 2.69161 6.4785 1003 | Vertex 1003 -22.0809 6.51119 -2.58386 1004 | Vertex 1004 -21.3492 6.69869 4.90721 1005 | Vertex 1005 11.3554 -1.02717 23.1163 1006 | Vertex 1006 -17.8519 7.48287 3.9273 1007 | Vertex 1007 -13.3204 5.04467 -2.49638 1008 | Vertex 1008 -13.2195 4.97638 2.57061 1009 | Vertex 1009 2.86205 5.89321 22.9125 1010 | Vertex 1010 -6.79351 4.46673 23.433 1011 | Vertex 1011 -1.9861 5.63944 23.2924 1012 | Vertex 1012 -20.5363 -5.25964 -11.9332 1013 | Vertex 1013 3.45446 -7.30259 -20.0506 1014 | Vertex 1014 -0.209753 7.02 21.2181 1015 | Vertex 1015 -18.4016 -7.49009 -0.26892 1016 | Vertex 1016 -18.3186 -7.47506 5.90881 1017 | Vertex 1017 -21.8948 -6.69781 -0.601879 1018 | Vertex 1018 -21.2179 -6.37418 7.31911 1019 | Vertex 1019 -25.2382 -2.83253 -1.32604 1020 | Vertex 1020 -24.3445 -2.40103 7.27274 1021 | Vertex 1021 -21.8393 2.23144 13.1318 1022 | Vertex 1022 -15.9271 2.94324 19.5449 1023 | Vertex 1023 -19.4713 6.45652 10.9018 1024 | Vertex 1024 -14.1989 6.80616 16.4093 1025 | Vertex 1025 17.609 -5.21724 16.0043 1026 | Vertex 1026 -11.9317 7.49544 14.412 1027 | Vertex 1027 -12.4832 5.40468 6.00304 1028 | Vertex 1028 -9.20623 5.23356 10.1814 1029 | Vertex 1029 -5.15455 5.33114 23.1243 1030 | Vertex 1030 -5.00216 6.50715 21.6783 1031 | Vertex 1031 9.32465 1.27696 23.9469 1032 | Vertex 1032 4.14694 1.28013 25.3522 1033 | Vertex 1033 11.999 2.53884 -1.74521 1034 | Vertex 1034 -6.28516 -0.49502 25.0343 1035 | Vertex 1035 -15.0601 -7.48303 10.3973 1036 | Vertex 1036 -11.1245 -7.49946 15.3633 1037 | Vertex 1037 -18.0517 -6.68496 12.4482 1038 | Vertex 1038 -12.9597 -6.37891 18.3116 1039 | Vertex 1039 -21.2349 -2.75494 13.7738 1040 | Vertex 1040 -15.4477 -2.17519 20.2875 1041 | Vertex 1041 -9.9934 2.40559 23.3649 1042 | Vertex 1042 -1.47188 2.85403 25.2139 1043 | Vertex 1043 -9.48284 6.47223 20.1777 1044 | Vertex 1044 -2.01401 6.71039 21.7946 1045 | Vertex 1045 16.7345 -6.38027 14.9447 1046 | Vertex 1046 -1.22188 7.50061 18.5028 1047 | Vertex 1047 -6.57294 5.64357 12.4919 1048 | Vertex 1048 -1.3564 5.21943 13.6508 1049 | Vertex 1049 -1.20454 1.20457 25.6764 1050 | Vertex 1050 4.71793 5.44925 23.0948 1051 | Vertex 1051 0.127371 3.94221 24.7212 1052 | Vertex 1052 -4.71451 0.632404 25.3526 1053 | Vertex 1053 -6.62864 -4.43685 -23.4997 1054 | Vertex 1054 -4.95672 2.3146 24.9654 1055 | Vertex 1055 -6.04351 -7.47872 17.2229 1056 | Vertex 1056 0.00785768 -7.49968 18.968 1057 | Vertex 1057 -7.33225 -6.68835 20.6579 1058 | Vertex 1058 0.243182 -6.37877 22.4316 1059 | Vertex 1059 -9.16451 -2.71499 23.6141 1060 | Vertex 1060 -0.622715 -2.19353 25.4842 1061 | Vertex 1061 5.64118 2.41844 24.773 1062 | Vertex 1062 13.5917 2.97385 21.2187 1063 | Vertex 1063 4.16023 6.47988 21.8894 1064 | Vertex 1064 10.7633 7.04155 18.252 1065 | Vertex 1065 6.43513 -5.60619 22.5144 1066 | Vertex 1066 10.1542 7.48406 16.1928 1067 | Vertex 1067 2.20442 5.63897 13.9427 1068 | Vertex 1068 6.96822 5.27378 11.8722 1069 | Vertex 1069 -5.48856 -3.78904 24.2146 1070 | Vertex 1070 -10.4122 -3.77622 22.5493 1071 | Vertex 1071 -17.6748 -5.22034 15.9265 1072 | Vertex 1072 -14.821 -3.78414 19.9139 1073 | Vertex 1073 -1.91066 -5.69573 -23.2333 1074 | Vertex 1074 -9.86823 0.694562 23.8134 1075 | Vertex 1075 5.21065 -7.48012 17.5118 1076 | Vertex 1076 11.1381 -7.49969 15.3676 1077 | Vertex 1077 6.19718 -6.67998 21.0418 1078 | Vertex 1078 13.3742 -6.37108 18.0241 1079 | Vertex 1079 6.46445 -2.69978 24.499 1080 | Vertex 1080 14.4781 -2.1604 20.9977 1081 | Vertex 1081 19.156 2.40958 16.6955 1082 | Vertex 1082 23.5673 2.78596 9.17289 1083 | Vertex 1083 16.2783 6.43971 15.3101 1084 | Vertex 1084 20.014 6.76432 8.59183 1085 | Vertex 1085 10.9451 -5.67897 20.5926 1086 | Vertex 1086 16.884 7.48372 7.05841 1087 | Vertex 1087 9.79582 5.54454 10.0075 1088 | Vertex 1088 12.3684 5.03264 5.48018 1089 | Vertex 1089 -14.3023 -1.03686 21.4067 1090 | Vertex 1090 -17.1456 -4.30944 17.5066 1091 | Vertex 1091 -17.9016 -2.7427 17.8918 1092 | Vertex 1092 -4.2115 -7.12414 20.5031 1093 | Vertex 1093 2.47872 -6.80679 -21.5454 1094 | Vertex 1094 -24.6253 -3.84364 -2.88074 1095 | Vertex 1095 14.4714 -7.47661 11.0929 1096 | Vertex 1096 17.8979 -7.49827 5.79989 1097 | Vertex 1097 17.3533 -6.697 13.3665 1098 | Vertex 1098 21.3064 -6.45827 6.62544 1099 | Vertex 1099 19.6314 -2.71691 16.0054 1100 | Vertex 1100 24.0238 -2.29788 8.39863 1101 | Vertex 1101 24.1101 2.06984 -8.39333 1102 | Vertex 1102 22.7971 5.03571 -7.38472 1103 | Vertex 1103 24.7129 -0.797843 -7.20883 1104 | Vertex 1104 19.6743 2.80683 -15.8837 1105 | Vertex 1105 21.7612 6.14063 -6.7614 1106 | Vertex 1106 19.4699 7.29348 -6.10719 1107 | Vertex 1107 23.8616 4.15464 -6.05987 1108 | Vertex 1108 17.2104 6.8056 -13.2293 1109 | Vertex 1109 17.6442 7.50047 -6.66046 1110 | Vertex 1110 14.4571 6.41539 -4.44134 1111 | Vertex 1111 21.2285 6.70558 -5.31617 1112 | Vertex 1112 14.2926 7.47806 -11.4118 1113 | Vertex 1113 -7.61575 -7.22603 -15.0711 1114 | Vertex 1114 -10.1827 -0.0150366 -5.79476 1115 | Vertex 1115 -11.9027 -7.20754 16.9162 1116 | Vertex 1116 10.8695 4.28908 -7.08241 1117 | Vertex 1117 11.371 2.1655 -3.8463 1118 | Vertex 1118 -1.18807 -7.10183 -16.4266 1119 | Vertex 1119 -8.63272 -4.26819 22.9738 1120 | Vertex 1120 9.31244 1.36658 -7.27632 1121 | Vertex 1121 11.3418 -1.97608 -3.74039 1122 | Vertex 1122 -12.2985 -5.67268 19.8263 1123 | Vertex 1123 11.3114 -0.47542 -3.07164 1124 | Vertex 1124 9.56977 -2.7613 -7.58729 1125 | Vertex 1125 13.2419 6.05858 -6.16134 1126 | Vertex 1126 16.524 7.11925 -0.84715 1127 | Vertex 1127 14.2359 5.94468 -2.55817 1128 | Vertex 1128 8.99662 -4.82048 -9.85803 1129 | Vertex 1129 16.3796 -7.4381 -7.05357 1130 | Vertex 1130 20.4397 -6.64302 -8.13002 1131 | Vertex 1131 14.0007 -6.36482 -5.39451 1132 | Vertex 1132 12.7889 -7.50047 -13.4754 1133 | Vertex 1133 15.6357 -7.16951 13.7271 1134 | Vertex 1134 22.5591 -4.56521 -9.05579 1135 | Vertex 1135 19.2507 -7.27777 -6.87776 1136 | Vertex 1136 16.1125 -6.6094 -15.0715 1137 | Vertex 1137 23.4704 -3.02917 -9.09452 1138 | Vertex 1138 24.2585 0.375794 -8.75196 1139 | Vertex 1139 22.1256 -5.67604 -7.42134 1140 | Vertex 1140 19.1979 -2.33966 -16.6908 1141 | Vertex 1141 14.5675 2.30898 -20.8627 1142 | Vertex 1142 13.9325 5.53356 -18.9014 1143 | Vertex 1143 15.7731 -0.610342 -20.3915 1144 | Vertex 1144 6.62144 2.82786 -24.3931 1145 | Vertex 1145 5.199 4.03566 24.1158 1146 | Vertex 1146 12.4231 7.23156 -16.4457 1147 | Vertex 1147 15.6136 4.41913 -18.7742 1148 | Vertex 1148 6.22412 6.82708 -20.7476 1149 | Vertex 1149 10.7219 7.4997 -15.6397 1150 | Vertex 1150 9.34653 6.45169 -11.9478 1151 | Vertex 1151 14.041 6.55808 -17.1237 1152 | Vertex 1152 5.04108 7.47613 -17.5348 1153 | Vertex 1153 -14.8295 -6.83807 15.7499 1154 | Vertex 1154 -1.56475 -7.46754 -19.3181 1155 | Vertex 1155 -2.66665 -7.21386 16.6333 1156 | Vertex 1156 4.72312 4.29959 -12.0889 1157 | Vertex 1157 6.90857 2.10357 -9.79269 1158 | Vertex 1158 0.991599 -6.85649 -15.8428 1159 | Vertex 1159 -8.6373 -7.13196 14.1317 1160 | Vertex 1160 3.2401 1.35112 -11.3629 1161 | Vertex 1161 6.95799 -2.02656 -9.72654 1162 | Vertex 1162 12.0868 3.46363 -3.20885 1163 | Vertex 1163 7.33557 -0.551978 -9.15208 1164 | Vertex 1164 3.22869 -2.79838 -11.7935 1165 | Vertex 1165 15.0915 6.41649 -0.690373 1166 | Vertex 1166 -10.1196 -7.4094 17.0688 1167 | Vertex 1167 13.7985 5.37106 -0.936337 1168 | Vertex 1168 1.44807 -4.85688 -13.2936 1169 | Vertex 1169 9.27168 -7.44789 -15.325 1170 | Vertex 1170 11.8332 -6.6015 -18.6313 1171 | Vertex 1171 8.20012 -6.4056 -12.6507 1172 | Vertex 1172 2.49792 -7.49925 -18.4265 1173 | Vertex 1173 13.9348 -7.4897 13.1337 1174 | Vertex 1174 12.9766 -4.4669 -20.643 1175 | Vertex 1175 11.6505 -7.25777 -16.8938 1176 | Vertex 1176 4.26056 -6.60314 -21.661 1177 | Vertex 1177 13.6831 -2.90139 -21.2008 1178 | Vertex 1178 14.5048 0.569057 -21.3223 1179 | Vertex 1179 13.5936 -5.58353 -19.0903 1180 | Vertex 1180 5.7783 -2.32038 -24.782 1181 | Vertex 1181 -0.425417 2.29955 -25.4459 1182 | Vertex 1182 0.243692 5.52883 -23.4874 1183 | Vertex 1183 0.826493 -0.609813 -25.767 1184 | Vertex 1184 -8.93409 2.75757 -23.6816 1185 | Vertex 1185 10.1319 3.98895 22.5268 1186 | Vertex 1186 0.517182 7.2332 -20.5969 1187 | Vertex 1187 1.65837 4.41687 -24.3649 1188 | Vertex 1188 -6.99504 6.8153 -20.5193 1189 | Vertex 1189 -0.351673 7.49919 -18.9436 1190 | Vertex 1190 0.671612 6.44663 -15.1387 1191 | Vertex 1191 1.39463 6.56211 -22.0949 1192 | Vertex 1192 -5.9452 7.4723 -17.1757 1193 | Vertex 1193 -10.074 -6.88577 12.3406 1194 | Vertex 1194 -22.7472 5.6105 5.50143 1195 | Vertex 1195 -12.328 -7.48727 13.627 1196 | Vertex 1196 -3.29124 4.35579 -12.59 1197 | Vertex 1197 -0.156248 2.11693 -11.9875 1198 | Vertex 1198 -5.29514 -7.13951 -15.7178 1199 | Vertex 1199 -1.58637 -4.93024 13.3348 1200 | Vertex 1200 -4.00896 1.40851 -11.1235 1201 | Vertex 1201 -0.16758 -2.05894 -11.9691 1202 | Vertex 1202 -8.95111 -3.66778 8.88787 1203 | Vertex 1203 0.500427 -0.575679 -11.7191 1204 | Vertex 1204 -4.45805 -2.83407 -11.3989 1205 | Vertex 1205 15.6938 7.39062 -12.4048 1206 | Vertex 1206 -2.48325 -5.91898 -14.2435 1207 | Vertex 1207 10.0888 -6.83822 -12.214 1208 | Vertex 1208 -6.81321 -5.06357 -11.7105 1209 | Vertex 1209 -1.46819 -7.4499 -17.8764 1210 | Vertex 1210 -1.28879 -6.58715 -22.0571 1211 | Vertex 1211 -0.835063 -6.43677 -15.1064 1212 | Vertex 1212 -14.3758 -5.95821 -1.91372 1213 | Vertex 1213 5.57448 -7.3858 19.222 1214 | Vertex 1214 -1.56955 -4.45366 -24.3411 1215 | Vertex 1215 -0.415618 -7.25334 -20.5387 1216 | Vertex 1216 -9.2126 -6.68611 -19.9072 1217 | Vertex 1217 -1.33525 -2.89513 -25.2001 1218 | Vertex 1218 -0.749366 0.562697 -25.7784 1219 | Vertex 1219 -0.144156 -5.56886 -23.4467 1220 | Vertex 1220 -9.87248 -2.372 -23.4305 1221 | Vertex 1221 -15.3119 2.36826 -20.2927 1222 | Vertex 1222 -13.8047 5.41244 -19.1354 1223 | Vertex 1223 -14.4713 -0.602852 -21.3372 1224 | Vertex 1224 -21.0697 2.90205 -13.8981 1225 | Vertex 1225 -12.7552 6.36984 -18.4825 1226 | Vertex 1226 18.5616 7.48381 -4.88989 1227 | Vertex 1227 -13.0253 4.33343 -20.7322 1228 | Vertex 1228 4.45533 -0.452845 25.4164 1229 | Vertex 1229 -10.9624 7.45185 -16.0706 1230 | Vertex 1230 -8.52948 6.61314 -12.8783 1231 | Vertex 1231 8.68033 -7.08902 -13.9484 1232 | Vertex 1232 -14.7761 7.4595 -10.3402 1233 | Vertex 1233 -4.95625 -7.14811 15.8567 1234 | Vertex 1234 -16.813 -7.20764 0.360452 1235 | Vertex 1235 -6.5264 -6.01948 13.0232 1236 | Vertex 1236 -10.327 4.65582 -8.28566 1237 | Vertex 1237 -7.04058 2.07739 -9.68656 1238 | Vertex 1238 2.49631 -0.184743 -11.4365 1239 | Vertex 1239 -24.5574 -4.03172 2.35954 1240 | Vertex 1240 -9.85648 1.53761 -6.58997 1241 | Vertex 1241 -7.39694 -1.86056 -9.36631 1242 | Vertex 1242 -1.03533 -3.36689 -12.4125 1243 | Vertex 1243 -6.54448 -0.460865 -9.71531 1244 | Vertex 1244 -10.3949 -2.75502 -6.41004 1245 | Vertex 1245 -9.41373 -4.65264 -9.29709 1246 | Vertex 1246 -8.6351 0.33951 7.89219 1247 | Vertex 1247 15.7897 7.08026 -4.55935 1248 | Vertex 1248 -12.5316 -5.11603 -5.26023 1249 | Vertex 1249 -11.817 -7.44873 -13.4558 1250 | Vertex 1250 -14.0062 -6.57696 -17.1103 1251 | Vertex 1251 -9.66262 -6.40516 -11.5624 1252 | Vertex 1252 -17.3634 -7.43883 -9.05845 1253 | Vertex 1253 12.0555 -6.42521 9.11505 1254 | Vertex 1254 -15.551 -4.42142 -18.8221 1255 | Vertex 1255 -12.4596 -7.25215 -16.3344 1256 | Vertex 1256 -19.4164 -6.42104 -11.0993 1257 | Vertex 1257 -15.8707 -2.85101 -19.6474 1258 | Vertex 1258 -15.7494 0.628262 -20.4053 1259 | Vertex 1259 -13.8577 -5.58039 -18.8986 1260 | Vertex 1260 -21.7809 -2.18862 -13.2619 1261 | Vertex 1261 -24.3481 2.2872 -7.42219 1262 | Vertex 1262 -22.5258 5.28416 -7.43181 1263 | Vertex 1263 -24.2497 -0.534783 -8.7949 1264 | Vertex 1264 -25.3031 2.70784 1.25859 1265 | Vertex 1265 -21.1184 6.44051 -7.29874 1266 | Vertex 1266 18.5908 7.5005 -2.95771 1267 | Vertex 1267 -22.7067 4.35904 -9.10679 1268 | Vertex 1268 -21.9765 6.65728 0.425361 1269 | Vertex 1269 -17.9136 7.49004 -6.57058 1270 | Vertex 1270 -14.3554 6.50645 -5.19795 1271 | Vertex 1271 -18.1032 7.37837 -8.45496 1272 | Vertex 1272 -18.3184 7.48446 0.544607 1273 | Vertex 1273 18.4656 5.71879 -14.1998 1274 | Vertex 1274 1.82491 -1.75367 -11.7641 1275 | Vertex 1275 -3.47373 -4.53361 12.6674 1276 | Vertex 1276 -13.084 4.50888 -0.767342 1277 | Vertex 1277 -11.5042 2.30173 -3.57741 1278 | Vertex 1278 -4.98446 3.93614 -11.7371 1279 | Vertex 1279 -6.06772 -2.92794 10.6706 1280 | Vertex 1280 -11.8706 1.62003 0.412909 1281 | Vertex 1281 -11.4837 -1.8993 -3.29206 1282 | Vertex 1282 -8.11056 -1.17493 8.57293 1283 | Vertex 1283 -11.0096 -0.375218 -3.96869 1284 | Vertex 1284 -12.0861 -2.48241 0.87775 1285 | Vertex 1285 10.729 -5.41233 8.79148 1286 | Vertex 1286 -2.75014 4.40672 12.7645 1287 | Vertex 1287 -13.4549 -5.45739 -3.54256 1288 | Vertex 1288 -12.3323 -4.24594 -3.97222 1289 | Vertex 1289 -17.7138 -7.47046 -3.87123 1290 | Vertex 1290 -22.4525 6.30969 2.07908 1291 | Vertex 1291 -14.7384 -6.46867 -3.62743 1292 | Vertex 1292 -19.8343 -7.37749 3.00535 1293 | Vertex 1293 -21.1237 -6.80362 -4.99845 1294 | Vertex 1294 -23.7044 -4.32875 -6.13389 1295 | Vertex 1295 20.9756 5.70294 -10.1342 1296 | Vertex 1296 -21.7071 -6.74101 2.44326 1297 | Vertex 1297 -24.4185 -2.77795 -6.59024 1298 | Vertex 1298 -24.7419 0.601719 -7.24768 1299 | Vertex 1299 -22.5838 -5.23771 -7.39126 1300 | Vertex 1300 -25.3231 -2.4024 2.13524 1301 | Vertex 1301 -24.1158 2.16134 8.30404 1302 | Vertex 1302 -22.6762 5.18352 7.28825 1303 | Vertex 1303 -24.7598 -0.706734 7.11353 1304 | Vertex 1304 -19.6824 2.82959 15.8562 1305 | Vertex 1305 -21.4639 6.35538 6.64967 1306 | Vertex 1306 24.4752 4.33059 -1.01582 1307 | Vertex 1307 -23.798 4.2461 6.02942 1308 | Vertex 1308 -17.4514 6.76333 13.0355 1309 | Vertex 1309 -18.4059 7.48265 5.41105 1310 | Vertex 1310 -14.8868 6.60236 4.03353 1311 | Vertex 1311 -19.6465 7.3619 4.17954 1312 | Vertex 1312 -14.5947 7.49596 11.7877 1313 | Vertex 1313 22.7962 5.55515 -5.5573 1314 | Vertex 1314 18.0123 7.27055 -9.73688 1315 | Vertex 1315 23.6407 5.24613 -2.46917 1316 | Vertex 1316 -11.0968 4.898 7.53494 1317 | Vertex 1317 -11.4426 2.29627 3.76165 1318 | Vertex 1318 22.1729 6.48656 -2.13985 1319 | Vertex 1319 -0.821095 0.624945 -11.7064 1320 | Vertex 1320 -9.37112 1.87027 7.40329 1321 | Vertex 1321 -11.1559 -1.68474 4.11747 1322 | Vertex 1322 -6.17284 1.13534 10.0374 1323 | Vertex 1323 -11.229 -0.225574 3.25916 1324 | Vertex 1324 -9.1286 -2.27012 7.86409 1325 | Vertex 1325 -12.286 -5.09066 5.77005 1326 | Vertex 1326 -8.79692 2.95552 8.56543 1327 | Vertex 1327 -12.2661 -4.19128 4.05588 1328 | Vertex 1328 -13.2901 -5.06122 2.67399 1329 | Vertex 1329 -16.8139 -7.48484 7.22183 1330 | Vertex 1330 7.45051 -6.10177 12.6093 1331 | Vertex 1331 -14.3141 -6.55644 5.51675 1332 | Vertex 1332 -13.9819 -7.43017 13.8262 1333 | Vertex 1333 -20.046 -6.78097 8.44155 1334 | Vertex 1334 -22.7438 -4.37215 8.98056 1335 | Vertex 1335 19.8317 1.11596 -16.4118 1336 | Vertex 1336 -16.533 -6.37678 15.1646 1337 | Vertex 1337 -23.5916 -2.8738 8.98706 1338 | Vertex 1338 -24.2952 0.472674 8.65498 1339 | Vertex 1339 -22.4896 -5.36905 7.26473 1340 | Vertex 1340 -19.3043 -2.197 16.6569 1341 | Vertex 1341 -14.5812 2.41009 20.8034 1342 | Vertex 1342 -13.8805 5.48851 18.9899 1343 | Vertex 1343 -15.8524 -0.469506 20.3489 1344 | Vertex 1344 -6.73636 2.89967 24.3267 1345 | Vertex 1345 2.21533 2.29401 11.8465 1346 | Vertex 1346 22.8084 1.04222 -11.9467 1347 | Vertex 1347 -15.58 4.49878 18.7237 1348 | Vertex 1348 -6.34416 6.77197 20.8235 1349 | Vertex 1349 -12.1434 7.34137 16.1462 1350 | Vertex 1350 -9.50098 6.80368 12.6006 1351 | Vertex 1351 -13.4462 7.33267 15.0844 1352 | Vertex 1352 -5.05016 7.49534 18.0273 1353 | Vertex 1353 -7.4871 6.57384 13.411 1354 | Vertex 1354 2.00376 2.39995 -11.9179 1355 | Vertex 1355 -13.3713 7.30321 10.7399 1356 | Vertex 1356 -4.56749 5.0459 12.7254 1357 | Vertex 1357 -7.08377 2.54204 9.83407 1358 | Vertex 1358 -16.7017 -7.48371 -7.49402 1359 | Vertex 1359 -10.3522 6.29887 10.7719 1360 | Vertex 1360 -3.26769 1.99032 11.5158 1361 | Vertex 1361 -6.53547 -1.52757 9.88624 1362 | Vertex 1362 -1.44941 6.08701 -14.5552 1363 | Vertex 1363 -7.13938 -0.0152645 9.27529 1364 | Vertex 1364 -2.76558 -2.19541 11.7023 1365 | Vertex 1365 -6.50222 -5.01487 11.828 1366 | Vertex 1366 -8.1416 3.94224 9.82515 1367 | Vertex 1367 -7.46072 -4.09177 10.4506 1368 | Vertex 1368 5.02267 7.11471 -15.7243 1369 | Vertex 1369 -9.21962 -7.47029 15.6172 1370 | Vertex 1370 -23.7307 5.16012 2.43515 1371 | Vertex 1371 -8.28273 -6.47529 12.7438 1372 | Vertex 1372 -3.20334 -7.43119 19.3909 1373 | Vertex 1373 -11.2718 -6.79042 18.5812 1374 | Vertex 1374 -13.1629 -4.28926 20.6819 1375 | Vertex 1375 25.6973 -0.745979 -1.89579 1376 | Vertex 1376 -4.51448 -6.37845 21.9718 1377 | Vertex 1377 -13.8302 -2.72227 21.2082 1378 | Vertex 1378 -14.5507 0.698159 21.2599 1379 | Vertex 1379 -13.9926 -5.20489 19.247 1380 | Vertex 1380 -5.9197 -2.18806 24.8044 1381 | Vertex 1381 0.405461 2.35851 25.4225 1382 | Vertex 1382 -0.114852 5.33507 23.67 1383 | Vertex 1383 -0.917661 -0.502557 25.7805 1384 | Vertex 1384 8.87108 2.94451 23.6082 1385 | Vertex 1385 -0.512434 6.30587 22.547 1386 | Vertex 1386 24.8029 0.930264 -6.91624 1387 | Vertex 1387 -1.72401 4.34996 24.4126 1388 | Vertex 1388 7.10096 6.74999 20.6237 1389 | Vertex 1389 -0.0701456 7.43645 19.6104 1390 | Vertex 1390 -0.121483 6.77108 15.7149 1391 | Vertex 1391 -1.80887 7.32448 20.1596 1392 | Vertex 1392 6.74971 7.49589 17.5237 1393 | Vertex 1393 -12.2153 6.65952 9.58752 1394 | Vertex 1394 2.27729 5.90799 -14.259 1395 | Vertex 1395 -10.8612 5.67333 9.11087 1396 | Vertex 1396 3.91701 5.0755 12.9753 1397 | Vertex 1397 0.0488021 2.57536 12.1291 1398 | Vertex 1398 0.733991 3.41191 -12.4585 1399 | Vertex 1399 -6.67265 7.27334 19.3288 1400 | Vertex 1400 4.09649 2.00102 11.2494 1401 | Vertex 1401 0.476943 -1.49332 11.8341 1402 | Vertex 1402 4.27196 6.33564 -14.3655 1403 | Vertex 1403 -0.36328 0.0379965 11.7007 1404 | Vertex 1404 4.55741 -2.20416 11.1338 1405 | Vertex 1405 1.654 -5.01142 13.3934 1406 | Vertex 1406 20.5167 5.34117 -11.8089 1407 | Vertex 1407 0.0767224 -4.07184 12.8273 1408 | Vertex 1408 3.56222 5.19686 -13.2042 1409 | Vertex 1409 1.69799 -7.47072 18.0624 1410 | Vertex 1410 8.7849 -1.86832 8.05609 1411 | Vertex 1411 0.769501 -6.4732 15.1766 1412 | Vertex 1412 8.79157 -7.42878 17.5996 1413 | Vertex 1413 1.77501 -6.78868 21.6647 1414 | Vertex 1414 1.475 -4.29301 24.4677 1415 | Vertex 1415 23.6137 3.65459 -7.93036 1416 | Vertex 1416 9.25595 -6.36582 20.4527 1417 | Vertex 1417 1.24384 -2.73259 25.2835 1418 | Vertex 1418 0.694304 0.664574 25.7598 1419 | Vertex 1419 -0.0484385 -5.20824 23.7916 1420 | Vertex 1420 9.80084 -2.15247 23.5582 1421 | Vertex 1421 15.2362 2.40885 20.3298 1422 | Vertex 1422 13.672 5.47538 19.1608 1423 | Vertex 1423 14.404 -0.451397 21.3969 1424 | Vertex 1424 21.0722 2.93742 13.8622 1425 | Vertex 1425 12.6277 6.60842 18.0951 1426 | Vertex 1426 25.5644 0.392794 -3.48695 1427 | Vertex 1427 12.8866 4.55295 20.6241 1428 | Vertex 1428 17.7366 6.81329 12.4734 1429 | Vertex 1429 4.68346 -2.16046 25.081 1430 | Vertex 1430 9.32152 6.85889 12.8822 1431 | Vertex 1431 2.52213 -1.82948 11.6508 1432 | Vertex 1432 15.2278 7.49882 10.6056 1433 | Vertex 1433 3.50116 -3.20083 11.8831 1434 | Vertex 1434 -6.45453 7.39969 -18.8378 1435 | Vertex 1435 -10.6366 7.32764 13.573 1436 | Vertex 1436 10.5984 4.86768 8.1837 1437 | Vertex 1437 7.10047 2.53654 9.81804 1438 | Vertex 1438 25.3298 2.12289 -3.15668 1439 | Vertex 1439 25.5414 -0.673211 3.49086 1440 | Vertex 1440 9.86661 1.83249 6.7113 1441 | Vertex 1441 7.24661 -1.5221 9.3819 1442 | Vertex 1442 -13.9125 7.46532 13.5309 1443 | Vertex 1443 6.49775 0.0102532 9.73268 1444 | Vertex 1444 10.1556 -2.23964 6.4847 1445 | Vertex 1445 9.1447 -5.02942 9.95449 1446 | Vertex 1446 -6.70555 5.81119 22.2053 1447 | Vertex 1447 7.51874 -4.09174 10.4238 1448 | Vertex 1448 1.637 7.46123 -19.3736 1449 | Vertex 1449 11.9693 -7.47074 13.6368 1450 | Vertex 1450 -19.9746 7.15214 5.9661 1451 | Vertex 1451 9.50713 -6.48167 11.8771 1452 | Vertex 1452 17.377 -7.43974 9.01954 1453 | Vertex 1453 14.1584 -6.78643 16.4991 1454 | Vertex 1454 15.5743 -4.28165 18.9394 1455 | Vertex 1455 25.2267 -2.38073 3.16298 1456 | Vertex 1456 19.4606 -6.4079 11.0641 1457 | Vertex 1457 15.8689 -2.71434 19.7339 1458 | Vertex 1458 15.6888 0.702134 20.4335 1459 | Vertex 1459 13.9431 -5.19452 19.2942 1460 | Vertex 1460 21.7705 -2.20476 13.2663 1461 | Vertex 1461 24.3811 2.19948 7.4359 1462 | Vertex 1462 22.603 5.19043 7.4959 1463 | Vertex 1463 24.2396 -0.602353 8.78352 1464 | Vertex 1464 25.2929 2.72419 -1.29618 1465 | Vertex 1465 21.2417 6.36736 7.27719 1466 | Vertex 1466 19.7898 -1.0352 16.4931 1467 | Vertex 1467 22.7047 4.33816 9.15686 1468 | Vertex 1468 21.6634 6.82409 -0.624935 1469 | Vertex 1469 18.2015 7.47574 6.2268 1470 | Vertex 1470 14.6217 6.65225 5.0835 1471 | Vertex 1471 18.3541 7.37019 8.06264 1472 | Vertex 1472 18.3891 7.49055 -1.06418 1473 | Vertex 1473 -11.1013 5.85176 20.2966 1474 | Vertex 1474 -14.8898 -6.86623 -5.59472 1475 | Vertex 1475 -19.2313 4.36094 15.138 1476 | Vertex 1476 13.2439 4.67146 0.443434 1477 | Vertex 1477 11.4519 2.27769 3.71363 1478 | Vertex 1478 1.09911 7.11356 -16.4738 1479 | Vertex 1479 -14.9783 5.83052 17.661 1480 | Vertex 1480 11.8487 1.53719 -0.426662 1481 | Vertex 1481 11.4063 -1.70432 3.39965 1482 | Vertex 1482 22.7723 -1.10646 11.9914 1483 | Vertex 1483 10.9669 -0.185961 4.05373 1484 | Vertex 1484 12.185 -2.71915 -0.51737 1485 | Vertex 1485 23.4853 -5.40966 2.42937 1486 | Vertex 1486 -13.104 6.64063 17.6938 1487 | Vertex 1487 12.1132 -4.10462 4.3115 1488 | Vertex 1488 13.0583 -4.78245 -2.62298 1489 | Vertex 1489 17.5064 -7.45171 3.90481 1490 | Vertex 1490 9.71339 -3.2244 7.70756 1491 | Vertex 1491 14.4833 -6.35657 3.86272 1492 | Vertex 1492 3.49421 7.48978 -18.8314 1493 | Vertex 1493 21.0097 -6.86741 4.91153 1494 | Vertex 1494 23.6472 -4.42875 6.05549 1495 | Vertex 1495 22.1216 -6.52596 2.06258 1496 | Vertex 1496 21.7069 -6.71654 -2.71607 1497 | Vertex 1497 24.3842 -2.87582 6.53523 1498 | Vertex 1498 24.7549 0.514439 7.23852 1499 | Vertex 1499 22.539 -5.30453 7.31926 1500 | Vertex 1500 25.2952 -2.46426 -2.16551 1501 | Vertex 1501 24.6831 3.77118 -2.80632 1502 | Vertex 1502 24.6961 3.82518 2.32812 1503 | Vertex 1503 22.5511 2.7369 -11.4968 1504 | Vertex 1504 21.9397 4.31953 -10.8961 1505 | Vertex 1505 20.2069 7.3233 -1.94148 1506 | Vertex 1506 -9.5895 -1.03853 23.9103 1507 | Vertex 1507 19.7796 6.7543 -9.15431 1508 | Vertex 1508 -7.66325 5.73726 -21.9802 1509 | Vertex 1509 -17.6785 5.31861 15.7845 1510 | Vertex 1510 17.2103 7.35854 2.53123 1511 | Vertex 1511 16.6501 7.49773 -8.47191 1512 | Vertex 1512 14.5618 6.861 -6.36351 1513 | Vertex 1513 -16.8295 6.47959 14.6192 1514 | Vertex 1514 12.7537 4.16434 1.77735 1515 | Vertex 1515 -6.5595 1.22466 24.8618 1516 | Vertex 1516 -3.05153 5.72654 -23.0706 1517 | Vertex 1517 -11.5389 1.27711 22.9527 1518 | Vertex 1518 11.6779 0.412465 0.821215 1519 | Vertex 1519 10.5146 1.83154 -5.64218 1520 | Vertex 1520 -19.7303 -0.517403 16.6409 1521 | Vertex 1521 -16.0112 1.26046 20.0899 1522 | Vertex 1522 12.5879 -3.69184 0.966649 1523 | Vertex 1523 10.5897 -2.28252 -5.76079 1524 | Vertex 1524 -9.71572 5.43963 21.4851 1525 | Vertex 1525 14.1315 -5.98417 -3.2081 1526 | Vertex 1526 -14.372 4.03124 20.0419 1527 | Vertex 1527 11.2867 -5.09337 -7.57811 1528 | Vertex 1528 12.1524 -6.24718 -8.59566 1529 | Vertex 1529 6.68523 4.39015 -23.5214 1530 | Vertex 1530 19.753 -7.42512 0.509248 1531 | Vertex 1531 16.6491 -7.49901 -9.21191 1532 | Vertex 1532 18.4221 -5.62625 14.4179 1533 | Vertex 1533 22.6756 -5.92355 -4.14173 1534 | Vertex 1534 23.1357 -5.85312 0.630297 1535 | Vertex 1535 19.1232 -6.44476 -11.5637 1536 | Vertex 1536 20.3734 -5.427 -11.9045 1537 | Vertex 1537 25.392 -1.34975 -3.77098 1538 | Vertex 1538 25.6502 -1.27108 1.59407 1539 | Vertex 1539 22.2342 -2.39627 -12.3177 1540 | Vertex 1540 22.6928 -0.692926 -12.2221 1541 | Vertex 1541 18.2708 3.87981 -16.7259 1542 | Vertex 1542 21.3463 3.86046 -12.5905 1543 | Vertex 1543 11.5275 2.83785 -22.4811 1544 | Vertex 1544 11.3778 4.39319 -21.6316 1545 | Vertex 1545 15.4843 7.09722 -14.1976 1546 | Vertex 1546 2.00899 5.66793 -23.2595 1547 | Vertex 1547 10.6762 6.77822 -18.9438 1548 | Vertex 1548 -3.32437 7.27719 -20.1628 1549 | Vertex 1549 -18.6376 0.642678 17.8187 1550 | Vertex 1550 14.7529 7.23952 -8.20235 1551 | Vertex 1551 8.77246 7.49501 -16.4917 1552 | Vertex 1552 8.36218 6.88779 -13.5723 1553 | Vertex 1553 -18.5879 2.32554 17.3795 1554 | Vertex 1554 -19.1556 7.47302 2.35467 1555 | Vertex 1555 -18.6173 -3.79103 16.4266 1556 | Vertex 1556 20.9054 -5.74443 10.1699 1557 | Vertex 1557 -21.6258 -3.80934 12.1722 1558 | Vertex 1558 9.96009 0.278397 -6.11883 1559 | Vertex 1559 5.17486 1.80328 -10.7448 1560 | Vertex 1560 -23.3847 -5.50112 2.50346 1561 | Vertex 1561 -23.5793 -3.98888 7.31658 1562 | Vertex 1562 10.7386 -3.72939 -6.6759 1563 | Vertex 1563 5.13873 -2.32666 -10.9195 1564 | Vertex 1564 -21.9617 0.568457 13.5457 1565 | Vertex 1565 9.55132 -6.02847 -10.9634 1566 | Vertex 1566 -24.1138 -1.22948 8.88303 1567 | Vertex 1567 4.66536 -5.13218 -12.8046 1568 | Vertex 1568 4.80796 -6.28029 -14.1306 1569 | Vertex 1569 5.0005 5.34358 -23.1408 1570 | Vertex 1570 16.361 -7.41486 -11.236 1571 | Vertex 1571 8.17559 -7.49571 -17.2315 1572 | Vertex 1572 20.5214 -7.23867 1.75868 1573 | Vertex 1573 15.999 -5.79016 -16.8008 1574 | Vertex 1574 19.0656 -5.80768 -13.2165 1575 | Vertex 1575 8.75402 -6.42061 -20.5991 1576 | Vertex 1576 9.55172 -5.38654 -21.6173 1577 | Vertex 1577 18.3277 -1.19259 -18.0345 1578 | Vertex 1578 21.6733 -1.23447 -13.8295 1579 | Vertex 1579 10.7988 -2.31915 -23.045 1580 | Vertex 1580 11.2249 -0.600216 -23.223 1581 | Vertex 1581 4.99665 3.89204 -24.2539 1582 | Vertex 1582 9.9047 3.91114 -22.6818 1583 | Vertex 1583 -3.83501 2.81754 -24.9818 1584 | Vertex 1584 -3.44341 4.37353 -24.2137 1585 | Vertex 1585 4.28837 7.11068 -20.5267 1586 | Vertex 1586 5.0403 6.38483 -21.8634 1587 | Vertex 1587 -2.36511 6.76604 -21.6378 1588 | Vertex 1588 -9.40325 1.07379 -23.9695 1589 | Vertex 1589 -23.947 -4.59435 4.06445 1590 | Vertex 1590 7.41743 7.23613 -15.1785 1591 | Vertex 1591 -2.40079 7.49656 -18.5133 1592 | Vertex 1592 -1.08337 6.88062 -15.8817 1593 | Vertex 1593 -24.8759 -3.00142 3.93361 1594 | Vertex 1594 -1.31533 -6.08787 14.5627 1595 | Vertex 1595 -15.4404 -7.12174 14.1421 1596 | Vertex 1596 -4.20814 1.12423 -25.3847 1597 | Vertex 1597 18.7828 -7.49823 2.35049 1598 | Vertex 1598 4.42472 0.242327 -10.8204 1599 | Vertex 1599 -2.10921 1.83455 -11.7453 1600 | Vertex 1600 6.15544 -0.603443 -25.0512 1601 | Vertex 1601 -19.9123 -7.10317 6.62517 1602 | Vertex 1602 4.72757 -3.7702 -11.7507 1603 | Vertex 1603 -2.37697 -2.36951 -11.8441 1604 | Vertex 1604 -20.4334 -4.28313 13.5755 1605 | Vertex 1605 1.27129 -6.05745 -14.519 1606 | Vertex 1606 -21.5665 -5.67875 8.88892 1607 | Vertex 1607 -3.76495 -5.25371 -13.2029 1608 | Vertex 1608 -4.51631 -6.3827 -14.3673 1609 | Vertex 1609 1.13406 1.14647 -25.6947 1610 | Vertex 1610 6.73318 -7.41075 -18.7 1611 | Vertex 1611 -3.42374 -7.49326 -18.7935 1612 | Vertex 1612 -4.17346 -7.11455 -20.5398 1613 | Vertex 1613 3.14787 -5.78007 -22.9949 1614 | Vertex 1614 7.73088 -5.78382 -21.8984 1615 | Vertex 1615 -4.95726 -6.3951 -21.8637 1616 | Vertex 1616 -4.92412 -5.36932 -23.13 1617 | Vertex 1617 4.28072 -1.18162 -25.3571 1618 | Vertex 1618 9.45664 -1.1768 -23.9241 1619 | Vertex 1619 -4.76962 -2.32688 -24.9953 1620 | Vertex 1620 -4.52789 -0.615928 -25.3899 1621 | Vertex 1621 -10.1746 3.7798 -22.6592 1622 | Vertex 1622 -5.25979 3.88805 -24.2011 1623 | Vertex 1623 -17.6791 2.99777 -17.9415 1624 | Vertex 1624 -16.8048 4.62357 -17.5158 1625 | Vertex 1625 -8.20017 7.21762 -18.9671 1626 | Vertex 1626 -4.76884 5.35744 -23.1739 1627 | Vertex 1627 -14.4866 7.04326 -15.4634 1628 | Vertex 1628 -0.0934188 3.96063 -24.7098 1629 | Vertex 1629 15.7734 -7.39242 12.2626 1630 | Vertex 1630 -2.76879 7.22136 -16.6397 1631 | Vertex 1631 -13.2315 7.47712 -14.0402 1632 | Vertex 1632 -10.4231 7.08887 -12.716 1633 | Vertex 1633 -21.2278 -6.85014 4.03542 1634 | Vertex 1634 -4.08162 -3.19593 11.6945 1635 | Vertex 1635 -11.9491 -7.22123 11.9073 1636 | Vertex 1636 4.59872 0.559968 -25.3885 1637 | Vertex 1637 -15.4528 -7.18304 6.40111 1638 | Vertex 1638 -2.77622 0.252004 -11.3553 1639 | Vertex 1639 -8.65091 1.80724 -8.21337 1640 | Vertex 1640 10.0085 -7.47089 -16.5719 1641 | Vertex 1641 -18.3647 -7.38755 7.83668 1642 | Vertex 1642 -3.11029 -3.8185 -12.3042 1643 | Vertex 1643 -9.04604 -2.29895 -7.97291 1644 | Vertex 1644 -15.5916 -6.97088 4.17522 1645 | Vertex 1645 -7.66085 -6.10123 -12.4699 1646 | Vertex 1646 -18.3138 -7.49723 3.86302 1647 | Vertex 1647 -10.9265 -5.09296 -8.08184 1648 | Vertex 1648 -12.0951 -6.27769 -8.76203 1649 | Vertex 1649 4.83794 2.27673 -25.0035 1650 | Vertex 1650 -5.37395 -7.39978 -19.2181 1651 | Vertex 1651 -13.8875 -7.49414 -13.1239 1652 | Vertex 1652 -15.4731 -7.09524 -14.2183 1653 | Vertex 1653 -10.8995 -5.86491 -20.383 1654 | Vertex 1654 -6.57805 -5.7773 -22.2781 1655 | Vertex 1655 -16.8785 -6.3184 -14.9285 1656 | Vertex 1656 -17.5921 -5.26152 -15.9585 1657 | Vertex 1657 -11.4241 -1.23525 -23.0229 1658 | Vertex 1658 -6.37819 -1.2026 -24.9149 1659 | Vertex 1659 -18.5391 -2.19342 -17.51 1660 | Vertex 1660 -18.5553 -0.47293 -17.9338 1661 | Vertex 1661 -21.4846 3.88392 -12.328 1662 | Vertex 1662 -18.3526 4.01394 -16.5088 1663 | Vertex 1663 -24.954 2.81529 -4.01613 1664 | Vertex 1664 -24.1003 4.37684 -4.14334 1665 | Vertex 1665 8.67483 2.18373 8.32012 1666 | Vertex 1666 5.33533 -3.94913 -24.1424 1667 | Vertex 1667 -21.3917 6.76468 -4.08628 1668 | Vertex 1668 -19.8362 7.32147 -4.07763 1669 | Vertex 1669 -9.13217 -4.95631 9.88012 1670 | Vertex 1670 -12.1611 7.38243 -12.6358 1671 | Vertex 1671 -18.3339 7.49743 -3.36351 1672 | Vertex 1672 -15.6507 6.96065 -3.87525 1673 | Vertex 1673 -12.5494 -3.80526 1.84249 1674 | Vertex 1674 -9.14219 4.1098 -9.01979 1675 | Vertex 1675 10.2208 -3.93559 -22.5237 1676 | Vertex 1676 17.4421 -5.43066 -15.8802 1677 | Vertex 1677 -13.382 -7.16481 9.93424 1678 | Vertex 1678 -9.02106 0.343294 -7.45292 1679 | Vertex 1679 -11.8638 2.03929 -1.61233 1680 | Vertex 1680 -13.0085 -6.09512 6.73792 1681 | Vertex 1681 14.5953 -4.01551 -19.8935 1682 | Vertex 1682 2.87701 0.827082 11.4003 1683 | Vertex 1683 -11.9574 -2.19196 -1.25391 1684 | Vertex 1684 9.77494 0.564604 -23.881 1685 | Vertex 1685 -13.5993 -6.10951 -5.42971 1686 | Vertex 1686 -11.6494 0.107568 1.22864 1687 | Vertex 1687 -14.0155 -5.5546 -0.416323 1688 | Vertex 1688 -15.2835 -6.52231 -0.00694731 1689 | Vertex 1689 14.2011 -1.19141 -21.4295 1690 | Vertex 1690 -15.6675 -7.39226 -12.4295 1691 | Vertex 1691 -19.0247 -7.48692 -2.32975 1692 | Vertex 1692 -20.722 -7.169 -1.87966 1693 | Vertex 1693 -20.8973 -5.73604 -10.2064 1694 | Vertex 1694 -18.4681 -5.61967 -14.3732 1695 | Vertex 1695 -22.3143 -6.38757 -2.23093 1696 | Vertex 1696 -23.6244 -5.25262 -2.54588 1697 | Vertex 1697 -22.7797 -1.08232 -11.9913 1698 | Vertex 1698 -19.7891 -1.03923 -16.4931 1699 | Vertex 1699 -25.2699 -2.25916 -3.21887 1700 | Vertex 1700 -25.5554 -0.573805 -3.53661 1701 | Vertex 1701 -24.708 3.7369 2.78972 1702 | Vertex 1702 -24.6735 3.84873 -2.41065 1703 | Vertex 1703 -22.5904 2.74959 11.4069 1704 | Vertex 1704 -21.9981 4.29746 10.8183 1705 | Vertex 1705 -20.8906 7.11332 1.79059 1706 | Vertex 1706 -20.1176 7.3285 -2.48917 1707 | Vertex 1707 -19.7205 6.73513 9.36294 1708 | Vertex 1708 -18.4435 7.30287 8.53958 1709 | Vertex 1709 14.8627 -6.23265 0.224495 1710 | Vertex 1710 -16.865 7.28169 -2.49168 1711 | Vertex 1711 -16.8383 7.49342 8.26297 1712 | Vertex 1712 -15.1984 7.03384 5.89496 1713 | Vertex 1713 -10.2931 -4.58162 8.2276 1714 | Vertex 1714 -16.293 7.19917 4.01685 1715 | Vertex 1715 -11.2326 -3.04453 5.04005 1716 | Vertex 1716 16.9971 -4.44058 -17.5145 1717 | Vertex 1717 -11.6295 -1.38301 2.07706 1718 | Vertex 1718 -11.6877 0.485423 -0.811147 1719 | Vertex 1719 -10.5134 2.09168 5.76016 1720 | Vertex 1720 -9.71543 4.3572 8.67908 1721 | Vertex 1721 13.5528 -5.06275 0.60158 1722 | Vertex 1722 -12.5379 -3.55037 -0.464345 1723 | Vertex 1723 -10.3002 -1.9558 6.05435 1724 | Vertex 1724 -25.328 2.13861 3.13703 1725 | Vertex 1725 -14.3986 -6.20187 3.37887 1726 | Vertex 1726 17.7781 -2.88619 -17.918 1727 | Vertex 1727 -11.626 -5.44453 7.62252 1728 | Vertex 1728 -12.3931 -6.45574 8.74267 1729 | Vertex 1729 8.55665 -7.13561 -19.0682 1730 | Vertex 1730 -20.0186 -7.38228 -0.568938 1731 | Vertex 1731 -16.8511 -7.48236 9.23858 1732 | Vertex 1732 -17.8817 -7.15992 10.6904 1733 | Vertex 1733 -22.655 -5.94785 4.09841 1734 | Vertex 1734 -23.3369 -5.66631 -0.768063 1735 | Vertex 1735 -19.3479 -6.37501 11.3794 1736 | Vertex 1736 -20.6095 -5.22363 11.8851 1737 | Vertex 1737 -25.4122 -1.30183 3.72402 1738 | Vertex 1738 -25.674 -1.17454 -1.63504 1739 | Vertex 1739 -22.347 -2.24261 12.2427 1740 | Vertex 1740 -22.7636 -0.585425 12.1363 1741 | Vertex 1741 -18.2676 3.90915 16.7011 1742 | Vertex 1742 -21.4093 3.812 12.5477 1743 | Vertex 1743 -11.5747 2.96179 22.3903 1744 | Vertex 1744 -11.4279 4.50962 21.5071 1745 | Vertex 1745 -15.733 7.25472 13.1898 1746 | Vertex 1746 -17.633 7.32765 10.0052 1747 | Vertex 1747 -10.3078 6.93068 18.8046 1748 | Vertex 1748 -4.40728 -1.0799 25.364 1749 | Vertex 1749 -10.8604 0.931331 4.4749 1750 | Vertex 1750 -15.4148 7.33264 7.81514 1751 | Vertex 1751 -9.27763 7.43922 17.2871 1752 | Vertex 1752 -8.69315 7.21 14.3941 1753 | Vertex 1753 -12.0577 2.6765 1.72206 1754 | Vertex 1754 -11.4614 4.29442 6.07828 1755 | Vertex 1755 -13.7304 6.3107 5.94007 1756 | Vertex 1756 14.5108 -7.30581 -14.24 1757 | Vertex 1757 -16.7085 7.17821 -0.0724707 1758 | Vertex 1758 -9.90368 0.664803 6.30525 1759 | Vertex 1759 -5.1631 2.27422 10.8835 1760 | Vertex 1760 -14.4473 6.07358 2.25455 1761 | Vertex 1761 13.3713 -6.04268 5.75004 1762 | Vertex 1762 -10.2138 -3.27422 7.07142 1763 | Vertex 1763 -4.74778 -1.83787 10.9402 1764 | Vertex 1764 -12.237 3.67328 3.05159 1765 | Vertex 1765 -9.63109 -6.10156 11.0289 1766 | Vertex 1766 -15.1694 6.45892 0.331813 1767 | Vertex 1767 -4.89495 -5.39286 12.9479 1768 | Vertex 1768 -4.857 -6.42089 14.3034 1769 | Vertex 1769 8.42373 -4.43125 -22.9227 1770 | Vertex 1770 -16.5482 -7.38367 11.2722 1771 | Vertex 1771 -8.14185 -7.48927 17.3319 1772 | Vertex 1772 -8.1913 -7.16705 19.1331 1773 | Vertex 1773 -16.1407 -5.69406 16.8105 1774 | Vertex 1774 -19.3627 -5.61981 13.1439 1775 | Vertex 1775 -9.01714 -6.37762 20.5496 1776 | Vertex 1776 -9.76241 -5.2156 21.7026 1777 | Vertex 1777 -18.4097 -1.07114 17.998 1778 | Vertex 1778 -21.7543 -1.11675 13.7617 1779 | Vertex 1779 -10.9437 -2.16591 23.0458 1780 | Vertex 1780 -11.3286 -0.456512 23.1845 1781 | Vertex 1781 -5.11898 3.90643 24.2212 1782 | Vertex 1782 -9.94761 4.02408 22.5832 1783 | Vertex 1783 3.77602 2.96881 24.9175 1784 | Vertex 1784 3.35156 4.53317 24.1057 1785 | Vertex 1785 -4.93031 7.28067 19.8317 1786 | Vertex 1786 -8.4648 7.16156 19.0286 1787 | Vertex 1787 2.73236 6.94723 21.2337 1788 | Vertex 1788 4.84379 -5.20812 23.3063 1789 | Vertex 1789 -13.8212 5.38847 0.707008 1790 | Vertex 1790 -8.11363 7.44249 15.9703 1791 | Vertex 1791 2.84533 7.44862 19.3137 1792 | Vertex 1792 1.62861 7.17742 16.6181 1793 | Vertex 1793 -16.3908 7.37586 11.4645 1794 | Vertex 1794 -5.73104 4.49209 11.8065 1795 | Vertex 1795 12.033 -5.71444 -19.9453 1796 | Vertex 1796 14.5978 -6.81226 -16.0219 1797 | Vertex 1797 -25.5722 0.434571 3.45451 1798 | Vertex 1798 -4.32925 0.81274 10.9315 1799 | Face 1 589 571 537 1800 | Face 2 919 45 900 1801 | Face 3 25 1556 899 1802 | Face 4 1497 1494 300 1803 | Face 5 1244 993 174 1804 | Face 6 1439 411 898 1805 | Face 7 907 876 1476 1806 | Face 8 1100 1463 299 1807 | Face 9 83 880 1480 1808 | Face 10 7 432 100 1809 | Face 11 444 884 1484 1810 | Face 12 432 1460 860 1811 | Face 13 913 111 1488 1812 | Face 14 27 44 19 1813 | Face 15 892 616 315 1814 | Face 16 916 529 1129 1815 | Face 17 990 1390 795 1816 | Face 18 27 675 85 1817 | Face 19 485 23 631 1818 | Face 20 1485 6 894 1819 | Face 21 321 504 1104 1820 | Face 22 1098 1499 297 1821 | Face 23 323 508 1108 1822 | Face 24 36 188 988 1823 | Face 25 512 1112 325 1824 | Face 26 467 1456 856 1825 | Face 27 927 516 1116 1826 | Face 28 385 19 1670 1827 | Face 29 1519 520 1120 1828 | Face 30 1096 37 295 1829 | Face 31 1523 524 1124 1830 | Face 32 1266 1505 511 1831 | Face 33 933 131 1128 1832 | Face 34 36 675 1270 1833 | Face 35 335 532 1132 1834 | Face 36 936 569 1169 1835 | Face 37 337 536 1136 1836 | Face 38 1670 19 44 1837 | Face 39 339 540 1140 1838 | Face 40 23 94 138 1839 | Face 41 341 544 1144 1840 | Face 42 1642 1204 973 1841 | Face 43 343 548 1148 1842 | Face 44 637 1432 485 1843 | Face 45 552 1152 345 1844 | Face 46 1318 1315 505 1845 | Face 47 947 556 1156 1846 | Face 48 903 427 868 1847 | Face 49 1559 560 1160 1848 | Face 50 407 905 867 1849 | Face 51 1563 564 1164 1850 | Face 52 1465 1462 284 1851 | Face 53 953 151 1168 1852 | Face 54 126 676 1007 1853 | Face 55 355 572 1172 1854 | Face 56 956 609 1209 1855 | Face 57 357 576 1176 1856 | Face 58 1084 1471 283 1857 | Face 59 359 580 1180 1858 | Face 60 390 674 92 1859 | Face 61 361 584 1184 1860 | Face 62 674 1428 828 1861 | Face 63 363 588 1188 1862 | Face 64 1438 1426 501 1863 | Face 65 592 1192 365 1864 | Face 66 901 16 864 1865 | Face 67 967 596 1196 1866 | Face 68 430 1482 863 1867 | Face 69 1599 600 1200 1868 | Face 70 1461 1498 282 1869 | Face 71 1603 604 1204 1870 | Face 72 871 389 862 1871 | Face 73 973 603 1208 1872 | Face 74 1082 1467 281 1873 | Face 75 612 519 375 1874 | Face 76 976 649 1249 1875 | Face 77 377 39 1216 1876 | Face 78 412 714 91 1877 | Face 79 379 620 1220 1878 | Face 80 714 1424 824 1879 | Face 81 381 624 1224 1880 | Face 82 26 25 897 1881 | Face 83 383 628 803 1882 | Face 84 1099 472 860 1883 | Face 85 632 1232 385 1884 | Face 86 452 1085 859 1885 | Face 87 987 636 1236 1886 | Face 88 1457 1454 280 1887 | Face 89 1639 640 1240 1888 | Face 90 924 717 858 1889 | Face 91 1643 644 1244 1890 | Face 92 1080 1423 279 1891 | Face 93 993 1288 1248 1892 | Face 94 447 754 90 1893 | Face 95 652 1252 395 1894 | Face 96 996 689 1289 1895 | Face 97 397 656 1256 1896 | Face 98 754 1420 820 1897 | Face 99 399 660 1260 1898 | Face 100 465 29 158 1899 | Face 101 401 664 1264 1900 | Face 102 1602 1164 953 1901 | Face 103 403 668 1268 1902 | Face 104 76 187 988 1903 | Face 105 158 29 84 1904 | Face 106 445 33 1790 1905 | Face 107 1007 676 1276 1906 | Face 108 1025 434 854 1907 | Face 109 1679 680 1280 1908 | Face 110 1078 1459 277 1909 | Face 111 1683 684 1284 1910 | Face 112 1562 1124 933 1911 | Face 113 413 1328 1725 1912 | Face 114 794 1416 816 1913 | Face 115 692 1292 415 1914 | Face 116 1016 729 1329 1915 | Face 117 417 696 1296 1916 | Face 118 1790 33 74 1917 | Face 119 419 700 1300 1918 | Face 120 1076 471 275 1919 | Face 121 421 704 1304 1920 | Face 122 425 35 1750 1921 | Face 123 423 708 1308 1922 | Face 124 85 44 27 1923 | Face 125 1522 1484 913 1924 | Face 126 1635 732 1677 1925 | Face 127 1027 716 1316 1926 | Face 128 560 1559 130 1927 | Face 129 1719 720 1320 1928 | Face 130 1116 520 110 1929 | Face 131 1723 724 1324 1930 | Face 132 971 1392 465 1931 | Face 133 433 1669 1765 1932 | Face 134 409 407 865 1933 | Face 135 732 1332 435 1934 | Face 136 1036 769 1369 1935 | Face 137 437 736 1336 1936 | Face 138 1083 728 828 1937 | Face 139 439 740 1340 1938 | Face 140 710 1185 827 1939 | Face 141 441 744 1344 1940 | Face 142 1425 1422 264 1941 | Face 143 949 248 1390 1942 | Face 144 85 95 636 1943 | Face 145 114 130 1157 1944 | Face 146 1433 517 910 1945 | Face 147 1047 756 1356 1946 | Face 148 681 994 82 1947 | Face 149 1759 760 1360 1948 | Face 150 994 1388 788 1949 | Face 151 1763 764 1364 1950 | Face 152 431 430 861 1951 | Face 153 453 1199 1594 1952 | Face 154 1081 450 824 1953 | Face 155 772 1372 455 1954 | Face 156 1056 809 1409 1955 | Face 157 457 776 1376 1956 | Face 158 750 1005 823 1957 | Face 159 459 780 1380 1958 | Face 160 1421 1458 262 1959 | Face 161 461 784 1384 1960 | Face 162 958 677 822 1961 | Face 163 761 1376 424 1962 | Face 164 1062 1427 261 1963 | Face 165 1677 216 726 1964 | Face 166 721 1031 81 1965 | Face 167 1067 796 1396 1966 | Face 168 1031 1384 784 1967 | Face 169 1345 800 1400 1968 | Face 170 454 452 857 1969 | Face 171 1431 804 1404 1970 | Face 172 1079 808 820 1971 | Face 173 473 870 1330 1972 | Face 174 790 424 819 1973 | Face 175 812 1412 475 1974 | Face 176 1076 849 1449 1975 | Face 177 477 816 1416 1976 | Face 178 1417 1414 260 1977 | Face 179 479 820 1420 1978 | Face 180 1228 1032 818 1979 | Face 181 481 824 1424 1980 | Face 182 1060 1383 259 1981 | Face 183 1213 1077 443 1982 | Face 184 761 1069 80 1983 | Face 185 1635 68 1193 1984 | Face 186 1069 1380 780 1985 | Face 187 1087 836 1436 1986 | Face 188 564 132 1598 1987 | Face 189 1665 840 1440 1988 | Face 190 49 129 1157 1989 | Face 191 1410 844 1444 1990 | Face 192 95 187 1236 1991 | Face 193 493 514 1761 1992 | Face 194 1750 35 64 1993 | Face 195 852 1452 495 1994 | Face 196 1096 889 1489 1995 | Face 197 497 856 1456 1996 | Face 198 1788 757 814 1997 | Face 199 499 860 1460 1998 | Face 200 1058 1419 257 1999 | Face 201 126 188 1270 2000 | Face 202 1313 1107 1102 2001 | Face 203 554 1138 1103 2002 | Face 204 1092 1376 776 2003 | Face 205 49 132 1163 2004 | Face 206 1106 1226 511 2005 | Face 207 1415 1102 1107 2006 | Face 208 1056 807 255 2007 | Face 209 1109 306 906 2008 | Face 210 305 63 1510 2009 | Face 211 929 520 1116 2010 | Face 212 512 325 1511 2011 | Face 213 676 54 1766 2012 | Face 214 950 74 33 2013 | Face 215 65 129 1120 2014 | Face 216 1116 110 927 2015 | Face 217 107 131 1124 2016 | Face 218 53 405 1706 2017 | Face 219 1399 1352 445 2018 | Face 220 713 710 825 2019 | Face 221 1063 1050 788 2020 | Face 222 1029 1781 787 2021 | Face 223 558 189 1240 2022 | Face 224 1385 1382 244 2023 | Face 225 187 640 1236 2024 | Face 226 1044 1391 243 2025 | Face 227 1010 1446 72 2026 | Face 228 1128 333 933 2027 | Face 229 1446 1348 748 2028 | Face 230 556 24 1402 2029 | Face 231 753 750 821 2030 | Face 232 335 935 532 2031 | Face 233 1061 768 784 2032 | Face 234 518 1139 1134 2033 | Face 235 1135 679 530 2034 | Face 236 1052 1748 783 2035 | Face 237 1381 1418 242 2036 | Face 238 1386 1103 1138 2037 | Face 239 639 1134 1139 2038 | Face 240 1784 1009 782 2039 | Face 241 1042 1387 241 2040 | Face 242 247 1147 1142 2041 | Face 243 1689 1178 1143 2042 | Face 244 1034 1515 71 2043 | Face 245 1515 1344 744 2044 | Face 246 1146 147 551 2045 | Face 247 364 1142 1147 2046 | Face 248 793 790 817 2047 | Face 249 1149 326 926 2048 | Face 250 1059 1119 780 2049 | Face 251 1339 1018 1606 2050 | Face 252 552 345 1551 2051 | Face 253 1090 1773 779 2052 | Face 254 1377 1374 240 2053 | Face 255 1780 1517 778 2054 | Face 256 1156 130 947 2055 | Face 257 1040 1343 239 2056 | Face 258 1510 63 4 2057 | Face 259 1071 1555 70 2058 | Face 260 1555 1340 740 2059 | Face 261 79 128 1150 2060 | Face 262 79 556 947 2061 | Face 263 89 14 1550 2062 | Face 264 559 192 1283 2063 | Face 265 137 573 1179 2064 | Face 266 1776 1070 774 2065 | Face 267 1038 1379 237 2066 | Face 268 1168 353 953 2067 | Face 269 126 54 676 2068 | Face 270 89 555 127 2069 | Face 271 1595 1336 736 2070 | Face 272 355 955 572 2071 | Face 273 99 128 928 2072 | Face 274 1681 1179 1174 2073 | Face 275 1175 1640 570 2074 | Face 276 1036 1115 235 2075 | Face 277 1765 1371 1193 2076 | Face 278 314 1143 1178 2077 | Face 279 1795 1174 1179 2078 | Face 280 126 1270 1672 2079 | Face 281 99 555 1150 2080 | Face 282 1546 1187 1182 2081 | Face 283 965 1218 1183 2082 | Face 284 1557 1736 1604 2083 | Face 285 1677 732 1035 2084 | Face 286 1186 1448 591 2085 | Face 287 1628 1182 1187 2086 | Face 288 1793 1312 425 2087 | Face 289 1189 346 946 2088 | Face 290 1030 1029 785 2089 | Face 291 114 929 928 2090 | Face 292 592 365 1591 2091 | Face 293 1043 1524 748 2092 | Face 294 1509 1741 747 2093 | Face 295 1486 1342 224 2094 | Face 296 1196 150 967 2095 | Face 297 135 185 986 2096 | Face 298 135 1270 675 2097 | Face 299 1024 1351 223 2098 | Face 300 1475 178 62 2099 | Face 301 178 1308 708 2100 | Face 302 1054 1052 781 2101 | Face 303 127 14 89 2102 | Face 304 1041 1074 744 2103 | Face 305 1549 1777 743 2104 | Face 306 1341 1378 222 2105 | Face 307 1744 1473 742 2106 | Face 308 1208 373 973 2107 | Face 309 1022 1347 221 2108 | Face 310 127 134 516 2109 | Face 311 1520 648 61 2110 | Face 312 375 975 612 2111 | Face 313 648 1304 704 2112 | Face 314 945 1219 1214 2113 | Face 315 1215 1154 610 2114 | Face 316 1091 1090 777 2115 | Face 317 1039 1604 740 2116 | Face 318 1609 1183 1218 2117 | Face 319 1073 1214 1219 2118 | Face 320 1589 1733 739 2119 | Face 321 1337 1334 220 2120 | Face 322 829 1227 1222 2121 | Face 323 470 1258 1223 2122 | Face 324 1740 278 738 2123 | Face 325 1020 1303 219 2124 | Face 326 1765 68 433 2125 | Face 327 883 1222 1227 2126 | Face 328 1560 1239 60 2127 | Face 329 1229 366 966 2128 | Face 330 1239 1300 700 2129 | Face 331 839 1229 786 2130 | Face 332 385 838 632 2131 | Face 333 134 929 1116 2132 | Face 334 1233 772 1055 2133 | Face 335 559 189 1277 2134 | Face 336 1236 1674 987 2135 | Face 337 1233 236 766 2136 | Face 338 155 185 1232 2137 | Face 339 1736 1557 734 2138 | Face 340 1018 1339 217 2139 | Face 341 155 671 1271 2140 | Face 342 796 84 633 2141 | Face 343 684 192 1718 2142 | Face 344 154 562 565 2143 | Face 345 1016 1601 215 2144 | Face 346 93 1440 97 2145 | Face 347 52 668 349 2146 | Face 348 1248 393 993 2147 | Face 349 154 131 1161 2148 | Face 350 1146 1149 147 2149 | Face 351 219 737 1020 2150 | Face 352 395 995 652 2151 | Face 353 79 24 556 2152 | Face 354 436 1259 1254 2153 | Face 355 1255 593 650 2154 | Face 356 1272 405 53 2155 | Face 357 1513 1509 745 2156 | Face 358 878 1223 1258 2157 | Face 359 531 1254 1259 2158 | Face 360 1023 73 708 2159 | Face 361 1370 1701 707 2160 | Face 362 214 1267 1262 2161 | Face 363 830 1298 1263 2162 | Face 364 1305 1302 204 2163 | Face 365 349 1003 175 2164 | Face 366 270 468 258 2165 | Face 367 356 1262 1267 2166 | Face 368 1004 1311 203 2167 | Face 369 1269 386 986 2168 | Face 370 115 166 52 2169 | Face 371 234 1269 1271 2170 | Face 372 79 1150 1552 2171 | Face 373 166 1268 668 2172 | Face 374 1553 1549 741 2173 | Face 375 1021 1564 704 2174 | Face 376 1276 190 1007 2175 | Face 377 1797 1737 703 2176 | Face 378 76 190 1277 2177 | Face 379 1301 1338 202 2178 | Face 380 1704 123 702 2179 | Face 381 1002 1307 201 2180 | Face 382 238 309 51 2181 | Face 383 1661 254 194 2182 | Face 384 309 1264 664 2183 | Face 385 1593 1589 737 2184 | Face 386 1019 59 700 2185 | Face 387 797 1693 699 2186 | Face 388 1262 1265 214 2187 | Face 389 1297 1294 200 2188 | Face 390 167 125 926 2189 | Face 391 1700 316 698 2190 | Face 392 415 1015 692 2191 | Face 393 1000 1263 199 2192 | Face 394 930 1299 1294 2193 | Face 395 13 1293 69 2194 | Face 396 1012 392 50 2195 | Face 397 392 1260 660 2196 | Face 398 336 1263 1298 2197 | Face 399 43 1294 1299 2198 | Face 400 167 1150 555 2199 | Face 401 1239 1560 1589 2200 | Face 402 1194 1307 1302 2201 | Face 403 1566 1338 1303 2202 | Face 404 207 125 1112 2203 | Face 405 97 289 1483 2204 | Face 406 1155 772 1233 2205 | Face 407 218 1302 1307 2206 | Face 408 1696 1094 694 2207 | Face 409 1309 406 1006 2208 | Face 410 998 1299 197 2209 | Face 411 1450 1309 1311 2210 | Face 412 207 551 147 2211 | Face 413 1236 640 1674 2212 | Face 414 509 1256 656 2213 | Face 415 1303 1020 1566 2214 | Face 416 1316 1754 1027 2215 | Face 417 996 69 195 2216 | Face 418 1271 984 234 2217 | Face 419 1554 1705 203 2218 | Face 420 680 1679 190 2219 | Face 421 22 548 327 2220 | Face 422 278 1740 1564 2221 | Face 423 803 194 254 2222 | Face 424 327 943 227 2223 | Face 425 632 106 671 2224 | Face 426 1290 1370 705 2225 | Face 427 1003 349 668 2226 | Face 428 183 665 984 2227 | Face 429 254 1661 667 2228 | Face 430 1334 1337 1561 2229 | Face 431 1265 1262 184 2230 | Face 432 435 1035 732 2231 | Face 433 683 191 1244 2232 | Face 434 1561 1339 1334 2233 | Face 435 1641 1333 1601 2234 | Face 436 984 1271 183 2235 | Face 437 194 803 42 2236 | Face 438 198 1303 1338 2237 | Face 439 1606 1334 1339 2238 | Face 440 468 268 1087 2239 | Face 441 1724 1797 701 2240 | Face 442 1479 1347 1342 2241 | Face 443 1089 1378 1343 2242 | Face 444 1001 896 664 2243 | Face 445 367 1697 663 2244 | Face 446 1026 1351 1349 2245 | Face 447 1526 1342 1347 2246 | Face 448 1261 1298 182 2247 | Face 449 1349 426 1026 2248 | Face 450 1664 175 662 2249 | Face 451 1349 1351 1024 2250 | Face 452 1541 267 233 2251 | Face 453 982 1267 181 2252 | Face 454 329 866 41 2253 | Face 455 866 1224 624 2254 | Face 456 1356 1794 1047 2255 | Face 457 712 797 697 2256 | Face 458 51 664 896 2257 | Face 459 999 523 660 2258 | Face 460 476 1653 659 2259 | Face 461 1257 1254 180 2260 | Face 462 1660 869 658 2261 | Face 463 896 1001 316 2262 | Face 464 980 1223 179 2263 | Face 465 416 895 40 2264 | Face 466 895 1220 620 2265 | Face 467 990 245 1046 2266 | Face 468 682 1287 1288 2267 | Face 469 1733 1589 1560 2268 | Face 470 1604 1039 1557 2269 | Face 471 549 519 655 2270 | Face 472 455 1055 772 2271 | Face 473 1155 78 848 2272 | Face 474 1072 1379 1374 2273 | Face 475 1166 1373 1115 2274 | Face 476 1656 396 654 2275 | Face 477 118 800 250 2276 | Face 478 1521 1343 1378 2277 | Face 479 1122 1374 1379 2278 | Face 480 1697 367 329 2279 | Face 481 1163 132 1161 2280 | Face 482 1011 1387 1382 2281 | Face 483 771 1418 1383 2282 | Face 484 70 740 1604 2283 | Face 485 976 1255 655 2284 | Face 486 1046 1391 1389 2285 | Face 487 1051 1382 1387 2286 | Face 488 1273 233 267 2287 | Face 489 1389 446 1046 2288 | Face 490 1298 1261 336 2289 | Face 491 1014 1389 1391 2290 | Face 492 221 741 1022 2291 | Face 493 648 1520 1549 2292 | Face 494 949 1390 1792 2293 | Face 495 1347 1022 1526 2294 | Face 496 1396 118 1067 2295 | Face 497 1434 1192 592 2296 | Face 498 709 191 1281 2297 | Face 499 274 254 665 2298 | Face 500 983 879 628 2299 | Face 501 843 1621 627 2300 | Face 502 1225 1222 164 2301 | Face 503 719 682 1722 2302 | Face 504 1627 838 1631 2303 | Face 505 964 786 163 2304 | Face 506 826 1508 32 2305 | Face 507 1508 1188 588 2306 | Face 508 175 1664 349 2307 | Face 509 376 367 661 2308 | Face 510 21 544 1684 2309 | Face 511 981 456 624 2310 | Face 512 475 1075 812 2311 | Face 513 887 1657 623 2312 | Face 514 767 1419 1414 2313 | Face 515 847 1413 807 2314 | Face 516 1221 1258 162 2315 | Face 517 1624 815 622 2316 | Face 518 1049 1383 1418 2317 | Face 519 811 1414 1419 2318 | Face 520 962 1227 161 2319 | Face 521 874 1588 31 2320 | Face 522 687 1427 1422 2321 | Face 523 451 1458 1423 2322 | Face 524 1588 1184 584 2323 | Face 525 496 476 657 2324 | Face 526 1066 1064 691 2325 | Face 527 731 1422 1427 2326 | Face 528 979 1053 620 2327 | Face 529 691 466 1066 2328 | Face 530 972 1613 619 2329 | Face 531 1193 68 1765 2330 | Face 532 1473 1744 1524 2331 | Face 533 1217 1214 160 2332 | Face 534 1620 1596 618 2333 | Face 535 960 1183 159 2334 | Face 536 1436 258 1087 2335 | Face 537 931 1666 30 2336 | Face 538 1267 982 356 2337 | Face 539 1666 1180 580 2338 | Face 540 719 1673 1328 2339 | Face 541 1684 941 294 2340 | Face 542 1093 1013 615 2341 | Face 543 866 329 367 2342 | Face 544 290 488 1514 2343 | Face 545 1616 925 614 2344 | Face 546 670 28 1158 2345 | Face 547 1283 192 1281 2346 | Face 548 181 661 982 2347 | Face 549 1013 1176 576 2348 | Face 550 1378 1341 1521 2349 | Face 551 1577 369 307 2350 | Face 552 495 1095 852 2351 | Face 553 956 1215 615 2352 | Face 554 449 1459 1454 2353 | Face 555 494 1453 471 2354 | Face 556 801 1625 786 2355 | Face 557 50 660 523 2356 | Face 558 727 1423 1458 2357 | Face 559 474 1454 1459 2358 | Face 560 1178 1141 314 2359 | Face 561 1189 1186 586 2360 | Face 562 391 1467 1462 2361 | Face 563 17 1498 1463 2362 | Face 564 864 301 901 2363 | Face 565 1777 1549 1520 2364 | Face 566 1086 1471 1469 2365 | Face 567 429 1462 1467 2366 | Face 568 868 303 903 2367 | Face 569 1469 486 1086 2368 | Face 570 146 1152 552 2369 | Face 571 394 1469 1471 2370 | Face 572 1074 1041 1517 2371 | Face 573 855 843 625 2372 | Face 574 963 1626 588 2373 | Face 575 1569 1581 587 2374 | Face 576 1476 1514 907 2375 | Face 577 138 94 601 2376 | Face 578 1114 644 1678 2377 | Face 579 1587 1548 586 2378 | Face 580 488 288 907 2379 | Face 581 1529 213 22 2380 | Face 582 213 1148 548 2381 | Face 583 523 999 396 2382 | Face 584 888 887 621 2383 | Face 585 961 952 584 2384 | Face 586 1636 1617 583 2385 | Face 587 1181 1218 142 2386 | Face 588 1488 313 913 2387 | Face 589 1584 1516 582 2388 | Face 590 227 1544 327 2389 | Face 591 942 1187 141 2390 | Face 592 315 915 892 2391 | Face 593 1600 287 21 2392 | Face 594 15 1499 1494 2393 | Face 595 66 1493 37 2394 | Face 596 9 317 917 2395 | Face 597 287 1144 544 2396 | Face 598 414 1463 1498 2397 | Face 599 46 1494 1499 2398 | Face 600 900 319 919 2399 | Face 601 985 972 617 2400 | Face 602 871 885 1502 2401 | Face 603 921 1542 1503 2402 | Face 604 959 1769 580 2403 | Face 605 1716 1573 579 2404 | Face 606 711 751 903 2405 | Face 607 923 1314 1507 2406 | Face 608 1177 1174 140 2407 | Face 609 1580 294 578 2408 | Face 610 1510 486 370 2409 | Face 611 1511 325 1550 2410 | Face 612 1512 1110 1247 2411 | Face 613 940 1143 139 2412 | Face 614 1676 469 20 2413 | Face 615 469 1140 540 2414 | Face 616 1147 922 364 2415 | Face 617 684 1683 192 2416 | Face 618 957 1610 576 2417 | Face 619 1519 1120 1558 2418 | Face 620 1558 112 991 2419 | Face 621 1796 1756 575 2420 | Face 622 237 773 1038 2421 | Face 623 1523 1124 1562 2422 | Face 624 1562 522 872 2423 | Face 625 1576 1675 574 2424 | Face 626 631 138 651 2425 | Face 627 1653 476 416 2426 | Face 628 1528 526 789 2427 | Face 629 1756 1136 536 2428 | Face 630 1572 1597 1530 2429 | Face 631 935 1570 1531 2430 | Face 632 71 744 1074 2431 | Face 633 936 1175 575 2432 | Face 634 1485 1495 1534 2433 | Face 635 937 1574 1535 2434 | Face 636 1492 1585 591 2435 | Face 637 1254 1257 436 2436 | Face 638 1439 1455 1538 2437 | Face 639 939 1578 1539 2438 | Face 640 1335 307 369 2439 | Face 641 1149 1146 546 2440 | Face 642 1504 1503 1542 2441 | Face 643 941 1582 1543 2442 | Face 644 223 745 1024 2443 | Face 645 1205 1112 512 2444 | Face 646 869 1660 456 2445 | Face 647 943 253 1547 2446 | Face 648 1586 1569 585 2447 | Face 649 943 327 548 2448 | Face 650 1550 306 1511 2449 | Face 651 1551 345 1590 2450 | Face 652 1552 1150 167 2451 | Face 653 267 1541 547 2452 | Face 654 949 84 796 2453 | Face 655 1547 253 546 2454 | Face 656 178 1475 1509 2455 | Face 657 258 840 270 2456 | Face 658 233 1273 12 2457 | Face 659 1559 1160 1598 2458 | Face 660 1598 132 49 2459 | Face 661 1273 1108 508 2460 | Face 662 1649 1636 581 2461 | Face 663 1563 1164 1602 2462 | Face 664 1602 562 154 2463 | Face 665 941 1684 544 2464 | Face 666 369 1577 543 2465 | Face 667 1141 1178 122 2466 | Face 668 1568 566 792 2467 | Face 669 1544 227 542 2468 | Face 670 590 1531 1570 2469 | Face 671 955 1610 1571 2470 | Face 672 922 1147 121 2471 | Face 673 307 1335 11 2472 | Face 674 1536 1535 1574 2473 | Face 675 957 1614 1575 2474 | Face 676 1335 1104 504 2475 | Face 677 1726 1716 577 2476 | Face 678 1540 1539 1578 2477 | Face 679 959 1618 1579 2478 | Face 680 939 638 540 2479 | Face 681 571 1533 539 2480 | Face 682 1544 1543 1582 2481 | Face 683 961 1622 1583 2482 | Face 684 1137 1134 120 2483 | Face 685 1540 1346 538 2484 | Face 686 1223 980 470 2485 | Face 687 963 1548 1587 2486 | Face 688 920 1103 119 2487 | Face 689 492 5 10 2488 | Face 690 1590 326 1551 2489 | Face 691 1591 365 1630 2490 | Face 692 1592 1190 1478 2491 | Face 693 5 1500 900 2492 | Face 694 466 691 464 2493 | Face 695 937 1570 536 2494 | Face 696 121 541 922 2495 | Face 697 643 616 535 2496 | Face 698 1646 729 1016 2497 | Face 699 1599 1200 1638 2498 | Face 700 1638 152 1319 2499 | Face 701 1536 487 534 2500 | Face 702 158 84 1792 2501 | Face 703 1603 1204 1642 2502 | Face 704 1642 602 1242 2503 | Face 705 895 416 476 2504 | Face 706 1024 1486 1349 2505 | Face 707 20 540 638 2506 | Face 708 1608 606 1206 2507 | Face 709 916 1135 535 2508 | Face 710 1729 1571 1610 2509 | Face 711 975 1650 1611 2510 | Face 712 207 1545 551 2511 | Face 713 642 524 1558 2512 | Face 714 1576 1575 1614 2513 | Face 715 977 1654 1615 2514 | Face 716 638 939 487 2515 | Face 717 1109 1106 506 2516 | Face 718 1580 1579 1618 2517 | Face 719 979 1658 1619 2518 | Face 720 1342 1486 1479 2519 | Face 721 354 1472 305 2520 | Face 722 1584 1583 1622 2521 | Face 723 981 1662 1623 2522 | Face 724 273 267 545 2523 | Face 725 923 1406 508 2524 | Face 726 1212 686 1291 2525 | Face 727 983 838 1627 2526 | Face 728 1315 1501 507 2527 | Face 729 1105 1102 104 2528 | Face 730 1630 346 1591 2529 | Face 731 1631 385 1670 2530 | Face 732 1632 1230 798 2531 | Face 733 1507 1314 506 2532 | Face 734 1669 1202 1367 2533 | Face 735 1306 387 2 2534 | Face 736 1533 571 492 2535 | Face 737 387 1468 868 2536 | Face 738 372 369 541 2537 | Face 739 1639 1240 1678 2538 | Face 740 1678 172 706 2539 | Face 741 921 521 504 2540 | Face 742 1426 1537 503 2541 | Face 743 1643 1244 174 2542 | Face 744 1134 1137 518 2543 | Face 745 1101 1138 102 2544 | Face 746 1504 1295 502 2545 | Face 747 902 1107 101 2546 | Face 748 1648 646 629 2547 | Face 749 1375 410 1 2548 | Face 750 1612 1611 1650 2549 | Face 751 995 1690 1651 2550 | Face 752 410 1464 864 2551 | Face 753 16 1538 1 2552 | Face 754 1616 1615 1654 2553 | Face 755 997 1694 1655 2554 | Face 756 1538 919 319 2555 | Face 757 944 924 480 2556 | Face 758 1620 1619 1658 2557 | Face 759 999 1698 1659 2558 | Face 760 1460 412 499 2559 | Face 761 45 1534 10 2560 | Face 762 1624 1623 1662 2561 | Face 763 1001 1702 1663 2562 | Face 764 1534 917 317 2563 | Face 765 1045 1025 478 2564 | Face 766 179 657 980 2565 | Face 767 1003 1706 1667 2566 | Face 768 1456 7 497 2567 | Face 769 917 1530 9 2568 | Face 770 1670 366 1631 2569 | Face 771 1671 405 1710 2570 | Face 772 1672 1270 135 2571 | Face 773 1530 915 315 2572 | Face 774 1173 1133 850 2573 | Face 775 1452 467 495 2574 | Face 776 1741 1509 1475 2575 | Face 777 1159 236 1369 2576 | Face 778 29 465 1392 2577 | Face 779 1679 1280 1718 2578 | Face 780 1718 192 559 2579 | Face 781 607 265 835 2580 | Face 782 1428 637 828 2581 | Face 783 1683 1284 1722 2582 | Face 784 1722 682 709 2583 | Face 785 427 1502 2 2584 | Face 786 1502 901 301 2585 | Face 787 978 958 462 2586 | Face 788 1688 686 1212 2587 | Face 789 1424 390 481 2588 | Face 790 1652 1651 1690 2589 | Face 791 1015 1730 1691 2590 | Face 792 450 1466 91 2591 | Face 793 1466 1099 499 2592 | Face 794 1656 1655 1694 2593 | Face 795 1017 1734 1695 2594 | Face 796 1429 1228 460 2595 | Face 797 1420 721 479 2596 | Face 798 1660 1659 1698 2597 | Face 799 1019 1738 1699 2598 | Face 800 472 1532 100 2599 | Face 801 1532 1097 497 2600 | Face 802 1664 1663 1702 2601 | Face 803 1021 1742 1703 2602 | Face 804 266 1788 458 2603 | Face 805 1416 447 477 2604 | Face 806 1668 1667 1706 2605 | Face 807 1023 1746 1707 2606 | Face 808 1097 1629 856 2607 | Face 809 1629 1095 495 2608 | Face 810 1710 386 1671 2609 | Face 811 1711 425 1750 2610 | Face 812 1712 1310 1714 2611 | Face 813 463 443 810 2612 | Face 814 1412 794 475 2613 | Face 815 298 4 332 2614 | Face 816 1524 1043 1473 2615 | Face 817 791 1083 828 2616 | Face 818 1392 607 29 2617 | Face 819 1719 1320 1758 2618 | Face 820 1758 212 1749 2619 | Face 821 1388 971 788 2620 | Face 822 728 904 92 2621 | Face 823 1723 1324 1762 2622 | Face 824 1762 722 1715 2623 | Face 825 904 1081 481 2624 | Face 826 1783 1784 442 2625 | Face 827 1384 681 461 2626 | Face 828 1728 726 1680 2627 | Face 829 768 989 81 2628 | Face 830 1692 1691 1730 2629 | Face 831 1035 1770 1731 2630 | Face 832 989 1079 479 2631 | Face 833 1779 1780 440 2632 | Face 834 1696 1695 1734 2633 | Face 835 1037 1774 1735 2634 | Face 836 1380 1034 459 2635 | Face 837 808 1065 90 2636 | Face 838 1700 1699 1738 2637 | Face 839 1039 1778 1739 2638 | Face 840 1065 1077 477 2639 | Face 841 1775 1776 438 2640 | Face 842 1704 1703 1742 2641 | Face 843 1041 1782 1743 2642 | Face 844 1376 761 457 2643 | Face 845 1077 1213 816 2644 | Face 846 1708 1707 1746 2645 | Face 847 1043 1786 1747 2646 | Face 848 1213 1075 475 2647 | Face 849 1771 1772 770 2648 | Face 850 1750 406 1711 2649 | Face 851 1751 445 1790 2650 | Face 852 1752 1350 1435 2651 | Face 853 1372 1092 455 2652 | Face 854 298 486 1510 2653 | Face 855 918 1063 788 2654 | Face 856 1346 1540 521 2655 | Face 857 1115 1036 1166 2656 | Face 858 1348 1399 748 2657 | Face 859 1759 1360 1798 2658 | Face 860 1798 232 1322 2659 | Face 861 1050 1145 82 2660 | Face 862 1145 1061 461 2661 | Face 863 1763 1364 1634 2662 | Face 864 1634 762 1279 2663 | Face 865 1743 1744 422 2664 | Face 866 1344 1010 441 2665 | Face 867 1074 1506 71 2666 | Face 868 1768 766 1235 2667 | Face 869 1506 1059 459 2668 | Face 870 1732 1731 1770 2669 | Face 871 1055 483 1771 2670 | Face 872 1739 1740 420 2671 | Face 873 1340 1520 439 2672 | Face 874 1736 1735 1774 2673 | Face 875 1057 733 1775 2674 | Face 876 1119 733 80 2675 | Face 877 733 1057 457 2676 | Face 878 1740 1739 1778 2677 | Face 879 1059 1506 1779 2678 | Face 880 1735 1736 418 2679 | Face 881 1336 1071 437 2680 | Face 882 1744 1743 1782 2681 | Face 883 1061 1145 1783 2682 | Face 884 1057 483 776 2683 | Face 885 483 1055 455 2684 | Face 886 670 572 799 2685 | Face 887 1063 918 1787 2686 | Face 888 1731 1732 730 2687 | Face 889 1332 1595 435 2688 | Face 890 1790 426 1751 2689 | Face 891 1791 465 158 2690 | Face 892 1792 1390 990 2691 | Face 893 1379 1038 1122 2692 | Face 894 1786 1043 748 2693 | Face 895 1707 1708 404 2694 | Face 896 1103 920 554 2695 | Face 897 1308 1793 423 2696 | Face 898 1524 1782 72 2697 | Face 899 1345 1400 1682 2698 | Face 900 1682 252 932 2699 | Face 901 1782 1041 441 2700 | Face 902 1703 1704 402 2701 | Face 903 1431 1404 1433 2702 | Face 904 1433 802 911 2703 | Face 905 1304 1475 421 2704 | Face 906 1564 1778 61 2705 | Face 907 1778 1039 439 2706 | Face 908 752 806 881 2707 | Face 909 1699 1700 400 2708 | Face 910 1772 1771 483 2709 | Face 911 1075 1213 463 2710 | Face 912 1300 238 419 2711 | Face 913 1604 1774 70 2712 | Face 914 1776 1775 733 2713 | Face 915 1077 1065 266 2714 | Face 916 1774 1037 437 2715 | Face 917 1695 1696 398 2716 | Face 918 1780 1779 1506 2717 | Face 919 1079 989 1429 2718 | Face 920 1296 1560 417 2719 | Face 921 1037 1770 736 2720 | Face 922 1784 1783 1145 2721 | Face 923 1081 904 978 2722 | Face 924 1770 1035 435 2723 | Face 925 1691 1692 690 2724 | Face 926 1761 293 1491 2725 | Face 927 1083 791 193 2726 | Face 928 1292 1296 415 2727 | Face 929 486 1469 286 2728 | Face 930 158 446 1791 2729 | Face 931 143 485 631 2730 | Face 932 138 1430 651 2731 | Face 933 1746 1023 423 2732 | Face 934 1667 1668 384 2733 | Face 935 1268 96 403 2734 | Face 936 72 748 1524 2735 | Face 937 73 1742 62 2736 | Face 938 1742 1021 421 2737 | Face 939 1665 1440 93 2738 | Face 940 93 272 594 2739 | Face 941 1663 1664 382 2740 | Face 942 1264 115 401 2741 | Face 943 1410 1444 1490 2742 | Face 944 1490 842 561 2743 | Face 945 896 1738 51 2744 | Face 946 1738 1019 419 2745 | Face 947 1659 1660 380 2746 | Face 948 1253 846 528 2747 | Face 949 1260 329 399 2748 | Face 950 443 463 1213 2749 | Face 951 1095 1629 1173 2750 | Face 952 59 1734 60 2751 | Face 953 1734 1017 417 2752 | Face 954 1788 266 1065 2753 | Face 955 1097 1532 1045 2754 | Face 956 1655 1656 378 2755 | Face 957 1256 1012 397 2756 | Face 958 1228 1429 989 2757 | Face 959 1099 1466 944 2758 | Face 960 1017 1730 696 2759 | Face 961 1730 1015 415 2760 | Face 962 958 978 904 2761 | Face 963 901 1502 885 2762 | Face 964 1651 1652 650 2763 | Face 965 1252 509 395 2764 | Face 966 264 464 1425 2765 | Face 967 1610 957 1729 2766 | Face 968 138 631 23 2767 | Face 969 1706 1003 403 2768 | Face 970 631 466 143 2769 | Face 971 370 305 1510 2770 | Face 972 298 1470 371 2771 | Face 973 23 485 1432 2772 | Face 974 803 106 383 2773 | Face 975 349 1702 52 2774 | Face 976 5 492 571 2775 | Face 977 1702 1001 401 2776 | Face 978 1623 1624 362 2777 | Face 979 83 1480 1518 2778 | Face 980 1518 292 330 2779 | Face 981 1224 194 381 2780 | Face 982 456 1698 41 2781 | Face 983 444 1484 1522 2782 | Face 984 1522 882 310 2783 | Face 985 1698 999 399 2784 | Face 986 1619 1620 360 2785 | Face 987 1220 874 379 2786 | Face 988 1709 886 87 2787 | Face 989 523 1694 50 2788 | Face 990 1133 1173 1629 2789 | Face 991 915 1530 1597 2790 | Face 992 1694 997 397 2791 | Face 993 1615 1616 358 2792 | Face 994 1025 1045 1532 2793 | Face 995 917 1534 1495 2794 | Face 996 1216 416 377 2795 | Face 997 997 1690 656 2796 | Face 998 924 944 1466 2797 | Face 999 919 1538 1455 2798 | Face 1000 1690 995 395 2799 | Face 1001 1464 410 1438 2800 | Face 1002 1611 1612 610 2801 | Face 1003 502 302 1504 2802 | Face 1004 334 285 875 2803 | Face 1005 503 501 1426 2804 | Face 1006 1234 686 1688 2805 | Face 1007 838 983 383 2806 | Face 1008 369 372 1335 2807 | Face 1009 1468 387 1318 2808 | Face 1010 1442 225 1312 2809 | Face 1011 506 304 1507 2810 | Face 1012 1188 1434 363 2811 | Face 1013 507 505 1315 2812 | Face 1014 879 1662 42 2813 | Face 1015 1662 981 381 2814 | Face 1016 267 273 1273 2815 | Face 1017 1472 354 1505 2816 | Face 1018 1583 1584 342 2817 | Face 1019 1247 306 1512 2818 | Face 1020 1184 826 361 2819 | Face 1021 1234 58 763 2820 | Face 1022 952 1658 31 2821 | Face 1023 1658 979 379 2822 | Face 1024 1545 207 1205 2823 | Face 1025 1579 1580 340 2824 | Face 1026 1165 515 1127 2825 | Face 1027 1162 308 110 2826 | Face 1028 1180 1600 359 2827 | Face 1029 1127 1167 1165 2828 | Face 1030 1053 1654 40 2829 | Face 1031 1654 977 377 2830 | Face 1032 1575 1576 338 2831 | Face 1033 1033 880 312 2832 | Face 1034 119 537 920 2833 | Face 1035 991 1519 1558 2834 | Face 1036 1176 931 357 2835 | Face 1037 1162 1033 312 2836 | Face 1038 977 1650 39 2837 | Face 1039 1650 975 375 2838 | Face 1040 1571 1729 570 2839 | Face 1041 909 884 832 2840 | Face 1042 1435 1350 755 2841 | Face 1043 872 1523 1562 2842 | Face 1044 1570 937 590 2843 | Face 1045 1123 909 832 2844 | Face 1046 1212 1287 682 2845 | Face 1047 1548 963 363 2846 | Face 1048 396 1656 523 2847 | Face 1049 1148 146 343 2848 | Face 1050 1435 225 1026 2849 | Face 1051 789 1527 1528 2850 | Face 1052 1626 1622 32 2851 | Face 1053 918 788 971 2852 | Face 1054 1622 961 361 2853 | Face 1055 1543 1544 322 2854 | Face 1056 1144 1529 341 2855 | Face 1057 688 892 56 2856 | Face 1058 685 1131 672 2857 | Face 1059 719 1328 413 2858 | Face 1060 1684 1618 21 2859 | Face 1061 672 529 685 2860 | Face 1062 1618 959 359 2861 | Face 1063 1539 1540 320 2862 | Face 1064 647 569 1132 2863 | Face 1065 1496 616 643 2864 | Face 1066 1140 307 339 2865 | Face 1067 534 318 1536 2866 | Face 1068 1769 1614 30 2867 | Face 1069 535 533 643 2868 | Face 1070 1614 957 357 2869 | Face 1071 1535 1536 318 2870 | Face 1072 719 1687 682 2871 | Face 1073 1500 5 589 2872 | Face 1074 1136 1676 337 2873 | Face 1075 538 320 1540 2874 | Face 1076 564 1563 132 2875 | Face 1077 539 537 571 2876 | Face 1078 1610 955 355 2877 | Face 1079 1531 590 530 2878 | Face 1080 1716 1726 469 2879 | Face 1081 1104 1335 372 2880 | Face 1082 177 653 1259 2881 | Face 1083 542 322 1544 2882 | Face 1084 550 48 1474 2883 | Face 1085 543 541 369 2884 | Face 1086 253 943 343 2885 | Face 1087 550 652 611 2886 | Face 1088 1636 1649 287 2887 | Face 1089 1108 1273 273 2888 | Face 1090 1108 1205 323 2889 | Face 1091 546 324 1547 2890 | Face 1092 327 1582 22 2891 | Face 1093 547 545 267 2892 | Face 1094 1582 941 341 2893 | Face 1095 1503 1504 302 2894 | Face 1096 1569 1586 213 2895 | Face 1097 1112 1205 207 2896 | Face 1098 1104 233 321 2897 | Face 1099 167 326 1552 2898 | Face 1100 521 1578 11 2899 | Face 1101 611 176 646 2900 | Face 1102 1578 939 339 2901 | Face 1103 1455 1439 500 2902 | Face 1104 1585 1492 146 2903 | Face 1105 1500 1375 319 2904 | Face 1106 127 555 99 2905 | Face 1107 114 328 130 2906 | Face 1108 638 1574 20 2907 | Face 1109 99 134 127 2908 | Face 1110 1574 937 337 2909 | Face 1111 1495 1485 498 2910 | Face 1112 1496 492 317 2911 | Face 1113 65 520 929 2912 | Face 1114 1353 1350 1752 2913 | Face 1115 49 1559 1598 2914 | Face 1116 1353 74 756 2915 | Face 1117 114 65 929 2916 | Face 1118 1570 935 335 2917 | Face 1119 1597 1572 890 2918 | Face 1120 611 652 995 2919 | Face 1121 107 524 642 2920 | Face 1122 487 1536 638 2921 | Face 1123 154 1563 1602 2922 | Face 1124 1645 38 373 2923 | Face 1125 1163 107 642 2924 | Face 1126 1314 923 323 2925 | Face 1127 751 711 484 2926 | Face 1128 1468 354 303 2927 | Face 1129 1406 1542 12 2928 | Face 1130 553 269 1443 2929 | Face 1131 792 1567 1568 2930 | Face 1132 1542 921 321 2931 | Face 1133 1645 1251 598 2932 | Face 1134 885 871 482 2933 | Face 1135 1464 1306 301 2934 | Face 1136 1537 589 119 2935 | Face 1137 1132 532 647 2936 | Face 1138 1207 1171 1231 2937 | Face 1139 563 176 1249 2938 | Face 1140 1494 46 894 2939 | Face 1141 1231 569 1207 2940 | Face 1142 1463 414 863 2941 | Face 1143 15 1100 897 2942 | Face 1144 670 609 1172 2943 | Face 1145 1136 1756 1796 2944 | Face 1146 1533 643 117 2945 | Face 1147 574 338 1576 2946 | Face 1148 1493 66 890 2947 | Face 1149 575 573 1796 2948 | Face 1150 1499 15 899 2949 | Face 1151 37 1098 893 2950 | Face 1152 563 1251 646 2951 | Face 1153 1140 469 1726 2952 | Face 1154 1328 1673 1327 2953 | Face 1155 578 340 1580 2954 | Face 1156 1725 58 413 2955 | Face 1157 579 577 1716 2956 | Face 1158 1469 394 286 2957 | Face 1159 1432 334 23 2958 | Face 1160 972 985 1666 2959 | Face 1161 1144 287 1649 2960 | Face 1162 1505 1318 103 2961 | Face 1163 582 342 1584 2962 | Face 1164 1462 429 862 2963 | Face 1165 583 581 1636 2964 | Face 1166 1471 1086 374 2965 | Face 1167 391 1084 865 2966 | Face 1168 887 888 1588 2967 | Face 1169 1148 213 1586 2968 | Face 1170 1501 1438 101 2969 | Face 1171 586 344 1587 2970 | Face 1172 1498 17 898 2971 | Face 1173 587 585 1569 2972 | Face 1174 1467 391 867 2973 | Face 1175 414 1082 861 2974 | Face 1176 843 855 1508 2975 | Face 1177 1152 146 1492 2976 | Face 1178 1482 26 299 2977 | Face 1179 1478 346 1592 2978 | Face 1180 1454 474 854 2979 | Face 1181 1725 1331 1644 2980 | Face 1182 1423 727 823 2981 | Face 1183 449 1080 857 2982 | Face 1184 1625 801 1434 2983 | Face 1185 1556 55 297 2984 | Face 1186 1402 595 1394 2985 | Face 1187 1398 348 150 2986 | Face 1188 1453 494 850 2987 | Face 1189 1394 1408 1402 2988 | Face 1190 1459 449 859 2989 | Face 1191 471 1078 853 2990 | Face 1192 295 55 1452 2991 | Face 1193 1354 560 47 2992 | Face 1194 117 533 1139 2993 | Face 1195 1319 1599 1638 2994 | Face 1196 647 18 1207 2995 | Face 1197 1398 1354 47 2996 | Face 1198 971 1388 938 2997 | Face 1199 1070 1776 1119 2998 | Face 1200 831 409 283 2999 | Face 1201 1274 564 1238 3000 | Face 1202 647 532 775 3001 | Face 1203 1242 1603 1642 3002 | Face 1204 1422 731 822 3003 | Face 1205 1203 1274 1238 3004 | Face 1206 1064 1066 673 3005 | Face 1207 687 1064 825 3006 | Face 1208 905 431 281 3007 | Face 1209 1458 451 858 3008 | Face 1210 775 116 526 3009 | Face 1211 1206 1607 1608 3010 | Face 1212 1427 687 827 3011 | Face 1213 1255 976 593 3012 | Face 1214 727 1062 821 3013 | Face 1215 1005 454 279 3014 | Face 1216 1414 811 814 3015 | Face 1217 1172 572 670 3016 | Face 1218 1158 1211 1118 3017 | Face 1219 1358 689 996 3018 | Face 1220 1383 1049 783 3019 | Face 1221 1118 609 1158 3020 | Face 1222 767 1060 817 3021 | Face 1223 1085 489 277 3022 | Face 1224 1113 649 599 3023 | Face 1225 1176 1013 1093 3024 | Face 1226 1413 847 810 3025 | Face 1227 614 358 1616 3026 | Face 1228 1419 767 819 3027 | Face 1229 615 613 1093 3028 | Face 1230 807 1058 813 3029 | Face 1231 275 489 1412 3030 | Face 1232 598 38 1645 3031 | Face 1233 1180 1666 985 3032 | Face 1234 775 532 935 3033 | Face 1235 618 360 1620 3034 | Face 1236 1389 1014 246 3035 | Face 1237 619 617 972 3036 | Face 1238 284 484 1465 3037 | Face 1239 938 713 263 3038 | Face 1240 476 496 895 3039 | Face 1241 1184 1588 888 3040 | Face 1242 1382 1051 782 3041 | Face 1243 622 362 1624 3042 | Face 1244 1391 1046 992 3043 | Face 1245 623 621 887 3044 | Face 1246 1011 1044 785 3045 | Face 1247 1185 753 261 3046 | Face 1248 367 376 866 3047 | Face 1249 1188 1508 855 3048 | Face 1250 1418 771 818 3049 | Face 1251 626 164 1627 3050 | Face 1252 1387 1011 787 3051 | Face 1253 627 625 843 3052 | Face 1254 1049 1042 781 3053 | Face 1255 1748 793 259 3054 | Face 1256 254 274 803 3055 | Face 1257 1192 1434 801 3056 | Face 1258 1374 1122 774 3057 | Face 1259 798 366 1632 3058 | Face 1260 1343 1521 743 3059 | Face 1261 598 649 1113 3060 | Face 1262 1072 1040 777 3061 | Face 1263 424 833 257 3062 | Face 1264 671 155 632 3063 | Face 1265 1373 1166 770 3064 | Face 1266 758 635 746 3065 | Face 1267 749 368 170 3066 | Face 1268 1379 1072 779 3067 | Face 1269 746 759 758 3068 | Face 1270 1115 1038 773 3069 | Face 1271 255 833 1372 3070 | Face 1272 1525 8 313 3071 | Face 1273 718 600 1278 3072 | Face 1274 1525 1131 685 3073 | Face 1275 706 1639 1678 3074 | Face 1276 1349 1486 226 3075 | Face 1277 749 718 1278 3076 | Face 1278 1713 1727 722 3077 | Face 1279 1785 1030 243 3078 | Face 1280 1342 1526 742 3079 | Face 1281 678 604 641 3080 | Face 1282 672 116 1129 3081 | Face 1283 666 1643 174 3082 | Face 1284 1351 1026 1442 3083 | Face 1285 1243 678 641 3084 | Face 1286 1479 1024 745 3085 | Face 1287 1781 1054 241 3086 | Face 1288 1378 1089 778 3087 | Face 1289 1347 1479 747 3088 | Face 1290 672 1131 526 3089 | Face 1291 629 1647 1648 3090 | Face 1292 1521 1022 741 3091 | Face 1293 1474 689 550 3092 | Face 1294 1777 1091 239 3093 | Face 1295 1334 1606 734 3094 | Face 1296 1303 198 703 3095 | Face 1297 599 612 1113 3096 | Face 1298 598 1251 563 3097 | Face 1299 599 649 976 3098 | Face 1300 1561 1020 737 3099 | Face 1301 563 649 598 3100 | Face 1302 1773 1153 237 3101 | Face 1303 1333 1641 730 3102 | Face 1304 550 689 1358 3103 | Face 1305 1216 519 549 3104 | Face 1306 1339 1561 739 3105 | Face 1307 654 378 1656 3106 | Face 1308 1601 1018 217 3107 | Face 1309 655 653 549 3108 | Face 1310 235 1153 1332 3109 | Face 1311 791 828 637 3110 | Face 1312 1135 916 679 3111 | Face 1313 1220 895 496 3112 | Face 1314 1309 1450 206 3113 | Face 1315 658 380 1660 3114 | Face 1316 1311 1006 1554 3115 | Face 1317 659 657 476 3116 | Face 1318 1745 1513 223 3117 | Face 1319 1302 218 702 3118 | Face 1320 797 712 392 3119 | Face 1321 1224 866 376 3120 | Face 1322 77 291 1487 3121 | Face 1323 662 382 1664 3122 | Face 1324 1194 1004 705 3123 | Face 1325 663 661 367 3124 | Face 1326 1741 1553 221 3125 | Face 1327 1338 1566 738 3126 | Face 1328 1797 1724 309 3127 | Face 1329 904 728 958 3128 | Face 1330 1307 1194 707 3129 | Face 1331 186 384 1668 3130 | Face 1332 198 1002 701 3131 | Face 1333 667 665 254 3132 | Face 1334 1737 1593 219 3133 | Face 1335 1294 43 694 3134 | Face 1336 1370 1290 166 3135 | Face 1337 155 1232 632 3136 | Face 1338 1263 336 663 3137 | Face 1339 135 386 1672 3138 | Face 1340 930 1000 697 3139 | Face 1341 1474 48 1685 3140 | Face 1342 1733 1633 217 3141 | Face 1343 1293 13 690 3142 | Face 1344 1705 1554 96 3143 | Face 1345 1299 930 699 3144 | Face 1346 85 675 36 3145 | Face 1347 76 388 190 3146 | Face 1348 69 998 693 3147 | Face 1349 36 95 85 3148 | Face 1350 215 1633 1292 3149 | Face 1351 1395 1720 1316 3150 | Face 1352 1269 234 186 3151 | Face 1353 558 640 187 3152 | Face 1354 685 8 1525 3153 | Face 1355 559 1679 1718 3154 | Face 1356 1271 986 155 3155 | Face 1357 76 558 187 3156 | Face 1358 1705 1290 203 3157 | Face 1359 1262 356 662 3158 | Face 1360 970 1286 1356 3159 | Face 1361 683 644 1114 3160 | Face 1362 685 529 56 3161 | Face 1363 709 1683 1722 3162 | Face 1364 214 984 665 3163 | Face 1365 1283 683 1114 3164 | Face 1366 1701 1724 201 3165 | Face 1367 1298 830 698 3166 | Face 1368 1267 214 667 3167 | Face 1369 336 982 661 3168 | Face 1370 637 1428 831 3169 | Face 1371 1212 1687 1688 3170 | Face 1372 1697 712 199 3171 | Face 1373 1393 1395 716 3172 | Face 1374 1254 531 654 3173 | Face 1375 1223 878 623 3174 | Face 1376 436 980 657 3175 | Face 1377 1358 652 550 3176 | Face 1378 1474 1291 974 3177 | Face 1379 969 970 756 3178 | Face 1380 1693 695 197 3179 | Face 1381 974 689 1474 3180 | Face 1382 650 1250 1255 3181 | Face 1383 1259 436 659 3182 | Face 1384 763 729 1646 3183 | Face 1385 1256 509 695 3184 | Face 1386 1250 1259 653 3185 | Face 1387 694 398 1696 3186 | Face 1388 195 695 1252 3187 | Face 1389 195 693 695 3188 | Face 1390 1255 1250 653 3189 | Face 1391 1229 839 626 3190 | Face 1392 688 529 916 3191 | Face 1393 1260 392 712 3192 | Face 1394 786 966 801 3193 | Face 1395 698 400 1700 3194 | Face 1396 106 274 183 3195 | Face 1397 699 697 797 3196 | Face 1398 1222 883 622 3197 | Face 1399 1502 427 871 3198 | Face 1400 1589 1593 1239 3199 | Face 1401 1264 309 1724 3200 | Face 1402 829 964 625 3201 | Face 1403 702 402 1704 3202 | Face 1404 1661 376 181 3203 | Face 1405 703 701 1797 3204 | Face 1406 1258 470 658 3205 | Face 1407 1227 829 627 3206 | Face 1408 1549 1553 648 3207 | Face 1409 1268 166 1290 3208 | Face 1410 878 962 621 3209 | Face 1411 206 404 1708 3210 | Face 1412 1657 496 179 3211 | Face 1413 707 705 1370 3212 | Face 1414 1214 1073 614 3213 | Face 1415 1183 1609 583 3214 | Face 1416 1509 1513 178 3215 | Face 1417 1272 96 1554 3216 | Face 1418 945 960 617 3217 | Face 1419 1714 406 1712 3218 | Face 1420 1653 549 177 3219 | Face 1421 69 996 13 3220 | Face 1422 610 1210 1215 3221 | Face 1423 1219 945 619 3222 | Face 1424 1745 1442 1312 3223 | Face 1425 1210 1219 613 3224 | Face 1426 1766 715 1760 3225 | Face 1427 1764 408 210 3226 | Face 1428 565 133 1128 3227 | Face 1429 1760 1789 1766 3228 | Face 1430 1215 1210 613 3229 | Face 1431 1186 1191 344 3230 | Face 1432 1448 946 1492 3231 | Face 1433 1753 680 669 3232 | Face 1434 1393 64 35 3233 | Face 1435 1749 1719 1758 3234 | Face 1436 1625 855 163 3235 | Face 1437 1764 1753 669 3236 | Face 1438 1182 1628 582 3237 | Face 1439 591 1191 1186 3238 | Face 1440 1546 1191 585 3239 | Face 1441 1717 684 1686 3240 | Face 1442 1562 1527 522 3241 | Face 1443 1715 1723 1762 3242 | Face 1444 1621 888 161 3243 | Face 1445 1323 1717 1686 3244 | Face 1446 1218 965 618 3245 | Face 1447 1187 1546 587 3246 | Face 1448 1609 942 581 3247 | Face 1449 1617 985 159 3248 | Face 1450 666 1245 645 3249 | Face 1451 1680 1727 1728 3250 | Face 1452 1174 1795 574 3251 | Face 1453 1325 725 1327 3252 | Face 1454 1143 314 543 3253 | Face 1455 1681 940 577 3254 | Face 1456 1613 1093 157 3255 | Face 1457 1646 692 763 3256 | Face 1458 1644 1331 1637 3257 | Face 1459 611 48 550 3258 | Face 1460 570 1170 1175 3259 | Face 1461 1637 729 1644 3260 | Face 1462 1179 1681 579 3261 | Face 1463 1170 1179 573 3262 | Face 1464 1635 769 1195 3263 | Face 1465 463 256 1075 3264 | Face 1466 611 646 1648 3265 | Face 1467 734 418 1736 3266 | Face 1468 1175 1170 573 3267 | Face 1469 215 217 1633 3268 | Face 1470 1146 1151 324 3269 | Face 1471 147 926 207 3270 | Face 1472 131 933 1124 3271 | Face 1473 1300 1239 1593 3272 | Face 1474 1585 1586 585 3273 | Face 1475 738 420 1740 3274 | Face 1476 1142 364 542 3275 | Face 1477 739 737 1589 3276 | Face 1478 551 1151 1146 3277 | Face 1479 247 1151 545 3278 | Face 1480 1090 1091 1555 3279 | Face 1481 1304 648 1553 3280 | Face 1482 1581 1649 141 3281 | Face 1483 742 422 1744 3282 | Face 1484 1178 1689 578 3283 | Face 1485 743 741 1549 3284 | Face 1486 1147 247 547 3285 | Face 1487 314 922 541 3286 | Face 1488 1052 1054 1515 3287 | Face 1489 1308 178 1513 3288 | Face 1490 1577 1726 139 3289 | Face 1491 226 224 1747 3290 | Face 1492 1134 639 534 3291 | Face 1493 747 745 1509 3292 | Face 1494 1103 1386 503 3293 | Face 1495 518 920 537 3294 | Face 1496 1029 1030 1446 3295 | Face 1497 1312 1793 1745 3296 | Face 1498 1573 1796 137 3297 | Face 1499 1435 426 1752 3298 | Face 1500 530 1130 1135 3299 | Face 1501 629 173 1245 3300 | Face 1502 1139 518 539 3301 | Face 1503 1130 1139 533 3302 | Face 1504 1785 992 1352 3303 | Face 1505 629 646 1251 3304 | Face 1506 1393 755 1359 3305 | Face 1507 1366 428 230 3306 | Face 1508 1135 1130 533 3307 | Face 1509 1359 1395 1393 3308 | Face 1510 1106 1111 304 3309 | Face 1511 1226 906 1266 3310 | Face 1512 1545 273 545 3311 | Face 1513 1326 720 1720 3312 | Face 1514 1637 216 1329 3313 | Face 1515 1322 1759 1798 3314 | Face 1516 1102 1415 502 3315 | Face 1517 1366 1326 1720 3316 | Face 1518 511 1111 1106 3317 | Face 1519 1313 1111 505 3318 | Face 1520 1541 372 121 3319 | Face 1521 1282 724 1246 3320 | Face 1522 775 18 647 3321 | Face 1523 1279 1763 1634 3322 | Face 1524 1138 554 538 3323 | Face 1525 1363 1282 1246 3324 | Face 1526 1107 1313 507 3325 | Face 1527 1386 902 501 3326 | Face 1528 17 1497 500 3327 | Face 1529 434 944 280 3328 | Face 1530 775 526 1528 3329 | Face 1531 1235 1767 1768 3330 | Face 1532 46 1493 498 3331 | Face 1533 1365 765 1367 3332 | Face 1534 1133 1045 850 3333 | Face 1535 66 1489 1597 3334 | Face 1536 193 791 143 3335 | Face 1537 1195 732 1635 3336 | Face 1538 1193 1371 1159 3337 | Face 1539 645 173 1208 3338 | Face 1540 394 1465 484 3339 | Face 1541 1159 769 1193 3340 | Face 1542 677 193 264 3341 | Face 1543 429 1461 482 3342 | Face 1544 1155 809 851 3343 | Face 1545 1336 1595 1153 3344 | Face 1546 717 978 262 3345 | Face 1547 774 438 1776 3346 | Face 1548 451 1457 480 3347 | Face 1549 235 773 1153 3348 | Face 1550 757 1429 260 3349 | Face 1551 474 1453 478 3350 | Face 1552 789 113 522 3351 | Face 1553 1340 1555 1091 3352 | Face 1554 443 266 810 3353 | Face 1555 778 440 1780 3354 | Face 1556 494 1449 1173 3355 | Face 1557 779 777 1090 3356 | Face 1558 1787 918 1791 3357 | Face 1559 691 1425 464 3358 | Face 1560 790 793 1069 3359 | Face 1561 1344 1515 1054 3360 | Face 1562 1009 1787 244 3361 | Face 1563 782 442 1784 3362 | Face 1564 731 1421 462 3363 | Face 1565 783 781 1052 3364 | Face 1566 1032 1783 242 3365 | Face 1567 771 1417 460 3366 | Face 1568 750 753 1031 3367 | Face 1569 1348 1446 1030 3368 | Face 1570 1070 1779 240 3369 | Face 1571 246 244 1787 3370 | Face 1572 811 1413 458 3371 | Face 1573 787 785 1029 3372 | Face 1574 1772 1775 770 3373 | Face 1575 847 1409 463 3374 | Face 1576 710 713 994 3375 | Face 1577 1352 1399 1785 3376 | Face 1578 1747 1786 1751 3377 | Face 1579 990 446 1792 3378 | Face 1580 1014 1385 244 3379 | Face 1581 974 1291 686 3380 | Face 1582 1473 1747 224 3381 | Face 1583 1051 1381 442 3382 | Face 1584 938 673 1392 3383 | Face 1585 1517 1743 222 3384 | Face 1586 969 795 951 3385 | Face 1587 954 448 250 3386 | Face 1588 1089 1377 440 3387 | Face 1589 951 970 969 3388 | Face 1590 1557 1739 220 3389 | Face 1591 1122 1373 438 3390 | Face 1592 1732 1735 730 3391 | Face 1593 934 760 1286 3392 | Face 1594 789 526 1131 3393 | Face 1595 932 1345 1682 3394 | Face 1596 1166 1369 1771 3395 | Face 1597 954 934 1286 3396 | Face 1598 1708 1746 1711 3397 | Face 1599 1680 1331 725 3398 | Face 1600 123 1707 204 3399 | Face 1601 912 764 891 3400 | Face 1602 1366 1720 1028 3401 | Face 1603 911 1431 1433 3402 | Face 1604 1526 1341 422 3403 | Face 1605 1403 912 891 3404 | Face 1606 278 1703 202 3405 | Face 1607 1566 1337 420 3406 | Face 1608 1094 1699 200 3407 | Face 1609 1606 1333 418 3408 | Face 1610 974 196 1289 3409 | Face 1611 881 841 752 3410 | Face 1612 1692 1695 690 3411 | Face 1613 1405 805 1407 3412 | Face 1614 1641 1329 1731 3413 | Face 1615 1668 1706 1671 3414 | Face 1616 1450 1305 404 3415 | Face 1617 851 772 1155 3416 | Face 1618 848 1411 837 3417 | Face 1619 644 1643 172 3418 | Face 1620 175 1667 184 3419 | Face 1621 837 809 848 3420 | Face 1622 218 1301 402 3421 | Face 1623 316 1663 182 3422 | Face 1624 834 849 513 3423 | Face 1625 1376 1092 833 3424 | Face 1626 830 1297 400 3425 | Face 1627 814 458 1788 3426 | Face 1628 396 1659 180 3427 | Face 1629 255 813 833 3428 | Face 1630 43 1293 398 3429 | Face 1631 1652 1655 378 3430 | Face 1632 792 566 1171 3431 | Face 1633 1380 1069 793 3432 | Face 1634 13 1289 1691 3433 | Face 1635 818 460 1228 3434 | Face 1636 641 604 1638 3435 | Face 1637 819 817 790 3436 | Face 1638 234 1265 384 3437 | Face 1639 815 1627 164 3438 | Face 1640 452 454 754 3439 | Face 1641 1384 1031 753 3440 | Face 1642 356 1261 382 3441 | Face 1643 822 462 958 3442 | Face 1644 869 1623 162 3443 | Face 1645 823 821 750 3444 | Face 1646 470 1257 380 3445 | Face 1647 925 1619 160 3446 | Face 1648 430 431 714 3447 | Face 1649 1388 994 713 3448 | Face 1650 531 1250 378 3449 | Face 1651 810 458 1413 3450 | Face 1652 1612 1615 358 3451 | Face 1653 827 825 710 3452 | Face 1654 593 1249 1651 3453 | Face 1655 1243 172 1241 3454 | Face 1656 407 409 674 3455 | Face 1657 1392 971 938 3456 | Face 1658 839 1225 164 3457 | Face 1659 651 466 631 3458 | Face 1660 1516 1587 144 3459 | Face 1661 666 171 1241 3460 | Face 1662 883 1221 362 3461 | Face 1663 1596 1583 142 3462 | Face 1664 831 374 1432 3463 | Face 1665 965 1217 360 3464 | Face 1666 633 835 608 3465 | Face 1667 630 468 270 3466 | Face 1668 1675 1579 140 3467 | Face 1669 608 634 633 3468 | Face 1670 1073 1210 358 3469 | Face 1671 1729 1575 338 3470 | Face 1672 1154 1209 1611 3471 | Face 1673 597 800 914 3472 | Face 1674 525 113 1488 3473 | Face 1675 594 1665 93 3474 | Face 1676 792 133 562 3475 | Face 1677 630 597 914 3476 | Face 1678 1191 1182 344 3477 | Face 1679 227 1547 124 3478 | Face 1680 1628 1181 342 3479 | Face 1681 567 804 553 3480 | Face 1682 1359 755 1350 3481 | Face 1683 561 1410 1490 3482 | Face 1684 294 1543 122 3483 | Face 1685 1443 567 553 3484 | Face 1686 1689 1177 340 3485 | Face 1687 487 1539 120 3486 | Face 1688 1795 1170 338 3487 | Face 1689 590 1535 318 3488 | Face 1690 1685 1291 1474 3489 | Face 1691 528 1285 1253 3490 | Face 1692 1640 1169 1571 3491 | Face 1693 1445 845 1447 3492 | Face 1694 678 171 1204 3493 | Face 1695 1151 1142 324 3494 | Face 1696 1295 1507 104 3495 | Face 1697 513 812 834 3496 | Face 1698 510 1451 491 3497 | Face 1699 1685 48 393 3498 | Face 1700 364 1141 322 3499 | Face 1701 491 849 510 3500 | Face 1702 1346 1503 102 3501 | Face 1703 554 1137 320 3502 | Face 1704 490 889 75 3503 | Face 1705 1416 794 489 3504 | Face 1706 6 1455 300 3505 | Face 1707 854 478 1025 3506 | Face 1708 639 1130 318 3507 | Face 1709 275 853 489 3508 | Face 1710 1572 1495 890 3509 | Face 1711 679 1129 1531 3510 | Face 1712 799 566 1568 3511 | Face 1713 1420 754 454 3512 | Face 1714 711 903 3 3513 | Face 1715 858 480 924 3514 | Face 1716 1111 1105 304 3515 | Face 1717 859 857 452 3516 | Face 1718 389 751 284 3517 | Face 1719 1415 1101 302 3518 | Face 1720 25 26 432 3519 | Face 1721 1424 714 431 3520 | Face 1722 411 885 282 3521 | Face 1723 862 482 871 3522 | Face 1724 900 10 5 3523 | Face 1725 863 861 430 3524 | Face 1726 899 297 1499 3525 | Face 1727 898 282 1498 3526 | Face 1728 1426 1438 410 3527 | Face 1729 1428 674 409 3528 | Face 1730 897 299 26 3529 | Face 1731 286 484 711 3530 | Face 1732 9 616 1496 3531 | Face 1733 867 865 407 3532 | Face 1734 1234 692 1015 3533 | Face 1735 894 300 1494 3534 | Face 1736 1315 1318 387 3535 | Face 1737 1432 637 831 3536 | Face 1738 893 297 55 3537 | Face 1739 371 486 298 3538 | Face 1740 1490 1444 77 3539 | Face 1741 640 1639 170 3540 | Face 1742 305 3 354 3541 | Face 1743 374 283 1471 3542 | Face 1744 1505 1266 1472 3543 | Face 1745 868 2 387 3544 | Face 1746 351 875 347 3545 | Face 1747 350 488 290 3546 | Face 1748 867 281 1467 3547 | Face 1749 347 352 351 3548 | Face 1750 1196 600 150 3549 | Face 1751 865 283 409 3550 | Face 1752 864 1 410 3551 | Face 1753 331 840 568 3552 | Face 1754 799 28 670 3553 | Face 1755 330 83 1518 3554 | Face 1756 863 299 1463 3555 | Face 1757 350 331 568 3556 | Face 1758 862 284 1462 3557 | Face 1759 861 281 431 3558 | Face 1760 860 100 432 3559 | Face 1761 311 844 97 3560 | Face 1762 524 1523 112 3561 | Face 1763 310 444 1522 3562 | Face 1764 859 277 1459 3563 | Face 1765 1483 311 97 3564 | Face 1766 858 262 1458 3565 | Face 1767 857 279 454 3566 | Face 1768 1359 228 1028 3567 | Face 1769 1123 112 1121 3568 | Face 1770 749 170 1237 3569 | Face 1771 87 1721 1709 3570 | Face 1772 854 280 1454 3571 | Face 1773 239 777 1040 3572 | Face 1774 853 277 489 3573 | Face 1775 282 482 1461 3574 | Face 1776 485 791 637 3575 | Face 1777 75 852 490 3576 | Face 1778 67 1491 57 3577 | Face 1779 1234 196 686 3578 | Face 1780 673 263 1064 3579 | Face 1781 57 889 67 3580 | Face 1782 828 92 674 3581 | Face 1783 827 261 1427 3582 | Face 1784 56 529 688 3583 | Face 1785 1456 467 55 3584 | Face 1786 644 172 1678 3585 | Face 1787 894 498 1485 3586 | Face 1788 825 263 713 3587 | Face 1789 295 893 55 3588 | Face 1790 824 91 714 3589 | Face 1791 823 279 1423 3590 | Face 1792 706 169 1237 3591 | Face 1793 1460 432 26 3592 | Face 1794 822 264 1422 3593 | Face 1795 898 500 1439 3594 | Face 1796 821 261 753 3595 | Face 1797 899 897 25 3596 | Face 1798 820 90 754 3597 | Face 1799 819 257 1419 3598 | Face 1800 571 589 5 3599 | Face 1801 818 242 1418 3600 | Face 1802 885 411 901 3601 | Face 1803 1101 1415 902 3602 | Face 1804 817 259 793 3603 | Face 1805 1637 1331 726 3604 | Face 1806 751 389 903 3605 | Face 1807 1555 1071 1090 3606 | Face 1808 706 172 1243 3607 | Face 1809 3 370 711 3608 | Face 1810 370 286 711 3609 | Face 1811 906 306 1247 3610 | Face 1812 906 105 1266 3611 | Face 1813 907 1514 488 3612 | Face 1814 907 288 332 3613 | Face 1815 908 308 1162 3614 | Face 1816 908 312 1167 3615 | Face 1817 814 260 1414 3616 | Face 1818 1278 600 1196 3617 | Face 1819 1117 1519 991 3618 | Face 1820 1117 109 1033 3619 | Face 1821 813 257 833 3620 | Face 1822 292 1518 884 3621 | Face 1823 1121 1523 872 3622 | Face 1824 1121 111 909 3623 | Face 1825 913 313 1721 3624 | Face 1826 913 1721 1522 3625 | Face 1827 522 1527 789 3626 | Face 1828 522 113 525 3627 | Face 1829 92 481 390 3628 | Face 1830 915 296 86 3629 | Face 1831 1129 679 916 3630 | Face 1832 916 535 688 3631 | Face 1833 465 918 971 3632 | Face 1834 1495 1572 917 3633 | Face 1835 1130 639 1139 3634 | Face 1836 992 243 1391 3635 | Face 1837 788 82 994 3636 | Face 1838 1455 6 919 3637 | Face 1839 1137 554 920 3638 | Face 1840 787 241 1387 3639 | Face 1841 763 692 1234 3640 | Face 1842 1503 1346 921 3641 | Face 1843 1141 364 922 3642 | Face 1844 785 243 1030 3643 | Face 1845 784 81 1031 3644 | Face 1846 1507 1295 923 3645 | Face 1847 1343 1040 1089 3646 | Face 1848 783 259 1383 3647 | Face 1849 1511 1314 512 3648 | Face 1850 1314 1511 506 3649 | Face 1851 926 326 167 3650 | Face 1852 926 125 207 3651 | Face 1853 927 110 308 3652 | Face 1854 927 108 1125 3653 | Face 1855 928 328 114 3654 | Face 1856 928 929 134 3655 | Face 1857 782 244 1382 3656 | Face 1858 718 169 1200 3657 | Face 1859 1157 1559 49 3658 | Face 1860 1157 129 65 3659 | Face 1861 781 241 1054 3660 | Face 1862 763 58 1644 3661 | Face 1863 1161 1563 154 3662 | Face 1864 1161 131 107 3663 | Face 1865 933 333 1527 3664 | Face 1866 933 1527 1562 3665 | Face 1867 562 1567 792 3666 | Face 1868 562 133 565 3667 | Face 1869 780 80 1069 3668 | Face 1870 935 116 775 3669 | Face 1871 1169 1640 936 3670 | Face 1872 936 575 1132 3671 | Face 1873 779 237 1379 3672 | Face 1874 1535 590 937 3673 | Face 1875 1170 1795 1179 3674 | Face 1876 778 222 1378 3675 | Face 1877 777 239 1091 3676 | Face 1878 1539 487 939 3677 | Face 1879 1177 1689 940 3678 | Face 1880 151 953 1164 3679 | Face 1881 636 44 85 3680 | Face 1882 1543 294 941 3681 | Face 1883 1181 1628 942 3682 | Face 1884 774 240 1374 3683 | Face 1885 773 237 1153 3684 | Face 1886 1547 227 943 3685 | Face 1887 390 1424 905 3686 | Face 1888 1466 450 924 3687 | Face 1889 1551 253 552 3688 | Face 1890 253 1551 546 3689 | Face 1891 946 346 1478 3690 | Face 1892 946 145 1492 3691 | Face 1893 947 130 328 3692 | Face 1894 947 128 79 3693 | Face 1895 948 348 1398 3694 | Face 1896 948 47 1408 3695 | Face 1897 445 1786 1399 3696 | Face 1898 197 693 998 3697 | Face 1899 1197 1599 1319 3698 | Face 1900 1197 149 1354 3699 | Face 1901 1442 223 1351 3700 | Face 1902 723 168 1230 3701 | Face 1903 1201 1603 1242 3702 | Face 1904 1201 151 1274 3703 | Face 1905 953 353 1567 3704 | Face 1906 953 1567 1602 3705 | Face 1907 602 1607 1206 3706 | Face 1908 602 153 605 3707 | Face 1909 748 72 1446 3708 | Face 1910 955 136 799 3709 | Face 1911 1209 1154 956 3710 | Face 1912 956 615 1172 3711 | Face 1913 747 221 1347 3712 | Face 1914 1575 1729 957 3713 | Face 1915 1210 1073 1219 3714 | Face 1916 723 636 987 3715 | Face 1917 745 223 1513 3716 | Face 1918 1579 1675 959 3717 | Face 1919 1217 965 960 3718 | Face 1920 744 71 1515 3719 | Face 1921 743 239 1343 3720 | Face 1922 1583 1596 961 3721 | Face 1923 1221 883 962 3722 | Face 1924 742 224 1342 3723 | Face 1925 741 221 1553 3724 | Face 1926 1587 1516 963 3725 | Face 1927 1225 839 964 3726 | Face 1928 740 70 1555 3727 | Face 1929 1591 1548 592 3728 | Face 1930 1548 1591 586 3729 | Face 1931 966 366 798 3730 | Face 1932 966 165 801 3731 | Face 1933 967 150 348 3732 | Face 1934 967 148 1362 3733 | Face 1935 968 368 749 3734 | Face 1936 968 1278 759 3735 | Face 1937 739 217 1339 3736 | Face 1938 735 34 1630 3737 | Face 1939 1237 1639 706 3738 | Face 1940 1237 169 718 3739 | Face 1941 738 202 1338 3740 | Face 1942 735 635 758 3741 | Face 1943 1241 1643 666 3742 | Face 1944 1241 171 678 3743 | Face 1945 973 373 1607 3744 | Face 1946 973 1607 1642 3745 | Face 1947 1245 1647 629 3746 | Face 1948 1245 173 645 3747 | Face 1949 737 219 1593 3748 | Face 1950 975 156 1198 3749 | Face 1951 1249 593 976 3750 | Face 1952 976 655 599 3751 | Face 1953 872 111 1121 3752 | Face 1954 1615 1612 977 3753 | Face 1955 1250 531 1259 3754 | Face 1956 746 168 968 3755 | Face 1957 734 220 1334 3756 | Face 1958 1619 925 979 3757 | Face 1959 1257 470 980 3758 | Face 1960 949 796 1067 3759 | Face 1961 1517 1780 1074 3760 | Face 1962 1623 869 981 3761 | Face 1963 1261 356 982 3762 | Face 1964 425 1746 1793 3763 | Face 1965 1374 1377 1072 3764 | Face 1966 1627 815 983 3765 | Face 1967 1265 234 984 3766 | Face 1968 708 62 178 3767 | Face 1969 838 385 1631 3768 | Face 1970 1631 626 1627 3769 | Face 1971 986 386 135 3770 | Face 1972 986 185 155 3771 | Face 1973 987 1674 368 3772 | Face 1974 987 168 723 3773 | Face 1975 988 388 76 3774 | Face 1976 988 187 95 3775 | Face 1977 707 201 1307 3776 | Face 1978 746 635 1230 3777 | Face 1979 1277 1679 559 3778 | Face 1980 1277 189 558 3779 | Face 1981 749 1278 968 3780 | Face 1982 872 522 525 3781 | Face 1983 1281 1683 709 3782 | Face 1984 1281 191 683 3783 | Face 1985 993 393 1647 3784 | Face 1986 280 480 1457 3785 | Face 1987 1773 1090 1071 3786 | Face 1988 262 462 1421 3787 | Face 1989 705 203 1290 3788 | Face 1990 995 176 611 3789 | Face 1991 1289 13 996 3790 | Face 1992 996 195 1358 3791 | Face 1993 704 61 648 3792 | Face 1994 1655 1652 997 3793 | Face 1995 1293 43 998 3794 | Face 1996 703 219 1303 3795 | Face 1997 702 204 1302 3796 | Face 1998 1659 396 999 3797 | Face 1999 1297 830 1000 3798 | Face 2000 701 201 1724 3799 | Face 2001 700 60 1239 3800 | Face 2002 1663 316 1001 3801 | Face 2003 1301 218 1002 3802 | Face 2004 699 197 1299 3803 | Face 2005 698 182 1298 3804 | Face 2006 1667 175 1003 3805 | Face 2007 1305 1450 1004 3806 | Face 2008 697 199 712 3807 | Face 2009 1706 405 1671 3808 | Face 2010 1671 186 1668 3809 | Face 2011 1006 406 1714 3810 | Face 2012 1006 205 1554 3811 | Face 2013 1007 190 388 3812 | Face 2014 1007 188 126 3813 | Face 2015 1008 408 1764 3814 | Face 2016 1008 669 1789 3815 | Face 2017 1355 755 1393 3816 | Face 2018 758 34 735 3817 | Face 2019 1317 1719 1749 3818 | Face 2020 1317 209 1753 3819 | Face 2021 758 759 596 3820 | Face 2022 759 1278 1196 3821 | Face 2023 1321 1723 1715 3822 | Face 2024 1321 211 1717 3823 | Face 2025 1299 998 43 3824 | Face 2026 413 1687 719 3825 | Face 2027 1325 1727 1680 3826 | Face 2028 725 1325 1680 3827 | Face 2029 694 200 1294 3828 | Face 2030 1015 196 1234 3829 | Face 2031 1329 1641 1016 3830 | Face 2032 1016 215 1646 3831 | Face 2033 693 197 695 3832 | Face 2034 1695 1692 1017 3833 | Face 2035 1333 1606 1018 3834 | Face 2036 81 479 721 3835 | Face 2037 53 96 1272 3836 | Face 2038 1699 1094 1019 3837 | Face 2039 1337 1566 1020 3838 | Face 2040 671 183 1271 3839 | Face 2041 668 52 166 3840 | Face 2042 1703 278 1021 3841 | Face 2043 1341 1526 1022 3842 | Face 2044 667 181 1267 3843 | Face 2045 1094 1696 59 3844 | Face 2046 1707 123 1023 3845 | Face 2047 912 251 1364 3846 | Face 2048 665 183 274 3847 | Face 2049 1746 425 1711 3848 | Face 2050 1711 206 1708 3849 | Face 2051 1026 426 1435 3850 | Face 2052 1026 225 1442 3851 | Face 2053 1027 1754 408 3852 | Face 2054 1027 208 1755 3853 | Face 2055 1028 428 1366 3854 | Face 2056 1028 1720 1395 3855 | Face 2057 664 51 309 3856 | Face 2058 35 1355 1393 3857 | Face 2059 1357 1759 1322 3858 | Face 2060 1357 229 1326 3859 | Face 2061 663 199 1263 3860 | Face 2062 1119 1059 1070 3861 | Face 2063 1361 1763 1279 3862 | Face 2064 1361 231 1282 3863 | Face 2065 909 111 1484 3864 | Face 2066 433 1727 1713 3865 | Face 2067 1365 1767 1235 3866 | Face 2068 765 1365 1235 3867 | Face 2069 662 184 1262 3868 | Face 2070 1035 216 1677 3869 | Face 2071 1369 1166 1036 3870 | Face 2072 1036 235 1195 3871 | Face 2073 661 181 376 3872 | Face 2074 1735 1732 1037 3873 | Face 2075 1373 1122 1038 3874 | Face 2076 660 50 392 3875 | Face 2077 659 177 1259 3876 | Face 2078 1739 1557 1039 3877 | Face 2079 1377 1089 1040 3878 | Face 2080 658 162 1258 3879 | Face 2081 657 179 496 3880 | Face 2082 1743 1517 1041 3881 | Face 2083 1381 1051 1042 3882 | Face 2084 1353 756 1047 3883 | Face 2085 1353 228 1350 3884 | Face 2086 1747 1473 1043 3885 | Face 2087 1385 1014 1044 3886 | Face 2088 654 180 1254 3887 | Face 2089 1786 445 1751 3888 | Face 2090 1751 226 1747 3889 | Face 2091 1046 446 990 3890 | Face 2092 1046 245 992 3891 | Face 2093 1047 1794 428 3892 | Face 2094 1047 228 1353 3893 | Face 2095 1048 448 954 3894 | Face 2096 1048 1286 970 3895 | Face 2097 653 177 549 3896 | Face 2098 1602 1567 562 3897 | Face 2099 1397 1345 932 3898 | Face 2100 1397 249 934 3899 | Face 2101 650 378 1250 3900 | Face 2102 723 44 636 3901 | Face 2103 1401 1431 911 3902 | Face 2104 1401 251 912 3903 | Face 2105 723 1230 1632 3904 | Face 2106 453 1767 1275 3905 | Face 2107 1405 841 881 3906 | Face 2108 805 1405 881 3907 | Face 2109 520 1519 110 3908 | Face 2110 1055 236 1233 3909 | Face 2111 1409 847 1056 3910 | Face 2112 1056 255 851 3911 | Face 2113 721 1420 1005 3912 | Face 2114 1775 1772 1057 3913 | Face 2115 1413 811 1058 3914 | Face 2116 628 42 803 3915 | Face 2117 627 161 1227 3916 | Face 2118 1779 1070 1059 3917 | Face 2119 1417 771 1060 3918 | Face 2120 798 165 966 3919 | Face 2121 625 163 855 3920 | Face 2122 1783 1032 1061 3921 | Face 2123 1421 731 1062 3922 | Face 2124 624 41 866 3923 | Face 2125 623 179 1223 3924 | Face 2126 1787 1009 1063 3925 | Face 2127 1425 691 1064 3926 | Face 2128 622 164 1222 3927 | Face 2129 918 465 1791 3928 | Face 2130 1791 246 1787 3929 | Face 2131 1066 466 651 3930 | Face 2132 1066 265 673 3931 | Face 2133 1067 118 448 3932 | Face 2134 1067 248 949 3933 | Face 2135 1068 468 630 3934 | Face 2136 1068 914 634 3935 | Face 2137 621 161 888 3936 | Face 2138 798 1230 635 3937 | Face 2139 1437 1665 594 3938 | Face 2140 1437 269 597 3939 | Face 2141 620 40 895 3940 | Face 2142 1476 880 1514 3941 | Face 2143 1441 1410 561 3942 | Face 2144 1441 271 567 3943 | Face 2145 1162 110 1117 3944 | Face 2146 473 841 910 3945 | Face 2147 1445 1285 528 3946 | Face 2148 845 1445 528 3947 | Face 2149 619 157 1219 3948 | Face 2150 1075 256 877 3949 | Face 2151 1449 494 1076 3950 | Face 2152 1076 275 513 3951 | Face 2153 618 142 1218 3952 | Face 2154 266 443 1077 3953 | Face 2155 1453 474 1078 3954 | Face 2156 617 159 985 3955 | Face 2157 39 519 1216 3956 | Face 2158 1429 757 1079 3957 | Face 2159 1457 451 1080 3958 | Face 2160 801 165 1192 3959 | Face 2161 614 160 1214 3960 | Face 2162 978 717 1081 3961 | Face 2163 1461 429 1082 3962 | Face 2164 613 157 1093 3963 | Face 2165 610 358 1210 3964 | Face 2166 193 677 1083 3965 | Face 2167 1465 394 1084 3966 | Face 2168 1132 569 936 3967 | Face 2169 791 485 143 3968 | Face 2170 143 464 193 3969 | Face 2171 1086 486 371 3970 | Face 2172 1086 285 374 3971 | Face 2173 1087 258 468 3972 | Face 2174 1087 268 601 3973 | Face 2175 1088 488 350 3974 | Face 2176 1088 568 352 3975 | Face 2177 591 585 1191 3976 | Face 2178 1532 472 1025 3977 | Face 2179 1477 83 330 3978 | Face 2180 1477 289 331 3979 | Face 2181 588 32 1508 3980 | Face 2182 199 697 1000 3981 | Face 2183 1481 444 310 3982 | Face 2184 1481 291 311 3983 | Face 2185 42 628 879 3984 | Face 2186 493 1285 557 3985 | Face 2187 882 1721 87 3986 | Face 2188 882 293 1487 3987 | Face 2189 587 141 1187 3988 | Face 2190 1095 276 527 3989 | Face 2191 1489 66 1096 3990 | Face 2192 1096 295 75 3991 | Face 2193 392 1012 797 3992 | Face 2194 1045 1133 1097 3993 | Face 2195 1493 46 1098 3994 | Face 2196 969 74 950 3995 | Face 2197 584 31 1588 3996 | Face 2198 944 434 1099 3997 | Face 2199 1497 17 1100 3998 | Face 2200 583 159 1183 3999 | Face 2201 902 1386 1101 4000 | Face 2202 582 144 1182 4001 | Face 2203 104 502 1295 4002 | Face 2204 581 141 1649 4003 | Face 2205 119 503 1537 4004 | Face 2206 580 30 1666 4005 | Face 2207 579 137 1179 4006 | Face 2208 372 1541 1104 4007 | Face 2209 1111 1313 1105 4008 | Face 2210 578 122 1178 4009 | Face 2211 879 983 815 4010 | Face 2212 577 139 1726 4011 | Face 2213 101 507 1501 4012 | Face 2214 756 74 969 4013 | Face 2215 1263 1000 830 4014 | Face 2216 273 1545 1108 4015 | Face 2217 906 1226 1109 4016 | Face 2218 1109 506 1511 4017 | Face 2219 574 140 1174 4018 | Face 2220 1110 108 1127 4019 | Face 2221 103 511 1505 4020 | Face 2222 573 137 1796 4021 | Face 2223 570 338 1170 4022 | Face 2224 1112 125 89 4023 | Face 2225 908 1167 1127 4024 | Face 2226 908 108 308 4025 | Face 2227 524 112 1558 4026 | Face 2228 1621 843 826 4027 | Face 2229 551 545 1151 4028 | Face 2230 515 105 1247 4029 | Face 2231 1116 516 134 4030 | Face 2232 991 109 1117 4031 | Face 2233 1117 1033 1162 4032 | Face 2234 1117 110 1519 4033 | Face 2235 1222 1225 829 4034 | Face 2236 991 112 1123 4035 | Face 2237 548 22 213 4036 | Face 2238 316 1700 896 4037 | Face 2239 1120 520 65 4038 | Face 2240 1120 129 642 4039 | Face 2241 1121 909 1123 4040 | Face 2242 1121 112 1523 4041 | Face 2243 547 121 1147 4042 | Face 2244 312 880 1476 4043 | Face 2245 1294 1297 930 4044 | Face 2246 1123 109 991 4045 | Face 2247 1124 524 107 4046 | Face 2248 463 810 847 4047 | Face 2249 786 964 839 4048 | Face 2250 1326 229 1320 4049 | Face 2251 1693 797 1012 4050 | Face 2252 526 116 672 4051 | Face 2253 82 461 681 4052 | Face 2254 525 111 872 4053 | Face 2255 1128 131 565 4054 | Face 2256 1128 133 1565 4055 | Face 2257 1129 529 672 4056 | Face 2258 1129 116 1531 4057 | Face 2259 318 530 590 4058 | Face 2260 544 21 287 4059 | Face 2261 543 139 1143 4060 | Face 2262 1131 113 789 4061 | Face 2263 1132 1756 335 4062 | Face 2264 1756 1132 575 4063 | Face 2265 80 780 1119 4064 | Face 2266 542 124 1142 4065 | Face 2267 120 534 487 4066 | Face 2268 541 121 372 4067 | Face 2269 1508 826 843 4068 | Face 2270 540 20 469 4069 | Face 2271 539 117 1139 4070 | Face 2272 1796 1573 1136 4071 | Face 2273 920 518 1137 4072 | Face 2274 538 102 1138 4073 | Face 2275 102 538 1346 4074 | Face 2276 537 119 589 4075 | Face 2277 117 539 1533 4076 | Face 2278 1033 109 1480 4077 | Face 2279 59 1019 1094 4078 | Face 2280 1726 1577 1140 4079 | Face 2281 922 314 1141 4080 | Face 2282 534 120 1134 4081 | Face 2283 124 542 227 4082 | Face 2284 533 117 643 4083 | Face 2285 139 543 1577 4084 | Face 2286 530 318 1130 4085 | Face 2287 1720 720 1316 4086 | Face 2288 1649 1581 1144 4087 | Face 2289 1151 247 1142 4088 | Face 2290 511 103 1111 4089 | Face 2291 60 700 59 4090 | Face 2292 508 12 1273 4091 | Face 2293 121 547 1541 4092 | Face 2294 507 101 1107 4093 | Face 2295 163 625 964 4094 | Face 2296 1586 1585 1148 4095 | Face 2297 926 147 1149 4096 | Face 2298 1149 546 1551 4097 | Face 2299 505 103 1318 4098 | Face 2300 1150 128 99 4099 | Face 2301 545 551 1545 4100 | Face 2302 504 11 1335 4101 | Face 2303 503 119 1103 4102 | Face 2304 1152 145 1368 4103 | Face 2305 928 134 99 4104 | Face 2306 928 128 328 4105 | Face 2307 502 104 1102 4106 | Face 2308 201 701 1002 4107 | Face 2309 501 101 1438 4108 | Face 2310 555 125 167 4109 | Face 2311 1156 556 1408 4110 | Face 2312 516 14 127 4111 | Face 2313 1157 65 114 4112 | Face 2314 1157 130 1559 4113 | Face 2315 41 624 456 4114 | Face 2316 1322 232 1363 4115 | Face 2317 500 300 1455 4116 | Face 2318 309 238 1797 4117 | Face 2319 1160 560 1354 4118 | Face 2320 1160 149 1238 4119 | Face 2321 1161 107 1163 4120 | Face 2322 1161 132 1563 4121 | Face 2323 499 91 1466 4122 | Face 2324 1125 108 1110 4123 | Face 2325 456 981 869 4124 | Face 2326 1163 129 49 4125 | Face 2327 1164 564 1274 4126 | Face 2328 800 1345 250 4127 | Face 2329 1307 1002 218 4128 | Face 2330 1125 516 927 4129 | Face 2331 498 890 1495 4130 | Face 2332 566 136 1231 4131 | Face 2333 497 100 1532 4132 | Face 2334 565 131 154 4133 | Face 2335 1168 151 605 4134 | Face 2336 1168 153 1605 4135 | Face 2337 1169 569 1231 4136 | Face 2338 1169 136 1571 4137 | Face 2339 338 570 1729 4138 | Face 2340 495 856 1629 4139 | Face 2341 484 284 751 4140 | Face 2342 1171 133 792 4141 | Face 2343 1172 1013 355 4142 | Face 2344 1013 1172 615 4143 | Face 2345 241 781 1042 4144 | Face 2346 850 478 1453 4145 | Face 2347 140 574 1675 4146 | Face 2348 482 282 885 4147 | Face 2349 1657 887 874 4148 | Face 2350 481 92 904 4149 | Face 2351 480 280 944 4150 | Face 2352 1093 1613 1176 4151 | Face 2353 940 1681 1177 4152 | Face 2354 479 81 989 4153 | Face 2355 122 578 294 4154 | Face 2356 478 850 1045 4155 | Face 2357 137 579 1573 4156 | Face 2358 477 90 1065 4157 | Face 2359 475 816 1213 4158 | Face 2360 985 1617 1180 4159 | Face 2361 942 1609 1181 4160 | Face 2362 464 264 193 4161 | Face 2363 144 582 1516 4162 | Face 2364 1515 1034 1052 4163 | Face 2365 159 583 1617 4164 | Face 2366 462 262 978 4165 | Face 2367 461 82 1145 4166 | Face 2368 888 1621 1184 4167 | Face 2369 1191 1546 1182 4168 | Face 2370 460 260 1429 4169 | Face 2371 1258 1221 878 4170 | Face 2372 459 71 1506 4171 | Face 2373 141 587 1581 4172 | Face 2374 458 810 266 4173 | Face 2375 457 80 733 4174 | Face 2376 855 1625 1188 4175 | Face 2377 946 1448 1189 4176 | Face 2378 1189 586 1591 4177 | Face 2379 455 776 483 4178 | Face 2380 1190 148 1394 4179 | Face 2381 585 591 1585 4180 | Face 2382 804 252 1682 4181 | Face 2383 90 477 447 4182 | Face 2384 1192 165 735 4183 | Face 2385 948 1408 1394 4184 | Face 2386 948 148 348 4185 | Face 2387 442 242 1783 4186 | Face 2388 123 1704 73 4187 | Face 2389 441 72 1782 4188 | Face 2390 595 145 1478 4189 | Face 2391 1196 596 759 4190 | Face 2392 1126 4 63 4191 | Face 2393 1197 1354 1398 4192 | Face 2394 1197 150 1599 4193 | Face 2395 1338 1301 198 4194 | Face 2396 1126 515 1165 4195 | Face 2397 440 240 1779 4196 | Face 2398 815 1624 879 4197 | Face 2399 1200 600 718 4198 | Face 2400 1200 169 641 4199 | Face 2401 1201 1274 1203 4200 | Face 2402 1201 152 1603 4201 | Face 2403 439 61 1778 4202 | Face 2404 1127 108 908 4203 | Face 2405 1227 962 883 4204 | Face 2406 1203 149 1319 4205 | Face 2407 1204 604 678 4206 | Face 2408 171 603 1204 4207 | Face 2409 1737 1797 238 4208 | Face 2410 1127 515 1110 4209 | Face 2411 438 770 1775 4210 | Face 2412 606 156 1118 4211 | Face 2413 437 70 1774 4212 | Face 2414 605 151 1242 4213 | Face 2415 1208 603 645 4214 | Face 2416 1208 173 1645 4215 | Face 2417 1209 609 1118 4216 | Face 2418 1209 156 1611 4217 | Face 2419 358 610 1612 4218 | Face 2420 435 736 1770 4219 | Face 2421 934 249 1360 4220 | Face 2422 1211 153 1206 4221 | Face 2423 519 612 599 4222 | Face 2424 519 599 655 4223 | Face 2425 1387 1042 1051 4224 | Face 2426 447 1416 1085 4225 | Face 2427 160 614 925 4226 | Face 2428 422 222 1743 4227 | Face 2429 1588 874 887 4228 | Face 2430 421 62 1742 4229 | Face 2431 420 220 1739 4230 | Face 2432 549 1653 1216 4231 | Face 2433 960 945 1217 4232 | Face 2434 419 51 1738 4233 | Face 2435 142 618 1596 4234 | Face 2436 418 730 1735 4235 | Face 2437 157 619 1613 4236 | Face 2438 417 60 1734 4237 | Face 2439 415 696 1730 4238 | Face 2440 496 1657 1220 4239 | Face 2441 962 878 1221 4240 | Face 2442 404 204 1707 4241 | Face 2443 164 622 815 4242 | Face 2444 403 53 1706 4243 | Face 2445 179 623 1657 4244 | Face 2446 402 202 1703 4245 | Face 2447 401 52 1702 4246 | Face 2448 376 1661 1224 4247 | Face 2449 964 829 1225 4248 | Face 2450 400 200 1699 4249 | Face 2451 1564 1021 278 4250 | Face 2452 399 41 1698 4251 | Face 2453 161 627 1621 4252 | Face 2454 398 690 1695 4253 | Face 2455 397 50 1694 4254 | Face 2456 274 106 803 4255 | Face 2457 966 786 1229 4256 | Face 2458 626 1631 366 4257 | Face 2459 395 656 1690 4258 | Face 2460 1230 168 746 4259 | Face 2461 163 786 1625 4260 | Face 2462 384 184 1667 4261 | Face 2463 383 632 838 4262 | Face 2464 1232 185 27 4263 | Face 2465 968 759 746 4264 | Face 2466 968 168 368 4265 | Face 2467 382 182 1663 4266 | Face 2468 61 704 1564 4267 | Face 2469 381 42 1662 4268 | Face 2470 635 165 798 4269 | Face 2471 1236 636 95 4270 | Face 2472 1322 229 1357 4271 | Face 2473 1237 718 749 4272 | Face 2474 1237 170 1639 4273 | Face 2475 161 621 962 4274 | Face 2476 1601 1016 1641 4275 | Face 2477 380 180 1659 4276 | Face 2478 203 705 1004 4277 | Face 2479 1240 640 558 4278 | Face 2480 1240 189 1114 4279 | Face 2481 1241 678 1243 4280 | Face 2482 1241 172 1643 4281 | Face 2483 379 31 1658 4282 | Face 2484 666 174 1245 4283 | Face 2485 40 620 1053 4284 | Face 2486 1243 169 706 4285 | Face 2487 1244 644 683 4286 | Face 2488 191 1288 993 4287 | Face 2489 166 115 1370 4288 | Face 2490 1245 174 1647 4289 | Face 2491 1193 769 1635 4290 | Face 2492 646 176 563 4291 | Face 2493 377 40 1654 4292 | Face 2494 645 171 666 4293 | Face 2495 1248 1288 1287 4294 | Face 2496 1248 1287 1685 4295 | Face 2497 1249 649 563 4296 | Face 2498 1249 176 1651 4297 | Face 2499 378 650 1652 4298 | Face 2500 375 39 1650 4299 | Face 2501 1162 312 908 4300 | Face 2502 1251 173 629 4301 | Face 2503 1252 652 1358 4302 | Face 2504 1252 1358 195 4303 | Face 2505 1629 1097 1133 4304 | Face 2506 363 592 1548 4305 | Face 2507 180 654 396 4306 | Face 2508 362 162 1623 4307 | Face 2509 1053 979 925 4308 | Face 2510 361 32 1622 4309 | Face 2511 360 160 1619 4310 | Face 2512 695 1693 1256 4311 | Face 2513 980 436 1257 4312 | Face 2514 359 21 1618 4313 | Face 2515 162 658 869 4314 | Face 2516 681 1384 1185 4315 | Face 2517 177 659 1653 4316 | Face 2518 357 30 1614 4317 | Face 2519 355 576 1610 4318 | Face 2520 712 1697 1260 4319 | Face 2521 982 336 1261 4320 | Face 2522 344 144 1587 4321 | Face 2523 184 662 175 4322 | Face 2524 343 552 253 4323 | Face 2525 199 663 1697 4324 | Face 2526 342 142 1583 4325 | Face 2527 341 22 1582 4326 | Face 2528 1724 1701 1264 4327 | Face 2529 984 214 1265 4328 | Face 2530 340 140 1579 4329 | Face 2531 1311 1004 1450 4330 | Face 2532 339 11 1578 4331 | Face 2533 181 667 1661 4332 | Face 2534 989 768 1228 4333 | Face 2535 337 20 1574 4334 | Face 2536 1290 1705 1268 4335 | Face 2537 986 1271 1269 4336 | Face 2538 186 1671 386 4337 | Face 2539 335 536 1570 4338 | Face 2540 1270 188 36 4339 | Face 2541 183 671 106 4340 | Face 2542 324 124 1547 4341 | Face 2543 323 512 1314 4342 | Face 2544 1272 205 1757 4343 | Face 2545 988 95 36 4344 | Face 2546 988 188 388 4345 | Face 2547 322 122 1543 4346 | Face 2548 1613 972 931 4347 | Face 2549 321 12 1542 4348 | Face 2550 675 185 135 4349 | Face 2551 1276 676 1789 4350 | Face 2552 1165 4 1126 4351 | Face 2553 1277 558 76 4352 | Face 2554 1277 190 1679 4353 | Face 2555 1214 1217 945 4354 | Face 2556 1165 1167 876 4355 | Face 2557 320 120 1539 4356 | Face 2558 1302 1305 1194 4357 | Face 2559 1280 680 1753 4358 | Face 2560 1280 209 1686 4359 | Face 2561 1281 683 1283 4360 | Face 2562 1281 192 1683 4361 | Face 2563 319 1 1538 4362 | Face 2564 682 1687 1212 4363 | Face 2565 1596 1620 952 4364 | Face 2566 1283 189 559 4365 | Face 2567 1284 684 1717 4366 | Face 2568 1284 211 1673 4367 | Face 2569 1183 960 965 4368 | Face 2570 1701 1370 115 4369 | Face 2571 954 1286 1048 4370 | Face 2572 686 196 974 4371 | Face 2573 317 10 1534 4372 | Face 2574 1288 709 682 4373 | Face 2575 1725 1328 725 4374 | Face 2576 1666 931 972 4375 | Face 2577 1289 689 974 4376 | Face 2578 1289 196 1691 4377 | Face 2579 1009 1784 1050 4378 | Face 2580 315 9 1530 4379 | Face 2581 304 104 1507 4380 | Face 2582 1291 1287 1212 4381 | Face 2583 1292 692 1646 4382 | Face 2584 1292 1646 215 4383 | Face 2585 998 69 1293 4384 | Face 2586 303 3 903 4385 | Face 2587 200 694 1094 4386 | Face 2588 302 102 1503 4387 | Face 2589 73 1023 123 4388 | Face 2590 301 2 1502 4389 | Face 2591 897 899 15 4390 | Face 2592 1633 1733 1296 4391 | Face 2593 1000 930 1297 4392 | Face 2594 500 898 17 4393 | Face 2595 182 698 316 4394 | Face 2596 893 295 37 4395 | Face 2597 197 699 1693 4396 | Face 2598 498 894 46 4397 | Face 2599 62 708 73 4398 | Face 2600 1593 1737 1300 4399 | Face 2601 1002 198 1301 4400 | Face 2602 159 617 960 4401 | Face 2603 204 702 123 4402 | Face 2604 865 867 391 4403 | Face 2605 219 703 1737 4404 | Face 2606 484 286 394 4405 | Face 2607 861 863 414 4406 | Face 2608 1553 1741 1304 4407 | Face 2609 1004 1194 1305 4408 | Face 2610 482 862 429 4409 | Face 2611 1554 203 1311 4410 | Face 2612 857 859 449 4411 | Face 2613 201 707 1701 4412 | Face 2614 480 858 451 4413 | Face 2615 853 275 471 4414 | Face 2616 1513 1745 1308 4415 | Face 2617 1006 1311 1309 4416 | Face 2618 206 1711 406 4417 | Face 2619 478 854 474 4418 | Face 2620 1310 208 1760 4419 | Face 2621 1173 276 1095 4420 | Face 2622 1167 312 1476 4421 | Face 2623 1554 205 1272 4422 | Face 2624 1312 225 1355 4423 | Face 2625 1008 1789 1760 4424 | Face 2626 1008 208 408 4425 | Face 2627 825 827 687 4426 | Face 2628 764 232 1798 4427 | Face 2629 80 457 761 4428 | Face 2630 715 205 1714 4429 | Face 2631 1316 716 1395 4430 | Face 2632 1207 569 647 4431 | Face 2633 1317 1753 1764 4432 | Face 2634 1317 210 1719 4433 | Face 2635 1366 230 1357 4434 | Face 2636 1207 18 1565 4435 | Face 2637 821 823 727 4436 | Face 2638 1106 1109 1226 4437 | Face 2639 1320 720 1326 4438 | Face 2640 1320 229 1246 4439 | Face 2641 1321 1717 1323 4440 | Face 2642 1321 212 1723 4441 | Face 2643 462 822 731 4442 | Face 2644 722 1727 1325 4443 | Face 2645 1714 1310 715 4444 | Face 2646 1323 209 1749 4445 | Face 2647 1324 724 1282 4446 | Face 2648 1324 231 1202 4447 | Face 2649 1714 205 1006 4448 | Face 2650 925 1616 1053 4449 | Face 2651 817 819 767 4450 | Face 2652 726 216 1637 4451 | Face 2653 460 818 771 4452 | Face 2654 1327 211 1715 4453 | Face 2655 1765 1669 765 4454 | Face 2656 1325 1327 722 4455 | Face 2657 1329 729 1637 4456 | Face 2658 1329 216 1731 4457 | Face 2659 1173 850 494 4458 | Face 2660 813 255 807 4459 | Face 2661 458 814 811 4460 | Face 2662 1316 720 1754 4461 | Face 2663 1332 732 1195 4462 | Face 2664 1332 1195 235 4463 | Face 2665 1018 1601 1333 4464 | Face 2666 1755 1310 1712 4465 | Face 2667 220 734 1557 4466 | Face 2668 1755 64 716 4467 | Face 2669 1125 14 516 4468 | Face 2670 785 787 1011 4469 | Face 2671 244 246 1014 4470 | Face 2672 1153 1773 1336 4471 | Face 2673 1020 1561 1337 4472 | Face 2674 781 783 1049 4473 | Face 2675 202 738 278 4474 | Face 2676 442 782 1051 4475 | Face 2677 217 739 1733 4476 | Face 2678 777 779 1072 4477 | Face 2679 440 778 1089 4478 | Face 2680 1091 1777 1340 4479 | Face 2681 1022 1521 1341 4480 | Face 2682 773 235 1115 4481 | Face 2683 224 742 1473 4482 | Face 2684 438 774 1122 4483 | Face 2685 239 743 1777 4484 | Face 2686 157 613 1219 4485 | Face 2687 1113 38 598 4486 | Face 2688 1054 1781 1344 4487 | Face 2689 1024 1479 1486 4488 | Face 2690 745 747 1479 4489 | Face 2691 1113 612 1198 4490 | Face 2692 224 226 1486 4491 | Face 2693 221 747 1741 4492 | Face 2694 741 743 1521 4493 | Face 2695 422 742 1526 4494 | Face 2696 1030 1785 1348 4495 | Face 2697 1418 1381 1049 4496 | Face 2698 226 1751 426 4497 | Face 2699 737 739 1561 4498 | Face 2700 1350 228 1359 4499 | Face 2701 223 1442 1745 4500 | Face 2702 420 738 1566 4501 | Face 2703 217 215 1601 4502 | Face 2704 1352 245 950 4503 | Face 2705 1028 1395 1359 4504 | Face 2706 1028 228 428 4505 | Face 2707 418 734 1606 4506 | Face 2708 1198 156 606 4507 | Face 2709 1198 612 975 4508 | Face 2710 755 225 1435 4509 | Face 2711 1356 756 970 4510 | Face 2712 1125 1110 1512 4511 | Face 2713 1357 1326 1366 4512 | Face 2714 1357 230 1759 4513 | Face 2715 1605 28 353 4514 | Face 2716 1247 105 906 4515 | Face 2717 1605 1211 1158 4516 | Face 2718 1118 156 1209 4517 | Face 2719 1360 760 934 4518 | Face 2720 1360 249 891 4519 | Face 2721 1361 1282 1363 4520 | Face 2722 1361 232 1763 4521 | Face 2723 705 707 1194 4522 | Face 2724 762 1767 1365 4523 | Face 2725 1118 1211 606 4524 | Face 2726 1363 229 1322 4525 | Face 2727 1364 764 912 4526 | Face 2728 1364 251 873 4527 | Face 2729 1247 1110 515 4528 | Face 2730 760 1759 230 4529 | Face 2731 404 206 1450 4530 | Face 2732 766 236 1159 4531 | Face 2733 701 703 198 4532 | Face 2734 1367 231 1279 4533 | Face 2735 1594 1199 805 4534 | Face 2736 1215 956 1154 4535 | Face 2737 1369 769 1159 4536 | Face 2738 1369 236 1771 4537 | Face 2739 816 475 794 4538 | Face 2740 402 702 218 4539 | Face 2741 697 699 930 4540 | Face 2742 1266 105 1472 4541 | Face 2743 1372 772 851 4542 | Face 2744 1372 851 255 4543 | Face 2745 1038 1115 1373 4544 | Face 2746 400 698 830 4545 | Face 2747 240 774 1070 4546 | Face 2748 693 195 69 4547 | Face 2749 1158 28 1605 4548 | Face 2750 398 694 43 4549 | Face 2751 1158 609 670 4550 | Face 2752 833 424 1376 4551 | Face 2753 1040 1072 1377 4552 | Face 2754 1748 1052 1034 4553 | Face 2755 222 778 1517 4554 | Face 2756 665 667 214 4555 | Face 2757 237 779 1773 4556 | Face 2758 384 186 234 4557 | Face 2759 661 663 336 4558 | Face 2760 793 1748 1380 4559 | Face 2761 1042 1049 1381 4560 | Face 2762 382 662 356 4561 | Face 2763 244 782 1009 4562 | Face 2764 657 659 436 4563 | Face 2765 259 783 1748 4564 | Face 2766 380 658 470 4565 | Face 2767 653 655 1255 4566 | Face 2768 753 1185 1384 4567 | Face 2769 1044 1011 1385 4568 | Face 2770 378 654 531 4569 | Face 2771 1172 609 956 4570 | Face 2772 1789 669 1276 4571 | Face 2773 241 787 1781 4572 | Face 2774 1642 1607 602 4573 | Face 2775 625 627 829 4574 | Face 2776 713 938 1388 4575 | Face 2777 794 1412 489 4576 | Face 2778 246 1791 446 4577 | Face 2779 164 626 839 4578 | Face 2780 1390 248 951 4579 | Face 2781 243 992 1785 4580 | Face 2782 621 623 878 4581 | Face 2783 362 622 883 4582 | Face 2784 1392 265 607 4583 | Face 2785 1048 970 951 4584 | Face 2786 1048 248 448 4585 | Face 2787 617 619 945 4586 | Face 2788 603 973 1204 4587 | Face 2789 360 618 965 4588 | Face 2790 795 245 990 4589 | Face 2791 1396 796 634 4590 | Face 2792 1266 511 1226 4591 | Face 2793 1397 934 954 4592 | Face 2794 1397 250 1345 4593 | Face 2795 1766 1789 676 4594 | Face 2796 1644 58 1725 4595 | Face 2797 613 615 1215 4596 | Face 2798 12 508 1406 4597 | Face 2799 1400 800 597 4598 | Face 2800 1400 269 553 4599 | Face 2801 1401 912 1403 4600 | Face 2802 1401 252 1431 4601 | Face 2803 358 614 1073 4602 | Face 2804 802 841 1405 4603 | Face 2805 1175 936 1640 4604 | Face 2806 1403 249 932 4605 | Face 2807 1404 804 567 4606 | Face 2808 1404 271 517 4607 | Face 2809 1198 38 1113 4608 | Face 2810 1198 606 1608 4609 | Face 2811 1206 153 602 4610 | Face 2812 806 256 837 4611 | Face 2813 1206 606 1211 4612 | Face 2814 1407 251 911 4613 | Face 2815 1330 870 845 4614 | Face 2816 1766 54 1757 4615 | Face 2817 1409 809 837 4616 | Face 2818 1409 256 463 4617 | Face 2819 1253 98 527 4618 | Face 2820 585 587 1546 4619 | Face 2821 344 586 1186 4620 | Face 2822 1406 923 1295 4621 | Face 2823 1412 812 513 4622 | Face 2824 1412 513 275 4623 | Face 2825 1058 807 1413 4624 | Face 2826 581 583 1609 4625 | Face 2827 260 814 757 4626 | Face 2828 342 582 1628 4627 | Face 2829 605 153 1168 4628 | Face 2830 577 579 1681 4629 | Face 2831 340 578 1689 4630 | Face 2832 489 1085 1416 4631 | Face 2833 1060 767 1417 4632 | Face 2834 573 575 1175 4633 | Face 2835 242 818 1032 4634 | Face 2836 338 574 1795 4635 | Face 2837 257 819 424 4636 | Face 2838 1282 231 1324 4637 | Face 2839 1764 669 1008 4638 | Face 2840 454 1005 1420 4639 | Face 2841 1062 727 1421 4640 | Face 2842 545 547 247 4641 | Face 2843 264 822 677 4642 | Face 2844 324 546 1146 4643 | Face 2845 279 823 1005 4644 | Face 2846 541 543 314 4645 | Face 2847 322 542 364 4646 | Face 2848 431 905 1424 4647 | Face 2849 1064 687 1425 4648 | Face 2850 537 539 518 4649 | Face 2851 604 1603 152 4650 | Face 2852 320 538 554 4651 | Face 2853 261 827 1185 4652 | Face 2854 533 535 1135 4653 | Face 2855 318 534 639 4654 | Face 2856 409 831 1428 4655 | Face 2857 1253 1285 493 4656 | Face 2858 464 143 466 4657 | Face 2859 1238 564 1598 4658 | Face 2860 1430 268 608 4659 | Face 2861 263 673 938 4660 | Face 2862 1203 152 1201 4661 | Face 2863 505 507 1313 4662 | Face 2864 1432 285 334 4663 | Face 2865 1068 634 608 4664 | Face 2866 1068 268 468 4665 | Face 2867 304 506 1106 4666 | Face 2868 1242 151 1201 4667 | Face 2869 501 503 1386 4668 | Face 2870 835 265 651 4669 | Face 2871 1436 836 352 4670 | Face 2872 1501 1315 1306 4671 | Face 2873 1437 597 630 4672 | Face 2874 1437 270 1665 4673 | Face 2875 1242 602 605 4674 | Face 2876 1102 1105 1313 4675 | Face 2877 302 502 1415 4676 | Face 2878 1274 151 1164 4677 | Face 2879 1440 840 331 4678 | Face 2880 1440 289 97 4679 | Face 2881 1441 567 1443 4680 | Face 2882 1441 272 1410 4681 | Face 2883 860 499 1099 4682 | Face 2884 842 1285 1445 4683 | Face 2885 1760 715 1310 4684 | Face 2886 1443 269 594 4685 | Face 2887 1444 844 311 4686 | Face 2888 1444 291 77 4687 | Face 2889 1760 208 1008 4688 | Face 2890 600 1599 150 4689 | Face 2891 856 497 1097 4690 | Face 2892 846 276 491 4691 | Face 2893 776 455 1092 4692 | Face 2894 1447 271 561 4693 | Face 2895 514 1487 293 4694 | Face 2896 1156 560 130 4695 | Face 2897 1449 849 491 4696 | Face 2898 1449 276 1173 4697 | Face 2899 260 460 1417 4698 | Face 2900 824 481 1081 4699 | Face 2901 820 479 1079 4700 | Face 2902 1279 762 1367 4701 | Face 2903 1452 852 75 4702 | Face 2904 1452 75 295 4703 | Face 2905 1078 471 1453 4704 | Face 2906 816 477 1077 4705 | Face 2907 280 854 434 4706 | Face 2908 1286 760 1356 4707 | Face 2909 1644 729 763 4708 | Face 2910 784 461 1061 4709 | Face 2911 780 459 1059 4710 | Face 2912 55 1556 1456 4711 | Face 2913 1080 449 1457 4712 | Face 2914 776 457 1057 4713 | Face 2915 262 858 717 4714 | Face 2916 1092 1372 833 4715 | Face 2917 277 859 1085 4716 | Face 2918 744 441 1041 4717 | Face 2919 740 439 1039 4718 | Face 2920 26 1482 1460 4719 | Face 2921 1082 414 1461 4720 | Face 2922 736 437 1037 4721 | Face 2923 284 862 389 4722 | Face 2924 708 423 1023 4723 | Face 2925 299 863 1482 4724 | Face 2926 704 421 1021 4725 | Face 2927 700 419 1019 4726 | Face 2928 1438 1501 1464 4727 | Face 2929 1084 391 1465 4728 | Face 2930 696 417 1017 4729 | Face 2931 1398 150 1197 4730 | Face 2932 668 403 1003 4731 | Face 2933 281 867 905 4732 | Face 2934 664 401 1001 4733 | Face 2935 660 399 999 4734 | Face 2936 1318 1505 1468 4735 | Face 2937 768 1061 1032 4736 | Face 2938 286 370 486 4737 | Face 2939 656 397 997 4738 | Face 2940 1470 288 347 4739 | Face 2941 283 374 831 4740 | Face 2942 628 383 983 4741 | Face 2943 624 381 981 4742 | Face 2944 1472 105 1126 4743 | Face 2945 1088 352 347 4744 | Face 2946 1088 288 488 4745 | Face 2947 620 379 979 4746 | Face 2948 1757 715 1766 4747 | Face 2949 39 377 977 4748 | Face 2950 875 285 371 4749 | Face 2951 1476 876 1167 4750 | Face 2952 1279 231 1361 4751 | Face 2953 1477 331 350 4752 | Face 2954 1477 290 83 4753 | Face 2955 604 152 1638 4754 | Face 2956 387 1306 1315 4755 | Face 2957 588 363 963 4756 | Face 2958 1319 149 1197 4757 | Face 2959 1480 880 1033 4758 | Face 2960 1480 109 832 4759 | Face 2961 1481 311 1483 4760 | Face 2962 1481 292 444 4761 | Face 2963 584 361 961 4762 | Face 2964 1275 762 1634 4763 | Face 2965 1319 152 1203 4764 | Face 2966 1483 289 330 4765 | Face 2967 1484 884 909 4766 | Face 2968 752 88 877 4767 | Face 2969 47 560 1156 4768 | Face 2970 1275 873 1199 4769 | Face 2971 580 359 959 4770 | Face 2972 886 296 57 4771 | Face 2973 576 357 957 4772 | Face 2974 1487 291 310 4773 | Face 2975 1488 111 525 4774 | Face 2976 1488 113 1525 4775 | Face 2977 1489 889 57 4776 | Face 2978 1489 296 1597 4777 | Face 2979 473 88 752 4778 | Face 2980 548 343 943 4779 | Face 2981 544 341 941 4780 | Face 2982 1491 293 87 4781 | Face 2983 616 892 688 4782 | Face 2984 616 688 535 4783 | Face 2985 1098 37 1493 4784 | Face 2986 540 339 939 4785 | Face 2987 300 894 6 4786 | Face 2988 319 900 1500 4787 | Face 2989 1757 54 1710 4788 | Face 2990 536 337 937 4789 | Face 2991 317 9 1496 4790 | Face 2992 643 1533 1496 4791 | Face 2993 1100 15 1497 4792 | Face 2994 508 323 923 4793 | Face 2995 282 898 411 4794 | Face 2996 303 868 1468 4795 | Face 2997 297 899 1556 4796 | Face 2998 504 321 921 4797 | Face 2999 301 864 1464 4798 | Face 3000 589 1537 1500 4799 | Face 3001 1306 1464 1501 4800 | Face 3002 10 900 45 4801 | Face 3003 2 301 1306 4802 | Face 3004 45 919 6 4803 | Face 3005 102 302 1101 4804 | Face 3006 1556 25 7 4805 | Face 3007 1494 1497 15 4806 | Face 3008 1542 1406 1504 4807 | Face 3009 354 1468 1505 4808 | Face 3010 411 1439 16 4809 | Face 3011 3 303 354 4810 | Face 3012 1463 1100 17 4811 | Face 3013 104 304 1105 4812 | Face 3014 432 7 25 4813 | Face 3015 299 897 1100 4814 | Face 3016 1354 149 1160 4815 | Face 3017 1472 1126 63 4816 | Face 3018 1126 105 515 4817 | Face 3019 63 305 1472 4818 | Face 3020 1510 4 298 4819 | Face 3021 1511 306 1109 4820 | Face 3022 103 505 1111 4821 | Face 3023 1512 306 1550 4822 | Face 3024 1512 14 1125 4823 | Face 3025 1231 1171 566 4824 | Face 3026 1755 716 1027 4825 | Face 3027 11 504 521 4826 | Face 3028 1514 880 290 4827 | Face 3029 596 34 758 4828 | Face 3030 308 108 927 4829 | Face 3031 752 841 473 4830 | Face 3032 81 784 768 4831 | Face 3033 6 1485 45 4832 | Face 3034 832 109 1123 4833 | Face 3035 1518 1480 832 4834 | Face 3036 1499 1098 46 4835 | Face 3037 1755 208 1310 4836 | Face 3038 297 893 1098 4837 | Face 3039 56 8 685 4838 | Face 3040 56 892 86 4839 | Face 3041 86 296 886 4840 | Face 3042 493 98 1253 4841 | Face 3043 1159 1371 766 4842 | Face 3044 86 892 915 4843 | Face 3045 1761 98 493 4844 | Face 3046 1761 1491 67 4845 | Face 3047 57 296 1489 4846 | Face 3048 1362 148 1190 4847 | Face 3049 1525 313 1488 4848 | Face 3050 1525 113 1131 4849 | Face 3051 57 1491 886 4850 | Face 3052 313 8 1709 4851 | Face 3053 1363 232 1361 4852 | Face 3054 521 921 1346 4853 | Face 3055 1528 1527 333 4854 | Face 3056 1528 18 775 4855 | Face 3057 1362 596 967 4856 | Face 3058 37 1096 66 4857 | Face 3059 9 315 616 4858 | Face 3060 67 98 1761 4859 | Face 3061 1531 530 679 4860 | Face 3062 1531 116 935 4861 | Face 3063 67 889 490 4862 | Face 3064 1231 136 1169 4863 | Face 3065 492 1496 1533 4864 | Face 3066 75 889 1096 4865 | Face 3067 10 317 492 4866 | Face 3068 1368 24 1590 4867 | Face 3069 951 795 1390 4868 | Face 3070 1522 1721 882 4869 | Face 3071 111 913 1484 4870 | Face 3072 1574 638 1536 4871 | Face 3073 1375 1500 1537 4872 | Face 3074 1368 595 1402 4873 | Face 3075 1 319 1375 4874 | Face 3076 1394 148 948 4875 | Face 3077 120 320 1137 4876 | Face 3078 1537 1426 1375 4877 | Face 3079 86 8 56 4878 | Face 3080 1578 521 1540 4879 | Face 3081 233 1104 1541 4880 | Face 3082 86 886 1709 4881 | Face 3083 12 321 233 4882 | Face 3084 87 293 882 4883 | Face 3085 122 322 1141 4884 | Face 3086 87 886 1491 4885 | Face 3087 1675 1576 1769 4886 | Face 3088 1582 327 1544 4887 | Face 3089 1205 1108 1545 4888 | Face 3090 293 1761 514 4889 | Face 3091 512 323 1205 4890 | Face 3092 832 884 1518 4891 | Face 3093 124 324 1142 4892 | Face 3094 1394 595 1190 4893 | Face 3095 884 444 292 4894 | Face 3096 716 64 1393 4895 | Face 3097 89 325 1112 4896 | Face 3098 89 125 555 4897 | Face 3099 1550 325 89 4898 | Face 3100 1550 14 1512 4899 | Face 3101 1551 326 1149 4900 | Face 3102 97 844 93 4901 | Face 3103 1552 326 1590 4902 | Face 3104 1552 24 79 4903 | Face 3105 1138 1101 1386 4904 | Face 3106 1398 47 948 4905 | Face 3107 1246 724 1758 4906 | Face 3108 932 252 1403 4907 | Face 3109 1483 292 1481 4908 | Face 3110 328 128 947 4909 | Face 3111 453 78 1768 4910 | Face 3112 1402 24 1368 4911 | Face 3113 1402 1408 556 4912 | Face 3114 642 129 1163 4913 | Face 3115 1558 1120 642 4914 | Face 3116 1408 47 1156 4915 | Face 3117 310 291 1481 4916 | Face 3118 310 882 1487 4917 | Face 3119 1753 209 1280 4918 | Face 3120 311 291 1444 4919 | Face 3121 669 680 1276 4920 | Face 3122 932 249 1397 4921 | Face 3123 1490 77 557 4922 | Face 3124 764 1763 232 4923 | Face 3125 880 83 290 4924 | Face 3126 1436 840 258 4925 | Face 3127 1295 1504 1406 4926 | Face 3128 1749 212 1323 4927 | Face 3129 1565 333 1128 4928 | Face 3130 1565 133 1171 4929 | Face 3131 350 290 1477 4930 | Face 3132 333 18 1528 4931 | Face 3133 1749 209 1317 4932 | Face 3134 1107 902 1415 4933 | Face 3135 1568 1567 353 4934 | Face 3136 1568 28 799 4935 | Face 3137 1565 1171 1207 4936 | Face 3138 1186 1189 1448 4937 | Face 3139 536 335 1756 4938 | Face 3140 724 212 1758 4939 | Face 3141 1571 570 1640 4940 | Face 3142 1571 136 955 4941 | Face 3143 330 289 1477 4942 | Face 3144 410 1375 1426 4943 | Face 3145 1676 1136 1573 4944 | Face 3146 330 292 1483 4945 | Face 3147 20 337 1676 4946 | Face 3148 568 840 1436 4947 | Face 3149 71 459 1034 4948 | Face 3150 331 289 1440 4949 | Face 3151 876 4 1165 4950 | Face 3152 1614 1769 1576 4951 | Face 3153 307 1140 1577 4952 | Face 3154 332 288 1470 4953 | Face 3155 11 339 307 4954 | Face 3156 332 876 907 4955 | Face 3157 140 340 1177 4956 | Face 3158 334 94 23 4957 | Face 3159 334 875 351 4958 | Face 3160 1618 1684 1580 4959 | Face 3161 1529 1144 1581 4960 | Face 3162 347 288 1088 4961 | Face 3163 22 341 1529 4962 | Face 3164 347 875 1470 4963 | Face 3165 142 342 1181 4964 | Face 3166 1362 34 596 4965 | Face 3167 350 568 1088 4966 | Face 3168 1622 1626 1584 4967 | Face 3169 146 1148 1585 4968 | Face 3170 1565 18 333 4969 | Face 3171 552 343 146 4970 | Face 3172 351 94 334 4971 | Face 3173 144 344 1182 4972 | Face 3174 351 352 836 4973 | Face 3175 352 568 1436 4974 | Face 3176 1362 1190 1592 4975 | Face 3177 1368 345 1152 4976 | Face 3178 1368 145 595 4977 | Face 3179 1590 345 1368 4978 | Face 3180 1590 24 1552 4979 | Face 3181 1591 346 1189 4980 | Face 3182 3 305 370 4981 | Face 3183 1592 346 1630 4982 | Face 3184 1592 34 1362 4983 | Face 3185 765 1371 1765 4984 | Face 3186 1478 145 946 4985 | Face 3187 1478 1190 595 4986 | Face 3188 1195 769 1036 4987 | Face 3189 101 501 902 4988 | Face 3190 348 148 967 4989 | Face 3191 139 577 940 4990 | Face 3192 1538 16 1439 4991 | Face 3193 332 4 876 4992 | Face 3194 1238 149 1203 4993 | Face 3195 1598 1160 1238 4994 | Face 3196 332 1470 298 4995 | Face 3197 371 285 1086 4996 | Face 3198 371 1470 875 4997 | Face 3199 1367 765 1669 4998 | Face 3200 374 285 1432 4999 | Face 3201 243 785 1044 5000 | Face 3202 1677 726 1728 5001 | Face 3203 1446 1010 1029 5002 | Face 3204 2 868 427 5003 | Face 3205 427 903 389 5004 | Face 3206 905 407 390 5005 | Face 3207 1462 1465 391 5006 | Face 3208 1235 766 1371 5007 | Face 3209 1605 353 1168 5008 | Face 3210 1605 153 1211 5009 | Face 3211 1492 145 1152 5010 | Face 3212 353 28 1568 5011 | Face 3213 1471 1084 394 5012 | Face 3214 300 500 1497 5013 | Face 3215 1608 1607 373 5014 | Face 3216 1608 38 1198 5015 | Face 3217 1492 591 1448 5016 | Face 3218 674 390 407 5017 | Face 3219 576 355 1013 5018 | Face 3220 283 865 1084 5019 | Face 3221 1611 610 1154 5020 | Face 3222 1611 156 975 5021 | Face 3223 1 864 16 5022 | Face 3224 1650 977 1612 5023 | Face 3225 931 1176 1613 5024 | Face 3226 16 901 411 5025 | Face 3227 30 357 931 5026 | Face 3228 1482 430 412 5027 | Face 3229 951 248 1048 5028 | Face 3230 1498 1461 414 5029 | Face 3231 389 871 427 5030 | Face 3232 1654 1053 1616 5031 | Face 3233 1600 1180 1617 5032 | Face 3234 1467 1082 429 5033 | Face 3235 21 359 1600 5034 | Face 3236 714 412 430 5035 | Face 3237 160 360 1217 5036 | Face 3238 281 861 1082 5037 | Face 3239 100 860 472 5038 | Face 3240 1658 952 1620 5039 | Face 3241 826 1184 1621 5040 | Face 3242 472 1099 434 5041 | Face 3243 32 361 826 5042 | Face 3244 1085 452 447 5043 | Face 3245 162 362 1221 5044 | Face 3246 1454 1457 449 5045 | Face 3247 717 924 450 5046 | Face 3248 1662 879 1624 5047 | Face 3249 1434 1188 1625 5048 | Face 3250 1423 1080 451 5049 | Face 3251 592 363 1434 5050 | Face 3252 754 447 452 5051 | Face 3253 1235 1371 765 5052 | Face 3254 279 857 1080 5053 | Face 3255 91 499 412 5054 | Face 3256 1764 210 1317 5055 | Face 3257 735 365 1192 5056 | Face 3258 735 165 635 5057 | Face 3259 1630 365 735 5058 | Face 3260 1630 34 1592 5059 | Face 3261 366 1229 626 5060 | Face 3262 1233 766 1768 5061 | Face 3263 1632 366 1670 5062 | Face 3264 1632 44 723 5063 | Face 3265 412 1460 1482 5064 | Face 3266 32 588 1626 5065 | Face 3267 1534 45 1485 5066 | Face 3268 954 250 1397 5067 | Face 3269 1391 1044 1014 5068 | Face 3270 368 168 987 5069 | Face 3271 170 368 1674 5070 | Face 3272 434 1025 472 5071 | Face 3273 1459 1078 474 5072 | Face 3274 641 169 1243 5073 | Face 3275 1638 1200 641 5074 | Face 3276 1626 963 1516 5075 | Face 3277 277 853 1078 5076 | Face 3278 490 98 67 5077 | Face 3279 490 852 527 5078 | Face 3280 527 276 846 5079 | Face 3281 527 852 1095 5080 | Face 3282 603 171 645 5081 | Face 3283 1713 1669 433 5082 | Face 3284 1330 88 473 5083 | Face 3285 1330 1451 510 5084 | Face 3286 491 276 1449 5085 | Face 3287 491 1451 846 5086 | Face 3288 1276 680 190 5087 | Face 3289 1645 373 1208 5088 | Face 3290 1645 173 1251 5089 | Face 3291 1233 78 1155 5090 | Face 3292 373 38 1608 5091 | Face 3293 471 1076 494 5092 | Face 3294 1647 174 993 5093 | Face 3295 1648 1647 393 5094 | Face 3296 1648 48 611 5095 | Face 3297 1581 1569 1529 5096 | Face 3298 510 88 1330 5097 | Face 3299 39 375 519 5098 | Face 3300 510 849 834 5099 | Face 3301 1651 650 593 5100 | Face 3302 1651 176 995 5101 | Face 3303 513 849 1076 5102 | Face 3304 1690 997 1652 5103 | Face 3305 416 1216 1653 5104 | Face 3306 514 77 1487 5105 | Face 3307 40 377 416 5106 | Face 3308 557 1285 842 5107 | Face 3309 1034 1380 1748 5108 | Face 3310 557 514 493 5109 | Face 3311 1065 808 1788 5110 | Face 3312 1694 523 1656 5111 | Face 3313 874 1220 1657 5112 | Face 3314 720 1719 210 5113 | Face 3315 31 379 874 5114 | Face 3316 1445 1447 842 5115 | Face 3317 180 380 1257 5116 | Face 3318 527 98 490 5117 | Face 3319 527 846 1253 5118 | Face 3320 1698 456 1660 5119 | Face 3321 194 1224 1661 5120 | Face 3322 528 1451 845 5121 | Face 3323 42 381 194 5122 | Face 3324 528 846 1451 5123 | Face 3325 182 382 1261 5124 | Face 3326 1447 845 870 5125 | Face 3327 845 1451 1330 5126 | Face 3328 1702 349 1664 5127 | Face 3329 1433 1404 517 5128 | Face 3330 1365 1367 762 5129 | Face 3331 632 383 106 5130 | Face 3332 213 1529 1569 5131 | Face 3333 184 384 1265 5132 | Face 3334 844 1410 272 5133 | Face 3335 553 804 1682 5134 | Face 3336 517 271 1447 5135 | Face 3337 1232 27 19 5136 | Face 3338 27 185 675 5137 | Face 3339 19 385 1232 5138 | Face 3340 1670 44 1632 5139 | Face 3341 386 1269 186 5140 | Face 3342 1717 211 1284 5141 | Face 3343 1672 386 1710 5142 | Face 3344 1672 54 126 5143 | Face 3345 890 498 1493 5144 | Face 3346 950 795 969 5145 | Face 3347 1443 272 1441 5146 | Face 3348 1674 640 170 5147 | Face 3349 1715 722 1327 5148 | Face 3350 388 188 1007 5149 | Face 3351 1709 1721 313 5150 | Face 3352 557 77 514 5151 | Face 3353 557 842 1490 5152 | Face 3354 1114 189 1283 5153 | Face 3355 1678 1240 1114 5154 | Face 3356 561 271 1441 5155 | Face 3357 561 842 1447 5156 | Face 3358 31 584 952 5157 | Face 3359 567 271 1404 5158 | Face 3360 1715 211 1321 5159 | Face 3361 952 961 1596 5160 | Face 3362 1288 191 709 5161 | Face 3363 993 1244 191 5162 | Face 3364 840 1665 270 5163 | Face 3365 1396 800 118 5164 | Face 3366 799 572 955 5165 | Face 3367 630 270 1437 5166 | Face 3368 1722 1673 719 5167 | Face 3369 1685 393 1248 5168 | Face 3370 1685 1287 1291 5169 | Face 3371 1713 722 1762 5170 | Face 3372 393 48 1648 5171 | Face 3373 844 272 93 5172 | Face 3374 1617 1636 1600 5173 | Face 3375 1688 1687 413 5174 | Face 3376 1688 58 1234 5175 | Face 3377 509 1252 695 5176 | Face 3378 594 269 1437 5177 | Face 3379 656 395 509 5178 | Face 3380 594 272 1443 5179 | Face 3381 1691 690 13 5180 | Face 3382 1691 196 1015 5181 | Face 3383 914 800 1396 5182 | Face 3384 1730 1017 1692 5183 | Face 3385 1012 1256 1693 5184 | Face 3386 597 269 1400 5185 | Face 3387 50 397 1012 5186 | Face 3388 836 94 351 5187 | Face 3389 690 398 1293 5188 | Face 3390 601 268 1430 5189 | Face 3391 601 836 1087 5190 | Face 3392 1734 59 1696 5191 | Face 3393 329 1260 1697 5192 | Face 3394 607 84 29 5193 | Face 3395 41 399 329 5194 | Face 3396 607 835 633 5195 | Face 3397 200 400 1297 5196 | Face 3398 608 268 1068 5197 | Face 3399 608 835 1430 5198 | Face 3400 1738 896 1700 5199 | Face 3401 115 1264 1701 5200 | Face 3402 1218 1181 1609 5201 | Face 3403 52 401 115 5202 | Face 3404 630 914 1068 5203 | Face 3405 202 402 1301 5204 | Face 3406 100 497 7 5205 | Face 3407 633 84 607 5206 | Face 3408 1742 73 1704 5207 | Face 3409 96 1268 1705 5208 | Face 3410 633 634 796 5209 | Face 3411 53 403 96 5210 | Face 3412 634 914 1396 5211 | Face 3413 204 404 1305 5212 | Face 3414 1382 1385 1011 5213 | Face 3415 1713 1202 1669 5214 | Face 3416 1781 1029 1010 5215 | Face 3417 1757 405 1272 5216 | Face 3418 1757 205 715 5217 | Face 3419 1710 405 1757 5218 | Face 3420 1710 54 1672 5219 | Face 3421 406 1309 206 5220 | Face 3422 799 136 566 5221 | Face 3423 1712 406 1750 5222 | Face 3424 1712 64 1755 5223 | Face 3425 7 1456 1556 5224 | Face 3426 1516 1584 1626 5225 | Face 3427 1530 917 1572 5226 | Face 3428 1634 1364 873 5227 | Face 3429 601 94 836 5228 | Face 3430 408 208 1027 5229 | Face 3431 210 408 1754 5230 | Face 3432 601 1430 138 5231 | Face 3433 651 265 1066 5232 | Face 3434 1686 209 1323 5233 | Face 3435 1718 1280 1686 5234 | Face 3436 651 1430 835 5235 | Face 3437 1275 1199 453 5236 | Face 3438 673 265 1392 5237 | Face 3439 1050 1063 1009 5238 | Face 3440 92 828 728 5239 | Face 3441 728 1083 677 5240 | Face 3442 1673 211 1327 5241 | Face 3443 1722 1284 1673 5242 | Face 3444 1185 710 681 5243 | Face 3445 1422 1425 687 5244 | Face 3446 1187 942 1628 5245 | Face 3447 873 251 1407 5246 | Face 3448 1762 1202 1713 5247 | Face 3449 1323 212 1321 5248 | Face 3450 1597 296 915 5249 | Face 3451 994 681 710 5250 | Face 3452 413 58 1688 5251 | Face 3453 263 825 1064 5252 | Face 3454 287 1600 1636 5253 | Face 3455 1728 1727 433 5254 | Face 3456 1728 68 1677 5255 | Face 3457 1296 1292 1633 5256 | Face 3458 91 824 450 5257 | Face 3459 696 415 1296 5258 | Face 3460 450 1081 717 5259 | Face 3461 1731 730 1641 5260 | Face 3462 1731 216 1035 5261 | Face 3463 1005 750 721 5262 | Face 3464 1770 1037 1732 5263 | Face 3465 1560 1296 1733 5264 | Face 3466 1458 1421 727 5265 | Face 3467 60 417 1560 5266 | Face 3468 677 958 728 5267 | Face 3469 730 418 1333 5268 | Face 3470 1427 1062 731 5269 | Face 3471 1031 721 750 5270 | Face 3472 1774 1604 1736 5271 | Face 3473 238 1300 1737 5272 | Face 3474 261 821 1062 5273 | Face 3475 51 419 238 5274 | Face 3476 90 820 808 5275 | Face 3477 220 420 1337 5276 | Face 3478 808 1079 757 5277 | Face 3479 424 790 761 5278 | Face 3480 1778 1564 1740 5279 | Face 3481 1475 1304 1741 5280 | Face 3482 1414 1417 767 5281 | Face 3483 62 421 1475 5282 | Face 3484 1032 1228 768 5283 | Face 3485 222 422 1341 5284 | Face 3486 1383 1060 771 5285 | Face 3487 1069 761 790 5286 | Face 3488 1782 1524 1744 5287 | Face 3489 1793 1308 1745 5288 | Face 3490 259 817 1060 5289 | Face 3491 1746 423 1793 5290 | Face 3492 1597 890 66 5291 | Face 3493 1677 68 1635 5292 | Face 3494 1275 1767 762 5293 | Face 3495 1686 684 1718 5294 | Face 3496 82 788 1050 5295 | Face 3497 1355 425 1312 5296 | Face 3498 1355 225 755 5297 | Face 3499 35 425 1355 5298 | Face 3500 1750 64 1712 5299 | Face 3501 426 1349 226 5300 | Face 3502 992 245 1352 5301 | Face 3503 1752 426 1790 5302 | Face 3504 1752 74 1353 5303 | Face 3505 856 495 467 5304 | Face 3506 141 581 942 5305 | Face 3507 757 1788 808 5306 | Face 3508 1754 720 210 5307 | Face 3509 1419 1058 811 5308 | Face 3510 428 228 1047 5309 | Face 3511 230 428 1794 5310 | Face 3512 724 1723 212 5311 | Face 3513 257 813 1058 5312 | Face 3514 1246 229 1363 5313 | Face 3515 1758 1320 1246 5314 | Face 3516 834 88 510 5315 | Face 3517 834 812 877 5316 | Face 3518 877 256 806 5317 | Face 3519 877 812 1075 5318 | Face 3520 1594 78 453 5319 | Face 3521 1594 1411 848 5320 | Face 3522 1202 231 1367 5321 | Face 3523 1762 1324 1202 5322 | Face 3524 837 256 1409 5323 | Face 3525 837 1411 806 5324 | Face 3526 1199 873 1407 5325 | Face 3527 807 1056 847 5326 | Face 3528 1634 873 1275 5327 | Face 3529 30 580 1769 5328 | Face 3530 467 1452 55 5329 | Face 3531 848 78 1594 5330 | Face 3532 433 68 1728 5331 | Face 3533 848 809 1155 5332 | Face 3534 1769 959 1675 5333 | Face 3535 1768 1767 453 5334 | Face 3536 1768 78 1233 5335 | Face 3537 1595 1332 1153 5336 | Face 3538 851 809 1056 5337 | Face 3539 736 435 1595 5338 | Face 3540 870 517 1447 5339 | Face 3541 1771 770 1166 5340 | Face 3542 1771 236 1055 5341 | Face 3543 910 841 802 5342 | Face 3544 483 1057 1772 5343 | Face 3545 1071 1336 1773 5344 | Face 3546 910 870 473 5345 | Face 3547 70 437 1071 5346 | Face 3548 1573 1716 1676 5347 | Face 3549 770 438 1373 5348 | Face 3550 1174 1177 1681 5349 | Face 3551 1405 1407 802 5350 | Face 3552 733 1119 1776 5351 | Face 3553 1520 1340 1777 5352 | Face 3554 877 88 834 5353 | Face 3555 61 439 1520 5354 | Face 3556 877 806 752 5355 | Face 3557 240 440 1377 5356 | Face 3558 881 1411 805 5357 | Face 3559 881 806 1411 5358 | Face 3560 1506 1074 1780 5359 | Face 3561 1010 1344 1781 5360 | Face 3562 1407 805 1199 5361 | Face 3563 72 441 1010 5362 | Face 3564 805 1411 1594 5363 | Face 3565 242 442 1381 5364 | Face 3566 725 1331 1725 5365 | Face 3567 1327 725 1328 5366 | Face 3568 1145 1050 1784 5367 | Face 3569 1399 1348 1785 5368 | Face 3570 804 1431 252 5369 | Face 3571 1786 748 1399 5370 | Face 3572 891 764 1798 5371 | Face 3573 1356 760 1794 5372 | Face 3574 294 1580 1684 5373 | Face 3575 1403 252 1401 5374 | Face 3576 1682 1400 553 5375 | Face 3577 1352 950 33 5376 | Face 3578 950 245 795 5377 | Face 3579 33 445 1352 5378 | Face 3580 1790 74 1752 5379 | Face 3581 446 1389 246 5380 | Face 3582 1143 940 1689 5381 | Face 3583 1792 446 158 5382 | Face 3584 1792 84 949 5383 | Face 3585 1709 8 86 5384 | Face 3586 1680 726 1331 5385 | Face 3587 910 517 870 5386 | Face 3588 1794 760 230 5387 | Face 3589 910 802 1433 5388 | Face 3590 448 248 1067 5389 | Face 3591 250 448 118 5390 | Face 3592 911 251 1401 5391 | Face 3593 911 802 1407 5392 | Face 3594 891 249 1403 5393 | Face 3595 1798 1360 891 5394 | Face 3596 469 1676 1716 5395 | -------------------------------------------------------------------------------- /data/torus.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgeom/ccg-notes/6fade9e0ebbbe747d0f07457aa8047470d15ca1b/data/torus.mat -------------------------------------------------------------------------------- /data/torus.vtk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgeom/ccg-notes/6fade9e0ebbbe747d0f07457aa8047470d15ca1b/data/torus.vtk -------------------------------------------------------------------------------- /hello: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | CLR_NOR="\x1b[0m" # back to NORMAL 4 | CLR_BOLD="\x1b[1m" # BOLD text 5 | CLR_RED="\x1b[31m" # RED text 6 | CLR_GRN="\x1b[32m" # GREEN text 7 | CLR_YLW="\x1b[33m" # YELLOW text 8 | 9 | export PRJ_HOME=`pwd` 10 | 11 | echo -e "${CLR_YLW}Checking Python version......${CLR_NOR}" 12 | PYV=`python -c "import sys;t='{v[0]}.{v[1]}'.format(v=list(sys.version_info[:2]));sys.stdout.write(t)";` 13 | if [[ $PYV == 2.7 ]] 14 | then 15 | PY=python3; 16 | PIP=pip3; 17 | PIP_INST="pip3 install -i https://pypi.douban.com/simple/"; 18 | NTB="ipython3 notebook"; 19 | TEST="nosetests" 20 | fi 21 | if [[ $PYV == 3* ]] 22 | then 23 | PY=python; 24 | PIP=pip; 25 | PIP_INST="pip install"; 26 | NTB="jupyter notebook"; 27 | TEST="nosetests" 28 | fi 29 | if (eval "${PY} -V"); then 30 | echo -e "${CLR_YLW}Python version checked......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 31 | else 32 | echo -e "${CLR_YLW}Python version checked......${CLR_NOR}${CLR_RED}Failed${CLR_NOR}" 33 | exit -1 34 | fi 35 | 36 | echo -e "${CLR_YLW}Setting Python path to user local......${CLR_NOR}${CLR_GRN}Done${CLR_NOR}" 37 | export PYTHONPATH=$PRJ_HOME/.py/lib/$PY/site-packages/:$PRJ_HOME/src:$PRJ_HOME/test 38 | 39 | if (eval "$PY -c 'import virtualenv as venv'"); then 40 | echo -e "${CLR_YLW}Checking virtualenv......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 41 | else 42 | echo -e "${CLR_YLW}Checking virtualenv......${CLR_NOR}${CLR_RED}Failed${CLR_NOR}" 43 | echo -e "${CLR_YLW}Reinstalling virtualenv......${CLR_NOR}" 44 | eval "${PIP} uninstall virtualenv" 45 | eval "${PIP_INST} virtualenv" 46 | echo -e "${CLR_YLW}Reinstalling virtualenv......${CLR_NOR}${CLR_GRN}Done${CLR_NOR}" 47 | fi 48 | 49 | if (eval "${PY} bin/env.py"); then 50 | source .py/bin/activate 51 | 52 | echo -e "${CLR_YLW}Installing numpy......${CLR_NOR}" 53 | eval "${PIP_INST} numpy" 54 | echo -e "${CLR_YLW}Installing numpy......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 55 | 56 | echo -e "${CLR_YLW}Installing scipy......${CLR_NOR}" 57 | eval "${PIP_INST} scipy" 58 | echo -e "${CLR_YLW}Installing scipy......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 59 | 60 | echo -e "${CLR_YLW}Installing Pillow......${CLR_NOR}" 61 | eval "${PIP_INST} Pillow" 62 | echo -e "${CLR_YLW}Installing Pillow......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 63 | 64 | echo -e "${CLR_YLW}Installing matplotlib......${CLR_NOR}" 65 | eval "${PIP_INST} matplotlib" 66 | echo -e "${CLR_YLW}Installing matplotlib......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 67 | 68 | echo -e "${CLR_YLW}Installing pyzmq......${CLR_NOR}" 69 | eval "${PIP_INST} pyzmq" 70 | echo -e "${CLR_YLW}Installing pyzmq......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 71 | 72 | echo -e "${CLR_YLW}Installing jinja2......${CLR_NOR}" 73 | eval "${PIP_INST} jinja2" 74 | echo -e "${CLR_YLW}Installing jinja2......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 75 | 76 | echo -e "${CLR_YLW}Installing tornado......${CLR_NOR}" 77 | eval "${PIP_INST} tornado" 78 | echo -e "${CLR_YLW}Installing tornado......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 79 | 80 | echo -e "${CLR_YLW}Installing jsonschema......${CLR_NOR}" 81 | eval "${PIP_INST} jsonschema" 82 | echo -e "${CLR_YLW}Installing jsonschema......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 83 | 84 | echo -e "${CLR_YLW}Installing terminado......${CLR_NOR}" 85 | eval "${PIP_INST} terminado" 86 | echo -e "${CLR_YLW}Installing terminado......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 87 | 88 | echo -e "${CLR_YLW}Installing ipython......${CLR_NOR}" 89 | eval "${PIP_INST} ipython" 90 | echo -e "${CLR_YLW}Installing ipython......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 91 | 92 | echo -e "${CLR_YLW}Installing nose......${CLR_NOR}" 93 | eval "${PIP_INST} nose" 94 | echo -e "${CLR_YLW}Installing nose......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 95 | 96 | echo -e "${CLR_YLW}Installing jupyter......${CLR_NOR}" 97 | eval "${PIP_INST} jupyter" 98 | echo -e "${CLR_YLW}Installing jupyter......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 99 | 100 | echo -e "${CLR_YLW}Installing dependencies......${CLR_NOR}" 101 | eval "${PIP_INST} -r requirements.txt" 102 | echo -e "${CLR_YLW}Installing dependencies......${CLR_NOR}${CLR_GRN}OK${CLR_NOR}" 103 | 104 | eval "${PIP_INST} -r requirements.txt" 105 | 106 | if [[ $PRJ_ENV ]] 107 | then 108 | echo -e "${CLR_YLW}Current environment: ${CLR_NOR}${CLR_RED}$PRJ_ENV${CLR_NOR}" 109 | else 110 | export PRJ_ENV="dev" 111 | echo -e "${CLR_YLW}Current environment: ${CLR_NOR}${CLR_RED}$PRJ_ENV${CLR_NOR}" 112 | fi 113 | 114 | export PATH="$PATH:${PRJ_HOME}/bin/" 115 | fi 116 | 117 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyvista # 3D visualization toolkit 2 | panel 3 | alive-progress 4 | -------------------------------------------------------------------------------- /scripts/m2mat.py: -------------------------------------------------------------------------------- 1 | from glob import glob 2 | from tools.converter import m2mat 3 | 4 | if __name__ == '__main__': 5 | for mfile in glob('data/*.m'): 6 | matfile = mfile.replace('.m', '.mat') 7 | m2mat(mfile, matfile) 8 | print(mfile, '->', matfile) 9 | print('finished') 10 | -------------------------------------------------------------------------------- /scripts/m2vtk.py: -------------------------------------------------------------------------------- 1 | from glob import glob 2 | from tools.converter import m2vtk 3 | 4 | if __name__ == '__main__': 5 | for mfile in glob('data/*.m'): 6 | vfile = mfile.replace('.m', '.vtk') 7 | m2vtk(mfile, vfile) 8 | print(mfile, '->', vfile) 9 | print('finished') 10 | -------------------------------------------------------------------------------- /scripts/mat2vtk.py: -------------------------------------------------------------------------------- 1 | from glob import glob 2 | from tools.converter import mat2vtk 3 | 4 | if __name__ == '__main__': 5 | for mfile in glob('data/*.mat'): 6 | vfile = mfile.replace('.mat', '.vtk') 7 | mat2vtk(mfile, vfile) 8 | print(mfile, '->', vfile) 9 | print('finished') 10 | -------------------------------------------------------------------------------- /src/ccgeom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgeom/ccg-notes/6fade9e0ebbbe747d0f07457aa8047470d15ca1b/src/ccgeom/__init__.py -------------------------------------------------------------------------------- /src/ccgeom/manifold.py: -------------------------------------------------------------------------------- 1 | 2 | import numpy as np 3 | 4 | # following the idea of halfedge data structure on David Gu's lecture 5 | # https://www3.cs.stonybrook.edu/~gu/lectures/lecture_8_halfedge_data_structure.pdf 6 | # and adapt it to a numpy friendly representatives 7 | # * vertexes: all position of each vertex 8 | # * faces: all position of each centroid of faces 9 | # * edges: all position of each centroid of edges 10 | # * halfedges: all vectors of each halfedge 11 | # * vertexes2vertexes 12 | 13 | 14 | class Manifold: 15 | def __init__(self, vtk_mesh=None): 16 | if vtk_mesh != None: 17 | self.mesh = vtk_mesh # a VTK mesh structure 18 | 19 | self.n_vertexes = vtk_mesh.n_points 20 | self.n_faces = vtk_mesh.n_cells 21 | 22 | cells = np.array(self.mesh.cells).copy() 23 | self.vertexes = np.array(self.mesh.points).copy() 24 | self.faces, cells_begin, cells_end = make_dual(self.n_faces, self.vertexes, cells) 25 | self.edges, self.halfedges = make_edges(self.n_faces, self.vertexes, cells, cells_begin, cells_end) 26 | self.n_edges = self.edges.shape[0] 27 | self.n_halfedges = self.halfedges.shape[0] 28 | 29 | self.adjacency_vertexes = None 30 | self.adjacency_faces = None 31 | self.adjacency_edges = None 32 | self.adjacency_halfedges = None 33 | 34 | self.adjacency_vertexes2faces = None 35 | self.adjacency_vertexes2edges = None 36 | self.adjacency_vertexes2halfedges = None 37 | 38 | self.adjacency_faces2vertexes = None 39 | self.adjacency_faces2edges = None 40 | self.adjacency_faces2halfedges = None 41 | 42 | self.adjacency_edges2vertexes = None 43 | self.adjacency_edges2faces = None 44 | self.adjacency_edges2halfedges = None 45 | 46 | self.adjacency_halfedges2vertexes = None 47 | self.adjacency_halfedges2faces = None 48 | self.adjacency_halfedges2edges = None 49 | 50 | self.orientation = None 51 | 52 | def __getstate__(self): 53 | state = self.__dict__.copy() 54 | del state["mesh"] 55 | return state 56 | 57 | def __setstate__(self, state): 58 | self.__dict__.update(state) 59 | self.mesh = None 60 | 61 | 62 | def make_dual(n_faces, points, faces): 63 | ix, cur = 0, 0 64 | centroid = [] 65 | faces_begin = [] 66 | faces_end = [] 67 | while ix < n_faces: 68 | sz = faces[cur] 69 | assert sz > 2 70 | ps = points[faces[cur + 1:cur + sz]] 71 | assert ps.shape[1] == sz 72 | centroid.append(np.mean(ps, axis=0)) 73 | faces_begin.append(cur + 1) 74 | faces_end.append(cur + sz) 75 | cur = cur + sz + 1 76 | ix += 1 77 | assert cur == faces.shape[0] 78 | return np.array(centroid), np.array(faces_begin), np.array(faces_end) 79 | 80 | 81 | def make_edges(n_faces, vertexes, cells, cells_begin, cells_end): 82 | total = 0 83 | for ix in range(n_faces): 84 | begin, end = cells_begin[ix], cells_end[ix] 85 | sz = end - begin + 1 86 | total += sz 87 | 88 | cur = 0 89 | edges = np.array([total, 3], dtype=np.float64) 90 | halfedges = np.array([2 * total, 3], dtype=np.float64) 91 | for ix in range(n_faces): 92 | begin, end = cells_begin[ix], cells_end[ix] 93 | sz = end - begin + 1 94 | pxs = vertexes[cells[begin:end]] 95 | for p in range(sz): 96 | src, tgt = pxs[p - 1], pxs[p] 97 | edges[cur] = (src + tgt) / 2 98 | halfedges[2 * cur] = tgt - src 99 | halfedges[2 * cur + 1] = src - tgt 100 | cur += 1 101 | 102 | return edges, halfedges -------------------------------------------------------------------------------- /src/demo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgeom/ccg-notes/6fade9e0ebbbe747d0f07457aa8047470d15ca1b/src/demo/__init__.py -------------------------------------------------------------------------------- /src/demo/wildfire.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | import pyvista as pv 3 | 4 | from scipy.spatial.distance import cdist 5 | from alive_progress import alive_bar 6 | 7 | 8 | # 在下同调的语言里,引入一个差分算子 \delta = x_i - x_{i-1},用来刻画演化问题。 9 | # 在火烧法里,引入记号 f 表示火头线, B 表示火体面,t 表示火尾线. 10 | # f_i = \delta \partial \delta^+ B_i, f_0 = 0 11 | # t_i = \delta \partial \delta^- B_i, t_0 = 0 12 | # \delta^+ B_i 表示进入火体的面 13 | # \delta^- B_i 表示离开火体的面 14 | 15 | 16 | class Manifold: 17 | def __init__(self, mesh=None): 18 | if mesh != None: 19 | self.mesh = mesh 20 | self.n_points = mesh.n_points 21 | self.n_faces = mesh.n_cells 22 | self.center = mesh.center 23 | self.area = mesh.area 24 | self.volume = mesh.volume 25 | self.bounds = mesh.bounds 26 | 27 | print('copy points...') 28 | self.points = np.array(mesh.points).copy() 29 | 30 | print('constructing faces...') 31 | self.faces = np.array(mesh.faces).copy() 32 | self.face_normals = np.array(mesh.face_normals).copy() 33 | self.faces_centroid, self.faces_begin, self.faces_end = self.build_faces(self.points, self.faces, self.n_faces) 34 | 35 | print('indexing point2faces...') 36 | self.point2faces = self.index_point2faces(self.faces, self.n_faces, self.n_points) 37 | 38 | print('build neighbor index...') 39 | with alive_bar(3) as bar: 40 | self.neighbor_points = self.build_neighbors(self.points, self.n_points, self.points, self.n_points, 0.05) 41 | bar() 42 | self.neighbor_faces = self.build_neighbors(self.faces_centroid, self.n_faces, self.faces_centroid, self.n_faces, 0.05) 43 | bar() 44 | self.neighbor_point2face = self.build_neighbors(self.points, self.n_points, self.faces_centroid, self.n_faces, 0.05) 45 | bar() 46 | 47 | #print('sort orientation...') 48 | #self.sort_orientation() 49 | 50 | def __getstate__(self): 51 | state = self.__dict__.copy() 52 | del state["mesh"] 53 | return state 54 | 55 | def __setstate__(self, state): 56 | self.__dict__.update(state) 57 | self.mesh = None 58 | 59 | def edges(self, face): 60 | begin = self.faces_begin[face] 61 | end = self.faces_end[face] 62 | return self.faces[begin:end+1] 63 | 64 | def index_point2faces(self, faces, n_faces, n_points): 65 | ix, cur = 0, 0 66 | point2faces = [[] for _ in range(n_points)] 67 | 68 | with alive_bar(n_faces) as bar: 69 | while ix < n_faces: 70 | sz = faces[cur] 71 | assert sz > 2 72 | for p in faces[cur + 1:cur + sz]: 73 | point2faces[p].append(ix) 74 | cur = cur + sz + 1 75 | ix += 1 76 | bar() 77 | assert cur == faces.shape[0] 78 | return point2faces 79 | 80 | def build_faces(self, points, faces, n_faces): 81 | ix, cur = 0, 0 82 | centroid = [] 83 | faces_begin = [] 84 | faces_end = [] 85 | with alive_bar(n_faces) as bar: 86 | while ix < n_faces: 87 | sz = faces[cur] 88 | assert sz > 2 89 | ps = points[faces[cur + 1:cur + sz]] 90 | assert ps.shape[1] == sz 91 | centroid.append(np.mean(ps, axis=0)) 92 | faces_begin.append(cur + 1) 93 | faces_end.append(cur + sz) 94 | assert np.max(faces[cur + 1:cur + sz]) < self.n_points 95 | cur = cur + sz + 1 96 | ix += 1 97 | bar() 98 | assert cur == faces.shape[0] 99 | return np.array(centroid, dtype=np.float32), np.array(faces_begin, dtype=np.int64), np.array(faces_end, dtype=np.int64) 100 | 101 | def build_neighbors(self, points1, n_points1, points2, n_points2, thrshold): 102 | dmatrix = cdist(points1, points2, metric='euclidean') 103 | neighbors = [[] for _ in range(n_points1)] 104 | flag = len(points1) != len(points2) or (points1 != points2).any() 105 | for i in range(n_points1): 106 | for j in range(n_points2): 107 | d = dmatrix[i, j] 108 | if d < thrshold: 109 | if flag: 110 | neighbors[i].append(j) 111 | else: 112 | if i != j: 113 | neighbors[i].append(j) 114 | return neighbors 115 | 116 | def sort_orientation(self): 117 | checker = EvolvingBoundary(self) 118 | checked = set() 119 | candidate = set([0]) 120 | flips = np.zeros(self.n_faces, dtype=np.int8) 121 | with alive_bar(self.n_faces) as bar: 122 | while len(checked) < self.n_faces: 123 | while len(candidate) > 0: 124 | face = candidate.pop() 125 | try: 126 | ps = self.edges(face) 127 | checker.begin() 128 | checker.insert(ps) 129 | checker.commit() 130 | checked.add(face) 131 | bar() 132 | except AssertionError: 133 | begin, end = self.faces_begin[face], self.faces_end[face] + 1 134 | reversed(self.faces[begin:end]) 135 | flips[face] += 1 136 | for p in ps: 137 | fs = self.point2faces[p] 138 | for f in fs: 139 | if f not in checked: 140 | candidate.add(f) 141 | 142 | print(checker.cycles) 143 | return np.sum(flips) 144 | 145 | 146 | class EvolvingBoundary: 147 | def __init__(self, manifold): 148 | self.manifold = manifold 149 | self.cycles = [] 150 | self.working_area = {} 151 | 152 | def begin(self): 153 | self.working_area.clear() 154 | for c in self.cycles: 155 | r = c[::-1] 156 | l = len(r) 157 | for ix in range(l): 158 | a = r[ix - 1] 159 | b = r[ix] 160 | if a < b: 161 | key, sgn = (a, b), 1 162 | if a > b: 163 | key, sgn = (b, a), -1 164 | if key not in self.working_area: 165 | self.working_area[key] = 0 166 | self.working_area[key] = self.working_area[key] + sgn 167 | 168 | def commit(self): 169 | next = {} 170 | for (a, b), val in self.working_area.items(): 171 | if val > 0: 172 | #assert val == 1 173 | next[a] = b 174 | if val < 0: 175 | #assert val == -1 176 | next[b] = a 177 | paths = [] 178 | while len(next) > 0: 179 | path = [] 180 | key = next.keys().__iter__().__next__() 181 | while key in next: 182 | path.append(key) 183 | temp = next[key] 184 | next.pop(key) 185 | key = temp 186 | paths.append(np.array(path, dtype=np.int64)) 187 | self.cycles = paths 188 | self.working_area.clear() 189 | 190 | def insert(self, edges): 191 | sz = len(edges) 192 | assert sz > 2 193 | for ix in range(sz): 194 | a = edges[ix] 195 | b = edges[(ix + 1) % sz] 196 | if a < b: 197 | key, sgn = (a, b), 1 198 | if a > b: 199 | key, sgn = (b, a), -1 200 | 201 | if key not in self.working_area: 202 | self.working_area[key] = 0 203 | val = self.working_area[key] + sgn 204 | #assert np.abs(val) < 2.0 205 | if val == 0: 206 | self.working_area.pop(key) 207 | else: 208 | self.working_area[key] = val 209 | 210 | 211 | class FireFront(EvolvingBoundary): 212 | def __init__(self, manifold, start_face): 213 | super().__init__(manifold) 214 | self.begin() 215 | self.insert(self.manifold.edges(start_face)) 216 | self.commit() 217 | 218 | 219 | class FireTail(EvolvingBoundary): 220 | def __init__(self, manifold): 221 | super().__init__(manifold) 222 | 223 | 224 | class FireBulk: 225 | name = 'firebulk' 226 | 227 | def __init__(self, manifold, start_face): 228 | self.manifold = manifold 229 | self.bulk = set() 230 | self.listeners = [] 231 | 232 | self.values = np.ones([manifold.mesh.n_cells]) * 0.7 # 绿色的森林 233 | self.values[0] = 0.0 # 强制把色阶拉回去的 workaround 234 | self.values[1] = 1.0 # 强制把色阶拉回去的 workaround 235 | self.values[start_face] = 1.0 # 初始着火处 236 | manifold.mesh.cell_data[self.name] = self.values 237 | 238 | def add_vanish_listener(self, lstnr): 239 | self.listeners.append(lstnr) 240 | 241 | def on_vanish(self, face): 242 | for lstnr in self.listeners: 243 | lstnr.on_firebulk_vanished(face) 244 | 245 | def add(self, face): 246 | self.values[face] = 1.0 247 | self.bulk.add(face) 248 | 249 | def minus(self, face): 250 | self.bulk.remove(face) 251 | self.on_vanish(face) 252 | 253 | def contains(self, face): 254 | return face in self.bulk 255 | 256 | def step(self): 257 | for face in self.bulk.copy(): 258 | val = self.values[face] 259 | if val * 0.9 < 0.7: 260 | self.values[face] = 0.5 261 | self.minus(face) 262 | else: 263 | self.values[face] = val * 0.9 264 | self.values[0] = 0.0 # 强制把色阶拉回去的 workaround 265 | self.values[1] = 1.0 # 强制把色阶拉回去的 workaround 266 | 267 | 268 | class CutLocus: 269 | def __init__(self, manifold): 270 | self.manifold = manifold 271 | self.points = set() 272 | self.path = [] 273 | 274 | def add(self, point): 275 | self.points.add(point) 276 | self.path = list(self.points) 277 | 278 | def minus(self, point): 279 | self.points.remove(point) 280 | self.path = list(self.points) 281 | 282 | 283 | class WildFireSweepingMethod: 284 | def __init__(self, manifold, start_face): 285 | self.manifold = manifold 286 | self.start_face = start_face 287 | self.cutlocus = CutLocus(manifold) 288 | self.firebulk = FireBulk(manifold, start_face) 289 | self.firefront = FireFront(manifold, start_face) 290 | self.firetail = FireTail(manifold) 291 | self.firebulk.add_vanish_listener(self) 292 | 293 | def on_firebulk_vanished(self, face): 294 | self.firetail.insert(manifold.edges(face)) 295 | 296 | def begin(self): 297 | self.firefront.begin() 298 | self.firetail.begin() 299 | 300 | def commit(self): 301 | self.firefront.commit() 302 | self.firetail.commit() 303 | 304 | def step(self): 305 | counter = 0 306 | firefront_cycles = self.firefront.cycles 307 | self.begin() 308 | for cycle in firefront_cycles: 309 | for point in cycle: 310 | for fngbr in self.manifold.neighbor_point2face[point]: 311 | if not self.firebulk.contains(fngbr): 312 | self.firebulk.add(fngbr) 313 | self.firefront.insert(manifold.edges(fngbr)) 314 | counter += 1 315 | self.commit() 316 | #self.begin() 317 | self.firebulk.step() 318 | #self.commit() 319 | 320 | return counter 321 | 322 | 323 | if __name__ == '__main__': 324 | import pathlib 325 | import pickle 326 | 327 | vtk_file = 'data/eight.vtk' 328 | pkl_file = 'data/eight.pkl' 329 | 330 | mf = pathlib.Path(pkl_file) 331 | if mf.exists(): 332 | print('reading manifold...') 333 | manifold = pickle.load(mf.open(mode='rb')) 334 | #print('check orientation...') 335 | #if manifold.sort_orientation() > 0: 336 | # pickle.dump(manifold, mf.open(mode='wb')) 337 | mesh = pv.read(vtk_file) 338 | manifold.mesh = mesh 339 | else: 340 | print('reading mesh...') 341 | mesh = pv.read(vtk_file) 342 | print('constructing manifold...') 343 | manifold = Manifold(mesh) 344 | print('writing manifold...') 345 | pickle.dump(manifold, mf.open(mode='wb')) 346 | 347 | wildfire = WildFireSweepingMethod(manifold, start_face=3000) 348 | 349 | print('evolving...') 350 | counter, ix = 1, 1 351 | while counter != 0: 352 | print(ix, counter) 353 | counter = wildfire.step() 354 | 355 | plt = pv.Plotter() 356 | manifold.mesh.cell_data[wildfire.firebulk.name][:] = wildfire.firebulk.values 357 | plt.add_mesh(manifold.mesh, scalars=wildfire.firebulk.name) 358 | 359 | for cycle in wildfire.firefront.cycles: 360 | plt.add_mesh(manifold.mesh.extract_points(cycle), color='red') 361 | #for cycle in wildfire.firetail.cycles: 362 | # plt.add_mesh(manifold.mesh.extract_points(cycle), color='blue') 363 | cutlocus = wildfire.cutlocus.path 364 | if len(cutlocus) > 1: 365 | plt.add_mesh(manifold.mesh.extract_points(cutlocus), color='black') 366 | 367 | plt.show(screenshot='data/wildfire_%03d.png' % ix, interactive=False) 368 | ix += 1 369 | -------------------------------------------------------------------------------- /src/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgeom/ccg-notes/6fade9e0ebbbe747d0f07457aa8047470d15ca1b/src/tools/__init__.py -------------------------------------------------------------------------------- /src/tools/converter.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | import scipy.io 3 | import vedo 4 | 5 | 6 | def mread(mfile): 7 | vertexes, faces = [], [] 8 | remap = {} 9 | with open(mfile) as f: 10 | for lnn, lnt in enumerate(f): 11 | fields = lnt.strip().replace('\t', ' ').replace(' ', ' ').split(' ') 12 | if len(fields) == 0: 13 | continue 14 | elif fields[0] == '#': 15 | continue 16 | else: 17 | typ, idx, d1, d2, d3 = fields 18 | if typ == 'Vertex': 19 | vertexes.append([float(d1), float(d2), float(d3)]) 20 | remap[int(idx)] = len(vertexes) 21 | elif typ == 'Face': 22 | faces.append([remap[int(d1)], remap[int(d2)], remap[int(d3)]]) 23 | return vertexes, faces 24 | 25 | 26 | def m2mat(mfile, matfile): 27 | vertexes, faces = mread(mfile) 28 | scipy.io.savemat(matfile, {'node': vertexes, 'elem': faces}) 29 | 30 | 31 | def m2vtk(mfile, vfile): 32 | vertexes, faces = mread(mfile) 33 | node = np.array(vertexes, dtype=np.float64) 34 | cell = np.array(faces, dtype=np.int_) - 1 35 | mesh = vedo.Mesh([node, cell]) 36 | vedo.io.write(mesh, vfile) 37 | 38 | 39 | def mat2vtk(matfile, vfile): 40 | data = scipy.io.loadmat(matfile) 41 | node = np.array(data['node'], dtype=np.float64) 42 | cell = np.array(data['elem'] - 1, dtype=np.int_) 43 | mesh = vedo.Mesh([node, cell]) 44 | vedo.io.write(mesh, vfile) 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /src/tools/viewer.py: -------------------------------------------------------------------------------- 1 | import pyvista as pv 2 | 3 | mesh = pv.read('data/eight.vtk') 4 | mesh.plot(screenshot='data/eight.png') 5 | -------------------------------------------------------------------------------- /test/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccgeom/ccg-notes/6fade9e0ebbbe747d0f07457aa8047470d15ca1b/test/tests/__init__.py -------------------------------------------------------------------------------- /test/tests/test_manifold.py: -------------------------------------------------------------------------------- 1 | import unittest 2 | import pyvista as pv 3 | 4 | from ccgeom.manifold import Manifold 5 | 6 | 7 | class TestDiff(unittest.TestCase): 8 | 9 | def setUp(self): 10 | self.poly = pv.Polygon() 11 | self.disc = pv.Disc() 12 | self.box = pv.Box() 13 | self.cone = pv.Cone() 14 | 15 | def tearDown(self): 16 | pass 17 | 18 | def test_poly(self): 19 | m = Manifold(self.poly) 20 | 21 | def test_disc(self): 22 | m = Manifold(self.disc) 23 | 24 | def test_box(self): 25 | m = Manifold(self.box) 26 | 27 | def test_cone(self): 28 | m = Manifold(self.cone) 29 | -------------------------------------------------------------------------------- /zh_CN/2020lecture/exc_20200705.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": { 6 | "pycharm": { 7 | "name": "#%% md\n" 8 | } 9 | }, 10 | "source": [ 11 | "# 7月5日课程作业" 12 | ] 13 | }, 14 | { 15 | "cell_type": "code", 16 | "execution_count": 1, 17 | "metadata": { 18 | "pycharm": { 19 | "name": "#%%\n" 20 | } 21 | }, 22 | "outputs": [], 23 | "source": [ 24 | "import numpy as np\n", 25 | "import pyvista as pv" 26 | ] 27 | }, 28 | { 29 | "cell_type": "markdown", 30 | "metadata": { 31 | "pycharm": { 32 | "name": "#%% md\n" 33 | } 34 | }, 35 | "source": [ 36 | "首先加载并可视化一个双环面,如下所示:" 37 | ] 38 | }, 39 | { 40 | "cell_type": "code", 41 | "execution_count": 2, 42 | "metadata": { 43 | "pycharm": { 44 | "name": "#%%\n" 45 | } 46 | }, 47 | "outputs": [ 48 | { 49 | "data": { 50 | "application/vnd.jupyter.widget-view+json": { 51 | "model_id": "814ac2edc79345aba45d0e01d87023d9", 52 | "version_major": 2, 53 | "version_minor": 0 54 | }, 55 | "text/plain": [ 56 | "ViewInteractiveWidget(height=768, layout=Layout(height='auto', width='100%'), width=1024)" 57 | ] 58 | }, 59 | "metadata": {}, 60 | "output_type": "display_data" 61 | } 62 | ], 63 | "source": [ 64 | "mesh = pv.read('../../data/eight.vtk')\n", 65 | "mesh.plot(screenshot='../../data/eight.png')" 66 | ] 67 | }, 68 | { 69 | "cell_type": "markdown", 70 | "metadata": { 71 | "pycharm": { 72 | "name": "#%% md\n" 73 | } 74 | }, 75 | "source": [ 76 | "mesh 有一定的结构,我们可以看到其中的所有顶点,如下:" 77 | ] 78 | }, 79 | { 80 | "cell_type": "code", 81 | "execution_count": 3, 82 | "metadata": { 83 | "pycharm": { 84 | "name": "#%%\n" 85 | } 86 | }, 87 | "outputs": [ 88 | { 89 | "data": { 90 | "text/plain": [ 91 | "pyvista_ndarray([[ 0.455366 , 0.0513531 , -1.06708 ],\n", 92 | " [-0.518601 , 0.0590061 , -0.972111 ],\n", 93 | " [ 0.274258 , 0.13664 , 0.446718 ],\n", 94 | " ...,\n", 95 | " [ 0.160425 , 0.177281 , 1.00846 ],\n", 96 | " [ 0.311929 , -0.19437 , 0.106358 ],\n", 97 | " [ 0.325351 , -0.178119 , 0.00863976]])" 98 | ] 99 | }, 100 | "execution_count": 3, 101 | "metadata": {}, 102 | "output_type": "execute_result" 103 | } 104 | ], 105 | "source": [ 106 | "mesh.points" 107 | ] 108 | }, 109 | { 110 | "cell_type": "code", 111 | "execution_count": 4, 112 | "metadata": { 113 | "pycharm": { 114 | "name": "#%%\n" 115 | } 116 | }, 117 | "outputs": [ 118 | { 119 | "data": { 120 | "text/plain": [ 121 | "(pyvista_ndarray(-0.262132), pyvista_ndarray(0.260431))" 122 | ] 123 | }, 124 | "execution_count": 4, 125 | "metadata": {}, 126 | "output_type": "execute_result" 127 | } 128 | ], 129 | "source": [ 130 | "mesh.points[:, 1].min(), mesh.points[:, 1].max()" 131 | ] 132 | }, 133 | { 134 | "cell_type": "code", 135 | "execution_count": 5, 136 | "metadata": { 137 | "pycharm": { 138 | "name": "#%%\n" 139 | } 140 | }, 141 | "outputs": [ 142 | { 143 | "data": { 144 | "text/plain": [ 145 | "(pyvista_ndarray(-1.26972), pyvista_ndarray(1.27079))" 146 | ] 147 | }, 148 | "execution_count": 5, 149 | "metadata": {}, 150 | "output_type": "execute_result" 151 | } 152 | ], 153 | "source": [ 154 | "mesh.points[:, 2].min(), mesh.points[:, 2].max()" 155 | ] 156 | }, 157 | { 158 | "cell_type": "code", 159 | "execution_count": null, 160 | "metadata": { 161 | "pycharm": { 162 | "name": "#%%\n" 163 | } 164 | }, 165 | "outputs": [], 166 | "source": [ 167 | "我们可以试试染色,效果如下" 168 | ] 169 | }, 170 | { 171 | "cell_type": "code", 172 | "execution_count": 14, 173 | "metadata": { 174 | "pycharm": { 175 | "name": "#%%\n" 176 | } 177 | }, 178 | "outputs": [ 179 | { 180 | "data": { 181 | "application/vnd.jupyter.widget-view+json": { 182 | "model_id": "02ae1ac8c36240ae9a5cab6deae0a7ff", 183 | "version_major": 2, 184 | "version_minor": 0 185 | }, 186 | "text/plain": [ 187 | "ViewInteractiveWidget(height=768, layout=Layout(height='auto', width='100%'), width=1024)" 188 | ] 189 | }, 190 | "metadata": {}, 191 | "output_type": "display_data" 192 | } 193 | ], 194 | "source": [ 195 | "mesh.point_data['pvalues'] = np.linspace(0.0, 1.0, mesh.n_points)\n", 196 | "mesh.plot(scalars='pvalues', show_edges=True, screenshot='points_coloring.png')" 197 | ] 198 | }, 199 | { 200 | "cell_type": "markdown", 201 | "metadata": { 202 | "pycharm": { 203 | "name": "#%% md\n" 204 | } 205 | }, 206 | "source": [ 207 | "基于上面的 API,让我们试验一下一个双环面上一个燃烧的过程,火从一点开始向外蔓延,遇到已经燃烧过的就停下蔓延,我们把停止蔓延处的点都记录下来。" 208 | ] 209 | }, 210 | { 211 | "cell_type": "markdown", 212 | "metadata": { 213 | "pycharm": { 214 | "name": "#%% md\n" 215 | } 216 | }, 217 | "source": [ 218 | "初始时刻,只有第 0 点处在着火,其他点全部是未着火的状态。" 219 | ] 220 | }, 221 | { 222 | "cell_type": "code", 223 | "execution_count": 17, 224 | "metadata": { 225 | "pycharm": { 226 | "name": "#%%\n" 227 | } 228 | }, 229 | "outputs": [ 230 | { 231 | "data": { 232 | "application/vnd.jupyter.widget-view+json": { 233 | "model_id": "68000de439a2483eaca55ef3e926e682", 234 | "version_major": 2, 235 | "version_minor": 0 236 | }, 237 | "text/plain": [ 238 | "ViewInteractiveWidget(height=768, layout=Layout(height='auto', width='100%'), width=1024)" 239 | ] 240 | }, 241 | "metadata": {}, 242 | "output_type": "display_data" 243 | } 244 | ], 245 | "source": [ 246 | "mesh.point_data['pvalues'] = np.ones([mesh.n_points]) * 0.7 # 绿色的森林\n", 247 | "mesh.point_data['pvalues'][0] = 0.0 # 强制把色阶拉回去的 workaround\n", 248 | "mesh.point_data['pvalues'][3497] = 1.0 # 着火处\n", 249 | "mesh.plot(scalars='pvalues', show_edges=True, screenshot='points_coloring.png')" 250 | ] 251 | }, 252 | { 253 | "cell_type": "code", 254 | "execution_count": 18, 255 | "metadata": { 256 | "pycharm": { 257 | "name": "#%%\n" 258 | } 259 | }, 260 | "outputs": [], 261 | "source": [ 262 | "def step():\n", 263 | " for i in range(mesh.n_points):\n", 264 | " p = mesh.points[i]\n", 265 | " pval = mesh.point_arrays['pvalues'][i]\n", 266 | " if pval > 0.75: # 如果 p 点正在燃烧\n", 267 | " for j in range(mesh.n_points):\n", 268 | " q = mesh.points[j]\n", 269 | " qval = mesh.point_arrays['pvalues'][j]\n", 270 | " d = np.sqrt(np.sum((p - q) * (p - q)))\n", 271 | " meet_cond = False\n", 272 | " if d < 0.05:\n", 273 | " if qval == 0.7: # 如果 q 点尚未燃烧过\n", 274 | " mesh.point_arrays['pvalues'][j] = 1.0\n", 275 | " meet_cond = False\n", 276 | " elif qval > 0.75 or qval == 0.0: # 如果 q 点也在燃烧\n", 277 | " meet_cond = meet_cond and (pval > qval)\n", 278 | "\n", 279 | " mesh.point_arrays['pvalues'][i] = mesh.point_arrays['pvalues'][i] * 0.9\n", 280 | " if 0.7 < mesh.point_arrays['pvalues'][i] < 0.75:\n", 281 | " mesh.point_arrays['pvalues'][i] = 0.5\n", 282 | "\n", 283 | " if meet_cond:\n", 284 | " mesh.point_arrays['pvalues'][i] = 0.0\n", 285 | "\n", 286 | " mesh.point_arrays['pvalues'][0] = 0.0" 287 | ] 288 | }, 289 | { 290 | "cell_type": "code", 291 | "execution_count": null, 292 | "metadata": { 293 | "pycharm": { 294 | "name": "#%%\n" 295 | } 296 | }, 297 | "outputs": [], 298 | "source": [ 299 | "step()" 300 | ] 301 | } 302 | ], 303 | "metadata": { 304 | "kernelspec": { 305 | "display_name": "Python 3 (ipykernel)", 306 | "language": "python", 307 | "name": "python3" 308 | }, 309 | "language_info": { 310 | "codemirror_mode": { 311 | "name": "ipython", 312 | "version": 3 313 | }, 314 | "file_extension": ".py", 315 | "mimetype": "text/x-python", 316 | "name": "python", 317 | "nbconvert_exporter": "python", 318 | "pygments_lexer": "ipython3", 319 | "version": "3.10.2" 320 | } 321 | }, 322 | "nbformat": 4, 323 | "nbformat_minor": 1 324 | } --------------------------------------------------------------------------------