From dce73449475103dc93a2511c4ac26ad5cfaa7d1a Mon Sep 17 00:00:00 2001 From: Martin Folkerts Date: Mon, 26 Aug 2024 14:01:57 +0200 Subject: [PATCH] updated project --- .../app/Jobs/ProjectMosiacGeneratorJob.php | 31 +- laravel_app/app/Models/Project.php | 4 +- .../{app-36af0ee7.css => app-287c5da9.css} | 2 +- laravel_app/public/build/manifest.json | 2 +- pivot.geojson | 80 +++ python_app/planet_download.ipynb | 628 +++++++++++++++--- r_app/CI_report_dashboard_planet.Rmd | 28 +- r_app/Rplots.pdf | Bin 8065 -> 47413 bytes 8 files changed, 642 insertions(+), 133 deletions(-) rename laravel_app/public/build/assets/{app-36af0ee7.css => app-287c5da9.css} (80%) create mode 100644 pivot.geojson diff --git a/laravel_app/app/Jobs/ProjectMosiacGeneratorJob.php b/laravel_app/app/Jobs/ProjectMosiacGeneratorJob.php index cb9f15b..60b70b4 100644 --- a/laravel_app/app/Jobs/ProjectMosiacGeneratorJob.php +++ b/laravel_app/app/Jobs/ProjectMosiacGeneratorJob.php @@ -55,17 +55,17 @@ public function handle(): void ]; $currentPath = '/usr/bin:/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin/Users/mfolkerts/anaconda3/bin:/Library/Apple/usr/bin'; - try{ + try { $process = ProcessNew::timeout(220) - ->env(['PATH' => $currentPath . ':/usr/local/Cellar/pandoc/3.1.8/bin/pandoc']) - ->start($command, function (string $type, string $output ) { + ->env(['PATH' => $currentPath.':/usr/local/Cellar/pandoc/3.1.8/bin/pandoc']) + ->start($command, function (string $type, string $output) { logger($output); }); $results = $process->wait(); - if($results->successful()){ + if ($results->successful()) { $this->mosaic->setStatusSuccess(); } - }catch(\RuntimeException|ProcessTimedOutException|ProcessFailedException $e){ + } catch (\RuntimeException|ProcessTimedOutException|ProcessFailedException $e) { echo $e->getMessage(); $this->mosaic->setStatusFailed(); } @@ -74,33 +74,36 @@ public function handle(): void /** * Check if the project has a mosaic for given period. */ - public static function handleFor(Project $project,Carbon $endDate, int $offset): NullJob|ProjectMosiacGeneratorJob + public static function handleFor(Project $project, Carbon $endDate, int $offset): NullJob|ProjectMosiacGeneratorJob { + $endDate = $endDate->clone(); logger("ProjectMosiacGeneratorJob::handleFor($endDate, $offset)"); - if ($project->hasInvalidMosaicFor($endDate,$offset)) { + if ($project->hasInvalidMosaicFor($endDate, $offset)) { logger("ProjecMosaicGeneratorJob::handleFor(end_date: $endDate, offset: $offset): InvalidMosaic."); return new NullJob(); } - $week = $endDate->clone()->next($project->mail_day)->week; - $year = $endDate->clone()->next($project->mail_day)->year; + logger(__CLASS__."::".__METHOD__."::Project->mail_day::".$project->mail_day); + if (Carbon::parse($project->mail_day)->dayOfWeek < $endDate->dayOfWeek) { + $endDate->next($project->mail_day); + } /** * @var ProjectMosaic $mosaic */ $mosaic = $project->mosaics()->updateOrCreate( [ - 'name' => sprintf('Week_%s_%s', $week, $year), + 'name' => sprintf('Week_%s_%s', $endDate->week, $endDate->year), ], [ - 'name' => sprintf('Week_%s_%s', $week, $year), - 'path' => sprintf('%s/%s/%s', + 'name' => sprintf('Week_%s_%s', $endDate->week, $endDate->year), + 'path' => sprintf('%s/%s/%s', $project->download_path, 'mosaics', - sprintf('week_%s_%s.tif', $week, $year) + sprintf('week_%s_%s.tif', $endDate->week, $endDate->year) ), 'end_date' => $endDate->format('Y-m-d'), - 'offset' => $offset, + 'offset' => $offset, ]); return new self($mosaic); } diff --git a/laravel_app/app/Models/Project.php b/laravel_app/app/Models/Project.php index bf14122..fb9f21f 100644 --- a/laravel_app/app/Models/Project.php +++ b/laravel_app/app/Models/Project.php @@ -316,7 +316,6 @@ public function scheduleReport(?Carbon $endDate = null, ?int $offset = null) $this->mosaics()->where('name', $latestMosaicToDelete)->first()?->delete(); } - logger('Scheduling report for '.$endDate->format('d-m-Y').' with offset '.$offset.' days'); Bus::chain([ Bus::batch($this->getFileDownloadsFor($endDate->clone(), $offset)), @@ -335,6 +334,7 @@ public function scheduleTestReport() { $endDate = Carbon::yesterday(); $offset = 7; + $this->mail_day = $endDate->dayName; for ($step = 0; $step<=3; $step++) { $latestMosaicToDelete = ProjectMosaic::projectMosaicNameFormat($endDate->clone(), $offset*$step); @@ -342,9 +342,7 @@ public function scheduleTestReport() $this->mosaics()->where('name', $latestMosaicToDelete)->first()?->delete(); } - logger('Scheduling test report for '.$endDate->format('d-m-Y').' with offset '.$offset.' days'); - Bus::chain([ Bus::batch($this->getFileDownloadsFor($endDate->clone(), $offset)), Bus::batch($this->getTestMosaicsFor($endDate->clone())), diff --git a/laravel_app/public/build/assets/app-36af0ee7.css b/laravel_app/public/build/assets/app-287c5da9.css similarity index 80% rename from laravel_app/public/build/assets/app-36af0ee7.css rename to laravel_app/public/build/assets/app-287c5da9.css index 19d356a..ddfff68 100644 --- a/laravel_app/public/build/assets/app-36af0ee7.css +++ b/laravel_app/public/build/assets/app-287c5da9.css @@ -2,4 +2,4 @@ @import"https://rsms.me/inter/inter.css";@import"https://viglino.github.io/font- * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) * Copyright 2024 Fonticons, Inc. - */.fa{font-family:var(--fa-style-family, "Font Awesome 6 Free");font-weight:var(--fa-style, 900)}.fa,.fa-classic,.fa-sharp,.fas,.fa-solid,.far,.fa-regular,.fab,.fa-brands{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display, inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fas,.fa-classic,.fa-solid,.far,.fa-regular{font-family:"Font Awesome 6 Free"}.fab,.fa-brands{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin, 2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width, 2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color, #eee);border-radius:var(--fa-border-radius, .1em);border-style:var(--fa-border-style, solid);border-width:var(--fa-border-width, .08em);padding:var(--fa-border-padding, .2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin, .3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin, .3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1))}.fa-fade{animation-name:fa-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-beat-fade{animation-name:fa-beat-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-shake{animation-name:fa-shake;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin{animation-name:fa-spin;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 2s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin-reverse{--fa-animation-direction: reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, steps(8))}@media (prefers-reduced-motion: reduce){.fa-beat,.fa-bounce,.fa-fade,.fa-beat-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale, 1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x, 1.1),var(--fa-bounce-start-scale-y, .9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x, .9),var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x, 1.05),var(--fa-bounce-land-scale-y, .95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound, -.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity, .4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity, .4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale, 1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x, 0),var(--fa-flip-y, 1),var(--fa-flip-z, 0),var(--fa-flip-angle, -180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}8%,24%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0)}}@keyframes fa-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle, 0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index, auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse, #fff)}.fa-0:before{content:"0"}.fa-1:before{content:"1"}.fa-2:before{content:"2"}.fa-3:before{content:"3"}.fa-4:before{content:"4"}.fa-5:before{content:"5"}.fa-6:before{content:"6"}.fa-7:before{content:"7"}.fa-8:before{content:"8"}.fa-9:before{content:"9"}.fa-fill-drip:before{content:""}.fa-arrows-to-circle:before{content:""}.fa-circle-chevron-right:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-at:before{content:"@"}.fa-trash-can:before{content:""}.fa-trash-alt:before{content:""}.fa-text-height:before{content:""}.fa-user-xmark:before{content:""}.fa-user-times:before{content:""}.fa-stethoscope:before{content:""}.fa-message:before{content:""}.fa-comment-alt:before{content:""}.fa-info:before{content:""}.fa-down-left-and-up-right-to-center:before{content:""}.fa-compress-alt:before{content:""}.fa-explosion:before{content:""}.fa-file-lines:before{content:""}.fa-file-alt:before{content:""}.fa-file-text:before{content:""}.fa-wave-square:before{content:""}.fa-ring:before{content:""}.fa-building-un:before{content:""}.fa-dice-three:before{content:""}.fa-calendar-days:before{content:""}.fa-calendar-alt:before{content:""}.fa-anchor-circle-check:before{content:""}.fa-building-circle-arrow-right:before{content:""}.fa-volleyball:before{content:""}.fa-volleyball-ball:before{content:""}.fa-arrows-up-to-line:before{content:""}.fa-sort-down:before{content:""}.fa-sort-desc:before{content:""}.fa-circle-minus:before{content:""}.fa-minus-circle:before{content:""}.fa-door-open:before{content:""}.fa-right-from-bracket:before{content:""}.fa-sign-out-alt:before{content:""}.fa-atom:before{content:""}.fa-soap:before{content:""}.fa-icons:before{content:""}.fa-heart-music-camera-bolt:before{content:""}.fa-microphone-lines-slash:before{content:""}.fa-microphone-alt-slash:before{content:""}.fa-bridge-circle-check:before{content:""}.fa-pump-medical:before{content:""}.fa-fingerprint:before{content:""}.fa-hand-point-right:before{content:""}.fa-magnifying-glass-location:before{content:""}.fa-search-location:before{content:""}.fa-forward-step:before{content:""}.fa-step-forward:before{content:""}.fa-face-smile-beam:before{content:""}.fa-smile-beam:before{content:""}.fa-flag-checkered:before{content:""}.fa-football:before{content:""}.fa-football-ball:before{content:""}.fa-school-circle-exclamation:before{content:""}.fa-crop:before{content:""}.fa-angles-down:before{content:""}.fa-angle-double-down:before{content:""}.fa-users-rectangle:before{content:""}.fa-people-roof:before{content:""}.fa-people-line:before{content:""}.fa-beer-mug-empty:before{content:""}.fa-beer:before{content:""}.fa-diagram-predecessor:before{content:""}.fa-arrow-up-long:before{content:""}.fa-long-arrow-up:before{content:""}.fa-fire-flame-simple:before{content:""}.fa-burn:before{content:""}.fa-person:before{content:""}.fa-male:before{content:""}.fa-laptop:before{content:""}.fa-file-csv:before{content:""}.fa-menorah:before{content:""}.fa-truck-plane:before{content:""}.fa-record-vinyl:before{content:""}.fa-face-grin-stars:before{content:""}.fa-grin-stars:before{content:""}.fa-bong:before{content:""}.fa-spaghetti-monster-flying:before{content:""}.fa-pastafarianism:before{content:""}.fa-arrow-down-up-across-line:before{content:""}.fa-spoon:before{content:""}.fa-utensil-spoon:before{content:""}.fa-jar-wheat:before{content:""}.fa-envelopes-bulk:before{content:""}.fa-mail-bulk:before{content:""}.fa-file-circle-exclamation:before{content:""}.fa-circle-h:before{content:""}.fa-hospital-symbol:before{content:""}.fa-pager:before{content:""}.fa-address-book:before{content:""}.fa-contact-book:before{content:""}.fa-strikethrough:before{content:""}.fa-k:before{content:"K"}.fa-landmark-flag:before{content:""}.fa-pencil:before{content:""}.fa-pencil-alt:before{content:""}.fa-backward:before{content:""}.fa-caret-right:before{content:""}.fa-comments:before{content:""}.fa-paste:before{content:""}.fa-file-clipboard:before{content:""}.fa-code-pull-request:before{content:""}.fa-clipboard-list:before{content:""}.fa-truck-ramp-box:before{content:""}.fa-truck-loading:before{content:""}.fa-user-check:before{content:""}.fa-vial-virus:before{content:""}.fa-sheet-plastic:before{content:""}.fa-blog:before{content:""}.fa-user-ninja:before{content:""}.fa-person-arrow-up-from-line:before{content:""}.fa-scroll-torah:before{content:""}.fa-torah:before{content:""}.fa-broom-ball:before{content:""}.fa-quidditch:before{content:""}.fa-quidditch-broom-ball:before{content:""}.fa-toggle-off:before{content:""}.fa-box-archive:before{content:""}.fa-archive:before{content:""}.fa-person-drowning:before{content:""}.fa-arrow-down-9-1:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-sort-numeric-down-alt:before{content:""}.fa-face-grin-tongue-squint:before{content:""}.fa-grin-tongue-squint:before{content:""}.fa-spray-can:before{content:""}.fa-truck-monster:before{content:""}.fa-w:before{content:"W"}.fa-earth-africa:before{content:""}.fa-globe-africa:before{content:""}.fa-rainbow:before{content:""}.fa-circle-notch:before{content:""}.fa-tablet-screen-button:before{content:""}.fa-tablet-alt:before{content:""}.fa-paw:before{content:""}.fa-cloud:before{content:""}.fa-trowel-bricks:before{content:""}.fa-face-flushed:before{content:""}.fa-flushed:before{content:""}.fa-hospital-user:before{content:""}.fa-tent-arrow-left-right:before{content:""}.fa-gavel:before{content:""}.fa-legal:before{content:""}.fa-binoculars:before{content:""}.fa-microphone-slash:before{content:""}.fa-box-tissue:before{content:""}.fa-motorcycle:before{content:""}.fa-bell-concierge:before{content:""}.fa-concierge-bell:before{content:""}.fa-pen-ruler:before{content:""}.fa-pencil-ruler:before{content:""}.fa-people-arrows:before{content:""}.fa-people-arrows-left-right:before{content:""}.fa-mars-and-venus-burst:before{content:""}.fa-square-caret-right:before{content:""}.fa-caret-square-right:before{content:""}.fa-scissors:before{content:""}.fa-cut:before{content:""}.fa-sun-plant-wilt:before{content:""}.fa-toilets-portable:before{content:""}.fa-hockey-puck:before{content:""}.fa-table:before{content:""}.fa-magnifying-glass-arrow-right:before{content:""}.fa-tachograph-digital:before{content:""}.fa-digital-tachograph:before{content:""}.fa-users-slash:before{content:""}.fa-clover:before{content:""}.fa-reply:before{content:""}.fa-mail-reply:before{content:""}.fa-star-and-crescent:before{content:""}.fa-house-fire:before{content:""}.fa-square-minus:before{content:""}.fa-minus-square:before{content:""}.fa-helicopter:before{content:""}.fa-compass:before{content:""}.fa-square-caret-down:before{content:""}.fa-caret-square-down:before{content:""}.fa-file-circle-question:before{content:""}.fa-laptop-code:before{content:""}.fa-swatchbook:before{content:""}.fa-prescription-bottle:before{content:""}.fa-bars:before{content:""}.fa-navicon:before{content:""}.fa-people-group:before{content:""}.fa-hourglass-end:before{content:""}.fa-hourglass-3:before{content:""}.fa-heart-crack:before{content:""}.fa-heart-broken:before{content:""}.fa-square-up-right:before{content:""}.fa-external-link-square-alt:before{content:""}.fa-face-kiss-beam:before{content:""}.fa-kiss-beam:before{content:""}.fa-film:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-people-robbery:before{content:""}.fa-lightbulb:before{content:""}.fa-caret-left:before{content:""}.fa-circle-exclamation:before{content:""}.fa-exclamation-circle:before{content:""}.fa-school-circle-xmark:before{content:""}.fa-arrow-right-from-bracket:before{content:""}.fa-sign-out:before{content:""}.fa-circle-chevron-down:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-unlock-keyhole:before{content:""}.fa-unlock-alt:before{content:""}.fa-cloud-showers-heavy:before{content:""}.fa-headphones-simple:before{content:""}.fa-headphones-alt:before{content:""}.fa-sitemap:before{content:""}.fa-circle-dollar-to-slot:before{content:""}.fa-donate:before{content:""}.fa-memory:before{content:""}.fa-road-spikes:before{content:""}.fa-fire-burner:before{content:""}.fa-flag:before{content:""}.fa-hanukiah:before{content:""}.fa-feather:before{content:""}.fa-volume-low:before{content:""}.fa-volume-down:before{content:""}.fa-comment-slash:before{content:""}.fa-cloud-sun-rain:before{content:""}.fa-compress:before{content:""}.fa-wheat-awn:before{content:""}.fa-wheat-alt:before{content:""}.fa-ankh:before{content:""}.fa-hands-holding-child:before{content:""}.fa-asterisk:before{content:"*"}.fa-square-check:before{content:""}.fa-check-square:before{content:""}.fa-peseta-sign:before{content:""}.fa-heading:before{content:""}.fa-header:before{content:""}.fa-ghost:before{content:""}.fa-list:before{content:""}.fa-list-squares:before{content:""}.fa-square-phone-flip:before{content:""}.fa-phone-square-alt:before{content:""}.fa-cart-plus:before{content:""}.fa-gamepad:before{content:""}.fa-circle-dot:before{content:""}.fa-dot-circle:before{content:""}.fa-face-dizzy:before{content:""}.fa-dizzy:before{content:""}.fa-egg:before{content:""}.fa-house-medical-circle-xmark:before{content:""}.fa-campground:before{content:""}.fa-folder-plus:before{content:""}.fa-futbol:before{content:""}.fa-futbol-ball:before{content:""}.fa-soccer-ball:before{content:""}.fa-paintbrush:before{content:""}.fa-paint-brush:before{content:""}.fa-lock:before{content:""}.fa-gas-pump:before{content:""}.fa-hot-tub-person:before{content:""}.fa-hot-tub:before{content:""}.fa-map-location:before{content:""}.fa-map-marked:before{content:""}.fa-house-flood-water:before{content:""}.fa-tree:before{content:""}.fa-bridge-lock:before{content:""}.fa-sack-dollar:before{content:""}.fa-pen-to-square:before{content:""}.fa-edit:before{content:""}.fa-car-side:before{content:""}.fa-share-nodes:before{content:""}.fa-share-alt:before{content:""}.fa-heart-circle-minus:before{content:""}.fa-hourglass-half:before{content:""}.fa-hourglass-2:before{content:""}.fa-microscope:before{content:""}.fa-sink:before{content:""}.fa-bag-shopping:before{content:""}.fa-shopping-bag:before{content:""}.fa-arrow-down-z-a:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-alpha-down-alt:before{content:""}.fa-mitten:before{content:""}.fa-person-rays:before{content:""}.fa-users:before{content:""}.fa-eye-slash:before{content:""}.fa-flask-vial:before{content:""}.fa-hand:before{content:""}.fa-hand-paper:before{content:""}.fa-om:before{content:""}.fa-worm:before{content:""}.fa-house-circle-xmark:before{content:""}.fa-plug:before{content:""}.fa-chevron-up:before{content:""}.fa-hand-spock:before{content:""}.fa-stopwatch:before{content:""}.fa-face-kiss:before{content:""}.fa-kiss:before{content:""}.fa-bridge-circle-xmark:before{content:""}.fa-face-grin-tongue:before{content:""}.fa-grin-tongue:before{content:""}.fa-chess-bishop:before{content:""}.fa-face-grin-wink:before{content:""}.fa-grin-wink:before{content:""}.fa-ear-deaf:before{content:""}.fa-deaf:before{content:""}.fa-deafness:before{content:""}.fa-hard-of-hearing:before{content:""}.fa-road-circle-check:before{content:""}.fa-dice-five:before{content:""}.fa-square-rss:before{content:""}.fa-rss-square:before{content:""}.fa-land-mine-on:before{content:""}.fa-i-cursor:before{content:""}.fa-stamp:before{content:""}.fa-stairs:before{content:""}.fa-i:before{content:"I"}.fa-hryvnia-sign:before{content:""}.fa-hryvnia:before{content:""}.fa-pills:before{content:""}.fa-face-grin-wide:before{content:""}.fa-grin-alt:before{content:""}.fa-tooth:before{content:""}.fa-v:before{content:"V"}.fa-bangladeshi-taka-sign:before{content:""}.fa-bicycle:before{content:""}.fa-staff-snake:before{content:""}.fa-rod-asclepius:before{content:""}.fa-rod-snake:before{content:""}.fa-staff-aesculapius:before{content:""}.fa-head-side-cough-slash:before{content:""}.fa-truck-medical:before{content:""}.fa-ambulance:before{content:""}.fa-wheat-awn-circle-exclamation:before{content:""}.fa-snowman:before{content:""}.fa-mortar-pestle:before{content:""}.fa-road-barrier:before{content:""}.fa-school:before{content:""}.fa-igloo:before{content:""}.fa-joint:before{content:""}.fa-angle-right:before{content:""}.fa-horse:before{content:""}.fa-q:before{content:"Q"}.fa-g:before{content:"G"}.fa-notes-medical:before{content:""}.fa-temperature-half:before{content:""}.fa-temperature-2:before{content:""}.fa-thermometer-2:before{content:""}.fa-thermometer-half:before{content:""}.fa-dong-sign:before{content:""}.fa-capsules:before{content:""}.fa-poo-storm:before{content:""}.fa-poo-bolt:before{content:""}.fa-face-frown-open:before{content:""}.fa-frown-open:before{content:""}.fa-hand-point-up:before{content:""}.fa-money-bill:before{content:""}.fa-bookmark:before{content:""}.fa-align-justify:before{content:""}.fa-umbrella-beach:before{content:""}.fa-helmet-un:before{content:""}.fa-bullseye:before{content:""}.fa-bacon:before{content:""}.fa-hand-point-down:before{content:""}.fa-arrow-up-from-bracket:before{content:""}.fa-folder:before{content:""}.fa-folder-blank:before{content:""}.fa-file-waveform:before{content:""}.fa-file-medical-alt:before{content:""}.fa-radiation:before{content:""}.fa-chart-simple:before{content:""}.fa-mars-stroke:before{content:""}.fa-vial:before{content:""}.fa-gauge:before{content:""}.fa-dashboard:before{content:""}.fa-gauge-med:before{content:""}.fa-tachometer-alt-average:before{content:""}.fa-wand-magic-sparkles:before{content:""}.fa-magic-wand-sparkles:before{content:""}.fa-e:before{content:"E"}.fa-pen-clip:before{content:""}.fa-pen-alt:before{content:""}.fa-bridge-circle-exclamation:before{content:""}.fa-user:before{content:""}.fa-school-circle-check:before{content:""}.fa-dumpster:before{content:""}.fa-van-shuttle:before{content:""}.fa-shuttle-van:before{content:""}.fa-building-user:before{content:""}.fa-square-caret-left:before{content:""}.fa-caret-square-left:before{content:""}.fa-highlighter:before{content:""}.fa-key:before{content:""}.fa-bullhorn:before{content:""}.fa-globe:before{content:""}.fa-synagogue:before{content:""}.fa-person-half-dress:before{content:""}.fa-road-bridge:before{content:""}.fa-location-arrow:before{content:""}.fa-c:before{content:"C"}.fa-tablet-button:before{content:""}.fa-building-lock:before{content:""}.fa-pizza-slice:before{content:""}.fa-money-bill-wave:before{content:""}.fa-chart-area:before{content:""}.fa-area-chart:before{content:""}.fa-house-flag:before{content:""}.fa-person-circle-minus:before{content:""}.fa-ban:before{content:""}.fa-cancel:before{content:""}.fa-camera-rotate:before{content:""}.fa-spray-can-sparkles:before{content:""}.fa-air-freshener:before{content:""}.fa-star:before{content:""}.fa-repeat:before{content:""}.fa-cross:before{content:""}.fa-box:before{content:""}.fa-venus-mars:before{content:""}.fa-arrow-pointer:before{content:""}.fa-mouse-pointer:before{content:""}.fa-maximize:before{content:""}.fa-expand-arrows-alt:before{content:""}.fa-charging-station:before{content:""}.fa-shapes:before{content:""}.fa-triangle-circle-square:before{content:""}.fa-shuffle:before{content:""}.fa-random:before{content:""}.fa-person-running:before{content:""}.fa-running:before{content:""}.fa-mobile-retro:before{content:""}.fa-grip-lines-vertical:before{content:""}.fa-spider:before{content:""}.fa-hands-bound:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-plane-circle-exclamation:before{content:""}.fa-x-ray:before{content:""}.fa-spell-check:before{content:""}.fa-slash:before{content:""}.fa-computer-mouse:before{content:""}.fa-mouse:before{content:""}.fa-arrow-right-to-bracket:before{content:""}.fa-sign-in:before{content:""}.fa-shop-slash:before{content:""}.fa-store-alt-slash:before{content:""}.fa-server:before{content:""}.fa-virus-covid-slash:before{content:""}.fa-shop-lock:before{content:""}.fa-hourglass-start:before{content:""}.fa-hourglass-1:before{content:""}.fa-blender-phone:before{content:""}.fa-building-wheat:before{content:""}.fa-person-breastfeeding:before{content:""}.fa-right-to-bracket:before{content:""}.fa-sign-in-alt:before{content:""}.fa-venus:before{content:""}.fa-passport:before{content:""}.fa-heart-pulse:before{content:""}.fa-heartbeat:before{content:""}.fa-people-carry-box:before{content:""}.fa-people-carry:before{content:""}.fa-temperature-high:before{content:""}.fa-microchip:before{content:""}.fa-crown:before{content:""}.fa-weight-hanging:before{content:""}.fa-xmarks-lines:before{content:""}.fa-file-prescription:before{content:""}.fa-weight-scale:before{content:""}.fa-weight:before{content:""}.fa-user-group:before{content:""}.fa-user-friends:before{content:""}.fa-arrow-up-a-z:before{content:""}.fa-sort-alpha-up:before{content:""}.fa-chess-knight:before{content:""}.fa-face-laugh-squint:before{content:""}.fa-laugh-squint:before{content:""}.fa-wheelchair:before{content:""}.fa-circle-arrow-up:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-toggle-on:before{content:""}.fa-person-walking:before{content:""}.fa-walking:before{content:""}.fa-l:before{content:"L"}.fa-fire:before{content:""}.fa-bed-pulse:before{content:""}.fa-procedures:before{content:""}.fa-shuttle-space:before{content:""}.fa-space-shuttle:before{content:""}.fa-face-laugh:before{content:""}.fa-laugh:before{content:""}.fa-folder-open:before{content:""}.fa-heart-circle-plus:before{content:""}.fa-code-fork:before{content:""}.fa-city:before{content:""}.fa-microphone-lines:before{content:""}.fa-microphone-alt:before{content:""}.fa-pepper-hot:before{content:""}.fa-unlock:before{content:""}.fa-colon-sign:before{content:""}.fa-headset:before{content:""}.fa-store-slash:before{content:""}.fa-road-circle-xmark:before{content:""}.fa-user-minus:before{content:""}.fa-mars-stroke-up:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-champagne-glasses:before{content:""}.fa-glass-cheers:before{content:""}.fa-clipboard:before{content:""}.fa-house-circle-exclamation:before{content:""}.fa-file-arrow-up:before{content:""}.fa-file-upload:before{content:""}.fa-wifi:before{content:""}.fa-wifi-3:before{content:""}.fa-wifi-strong:before{content:""}.fa-bath:before{content:""}.fa-bathtub:before{content:""}.fa-underline:before{content:""}.fa-user-pen:before{content:""}.fa-user-edit:before{content:""}.fa-signature:before{content:""}.fa-stroopwafel:before{content:""}.fa-bold:before{content:""}.fa-anchor-lock:before{content:""}.fa-building-ngo:before{content:""}.fa-manat-sign:before{content:""}.fa-not-equal:before{content:""}.fa-border-top-left:before{content:""}.fa-border-style:before{content:""}.fa-map-location-dot:before{content:""}.fa-map-marked-alt:before{content:""}.fa-jedi:before{content:""}.fa-square-poll-vertical:before{content:""}.fa-poll:before{content:""}.fa-mug-hot:before{content:""}.fa-car-battery:before{content:""}.fa-battery-car:before{content:""}.fa-gift:before{content:""}.fa-dice-two:before{content:""}.fa-chess-queen:before{content:""}.fa-glasses:before{content:""}.fa-chess-board:before{content:""}.fa-building-circle-check:before{content:""}.fa-person-chalkboard:before{content:""}.fa-mars-stroke-right:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-hand-back-fist:before{content:""}.fa-hand-rock:before{content:""}.fa-square-caret-up:before{content:""}.fa-caret-square-up:before{content:""}.fa-cloud-showers-water:before{content:""}.fa-chart-bar:before{content:""}.fa-bar-chart:before{content:""}.fa-hands-bubbles:before{content:""}.fa-hands-wash:before{content:""}.fa-less-than-equal:before{content:""}.fa-train:before{content:""}.fa-eye-low-vision:before{content:""}.fa-low-vision:before{content:""}.fa-crow:before{content:""}.fa-sailboat:before{content:""}.fa-window-restore:before{content:""}.fa-square-plus:before{content:""}.fa-plus-square:before{content:""}.fa-torii-gate:before{content:""}.fa-frog:before{content:""}.fa-bucket:before{content:""}.fa-image:before{content:""}.fa-microphone:before{content:""}.fa-cow:before{content:""}.fa-caret-up:before{content:""}.fa-screwdriver:before{content:""}.fa-folder-closed:before{content:""}.fa-house-tsunami:before{content:""}.fa-square-nfi:before{content:""}.fa-arrow-up-from-ground-water:before{content:""}.fa-martini-glass:before{content:""}.fa-glass-martini-alt:before{content:""}.fa-rotate-left:before{content:""}.fa-rotate-back:before{content:""}.fa-rotate-backward:before{content:""}.fa-undo-alt:before{content:""}.fa-table-columns:before{content:""}.fa-columns:before{content:""}.fa-lemon:before{content:""}.fa-head-side-mask:before{content:""}.fa-handshake:before{content:""}.fa-gem:before{content:""}.fa-dolly:before{content:""}.fa-dolly-box:before{content:""}.fa-smoking:before{content:""}.fa-minimize:before{content:""}.fa-compress-arrows-alt:before{content:""}.fa-monument:before{content:""}.fa-snowplow:before{content:""}.fa-angles-right:before{content:""}.fa-angle-double-right:before{content:""}.fa-cannabis:before{content:""}.fa-circle-play:before{content:""}.fa-play-circle:before{content:""}.fa-tablets:before{content:""}.fa-ethernet:before{content:""}.fa-euro-sign:before{content:""}.fa-eur:before{content:""}.fa-euro:before{content:""}.fa-chair:before{content:""}.fa-circle-check:before{content:""}.fa-check-circle:before{content:""}.fa-circle-stop:before{content:""}.fa-stop-circle:before{content:""}.fa-compass-drafting:before{content:""}.fa-drafting-compass:before{content:""}.fa-plate-wheat:before{content:""}.fa-icicles:before{content:""}.fa-person-shelter:before{content:""}.fa-neuter:before{content:""}.fa-id-badge:before{content:""}.fa-marker:before{content:""}.fa-face-laugh-beam:before{content:""}.fa-laugh-beam:before{content:""}.fa-helicopter-symbol:before{content:""}.fa-universal-access:before{content:""}.fa-circle-chevron-up:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-lari-sign:before{content:""}.fa-volcano:before{content:""}.fa-person-walking-dashed-line-arrow-right:before{content:""}.fa-sterling-sign:before{content:""}.fa-gbp:before{content:""}.fa-pound-sign:before{content:""}.fa-viruses:before{content:""}.fa-square-person-confined:before{content:""}.fa-user-tie:before{content:""}.fa-arrow-down-long:before{content:""}.fa-long-arrow-down:before{content:""}.fa-tent-arrow-down-to-line:before{content:""}.fa-certificate:before{content:""}.fa-reply-all:before{content:""}.fa-mail-reply-all:before{content:""}.fa-suitcase:before{content:""}.fa-person-skating:before{content:""}.fa-skating:before{content:""}.fa-filter-circle-dollar:before{content:""}.fa-funnel-dollar:before{content:""}.fa-camera-retro:before{content:""}.fa-circle-arrow-down:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-file-import:before{content:""}.fa-arrow-right-to-file:before{content:""}.fa-square-arrow-up-right:before{content:""}.fa-external-link-square:before{content:""}.fa-box-open:before{content:""}.fa-scroll:before{content:""}.fa-spa:before{content:""}.fa-location-pin-lock:before{content:""}.fa-pause:before{content:""}.fa-hill-avalanche:before{content:""}.fa-temperature-empty:before{content:""}.fa-temperature-0:before{content:""}.fa-thermometer-0:before{content:""}.fa-thermometer-empty:before{content:""}.fa-bomb:before{content:""}.fa-registered:before{content:""}.fa-address-card:before{content:""}.fa-contact-card:before{content:""}.fa-vcard:before{content:""}.fa-scale-unbalanced-flip:before{content:""}.fa-balance-scale-right:before{content:""}.fa-subscript:before{content:""}.fa-diamond-turn-right:before{content:""}.fa-directions:before{content:""}.fa-burst:before{content:""}.fa-house-laptop:before{content:""}.fa-laptop-house:before{content:""}.fa-face-tired:before{content:""}.fa-tired:before{content:""}.fa-money-bills:before{content:""}.fa-smog:before{content:""}.fa-crutch:before{content:""}.fa-cloud-arrow-up:before{content:""}.fa-cloud-upload:before{content:""}.fa-cloud-upload-alt:before{content:""}.fa-palette:before{content:""}.fa-arrows-turn-right:before{content:""}.fa-vest:before{content:""}.fa-ferry:before{content:""}.fa-arrows-down-to-people:before{content:""}.fa-seedling:before{content:""}.fa-sprout:before{content:""}.fa-left-right:before{content:""}.fa-arrows-alt-h:before{content:""}.fa-boxes-packing:before{content:""}.fa-circle-arrow-left:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-group-arrows-rotate:before{content:""}.fa-bowl-food:before{content:""}.fa-candy-cane:before{content:""}.fa-arrow-down-wide-short:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-down:before{content:""}.fa-cloud-bolt:before{content:""}.fa-thunderstorm:before{content:""}.fa-text-slash:before{content:""}.fa-remove-format:before{content:""}.fa-face-smile-wink:before{content:""}.fa-smile-wink:before{content:""}.fa-file-word:before{content:""}.fa-file-powerpoint:before{content:""}.fa-arrows-left-right:before{content:""}.fa-arrows-h:before{content:""}.fa-house-lock:before{content:""}.fa-cloud-arrow-down:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-download-alt:before{content:""}.fa-children:before{content:""}.fa-chalkboard:before{content:""}.fa-blackboard:before{content:""}.fa-user-large-slash:before{content:""}.fa-user-alt-slash:before{content:""}.fa-envelope-open:before{content:""}.fa-handshake-simple-slash:before{content:""}.fa-handshake-alt-slash:before{content:""}.fa-mattress-pillow:before{content:""}.fa-guarani-sign:before{content:""}.fa-arrows-rotate:before{content:""}.fa-refresh:before{content:""}.fa-sync:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-cruzeiro-sign:before{content:""}.fa-greater-than-equal:before{content:""}.fa-shield-halved:before{content:""}.fa-shield-alt:before{content:""}.fa-book-atlas:before{content:""}.fa-atlas:before{content:""}.fa-virus:before{content:""}.fa-envelope-circle-check:before{content:""}.fa-layer-group:before{content:""}.fa-arrows-to-dot:before{content:""}.fa-archway:before{content:""}.fa-heart-circle-check:before{content:""}.fa-house-chimney-crack:before{content:""}.fa-house-damage:before{content:""}.fa-file-zipper:before{content:""}.fa-file-archive:before{content:""}.fa-square:before{content:""}.fa-martini-glass-empty:before{content:""}.fa-glass-martini:before{content:""}.fa-couch:before{content:""}.fa-cedi-sign:before{content:""}.fa-italic:before{content:""}.fa-table-cells-column-lock:before{content:""}.fa-church:before{content:""}.fa-comments-dollar:before{content:""}.fa-democrat:before{content:""}.fa-z:before{content:"Z"}.fa-person-skiing:before{content:""}.fa-skiing:before{content:""}.fa-road-lock:before{content:""}.fa-a:before{content:"A"}.fa-temperature-arrow-down:before{content:""}.fa-temperature-down:before{content:""}.fa-feather-pointed:before{content:""}.fa-feather-alt:before{content:""}.fa-p:before{content:"P"}.fa-snowflake:before{content:""}.fa-newspaper:before{content:""}.fa-rectangle-ad:before{content:""}.fa-ad:before{content:""}.fa-circle-arrow-right:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-filter-circle-xmark:before{content:""}.fa-locust:before{content:""}.fa-sort:before{content:""}.fa-unsorted:before{content:""}.fa-list-ol:before{content:""}.fa-list-1-2:before{content:""}.fa-list-numeric:before{content:""}.fa-person-dress-burst:before{content:""}.fa-money-check-dollar:before{content:""}.fa-money-check-alt:before{content:""}.fa-vector-square:before{content:""}.fa-bread-slice:before{content:""}.fa-language:before{content:""}.fa-face-kiss-wink-heart:before{content:""}.fa-kiss-wink-heart:before{content:""}.fa-filter:before{content:""}.fa-question:before{content:"?"}.fa-file-signature:before{content:""}.fa-up-down-left-right:before{content:""}.fa-arrows-alt:before{content:""}.fa-house-chimney-user:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-puzzle-piece:before{content:""}.fa-money-check:before{content:""}.fa-star-half-stroke:before{content:""}.fa-star-half-alt:before{content:""}.fa-code:before{content:""}.fa-whiskey-glass:before{content:""}.fa-glass-whiskey:before{content:""}.fa-building-circle-exclamation:before{content:""}.fa-magnifying-glass-chart:before{content:""}.fa-arrow-up-right-from-square:before{content:""}.fa-external-link:before{content:""}.fa-cubes-stacked:before{content:""}.fa-won-sign:before{content:""}.fa-krw:before{content:""}.fa-won:before{content:""}.fa-virus-covid:before{content:""}.fa-austral-sign:before{content:""}.fa-f:before{content:"F"}.fa-leaf:before{content:""}.fa-road:before{content:""}.fa-taxi:before{content:""}.fa-cab:before{content:""}.fa-person-circle-plus:before{content:""}.fa-chart-pie:before{content:""}.fa-pie-chart:before{content:""}.fa-bolt-lightning:before{content:""}.fa-sack-xmark:before{content:""}.fa-file-excel:before{content:""}.fa-file-contract:before{content:""}.fa-fish-fins:before{content:""}.fa-building-flag:before{content:""}.fa-face-grin-beam:before{content:""}.fa-grin-beam:before{content:""}.fa-object-ungroup:before{content:""}.fa-poop:before{content:""}.fa-location-pin:before{content:""}.fa-map-marker:before{content:""}.fa-kaaba:before{content:""}.fa-toilet-paper:before{content:""}.fa-helmet-safety:before{content:""}.fa-hard-hat:before{content:""}.fa-hat-hard:before{content:""}.fa-eject:before{content:""}.fa-circle-right:before{content:""}.fa-arrow-alt-circle-right:before{content:""}.fa-plane-circle-check:before{content:""}.fa-face-rolling-eyes:before{content:""}.fa-meh-rolling-eyes:before{content:""}.fa-object-group:before{content:""}.fa-chart-line:before{content:""}.fa-line-chart:before{content:""}.fa-mask-ventilator:before{content:""}.fa-arrow-right:before{content:""}.fa-signs-post:before{content:""}.fa-map-signs:before{content:""}.fa-cash-register:before{content:""}.fa-person-circle-question:before{content:""}.fa-h:before{content:"H"}.fa-tarp:before{content:""}.fa-screwdriver-wrench:before{content:""}.fa-tools:before{content:""}.fa-arrows-to-eye:before{content:""}.fa-plug-circle-bolt:before{content:""}.fa-heart:before{content:""}.fa-mars-and-venus:before{content:""}.fa-house-user:before{content:""}.fa-home-user:before{content:""}.fa-dumpster-fire:before{content:""}.fa-house-crack:before{content:""}.fa-martini-glass-citrus:before{content:""}.fa-cocktail:before{content:""}.fa-face-surprise:before{content:""}.fa-surprise:before{content:""}.fa-bottle-water:before{content:""}.fa-circle-pause:before{content:""}.fa-pause-circle:before{content:""}.fa-toilet-paper-slash:before{content:""}.fa-apple-whole:before{content:""}.fa-apple-alt:before{content:""}.fa-kitchen-set:before{content:""}.fa-r:before{content:"R"}.fa-temperature-quarter:before{content:""}.fa-temperature-1:before{content:""}.fa-thermometer-1:before{content:""}.fa-thermometer-quarter:before{content:""}.fa-cube:before{content:""}.fa-bitcoin-sign:before{content:""}.fa-shield-dog:before{content:""}.fa-solar-panel:before{content:""}.fa-lock-open:before{content:""}.fa-elevator:before{content:""}.fa-money-bill-transfer:before{content:""}.fa-money-bill-trend-up:before{content:""}.fa-house-flood-water-circle-arrow-right:before{content:""}.fa-square-poll-horizontal:before{content:""}.fa-poll-h:before{content:""}.fa-circle:before{content:""}.fa-backward-fast:before{content:""}.fa-fast-backward:before{content:""}.fa-recycle:before{content:""}.fa-user-astronaut:before{content:""}.fa-plane-slash:before{content:""}.fa-trademark:before{content:""}.fa-basketball:before{content:""}.fa-basketball-ball:before{content:""}.fa-satellite-dish:before{content:""}.fa-circle-up:before{content:""}.fa-arrow-alt-circle-up:before{content:""}.fa-mobile-screen-button:before{content:""}.fa-mobile-alt:before{content:""}.fa-volume-high:before{content:""}.fa-volume-up:before{content:""}.fa-users-rays:before{content:""}.fa-wallet:before{content:""}.fa-clipboard-check:before{content:""}.fa-file-audio:before{content:""}.fa-burger:before{content:""}.fa-hamburger:before{content:""}.fa-wrench:before{content:""}.fa-bugs:before{content:""}.fa-rupee-sign:before{content:""}.fa-rupee:before{content:""}.fa-file-image:before{content:""}.fa-circle-question:before{content:""}.fa-question-circle:before{content:""}.fa-plane-departure:before{content:""}.fa-handshake-slash:before{content:""}.fa-book-bookmark:before{content:""}.fa-code-branch:before{content:""}.fa-hat-cowboy:before{content:""}.fa-bridge:before{content:""}.fa-phone-flip:before{content:""}.fa-phone-alt:before{content:""}.fa-truck-front:before{content:""}.fa-cat:before{content:""}.fa-anchor-circle-exclamation:before{content:""}.fa-truck-field:before{content:""}.fa-route:before{content:""}.fa-clipboard-question:before{content:""}.fa-panorama:before{content:""}.fa-comment-medical:before{content:""}.fa-teeth-open:before{content:""}.fa-file-circle-minus:before{content:""}.fa-tags:before{content:""}.fa-wine-glass:before{content:""}.fa-forward-fast:before{content:""}.fa-fast-forward:before{content:""}.fa-face-meh-blank:before{content:""}.fa-meh-blank:before{content:""}.fa-square-parking:before{content:""}.fa-parking:before{content:""}.fa-house-signal:before{content:""}.fa-bars-progress:before{content:""}.fa-tasks-alt:before{content:""}.fa-faucet-drip:before{content:""}.fa-cart-flatbed:before{content:""}.fa-dolly-flatbed:before{content:""}.fa-ban-smoking:before{content:""}.fa-smoking-ban:before{content:""}.fa-terminal:before{content:""}.fa-mobile-button:before{content:""}.fa-house-medical-flag:before{content:""}.fa-basket-shopping:before{content:""}.fa-shopping-basket:before{content:""}.fa-tape:before{content:""}.fa-bus-simple:before{content:""}.fa-bus-alt:before{content:""}.fa-eye:before{content:""}.fa-face-sad-cry:before{content:""}.fa-sad-cry:before{content:""}.fa-audio-description:before{content:""}.fa-person-military-to-person:before{content:""}.fa-file-shield:before{content:""}.fa-user-slash:before{content:""}.fa-pen:before{content:""}.fa-tower-observation:before{content:""}.fa-file-code:before{content:""}.fa-signal:before{content:""}.fa-signal-5:before{content:""}.fa-signal-perfect:before{content:""}.fa-bus:before{content:""}.fa-heart-circle-xmark:before{content:""}.fa-house-chimney:before{content:""}.fa-home-lg:before{content:""}.fa-window-maximize:before{content:""}.fa-face-frown:before{content:""}.fa-frown:before{content:""}.fa-prescription:before{content:""}.fa-shop:before{content:""}.fa-store-alt:before{content:""}.fa-floppy-disk:before{content:""}.fa-save:before{content:""}.fa-vihara:before{content:""}.fa-scale-unbalanced:before{content:""}.fa-balance-scale-left:before{content:""}.fa-sort-up:before{content:""}.fa-sort-asc:before{content:""}.fa-comment-dots:before{content:""}.fa-commenting:before{content:""}.fa-plant-wilt:before{content:""}.fa-diamond:before{content:""}.fa-face-grin-squint:before{content:""}.fa-grin-squint:before{content:""}.fa-hand-holding-dollar:before{content:""}.fa-hand-holding-usd:before{content:""}.fa-bacterium:before{content:""}.fa-hand-pointer:before{content:""}.fa-drum-steelpan:before{content:""}.fa-hand-scissors:before{content:""}.fa-hands-praying:before{content:""}.fa-praying-hands:before{content:""}.fa-arrow-rotate-right:before{content:""}.fa-arrow-right-rotate:before{content:""}.fa-arrow-rotate-forward:before{content:""}.fa-redo:before{content:""}.fa-biohazard:before{content:""}.fa-location-crosshairs:before{content:""}.fa-location:before{content:""}.fa-mars-double:before{content:""}.fa-child-dress:before{content:""}.fa-users-between-lines:before{content:""}.fa-lungs-virus:before{content:""}.fa-face-grin-tears:before{content:""}.fa-grin-tears:before{content:""}.fa-phone:before{content:""}.fa-calendar-xmark:before{content:""}.fa-calendar-times:before{content:""}.fa-child-reaching:before{content:""}.fa-head-side-virus:before{content:""}.fa-user-gear:before{content:""}.fa-user-cog:before{content:""}.fa-arrow-up-1-9:before{content:""}.fa-sort-numeric-up:before{content:""}.fa-door-closed:before{content:""}.fa-shield-virus:before{content:""}.fa-dice-six:before{content:""}.fa-mosquito-net:before{content:""}.fa-bridge-water:before{content:""}.fa-person-booth:before{content:""}.fa-text-width:before{content:""}.fa-hat-wizard:before{content:""}.fa-pen-fancy:before{content:""}.fa-person-digging:before{content:""}.fa-digging:before{content:""}.fa-trash:before{content:""}.fa-gauge-simple:before{content:""}.fa-gauge-simple-med:before{content:""}.fa-tachometer-average:before{content:""}.fa-book-medical:before{content:""}.fa-poo:before{content:""}.fa-quote-right:before{content:""}.fa-quote-right-alt:before{content:""}.fa-shirt:before{content:""}.fa-t-shirt:before{content:""}.fa-tshirt:before{content:""}.fa-cubes:before{content:""}.fa-divide:before{content:""}.fa-tenge-sign:before{content:""}.fa-tenge:before{content:""}.fa-headphones:before{content:""}.fa-hands-holding:before{content:""}.fa-hands-clapping:before{content:""}.fa-republican:before{content:""}.fa-arrow-left:before{content:""}.fa-person-circle-xmark:before{content:""}.fa-ruler:before{content:""}.fa-align-left:before{content:""}.fa-dice-d6:before{content:""}.fa-restroom:before{content:""}.fa-j:before{content:"J"}.fa-users-viewfinder:before{content:""}.fa-file-video:before{content:""}.fa-up-right-from-square:before{content:""}.fa-external-link-alt:before{content:""}.fa-table-cells:before{content:""}.fa-th:before{content:""}.fa-file-pdf:before{content:""}.fa-book-bible:before{content:""}.fa-bible:before{content:""}.fa-o:before{content:"O"}.fa-suitcase-medical:before{content:""}.fa-medkit:before{content:""}.fa-user-secret:before{content:""}.fa-otter:before{content:""}.fa-person-dress:before{content:""}.fa-female:before{content:""}.fa-comment-dollar:before{content:""}.fa-business-time:before{content:""}.fa-briefcase-clock:before{content:""}.fa-table-cells-large:before{content:""}.fa-th-large:before{content:""}.fa-book-tanakh:before{content:""}.fa-tanakh:before{content:""}.fa-phone-volume:before{content:""}.fa-volume-control-phone:before{content:""}.fa-hat-cowboy-side:before{content:""}.fa-clipboard-user:before{content:""}.fa-child:before{content:""}.fa-lira-sign:before{content:""}.fa-satellite:before{content:""}.fa-plane-lock:before{content:""}.fa-tag:before{content:""}.fa-comment:before{content:""}.fa-cake-candles:before{content:""}.fa-birthday-cake:before{content:""}.fa-cake:before{content:""}.fa-envelope:before{content:""}.fa-angles-up:before{content:""}.fa-angle-double-up:before{content:""}.fa-paperclip:before{content:""}.fa-arrow-right-to-city:before{content:""}.fa-ribbon:before{content:""}.fa-lungs:before{content:""}.fa-arrow-up-9-1:before{content:""}.fa-sort-numeric-up-alt:before{content:""}.fa-litecoin-sign:before{content:""}.fa-border-none:before{content:""}.fa-circle-nodes:before{content:""}.fa-parachute-box:before{content:""}.fa-indent:before{content:""}.fa-truck-field-un:before{content:""}.fa-hourglass:before{content:""}.fa-hourglass-empty:before{content:""}.fa-mountain:before{content:""}.fa-user-doctor:before{content:""}.fa-user-md:before{content:""}.fa-circle-info:before{content:""}.fa-info-circle:before{content:""}.fa-cloud-meatball:before{content:""}.fa-camera:before{content:""}.fa-camera-alt:before{content:""}.fa-square-virus:before{content:""}.fa-meteor:before{content:""}.fa-car-on:before{content:""}.fa-sleigh:before{content:""}.fa-arrow-down-1-9:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-down:before{content:""}.fa-hand-holding-droplet:before{content:""}.fa-hand-holding-water:before{content:""}.fa-water:before{content:""}.fa-calendar-check:before{content:""}.fa-braille:before{content:""}.fa-prescription-bottle-medical:before{content:""}.fa-prescription-bottle-alt:before{content:""}.fa-landmark:before{content:""}.fa-truck:before{content:""}.fa-crosshairs:before{content:""}.fa-person-cane:before{content:""}.fa-tent:before{content:""}.fa-vest-patches:before{content:""}.fa-check-double:before{content:""}.fa-arrow-down-a-z:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-down:before{content:""}.fa-money-bill-wheat:before{content:""}.fa-cookie:before{content:""}.fa-arrow-rotate-left:before{content:""}.fa-arrow-left-rotate:before{content:""}.fa-arrow-rotate-back:before{content:""}.fa-arrow-rotate-backward:before{content:""}.fa-undo:before{content:""}.fa-hard-drive:before{content:""}.fa-hdd:before{content:""}.fa-face-grin-squint-tears:before{content:""}.fa-grin-squint-tears:before{content:""}.fa-dumbbell:before{content:""}.fa-rectangle-list:before{content:""}.fa-list-alt:before{content:""}.fa-tarp-droplet:before{content:""}.fa-house-medical-circle-check:before{content:""}.fa-person-skiing-nordic:before{content:""}.fa-skiing-nordic:before{content:""}.fa-calendar-plus:before{content:""}.fa-plane-arrival:before{content:""}.fa-circle-left:before{content:""}.fa-arrow-alt-circle-left:before{content:""}.fa-train-subway:before{content:""}.fa-subway:before{content:""}.fa-chart-gantt:before{content:""}.fa-indian-rupee-sign:before{content:""}.fa-indian-rupee:before{content:""}.fa-inr:before{content:""}.fa-crop-simple:before{content:""}.fa-crop-alt:before{content:""}.fa-money-bill-1:before{content:""}.fa-money-bill-alt:before{content:""}.fa-left-long:before{content:""}.fa-long-arrow-alt-left:before{content:""}.fa-dna:before{content:""}.fa-virus-slash:before{content:""}.fa-minus:before{content:""}.fa-subtract:before{content:""}.fa-chess:before{content:""}.fa-arrow-left-long:before{content:""}.fa-long-arrow-left:before{content:""}.fa-plug-circle-check:before{content:""}.fa-street-view:before{content:""}.fa-franc-sign:before{content:""}.fa-volume-off:before{content:""}.fa-hands-asl-interpreting:before{content:""}.fa-american-sign-language-interpreting:before{content:""}.fa-asl-interpreting:before{content:""}.fa-hands-american-sign-language-interpreting:before{content:""}.fa-gear:before{content:""}.fa-cog:before{content:""}.fa-droplet-slash:before{content:""}.fa-tint-slash:before{content:""}.fa-mosque:before{content:""}.fa-mosquito:before{content:""}.fa-star-of-david:before{content:""}.fa-person-military-rifle:before{content:""}.fa-cart-shopping:before{content:""}.fa-shopping-cart:before{content:""}.fa-vials:before{content:""}.fa-plug-circle-plus:before{content:""}.fa-place-of-worship:before{content:""}.fa-grip-vertical:before{content:""}.fa-arrow-turn-up:before{content:""}.fa-level-up:before{content:""}.fa-u:before{content:"U"}.fa-square-root-variable:before{content:""}.fa-square-root-alt:before{content:""}.fa-clock:before{content:""}.fa-clock-four:before{content:""}.fa-backward-step:before{content:""}.fa-step-backward:before{content:""}.fa-pallet:before{content:""}.fa-faucet:before{content:""}.fa-baseball-bat-ball:before{content:""}.fa-s:before{content:"S"}.fa-timeline:before{content:""}.fa-keyboard:before{content:""}.fa-caret-down:before{content:""}.fa-house-chimney-medical:before{content:""}.fa-clinic-medical:before{content:""}.fa-temperature-three-quarters:before{content:""}.fa-temperature-3:before{content:""}.fa-thermometer-3:before{content:""}.fa-thermometer-three-quarters:before{content:""}.fa-mobile-screen:before{content:""}.fa-mobile-android-alt:before{content:""}.fa-plane-up:before{content:""}.fa-piggy-bank:before{content:""}.fa-battery-half:before{content:""}.fa-battery-3:before{content:""}.fa-mountain-city:before{content:""}.fa-coins:before{content:""}.fa-khanda:before{content:""}.fa-sliders:before{content:""}.fa-sliders-h:before{content:""}.fa-folder-tree:before{content:""}.fa-network-wired:before{content:""}.fa-map-pin:before{content:""}.fa-hamsa:before{content:""}.fa-cent-sign:before{content:""}.fa-flask:before{content:""}.fa-person-pregnant:before{content:""}.fa-wand-sparkles:before{content:""}.fa-ellipsis-vertical:before{content:""}.fa-ellipsis-v:before{content:""}.fa-ticket:before{content:""}.fa-power-off:before{content:""}.fa-right-long:before{content:""}.fa-long-arrow-alt-right:before{content:""}.fa-flag-usa:before{content:""}.fa-laptop-file:before{content:""}.fa-tty:before{content:""}.fa-teletype:before{content:""}.fa-diagram-next:before{content:""}.fa-person-rifle:before{content:""}.fa-house-medical-circle-exclamation:before{content:""}.fa-closed-captioning:before{content:""}.fa-person-hiking:before{content:""}.fa-hiking:before{content:""}.fa-venus-double:before{content:""}.fa-images:before{content:""}.fa-calculator:before{content:""}.fa-people-pulling:before{content:""}.fa-n:before{content:"N"}.fa-cable-car:before{content:""}.fa-tram:before{content:""}.fa-cloud-rain:before{content:""}.fa-building-circle-xmark:before{content:""}.fa-ship:before{content:""}.fa-arrows-down-to-line:before{content:""}.fa-download:before{content:""}.fa-face-grin:before{content:""}.fa-grin:before{content:""}.fa-delete-left:before{content:""}.fa-backspace:before{content:""}.fa-eye-dropper:before{content:""}.fa-eye-dropper-empty:before{content:""}.fa-eyedropper:before{content:""}.fa-file-circle-check:before{content:""}.fa-forward:before{content:""}.fa-mobile:before{content:""}.fa-mobile-android:before{content:""}.fa-mobile-phone:before{content:""}.fa-face-meh:before{content:""}.fa-meh:before{content:""}.fa-align-center:before{content:""}.fa-book-skull:before{content:""}.fa-book-dead:before{content:""}.fa-id-card:before{content:""}.fa-drivers-license:before{content:""}.fa-outdent:before{content:""}.fa-dedent:before{content:""}.fa-heart-circle-exclamation:before{content:""}.fa-house:before{content:""}.fa-home:before{content:""}.fa-home-alt:before{content:""}.fa-home-lg-alt:before{content:""}.fa-calendar-week:before{content:""}.fa-laptop-medical:before{content:""}.fa-b:before{content:"B"}.fa-file-medical:before{content:""}.fa-dice-one:before{content:""}.fa-kiwi-bird:before{content:""}.fa-arrow-right-arrow-left:before{content:""}.fa-exchange:before{content:""}.fa-rotate-right:before{content:""}.fa-redo-alt:before{content:""}.fa-rotate-forward:before{content:""}.fa-utensils:before{content:""}.fa-cutlery:before{content:""}.fa-arrow-up-wide-short:before{content:""}.fa-sort-amount-up:before{content:""}.fa-mill-sign:before{content:""}.fa-bowl-rice:before{content:""}.fa-skull:before{content:""}.fa-tower-broadcast:before{content:""}.fa-broadcast-tower:before{content:""}.fa-truck-pickup:before{content:""}.fa-up-long:before{content:""}.fa-long-arrow-alt-up:before{content:""}.fa-stop:before{content:""}.fa-code-merge:before{content:""}.fa-upload:before{content:""}.fa-hurricane:before{content:""}.fa-mound:before{content:""}.fa-toilet-portable:before{content:""}.fa-compact-disc:before{content:""}.fa-file-arrow-down:before{content:""}.fa-file-download:before{content:""}.fa-caravan:before{content:""}.fa-shield-cat:before{content:""}.fa-bolt:before{content:""}.fa-zap:before{content:""}.fa-glass-water:before{content:""}.fa-oil-well:before{content:""}.fa-vault:before{content:""}.fa-mars:before{content:""}.fa-toilet:before{content:""}.fa-plane-circle-xmark:before{content:""}.fa-yen-sign:before{content:""}.fa-cny:before{content:""}.fa-jpy:before{content:""}.fa-rmb:before{content:""}.fa-yen:before{content:""}.fa-ruble-sign:before{content:""}.fa-rouble:before{content:""}.fa-rub:before{content:""}.fa-ruble:before{content:""}.fa-sun:before{content:""}.fa-guitar:before{content:""}.fa-face-laugh-wink:before{content:""}.fa-laugh-wink:before{content:""}.fa-horse-head:before{content:""}.fa-bore-hole:before{content:""}.fa-industry:before{content:""}.fa-circle-down:before{content:""}.fa-arrow-alt-circle-down:before{content:""}.fa-arrows-turn-to-dots:before{content:""}.fa-florin-sign:before{content:""}.fa-arrow-down-short-wide:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-amount-down-alt:before{content:""}.fa-less-than:before{content:"<"}.fa-angle-down:before{content:""}.fa-car-tunnel:before{content:""}.fa-head-side-cough:before{content:""}.fa-grip-lines:before{content:""}.fa-thumbs-down:before{content:""}.fa-user-lock:before{content:""}.fa-arrow-right-long:before{content:""}.fa-long-arrow-right:before{content:""}.fa-anchor-circle-xmark:before{content:""}.fa-ellipsis:before{content:""}.fa-ellipsis-h:before{content:""}.fa-chess-pawn:before{content:""}.fa-kit-medical:before{content:""}.fa-first-aid:before{content:""}.fa-person-through-window:before{content:""}.fa-toolbox:before{content:""}.fa-hands-holding-circle:before{content:""}.fa-bug:before{content:""}.fa-credit-card:before{content:""}.fa-credit-card-alt:before{content:""}.fa-car:before{content:""}.fa-automobile:before{content:""}.fa-hand-holding-hand:before{content:""}.fa-book-open-reader:before{content:""}.fa-book-reader:before{content:""}.fa-mountain-sun:before{content:""}.fa-arrows-left-right-to-line:before{content:""}.fa-dice-d20:before{content:""}.fa-truck-droplet:before{content:""}.fa-file-circle-xmark:before{content:""}.fa-temperature-arrow-up:before{content:""}.fa-temperature-up:before{content:""}.fa-medal:before{content:""}.fa-bed:before{content:""}.fa-square-h:before{content:""}.fa-h-square:before{content:""}.fa-podcast:before{content:""}.fa-temperature-full:before{content:""}.fa-temperature-4:before{content:""}.fa-thermometer-4:before{content:""}.fa-thermometer-full:before{content:""}.fa-bell:before{content:""}.fa-superscript:before{content:""}.fa-plug-circle-xmark:before{content:""}.fa-star-of-life:before{content:""}.fa-phone-slash:before{content:""}.fa-paint-roller:before{content:""}.fa-handshake-angle:before{content:""}.fa-hands-helping:before{content:""}.fa-location-dot:before{content:""}.fa-map-marker-alt:before{content:""}.fa-file:before{content:""}.fa-greater-than:before{content:">"}.fa-person-swimming:before{content:""}.fa-swimmer:before{content:""}.fa-arrow-down:before{content:""}.fa-droplet:before{content:""}.fa-tint:before{content:""}.fa-eraser:before{content:""}.fa-earth-americas:before{content:""}.fa-earth:before{content:""}.fa-earth-america:before{content:""}.fa-globe-americas:before{content:""}.fa-person-burst:before{content:""}.fa-dove:before{content:""}.fa-battery-empty:before{content:""}.fa-battery-0:before{content:""}.fa-socks:before{content:""}.fa-inbox:before{content:""}.fa-section:before{content:""}.fa-gauge-high:before{content:""}.fa-tachometer-alt:before{content:""}.fa-tachometer-alt-fast:before{content:""}.fa-envelope-open-text:before{content:""}.fa-hospital:before{content:""}.fa-hospital-alt:before{content:""}.fa-hospital-wide:before{content:""}.fa-wine-bottle:before{content:""}.fa-chess-rook:before{content:""}.fa-bars-staggered:before{content:""}.fa-reorder:before{content:""}.fa-stream:before{content:""}.fa-dharmachakra:before{content:""}.fa-hotdog:before{content:""}.fa-person-walking-with-cane:before{content:""}.fa-blind:before{content:""}.fa-drum:before{content:""}.fa-ice-cream:before{content:""}.fa-heart-circle-bolt:before{content:""}.fa-fax:before{content:""}.fa-paragraph:before{content:""}.fa-check-to-slot:before{content:""}.fa-vote-yea:before{content:""}.fa-star-half:before{content:""}.fa-boxes-stacked:before{content:""}.fa-boxes:before{content:""}.fa-boxes-alt:before{content:""}.fa-link:before{content:""}.fa-chain:before{content:""}.fa-ear-listen:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-tree-city:before{content:""}.fa-play:before{content:""}.fa-font:before{content:""}.fa-table-cells-row-lock:before{content:""}.fa-rupiah-sign:before{content:""}.fa-magnifying-glass:before{content:""}.fa-search:before{content:""}.fa-table-tennis-paddle-ball:before{content:""}.fa-ping-pong-paddle-ball:before{content:""}.fa-table-tennis:before{content:""}.fa-person-dots-from-line:before{content:""}.fa-diagnoses:before{content:""}.fa-trash-can-arrow-up:before{content:""}.fa-trash-restore-alt:before{content:""}.fa-naira-sign:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-walkie-talkie:before{content:""}.fa-file-pen:before{content:""}.fa-file-edit:before{content:""}.fa-receipt:before{content:""}.fa-square-pen:before{content:""}.fa-pen-square:before{content:""}.fa-pencil-square:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-person-circle-exclamation:before{content:""}.fa-chevron-down:before{content:""}.fa-battery-full:before{content:""}.fa-battery:before{content:""}.fa-battery-5:before{content:""}.fa-skull-crossbones:before{content:""}.fa-code-compare:before{content:""}.fa-list-ul:before{content:""}.fa-list-dots:before{content:""}.fa-school-lock:before{content:""}.fa-tower-cell:before{content:""}.fa-down-long:before{content:""}.fa-long-arrow-alt-down:before{content:""}.fa-ranking-star:before{content:""}.fa-chess-king:before{content:""}.fa-person-harassing:before{content:""}.fa-brazilian-real-sign:before{content:""}.fa-landmark-dome:before{content:""}.fa-landmark-alt:before{content:""}.fa-arrow-up:before{content:""}.fa-tv:before{content:""}.fa-television:before{content:""}.fa-tv-alt:before{content:""}.fa-shrimp:before{content:""}.fa-list-check:before{content:""}.fa-tasks:before{content:""}.fa-jug-detergent:before{content:""}.fa-circle-user:before{content:""}.fa-user-circle:before{content:""}.fa-user-shield:before{content:""}.fa-wind:before{content:""}.fa-car-burst:before{content:""}.fa-car-crash:before{content:""}.fa-y:before{content:"Y"}.fa-person-snowboarding:before{content:""}.fa-snowboarding:before{content:""}.fa-truck-fast:before{content:""}.fa-shipping-fast:before{content:""}.fa-fish:before{content:""}.fa-user-graduate:before{content:""}.fa-circle-half-stroke:before{content:""}.fa-adjust:before{content:""}.fa-clapperboard:before{content:""}.fa-circle-radiation:before{content:""}.fa-radiation-alt:before{content:""}.fa-baseball:before{content:""}.fa-baseball-ball:before{content:""}.fa-jet-fighter-up:before{content:""}.fa-diagram-project:before{content:""}.fa-project-diagram:before{content:""}.fa-copy:before{content:""}.fa-volume-xmark:before{content:""}.fa-volume-mute:before{content:""}.fa-volume-times:before{content:""}.fa-hand-sparkles:before{content:""}.fa-grip:before{content:""}.fa-grip-horizontal:before{content:""}.fa-share-from-square:before{content:""}.fa-share-square:before{content:""}.fa-child-combatant:before{content:""}.fa-child-rifle:before{content:""}.fa-gun:before{content:""}.fa-square-phone:before{content:""}.fa-phone-square:before{content:""}.fa-plus:before{content:"+"}.fa-add:before{content:"+"}.fa-expand:before{content:""}.fa-computer:before{content:""}.fa-xmark:before{content:""}.fa-close:before{content:""}.fa-multiply:before{content:""}.fa-remove:before{content:""}.fa-times:before{content:""}.fa-arrows-up-down-left-right:before{content:""}.fa-arrows:before{content:""}.fa-chalkboard-user:before{content:""}.fa-chalkboard-teacher:before{content:""}.fa-peso-sign:before{content:""}.fa-building-shield:before{content:""}.fa-baby:before{content:""}.fa-users-line:before{content:""}.fa-quote-left:before{content:""}.fa-quote-left-alt:before{content:""}.fa-tractor:before{content:""}.fa-trash-arrow-up:before{content:""}.fa-trash-restore:before{content:""}.fa-arrow-down-up-lock:before{content:""}.fa-lines-leaning:before{content:""}.fa-ruler-combined:before{content:""}.fa-copyright:before{content:""}.fa-equals:before{content:"="}.fa-blender:before{content:""}.fa-teeth:before{content:""}.fa-shekel-sign:before{content:""}.fa-ils:before{content:""}.fa-shekel:before{content:""}.fa-sheqel:before{content:""}.fa-sheqel-sign:before{content:""}.fa-map:before{content:""}.fa-rocket:before{content:""}.fa-photo-film:before{content:""}.fa-photo-video:before{content:""}.fa-folder-minus:before{content:""}.fa-store:before{content:""}.fa-arrow-trend-up:before{content:""}.fa-plug-circle-minus:before{content:""}.fa-sign-hanging:before{content:""}.fa-sign:before{content:""}.fa-bezier-curve:before{content:""}.fa-bell-slash:before{content:""}.fa-tablet:before{content:""}.fa-tablet-android:before{content:""}.fa-school-flag:before{content:""}.fa-fill:before{content:""}.fa-angle-up:before{content:""}.fa-drumstick-bite:before{content:""}.fa-holly-berry:before{content:""}.fa-chevron-left:before{content:""}.fa-bacteria:before{content:""}.fa-hand-lizard:before{content:""}.fa-notdef:before{content:""}.fa-disease:before{content:""}.fa-briefcase-medical:before{content:""}.fa-genderless:before{content:""}.fa-chevron-right:before{content:""}.fa-retweet:before{content:""}.fa-car-rear:before{content:""}.fa-car-alt:before{content:""}.fa-pump-soap:before{content:""}.fa-video-slash:before{content:""}.fa-battery-quarter:before{content:""}.fa-battery-2:before{content:""}.fa-radio:before{content:""}.fa-baby-carriage:before{content:""}.fa-carriage-baby:before{content:""}.fa-traffic-light:before{content:""}.fa-thermometer:before{content:""}.fa-vr-cardboard:before{content:""}.fa-hand-middle-finger:before{content:""}.fa-percent:before{content:"%"}.fa-percentage:before{content:"%"}.fa-truck-moving:before{content:""}.fa-glass-water-droplet:before{content:""}.fa-display:before{content:""}.fa-face-smile:before{content:""}.fa-smile:before{content:""}.fa-thumbtack:before{content:""}.fa-thumb-tack:before{content:""}.fa-trophy:before{content:""}.fa-person-praying:before{content:""}.fa-pray:before{content:""}.fa-hammer:before{content:""}.fa-hand-peace:before{content:""}.fa-rotate:before{content:""}.fa-sync-alt:before{content:""}.fa-spinner:before{content:""}.fa-robot:before{content:""}.fa-peace:before{content:""}.fa-gears:before{content:""}.fa-cogs:before{content:""}.fa-warehouse:before{content:""}.fa-arrow-up-right-dots:before{content:""}.fa-splotch:before{content:""}.fa-face-grin-hearts:before{content:""}.fa-grin-hearts:before{content:""}.fa-dice-four:before{content:""}.fa-sim-card:before{content:""}.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-mercury:before{content:""}.fa-arrow-turn-down:before{content:""}.fa-level-down:before{content:""}.fa-person-falling-burst:before{content:""}.fa-award:before{content:""}.fa-ticket-simple:before{content:""}.fa-ticket-alt:before{content:""}.fa-building:before{content:""}.fa-angles-left:before{content:""}.fa-angle-double-left:before{content:""}.fa-qrcode:before{content:""}.fa-clock-rotate-left:before{content:""}.fa-history:before{content:""}.fa-face-grin-beam-sweat:before{content:""}.fa-grin-beam-sweat:before{content:""}.fa-file-export:before{content:""}.fa-arrow-right-from-file:before{content:""}.fa-shield:before{content:""}.fa-shield-blank:before{content:""}.fa-arrow-up-short-wide:before{content:""}.fa-sort-amount-up-alt:before{content:""}.fa-house-medical:before{content:""}.fa-golf-ball-tee:before{content:""}.fa-golf-ball:before{content:""}.fa-circle-chevron-left:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-house-chimney-window:before{content:""}.fa-pen-nib:before{content:""}.fa-tent-arrow-turn-left:before{content:""}.fa-tents:before{content:""}.fa-wand-magic:before{content:""}.fa-magic:before{content:""}.fa-dog:before{content:""}.fa-carrot:before{content:""}.fa-moon:before{content:""}.fa-wine-glass-empty:before{content:""}.fa-wine-glass-alt:before{content:""}.fa-cheese:before{content:""}.fa-yin-yang:before{content:""}.fa-music:before{content:""}.fa-code-commit:before{content:""}.fa-temperature-low:before{content:""}.fa-person-biking:before{content:""}.fa-biking:before{content:""}.fa-broom:before{content:""}.fa-shield-heart:before{content:""}.fa-gopuram:before{content:""}.fa-earth-oceania:before{content:""}.fa-globe-oceania:before{content:""}.fa-square-xmark:before{content:""}.fa-times-square:before{content:""}.fa-xmark-square:before{content:""}.fa-hashtag:before{content:"#"}.fa-up-right-and-down-left-from-center:before{content:""}.fa-expand-alt:before{content:""}.fa-oil-can:before{content:""}.fa-t:before{content:"T"}.fa-hippo:before{content:""}.fa-chart-column:before{content:""}.fa-infinity:before{content:""}.fa-vial-circle-check:before{content:""}.fa-person-arrow-down-to-line:before{content:""}.fa-voicemail:before{content:""}.fa-fan:before{content:""}.fa-person-walking-luggage:before{content:""}.fa-up-down:before{content:""}.fa-arrows-alt-v:before{content:""}.fa-cloud-moon-rain:before{content:""}.fa-calendar:before{content:""}.fa-trailer:before{content:""}.fa-bahai:before{content:""}.fa-haykal:before{content:""}.fa-sd-card:before{content:""}.fa-dragon:before{content:""}.fa-shoe-prints:before{content:""}.fa-circle-plus:before{content:""}.fa-plus-circle:before{content:""}.fa-face-grin-tongue-wink:before{content:""}.fa-grin-tongue-wink:before{content:""}.fa-hand-holding:before{content:""}.fa-plug-circle-exclamation:before{content:""}.fa-link-slash:before{content:""}.fa-chain-broken:before{content:""}.fa-chain-slash:before{content:""}.fa-unlink:before{content:""}.fa-clone:before{content:""}.fa-person-walking-arrow-loop-left:before{content:""}.fa-arrow-up-z-a:before{content:""}.fa-sort-alpha-up-alt:before{content:""}.fa-fire-flame-curved:before{content:""}.fa-fire-alt:before{content:""}.fa-tornado:before{content:""}.fa-file-circle-plus:before{content:""}.fa-book-quran:before{content:""}.fa-quran:before{content:""}.fa-anchor:before{content:""}.fa-border-all:before{content:""}.fa-face-angry:before{content:""}.fa-angry:before{content:""}.fa-cookie-bite:before{content:""}.fa-arrow-trend-down:before{content:""}.fa-rss:before{content:""}.fa-feed:before{content:""}.fa-draw-polygon:before{content:""}.fa-scale-balanced:before{content:""}.fa-balance-scale:before{content:""}.fa-gauge-simple-high:before{content:""}.fa-tachometer:before{content:""}.fa-tachometer-fast:before{content:""}.fa-shower:before{content:""}.fa-desktop:before{content:""}.fa-desktop-alt:before{content:""}.fa-m:before{content:"M"}.fa-table-list:before{content:""}.fa-th-list:before{content:""}.fa-comment-sms:before{content:""}.fa-sms:before{content:""}.fa-book:before{content:""}.fa-user-plus:before{content:""}.fa-check:before{content:""}.fa-battery-three-quarters:before{content:""}.fa-battery-4:before{content:""}.fa-house-circle-check:before{content:""}.fa-angle-left:before{content:""}.fa-diagram-successor:before{content:""}.fa-truck-arrow-right:before{content:""}.fa-arrows-split-up-and-left:before{content:""}.fa-hand-fist:before{content:""}.fa-fist-raised:before{content:""}.fa-cloud-moon:before{content:""}.fa-briefcase:before{content:""}.fa-person-falling:before{content:""}.fa-image-portrait:before{content:""}.fa-portrait:before{content:""}.fa-user-tag:before{content:""}.fa-rug:before{content:""}.fa-earth-europe:before{content:""}.fa-globe-europe:before{content:""}.fa-cart-flatbed-suitcase:before{content:""}.fa-luggage-cart:before{content:""}.fa-rectangle-xmark:before{content:""}.fa-rectangle-times:before{content:""}.fa-times-rectangle:before{content:""}.fa-window-close:before{content:""}.fa-baht-sign:before{content:""}.fa-book-open:before{content:""}.fa-book-journal-whills:before{content:""}.fa-journal-whills:before{content:""}.fa-handcuffs:before{content:""}.fa-triangle-exclamation:before{content:""}.fa-exclamation-triangle:before{content:""}.fa-warning:before{content:""}.fa-database:before{content:""}.fa-share:before{content:""}.fa-mail-forward:before{content:""}.fa-bottle-droplet:before{content:""}.fa-mask-face:before{content:""}.fa-hill-rockslide:before{content:""}.fa-right-left:before{content:""}.fa-exchange-alt:before{content:""}.fa-paper-plane:before{content:""}.fa-road-circle-exclamation:before{content:""}.fa-dungeon:before{content:""}.fa-align-right:before{content:""}.fa-money-bill-1-wave:before{content:""}.fa-money-bill-wave-alt:before{content:""}.fa-life-ring:before{content:""}.fa-hands:before{content:""}.fa-sign-language:before{content:""}.fa-signing:before{content:""}.fa-calendar-day:before{content:""}.fa-water-ladder:before{content:""}.fa-ladder-water:before{content:""}.fa-swimming-pool:before{content:""}.fa-arrows-up-down:before{content:""}.fa-arrows-v:before{content:""}.fa-face-grimace:before{content:""}.fa-grimace:before{content:""}.fa-wheelchair-move:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-turn-down:before{content:""}.fa-level-down-alt:before{content:""}.fa-person-walking-arrow-right:before{content:""}.fa-square-envelope:before{content:""}.fa-envelope-square:before{content:""}.fa-dice:before{content:""}.fa-bowling-ball:before{content:""}.fa-brain:before{content:""}.fa-bandage:before{content:""}.fa-band-aid:before{content:""}.fa-calendar-minus:before{content:""}.fa-circle-xmark:before{content:""}.fa-times-circle:before{content:""}.fa-xmark-circle:before{content:""}.fa-gifts:before{content:""}.fa-hotel:before{content:""}.fa-earth-asia:before{content:""}.fa-globe-asia:before{content:""}.fa-id-card-clip:before{content:""}.fa-id-card-alt:before{content:""}.fa-magnifying-glass-plus:before{content:""}.fa-search-plus:before{content:""}.fa-thumbs-up:before{content:""}.fa-user-clock:before{content:""}.fa-hand-dots:before{content:""}.fa-allergies:before{content:""}.fa-file-invoice:before{content:""}.fa-window-minimize:before{content:""}.fa-mug-saucer:before{content:""}.fa-coffee:before{content:""}.fa-brush:before{content:""}.fa-mask:before{content:""}.fa-magnifying-glass-minus:before{content:""}.fa-search-minus:before{content:""}.fa-ruler-vertical:before{content:""}.fa-user-large:before{content:""}.fa-user-alt:before{content:""}.fa-train-tram:before{content:""}.fa-user-nurse:before{content:""}.fa-syringe:before{content:""}.fa-cloud-sun:before{content:""}.fa-stopwatch-20:before{content:""}.fa-square-full:before{content:""}.fa-magnet:before{content:""}.fa-jar:before{content:""}.fa-note-sticky:before{content:""}.fa-sticky-note:before{content:""}.fa-bug-slash:before{content:""}.fa-arrow-up-from-water-pump:before{content:""}.fa-bone:before{content:""}.fa-user-injured:before{content:""}.fa-face-sad-tear:before{content:""}.fa-sad-tear:before{content:""}.fa-plane:before{content:""}.fa-tent-arrows-down:before{content:""}.fa-exclamation:before{content:"!"}.fa-arrows-spin:before{content:""}.fa-print:before{content:""}.fa-turkish-lira-sign:before{content:""}.fa-try:before{content:""}.fa-turkish-lira:before{content:""}.fa-dollar-sign:before{content:"$"}.fa-dollar:before{content:"$"}.fa-usd:before{content:"$"}.fa-x:before{content:"X"}.fa-magnifying-glass-dollar:before{content:""}.fa-search-dollar:before{content:""}.fa-users-gear:before{content:""}.fa-users-cog:before{content:""}.fa-person-military-pointing:before{content:""}.fa-building-columns:before{content:""}.fa-bank:before{content:""}.fa-institution:before{content:""}.fa-museum:before{content:""}.fa-university:before{content:""}.fa-umbrella:before{content:""}.fa-trowel:before{content:""}.fa-d:before{content:"D"}.fa-stapler:before{content:""}.fa-masks-theater:before{content:""}.fa-theater-masks:before{content:""}.fa-kip-sign:before{content:""}.fa-hand-point-left:before{content:""}.fa-handshake-simple:before{content:""}.fa-handshake-alt:before{content:""}.fa-jet-fighter:before{content:""}.fa-fighter-jet:before{content:""}.fa-square-share-nodes:before{content:""}.fa-share-alt-square:before{content:""}.fa-barcode:before{content:""}.fa-plus-minus:before{content:""}.fa-video:before{content:""}.fa-video-camera:before{content:""}.fa-graduation-cap:before{content:""}.fa-mortar-board:before{content:""}.fa-hand-holding-medical:before{content:""}.fa-person-circle-check:before{content:""}.fa-turn-up:before{content:""}.fa-level-up-alt:before{content:""}.sr-only,.fa-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.sr-only-focusable:not(:focus),.fa-sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:root,:host{--fa-style-family-brands: "Font Awesome 6 Brands";--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}.fab,.fa-brands{font-weight:400}.fa-monero:before{content:""}.fa-hooli:before{content:""}.fa-yelp:before{content:""}.fa-cc-visa:before{content:""}.fa-lastfm:before{content:""}.fa-shopware:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-aws:before{content:""}.fa-redhat:before{content:""}.fa-yoast:before{content:""}.fa-cloudflare:before{content:""}.fa-ups:before{content:""}.fa-pixiv:before{content:""}.fa-wpexplorer:before{content:""}.fa-dyalog:before{content:""}.fa-bity:before{content:""}.fa-stackpath:before{content:""}.fa-buysellads:before{content:""}.fa-first-order:before{content:""}.fa-modx:before{content:""}.fa-guilded:before{content:""}.fa-vnv:before{content:""}.fa-square-js:before{content:""}.fa-js-square:before{content:""}.fa-microsoft:before{content:""}.fa-qq:before{content:""}.fa-orcid:before{content:""}.fa-java:before{content:""}.fa-invision:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-centercode:before{content:""}.fa-glide-g:before{content:""}.fa-drupal:before{content:""}.fa-jxl:before{content:""}.fa-hire-a-helper:before{content:""}.fa-creative-commons-by:before{content:""}.fa-unity:before{content:""}.fa-whmcs:before{content:""}.fa-rocketchat:before{content:""}.fa-vk:before{content:""}.fa-untappd:before{content:""}.fa-mailchimp:before{content:""}.fa-css3-alt:before{content:""}.fa-square-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-contao:before{content:""}.fa-square-font-awesome:before{content:""}.fa-deskpro:before{content:""}.fa-brave:before{content:""}.fa-sistrix:before{content:""}.fa-square-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-battle-net:before{content:""}.fa-the-red-yeti:before{content:""}.fa-square-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-edge:before{content:""}.fa-threads:before{content:""}.fa-napster:before{content:""}.fa-square-snapchat:before{content:""}.fa-snapchat-square:before{content:""}.fa-google-plus-g:before{content:""}.fa-artstation:before{content:""}.fa-markdown:before{content:""}.fa-sourcetree:before{content:""}.fa-google-plus:before{content:""}.fa-diaspora:before{content:""}.fa-foursquare:before{content:""}.fa-stack-overflow:before{content:""}.fa-github-alt:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-pagelines:before{content:""}.fa-algolia:before{content:""}.fa-red-river:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-safari:before{content:""}.fa-google:before{content:""}.fa-square-font-awesome-stroke:before{content:""}.fa-font-awesome-alt:before{content:""}.fa-atlassian:before{content:""}.fa-linkedin-in:before{content:""}.fa-digital-ocean:before{content:""}.fa-nimblr:before{content:""}.fa-chromecast:before{content:""}.fa-evernote:before{content:""}.fa-hacker-news:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-adversal:before{content:""}.fa-creative-commons:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-fonticons:before{content:""}.fa-weixin:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-codepen:before{content:""}.fa-git-alt:before{content:""}.fa-lyft:before{content:""}.fa-rev:before{content:""}.fa-windows:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-square-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-meetup:before{content:""}.fa-centos:before{content:""}.fa-adn:before{content:""}.fa-cloudsmith:before{content:""}.fa-opensuse:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-square-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-codiepie:before{content:""}.fa-node:before{content:""}.fa-mix:before{content:""}.fa-steam:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-scribd:before{content:""}.fa-debian:before{content:""}.fa-openid:before{content:""}.fa-instalod:before{content:""}.fa-expeditedssl:before{content:""}.fa-sellcast:before{content:""}.fa-square-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-r-project:before{content:""}.fa-delicious:before{content:""}.fa-freebsd:before{content:""}.fa-vuejs:before{content:""}.fa-accusoft:before{content:""}.fa-ioxhost:before{content:""}.fa-fonticons-fi:before{content:""}.fa-app-store:before{content:""}.fa-cc-mastercard:before{content:""}.fa-itunes-note:before{content:""}.fa-golang:before{content:""}.fa-kickstarter:before{content:""}.fa-square-kickstarter:before{content:""}.fa-grav:before{content:""}.fa-weibo:before{content:""}.fa-uncharted:before{content:""}.fa-firstdraft:before{content:""}.fa-square-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-wikipedia-w:before{content:""}.fa-wpressr:before{content:""}.fa-rendact:before{content:""}.fa-angellist:before{content:""}.fa-galactic-republic:before{content:""}.fa-nfc-directional:before{content:""}.fa-skype:before{content:""}.fa-joget:before{content:""}.fa-fedora:before{content:""}.fa-stripe-s:before{content:""}.fa-meta:before{content:""}.fa-laravel:before{content:""}.fa-hotjar:before{content:""}.fa-bluetooth-b:before{content:""}.fa-square-letterboxd:before{content:""}.fa-sticker-mule:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-hips:before{content:""}.fa-behance:before{content:""}.fa-reddit:before{content:""}.fa-discord:before{content:""}.fa-chrome:before{content:""}.fa-app-store-ios:before{content:""}.fa-cc-discover:before{content:""}.fa-wpbeginner:before{content:""}.fa-confluence:before{content:""}.fa-shoelace:before{content:""}.fa-mdb:before{content:""}.fa-dochub:before{content:""}.fa-accessible-icon:before{content:""}.fa-ebay:before{content:""}.fa-amazon:before{content:""}.fa-unsplash:before{content:""}.fa-yarn:before{content:""}.fa-square-steam:before{content:""}.fa-steam-square:before{content:""}.fa-500px:before{content:""}.fa-square-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-asymmetrik:before{content:""}.fa-font-awesome:before{content:""}.fa-font-awesome-flag:before{content:""}.fa-font-awesome-logo-full:before{content:""}.fa-gratipay:before{content:""}.fa-apple:before{content:""}.fa-hive:before{content:""}.fa-gitkraken:before{content:""}.fa-keybase:before{content:""}.fa-apple-pay:before{content:""}.fa-padlet:before{content:""}.fa-amazon-pay:before{content:""}.fa-square-github:before{content:""}.fa-github-square:before{content:""}.fa-stumbleupon:before{content:""}.fa-fedex:before{content:""}.fa-phoenix-framework:before{content:""}.fa-shopify:before{content:""}.fa-neos:before{content:""}.fa-square-threads:before{content:""}.fa-hackerrank:before{content:""}.fa-researchgate:before{content:""}.fa-swift:before{content:""}.fa-angular:before{content:""}.fa-speakap:before{content:""}.fa-angrycreative:before{content:""}.fa-y-combinator:before{content:""}.fa-empire:before{content:""}.fa-envira:before{content:""}.fa-google-scholar:before{content:""}.fa-square-gitlab:before{content:""}.fa-gitlab-square:before{content:""}.fa-studiovinari:before{content:""}.fa-pied-piper:before{content:""}.fa-wordpress:before{content:""}.fa-product-hunt:before{content:""}.fa-firefox:before{content:""}.fa-linode:before{content:""}.fa-goodreads:before{content:""}.fa-square-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-sith:before{content:""}.fa-themeisle:before{content:""}.fa-page4:before{content:""}.fa-hashnode:before{content:""}.fa-react:before{content:""}.fa-cc-paypal:before{content:""}.fa-squarespace:before{content:""}.fa-cc-stripe:before{content:""}.fa-creative-commons-share:before{content:""}.fa-bitcoin:before{content:""}.fa-keycdn:before{content:""}.fa-opera:before{content:""}.fa-itch-io:before{content:""}.fa-umbraco:before{content:""}.fa-galactic-senate:before{content:""}.fa-ubuntu:before{content:""}.fa-draft2digital:before{content:""}.fa-stripe:before{content:""}.fa-houzz:before{content:""}.fa-gg:before{content:""}.fa-dhl:before{content:""}.fa-square-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-xing:before{content:""}.fa-blackberry:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-playstation:before{content:""}.fa-quinscape:before{content:""}.fa-less:before{content:""}.fa-blogger-b:before{content:""}.fa-opencart:before{content:""}.fa-vine:before{content:""}.fa-signal-messenger:before{content:""}.fa-paypal:before{content:""}.fa-gitlab:before{content:""}.fa-typo3:before{content:""}.fa-reddit-alien:before{content:""}.fa-yahoo:before{content:""}.fa-dailymotion:before{content:""}.fa-affiliatetheme:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-bootstrap:before{content:""}.fa-odnoklassniki:before{content:""}.fa-nfc-symbol:before{content:""}.fa-mintbit:before{content:""}.fa-ethereum:before{content:""}.fa-speaker-deck:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-patreon:before{content:""}.fa-avianex:before{content:""}.fa-ello:before{content:""}.fa-gofore:before{content:""}.fa-bimobject:before{content:""}.fa-brave-reverse:before{content:""}.fa-facebook-f:before{content:""}.fa-square-google-plus:before{content:""}.fa-google-plus-square:before{content:""}.fa-web-awesome:before{content:""}.fa-mandalorian:before{content:""}.fa-first-order-alt:before{content:""}.fa-osi:before{content:""}.fa-google-wallet:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-periscope:before{content:""}.fa-fulcrum:before{content:""}.fa-cloudscale:before{content:""}.fa-forumbee:before{content:""}.fa-mizuni:before{content:""}.fa-schlix:before{content:""}.fa-square-xing:before{content:""}.fa-xing-square:before{content:""}.fa-bandcamp:before{content:""}.fa-wpforms:before{content:""}.fa-cloudversify:before{content:""}.fa-usps:before{content:""}.fa-megaport:before{content:""}.fa-magento:before{content:""}.fa-spotify:before{content:""}.fa-optin-monster:before{content:""}.fa-fly:before{content:""}.fa-aviato:before{content:""}.fa-itunes:before{content:""}.fa-cuttlefish:before{content:""}.fa-blogger:before{content:""}.fa-flickr:before{content:""}.fa-viber:before{content:""}.fa-soundcloud:before{content:""}.fa-digg:before{content:""}.fa-tencent-weibo:before{content:""}.fa-letterboxd:before{content:""}.fa-symfony:before{content:""}.fa-maxcdn:before{content:""}.fa-etsy:before{content:""}.fa-facebook-messenger:before{content:""}.fa-audible:before{content:""}.fa-think-peaks:before{content:""}.fa-bilibili:before{content:""}.fa-erlang:before{content:""}.fa-x-twitter:before{content:""}.fa-cotton-bureau:before{content:""}.fa-dashcube:before{content:""}.fa-42-group:before{content:""}.fa-innosoft:before{content:""}.fa-stack-exchange:before{content:""}.fa-elementor:before{content:""}.fa-square-pied-piper:before{content:""}.fa-pied-piper-square:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-palfed:before{content:""}.fa-superpowers:before{content:""}.fa-resolving:before{content:""}.fa-xbox:before{content:""}.fa-square-web-awesome-stroke:before{content:""}.fa-searchengin:before{content:""}.fa-tiktok:before{content:""}.fa-square-facebook:before{content:""}.fa-facebook-square:before{content:""}.fa-renren:before{content:""}.fa-linux:before{content:""}.fa-glide:before{content:""}.fa-linkedin:before{content:""}.fa-hubspot:before{content:""}.fa-deploydog:before{content:""}.fa-twitch:before{content:""}.fa-ravelry:before{content:""}.fa-mixer:before{content:""}.fa-square-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-vimeo:before{content:""}.fa-mendeley:before{content:""}.fa-uniregistry:before{content:""}.fa-figma:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-dropbox:before{content:""}.fa-instagram:before{content:""}.fa-cmplid:before{content:""}.fa-upwork:before{content:""}.fa-facebook:before{content:""}.fa-gripfire:before{content:""}.fa-jedi-order:before{content:""}.fa-uikit:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-phabricator:before{content:""}.fa-ussunnah:before{content:""}.fa-earlybirds:before{content:""}.fa-trade-federation:before{content:""}.fa-autoprefixer:before{content:""}.fa-whatsapp:before{content:""}.fa-square-upwork:before{content:""}.fa-slideshare:before{content:""}.fa-google-play:before{content:""}.fa-viadeo:before{content:""}.fa-line:before{content:""}.fa-google-drive:before{content:""}.fa-servicestack:before{content:""}.fa-simplybuilt:before{content:""}.fa-bitbucket:before{content:""}.fa-imdb:before{content:""}.fa-deezer:before{content:""}.fa-raspberry-pi:before{content:""}.fa-jira:before{content:""}.fa-docker:before{content:""}.fa-screenpal:before{content:""}.fa-bluetooth:before{content:""}.fa-gitter:before{content:""}.fa-d-and-d:before{content:""}.fa-microblog:before{content:""}.fa-cc-diners-club:before{content:""}.fa-gg-circle:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-kickstarter-k:before{content:""}.fa-yandex:before{content:""}.fa-readme:before{content:""}.fa-html5:before{content:""}.fa-sellsy:before{content:""}.fa-square-web-awesome:before{content:""}.fa-sass:before{content:""}.fa-wirsindhandwerk:before{content:""}.fa-wsh:before{content:""}.fa-buromobelexperte:before{content:""}.fa-salesforce:before{content:""}.fa-octopus-deploy:before{content:""}.fa-medapps:before{content:""}.fa-ns8:before{content:""}.fa-pinterest-p:before{content:""}.fa-apper:before{content:""}.fa-fort-awesome:before{content:""}.fa-waze:before{content:""}.fa-bluesky:before{content:""}.fa-cc-jcb:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-rust:before{content:""}.fa-wix:before{content:""}.fa-square-behance:before{content:""}.fa-behance-square:before{content:""}.fa-supple:before{content:""}.fa-webflow:before{content:""}.fa-rebel:before{content:""}.fa-css3:before{content:""}.fa-staylinked:before{content:""}.fa-kaggle:before{content:""}.fa-space-awesome:before{content:""}.fa-deviantart:before{content:""}.fa-cpanel:before{content:""}.fa-goodreads-g:before{content:""}.fa-square-git:before{content:""}.fa-git-square:before{content:""}.fa-square-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-trello:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-get-pocket:before{content:""}.fa-perbyte:before{content:""}.fa-grunt:before{content:""}.fa-weebly:before{content:""}.fa-connectdevelop:before{content:""}.fa-leanpub:before{content:""}.fa-black-tie:before{content:""}.fa-themeco:before{content:""}.fa-python:before{content:""}.fa-android:before{content:""}.fa-bots:before{content:""}.fa-free-code-camp:before{content:""}.fa-hornbill:before{content:""}.fa-js:before{content:""}.fa-ideal:before{content:""}.fa-git:before{content:""}.fa-dev:before{content:""}.fa-sketch:before{content:""}.fa-yandex-international:before{content:""}.fa-cc-amex:before{content:""}.fa-uber:before{content:""}.fa-github:before{content:""}.fa-php:before{content:""}.fa-alipay:before{content:""}.fa-youtube:before{content:""}.fa-skyatlas:before{content:""}.fa-firefox-browser:before{content:""}.fa-replyd:before{content:""}.fa-suse:before{content:""}.fa-jenkins:before{content:""}.fa-twitter:before{content:""}.fa-rockrms:before{content:""}.fa-pinterest:before{content:""}.fa-buffer:before{content:""}.fa-npm:before{content:""}.fa-yammer:before{content:""}.fa-btc:before{content:""}.fa-dribbble:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-internet-explorer:before{content:""}.fa-stubber:before{content:""}.fa-telegram:before{content:""}.fa-telegram-plane:before{content:""}.fa-old-republic:before{content:""}.fa-odysee:before{content:""}.fa-square-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-node-js:before{content:""}.fa-edge-legacy:before{content:""}.fa-slack:before{content:""}.fa-slack-hash:before{content:""}.fa-medrt:before{content:""}.fa-usb:before{content:""}.fa-tumblr:before{content:""}.fa-vaadin:before{content:""}.fa-quora:before{content:""}.fa-square-x-twitter:before{content:""}.fa-reacteurope:before{content:""}.fa-medium:before{content:""}.fa-medium-m:before{content:""}.fa-amilia:before{content:""}.fa-mixcloud:before{content:""}.fa-flipboard:before{content:""}.fa-viacoin:before{content:""}.fa-critical-role:before{content:""}.fa-sitrox:before{content:""}.fa-discourse:before{content:""}.fa-joomla:before{content:""}.fa-mastodon:before{content:""}.fa-airbnb:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-buy-n-large:before{content:""}.fa-gulp:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-strava:before{content:""}.fa-ember:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-teamspeak:before{content:""}.fa-pushed:before{content:""}.fa-wordpress-simple:before{content:""}.fa-nutritionix:before{content:""}.fa-wodu:before{content:""}.fa-google-pay:before{content:""}.fa-intercom:before{content:""}.fa-zhihu:before{content:""}.fa-korvue:before{content:""}.fa-pix:before{content:""}.fa-steam-symbol:before{content:""}:root,:host{--fa-style-family-classic: "Font Awesome 6 Free";--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype")}.far,.fa-regular{font-weight:400}:root,:host{--fa-style-family-classic: "Font Awesome 6 Free";--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}.fas,.fa-solid{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype");unicode-range:U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-v4compatibility-c7a869fa.woff2) format("woff2"),url(/build/assets/fa-v4compatibility-ff8f525f.ttf) format("truetype");unicode-range:U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A}/*! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}progress{vertical-align:initial}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}[role=button],button{cursor:pointer}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.dz-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.dz-mb-2{margin-bottom:.5rem}.dz-mb-4{margin-bottom:1rem}.dz-mr-3{margin-right:.75rem}.dz-mt-2{margin-top:.5rem}.dz-mt-5{margin-top:1.25rem}.dz-flex{display:flex}.dz-hidden{display:none}.dz-h-14{height:3.5rem}.dz-h-5{height:1.25rem}.dz-h-6{height:1.5rem}.dz-h-8{height:2rem}.dz-h-auto{height:auto}.dz-h-full{height:100%}.dz-w-14{width:3.5rem}.dz-w-5{width:1.25rem}.dz-w-6{width:1.5rem}.dz-w-8{width:2rem}.dz-w-full{width:100%}.dz-max-w-2xl{max-width:42rem}.dz-flex-none{flex:none}@keyframes dz-spin{to{transform:rotate(1turn)}}.dz-animate-spin{animation:dz-spin 1s linear infinite}.dz-cursor-pointer{cursor:pointer}.dz-flex-col{flex-direction:column}.dz-flex-wrap{flex-wrap:wrap}.dz-items-start{align-items:flex-start}.dz-items-center{align-items:center}.dz-justify-start{justify-content:flex-start}.dz-justify-center{justify-content:center}.dz-justify-between{justify-content:space-between}.dz-gap-1{gap:.25rem}.dz-gap-2{gap:.5rem}.dz-gap-3{gap:.75rem}.dz-gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.dz-gap-y-2{row-gap:.5rem}.dz-overflow-hidden{overflow:hidden}.dz-rounded{border-radius:.25rem}.dz-border{border-width:1px}.dz-border-dashed{border-style:dashed}.dz-border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.dz-border-gray-500{--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}.dz-bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.dz-bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.dz-bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.dz-bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.dz-fill-blue-600{fill:#2563eb}.dz-object-fill{-o-object-fit:fill;object-fit:fill}.dz-p-10{padding:2.5rem}.dz-p-4{padding:1rem}.dz-py-8{padding-top:2rem;padding-bottom:2rem}.dz-text-center{text-align:center}.dz-text-lg{font-size:1.125rem;line-height:1.75rem}.dz-text-sm{font-size:.875rem;line-height:1.25rem}.dz-font-medium{font-weight:500}.dz-font-semibold{font-weight:600}.dz-text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dz-text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dz-text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dz-text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.dz-text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.dz-text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.dz-text-red-800{--tw-text-opacity:1;color:rgb(153 27 27/var(--tw-text-opacity))}.dz-text-slate-900{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dz-antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (prefers-color-scheme:dark){.dark\:dz-border-gray-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.dark\:dz-border-gray-700{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.dark\:dz-bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:dz-bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark\:dz-bg-red-600{--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.dark\:dz-text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.dark\:dz-text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.dark\:dz-text-red-100{--tw-text-opacity:1;color:rgb(254 226 226/var(--tw-text-opacity))}.dark\:dz-text-red-200{--tw-text-opacity:1;color:rgb(254 202 202/var(--tw-text-opacity))}.dark\:dz-text-slate-100{--tw-text-opacity:1;color:rgb(241 245 249/var(--tw-text-opacity))}.dark\:dz-text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:hover\:dz-border-gray-500:hover{--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}}.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::-moz-selection{background:transparent}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px #000000a6;border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px #0006;background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(/build/assets/layers-1dbbe9d0.png);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(/build/assets/layers-2x-066daca8.png);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(/build/assets/marker-icon-574c3a5c.png)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:white;color:#333;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}[type=text],input:where(:not([type])),[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow: 0 0 #0000}[type=text]:focus,input:where(:not([type])):focus,[type=email]:focus,[type=url]:focus,[type=password]:focus,[type=number]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=month]:focus,[type=search]:focus,[type=tel]:focus,[type=time]:focus,[type=week]:focus,[multiple]:focus,textarea:focus,select:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple],[size]:where(select:not([size="1"])){background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow: 0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 2px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}@media (forced-colors: active){[type=checkbox]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}@media (forced-colors: active){[type=radio]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:checked:hover,[type=checkbox]:checked:focus,[type=radio]:checked:hover,[type=radio]:checked:focus{border-color:transparent;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}@media (forced-colors: active){[type=checkbox]:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:indeterminate:hover,[type=checkbox]:indeterminate:focus{border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);text-decoration:underline;font-weight:500}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{font-weight:400;color:var(--tw-prose-counters)}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-style:italic;color:var(--tw-prose-quotes);border-left-width:.25rem;border-left-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-left:1em}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:900;color:inherit}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:800;color:inherit}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-family:inherit;color:var(--tw-prose-kbd);box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);font-size:.875em;border-radius:.3125rem;padding:.1875em .375em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-weight:600;font-size:.875em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding:.8571429em 1.1428571em}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose{--tw-prose-body: #374151;--tw-prose-headings: #111827;--tw-prose-lead: #4b5563;--tw-prose-links: #111827;--tw-prose-bold: #111827;--tw-prose-counters: #6b7280;--tw-prose-bullets: #d1d5db;--tw-prose-hr: #e5e7eb;--tw-prose-quotes: #111827;--tw-prose-quote-borders: #e5e7eb;--tw-prose-captions: #6b7280;--tw-prose-kbd: #111827;--tw-prose-kbd-shadows: 17 24 39;--tw-prose-code: #111827;--tw-prose-pre-code: #e5e7eb;--tw-prose-pre-bg: #1f2937;--tw-prose-th-borders: #d1d5db;--tw-prose-td-borders: #e5e7eb;--tw-prose-invert-body: #d1d5db;--tw-prose-invert-headings: #fff;--tw-prose-invert-lead: #9ca3af;--tw-prose-invert-links: #fff;--tw-prose-invert-bold: #fff;--tw-prose-invert-counters: #9ca3af;--tw-prose-invert-bullets: #4b5563;--tw-prose-invert-hr: #374151;--tw-prose-invert-quotes: #f3f4f6;--tw-prose-invert-quote-borders: #374151;--tw-prose-invert-captions: #9ca3af;--tw-prose-invert-kbd: #fff;--tw-prose-invert-kbd-shadows: 255 255 255;--tw-prose-invert-code: #fff;--tw-prose-invert-pre-code: #d1d5db;--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);--tw-prose-invert-th-borders: #4b5563;--tw-prose-invert-td-borders: #374151;font-size:1rem;line-height:1.75}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-left:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{top:0;right:0;bottom:0;left:0}.bottom-0{bottom:0}.end-0{inset-inline-end:0px}.left-0{left:0}.right-0{right:0}.start-0{inset-inline-start:0px}.top-0{top:0}.z-0{z-index:0}.z-10{z-index:10}.z-50{z-index:50}.col-span-1{grid-column:span 1 / span 1}.col-span-2{grid-column:span 2 / span 2}.col-span-3{grid-column:span 3 / span 3}.col-span-6{grid-column:span 6 / span 6}.m-2{margin:.5rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.-mx-8{margin-left:-2rem;margin-right:-2rem}.-my-2{margin-top:-.5rem;margin-bottom:-.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-top:.25rem;margin-bottom:.25rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-mb-8{margin-bottom:-2rem}.-me-0{margin-inline-end:-0px}.-me-0\.5{margin-inline-end:-.125rem}.-me-1{margin-inline-end:-.25rem}.-me-2{margin-inline-end:-.5rem}.-ml-px{margin-left:-1px}.-mr-0{margin-right:-0px}.-mr-0\.5{margin-right:-.125rem}.-mr-1{margin-right:-.25rem}.-mr-2{margin-right:-.5rem}.-mt-px{margin-top:-1px}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.me-2{margin-inline-end:.5rem}.me-3{margin-inline-end:.75rem}.ml-1{margin-left:.25rem}.ml-12{margin-left:3rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.ml-6{margin-left:1.5rem}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.ms-1{margin-inline-start:.25rem}.ms-2{margin-inline-start:.5rem}.ms-3{margin-inline-start:.75rem}.ms-4{margin-inline-start:1rem}.ms-6{margin-inline-start:1.5rem}.mt-1{margin-top:.25rem}.mt-10{margin-top:2.5rem}.mt-16{margin-top:4rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.flow-root{display:flow-root}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-1{height:.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-20{height:5rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[200px\]{height:200px}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.min-h-screen{min-height:100vh}.w-0{width:0px}.w-1{width:.25rem}.w-1\/2{width:50%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-16{width:4rem}.w-20{width:5rem}.w-3\/4{width:75%}.w-4{width:1rem}.w-48{width:12rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-60{width:15rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-\[75\%\]{width:75%}.w-auto{width:auto}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.min-w-0{min-width:0px}.min-w-full{min-width:100%}.max-w-6xl{max-width:72rem}.max-w-7xl{max-width:80rem}.max-w-\[250px\]{max-width:250px}.max-w-\[300px\]{max-width:300px}.max-w-screen-xl{max-width:1280px}.max-w-sm{max-width:24rem}.max-w-xl{max-width:36rem}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-none{flex:none}.flex-shrink-0,.shrink-0{flex-shrink:0}.origin-top{transform-origin:top}.origin-top-left{transform-origin:top left}.origin-top-right{transform-origin:top right}.translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-2{--tw-translate-y: .5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-4{--tw-translate-y: 1rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.list-inside{list-style-position:inside}.list-disc{list-style-type:disc}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-items-center{justify-items:center}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.gap-y-2{row-gap:.5rem}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.25rem * var(--tw-space-x-reverse));margin-left:calc(.25rem * calc(1 - var(--tw-space-x-reverse)))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(2rem * var(--tw-space-x-reverse));margin-left:calc(2rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse: 0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-dashed>:not([hidden])~:not([hidden]){border-style:dashed}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(243 244 246 / var(--tw-divide-opacity))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(229 231 235 / var(--tw-divide-opacity))}.divide-gray-300>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(209 213 219 / var(--tw-divide-opacity))}.divide-indigo-200>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(199 210 254 / var(--tw-divide-opacity))}.self-end{align-self:flex-end}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-scroll{overflow-x:scroll}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.rounded-b-none{border-bottom-right-radius:0;border-bottom-left-radius:0}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.border{border-width:1px}.border-0{border-width:0px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.border-gray-100{--tw-border-opacity: 1;border-color:rgb(243 244 246 / var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.border-indigo-400{--tw-border-opacity: 1;border-color:rgb(129 140 248 / var(--tw-border-opacity))}.border-indigo-500{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity))}.border-slate-300{--tw-border-opacity: 1;border-color:rgb(203 213 225 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.bg-black\/25{background-color:#00000040}.bg-blue-500{--tw-bg-opacity: 1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.bg-gray-400{--tw-bg-opacity: 1;background-color:rgb(156 163 175 / var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity: 1;background-color:rgb(107 114 128 / var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity: 1;background-color:rgb(220 252 231 / var(--tw-bg-opacity))}.bg-indigo-50{--tw-bg-opacity: 1;background-color:rgb(238 242 255 / var(--tw-bg-opacity))}.bg-indigo-500{--tw-bg-opacity: 1;background-color:rgb(99 102 241 / var(--tw-bg-opacity))}.bg-indigo-600{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.bg-red-200{--tw-bg-opacity: 1;background-color:rgb(254 202 202 / var(--tw-bg-opacity))}.bg-red-50{--tw-bg-opacity: 1;background-color:rgb(254 242 242 / var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.bg-red-700{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity))}.bg-red-800{--tw-bg-opacity: 1;background-color:rgb(153 27 27 / var(--tw-bg-opacity))}.bg-slate-100{--tw-bg-opacity: 1;background-color:rgb(241 245 249 / var(--tw-bg-opacity))}.bg-slate-300{--tw-bg-opacity: 1;background-color:rgb(203 213 225 / var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity: 1;background-color:rgb(234 179 8 / var(--tw-bg-opacity))}.bg-yellow-600{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.bg-opacity-25{--tw-bg-opacity: .25}.from-gray-700{--tw-gradient-from: #374151 var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-gray-700\/50{--tw-gradient-from: rgb(55 65 81 / .5) var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.via-transparent{--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to)}.bg-cover{background-size:cover}.bg-center{background-position:center}.bg-no-repeat{background-repeat:no-repeat}.fill-black{fill:#000}.fill-blue-600{fill:#2563eb}.fill-current{fill:currentColor}.fill-indigo-500{fill:#6366f1}.fill-red-100{fill:#fee2e2}.stroke-gray-400{stroke:#9ca3af}.stroke-gray-600{stroke:#4b5563}.stroke-red-500{stroke:#ef4444}.object-cover{-o-object-fit:cover;object-fit:cover}.object-fill{-o-object-fit:fill;object-fit:fill}.p-0{padding:0}.p-0\.5{padding:.125rem}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-0{padding-left:0;padding-right:0}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-0{padding-top:0;padding-bottom:0}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pb-1{padding-bottom:.25rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pe-4{padding-inline-end:1rem}.pl-10{padding-left:2.5rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}.ps-3{padding-inline-start:.75rem}.pt-0{padding-top:0}.pt-0\.5{padding-top:.125rem}.pt-1{padding-top:.25rem}.pt-2{padding-top:.5rem}.pt-4{padding-top:1rem}.pt-5{padding-top:1.25rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-start{text-align:start}.text-end{text-align:end}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-relaxed{line-height:1.625}.leading-tight{line-height:1.25}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity))}.text-green-500{--tw-text-opacity: 1;color:rgb(34 197 94 / var(--tw-text-opacity))}.text-green-600{--tw-text-opacity: 1;color:rgb(22 163 74 / var(--tw-text-opacity))}.text-green-700{--tw-text-opacity: 1;color:rgb(21 128 61 / var(--tw-text-opacity))}.text-indigo-500{--tw-text-opacity: 1;color:rgb(99 102 241 / var(--tw-text-opacity))}.text-indigo-600{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.text-indigo-700{--tw-text-opacity: 1;color:rgb(67 56 202 / var(--tw-text-opacity))}.text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity))}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / var(--tw-text-opacity))}.text-red-600{--tw-text-opacity: 1;color:rgb(220 38 38 / var(--tw-text-opacity))}.text-red-700{--tw-text-opacity: 1;color:rgb(185 28 28 / var(--tw-text-opacity))}.text-red-800{--tw-text-opacity: 1;color:rgb(153 27 27 / var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity: 1;color:rgb(51 65 85 / var(--tw-text-opacity))}.text-slate-800{--tw-text-opacity: 1;color:rgb(30 41 59 / var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity: 1;color:rgb(15 23 42 / var(--tw-text-opacity))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-50{opacity:.5}.opacity-75{opacity:.75}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-2xl{--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-xl{--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-gray-500\/20{--tw-shadow-color: rgb(107 114 128 / .2);--tw-shadow: var(--tw-shadow-colored)}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-inset{--tw-ring-inset: inset}.ring-black{--tw-ring-opacity: 1;--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity))}.ring-gray-200{--tw-ring-opacity: 1;--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity))}.ring-gray-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity))}.ring-white{--tw-ring-opacity: 1;--tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity: .05}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-100{transition-duration:.1s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-75{transition-duration:75ms}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}[x-cloak]{display:none}@media (prefers-color-scheme: dark){.dark\:prose-invert{--tw-prose-body: var(--tw-prose-invert-body);--tw-prose-headings: var(--tw-prose-invert-headings);--tw-prose-lead: var(--tw-prose-invert-lead);--tw-prose-links: var(--tw-prose-invert-links);--tw-prose-bold: var(--tw-prose-invert-bold);--tw-prose-counters: var(--tw-prose-invert-counters);--tw-prose-bullets: var(--tw-prose-invert-bullets);--tw-prose-hr: var(--tw-prose-invert-hr);--tw-prose-quotes: var(--tw-prose-invert-quotes);--tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);--tw-prose-captions: var(--tw-prose-invert-captions);--tw-prose-kbd: var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);--tw-prose-code: var(--tw-prose-invert-code);--tw-prose-pre-code: var(--tw-prose-invert-pre-code);--tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);--tw-prose-th-borders: var(--tw-prose-invert-th-borders);--tw-prose-td-borders: var(--tw-prose-invert-td-borders)}}.selection\:bg-red-500 *::-moz-selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:bg-red-500 *::selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:text-white *::-moz-selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:text-white *::selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:bg-red-500::-moz-selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:bg-red-500::selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:text-white::-moz-selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:text-white::selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.placeholder\:text-gray-400::-moz-placeholder{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.placeholder\:text-gray-400::placeholder{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:start-\[2px\]:after{content:var(--tw-content);inset-inline-start:2px}.after\:top-\[2px\]:after{content:var(--tw-content);top:2px}.after\:h-5:after{content:var(--tw-content);height:1.25rem}.after\:w-5:after{content:var(--tw-content);width:1.25rem}.after\:rounded-full:after{content:var(--tw-content);border-radius:9999px}.after\:border:after{content:var(--tw-content);border-width:1px}.after\:border-gray-300:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.after\:bg-white:after{content:var(--tw-content);--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.after\:transition-all:after{content:var(--tw-content);transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.after\:content-\[\'\'\]:after{--tw-content: "";content:var(--tw-content)}.read-only\:cursor-not-allowed:-moz-read-only{cursor:not-allowed}.read-only\:cursor-not-allowed:read-only{cursor:not-allowed}.read-only\:opacity-50:-moz-read-only{opacity:.5}.read-only\:opacity-50:read-only{opacity:.5}.hover\:rounded-lg:hover{border-radius:.5rem}.hover\:border-0:hover{border-width:0px}.hover\:border-gray-300:hover{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.hover\:bg-indigo-500:hover{--tw-bg-opacity: 1;background-color:rgb(99 102 241 / var(--tw-bg-opacity))}.hover\:bg-indigo-600:hover{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.hover\:bg-red-500:hover{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.hover\:bg-red-600:hover{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.hover\:bg-slate-50:hover{--tw-bg-opacity: 1;background-color:rgb(248 250 252 / var(--tw-bg-opacity))}.hover\:bg-yellow-600:hover{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.hover\:text-gray-800:hover{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.hover\:text-indigo-600:hover{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.hover\:text-indigo-900:hover{--tw-text-opacity: 1;color:rgb(49 46 129 / var(--tw-text-opacity))}.focus\:z-10:focus{z-index:10}.focus\:rounded-sm:focus{border-radius:.125rem}.focus\:border-none:focus{border-style:none}.focus\:border-blue-300:focus{--tw-border-opacity: 1;border-color:rgb(147 197 253 / var(--tw-border-opacity))}.focus\:border-gray-300:focus{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.focus\:border-indigo-500:focus{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity))}.focus\:border-indigo-700:focus{--tw-border-opacity: 1;border-color:rgb(67 56 202 / var(--tw-border-opacity))}.focus\:bg-gray-100:focus{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.focus\:bg-gray-50:focus{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.focus\:bg-gray-700:focus{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.focus\:bg-indigo-100:focus{--tw-bg-opacity: 1;background-color:rgb(224 231 255 / var(--tw-bg-opacity))}.focus\:bg-indigo-600:focus{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.focus\:bg-red-600:focus{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.focus\:bg-yellow-600:focus{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.focus\:text-gray-500:focus{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.focus\:text-gray-700:focus{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.focus\:text-gray-800:focus{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.focus\:text-indigo-800:focus{--tw-text-opacity: 1;color:rgb(55 48 163 / var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:outline:focus{outline-style:solid}.focus\:outline-2:focus{outline-width:2px}.focus\:outline-red-500:focus{outline-color:#ef4444}.focus\:ring:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-inset:focus{--tw-ring-inset: inset}.focus\:ring-indigo-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity))}.focus\:ring-indigo-600:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.focus\:ring-red-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width: 2px}.focus-visible\:outline:focus-visible{outline-style:solid}.focus-visible\:outline-2:focus-visible{outline-width:2px}.focus-visible\:outline-offset-2:focus-visible{outline-offset:2px}.focus-visible\:outline-indigo-600:focus-visible{outline-color:#4f46e5}.focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible\:ring-blue-500:focus-visible{--tw-ring-opacity: 1;--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width: 2px}.active\:bg-gray-100:active{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.active\:bg-gray-50:active{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.active\:bg-gray-900:active{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.active\:bg-red-700:active{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity))}.active\:text-gray-500:active{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.active\:text-gray-700:active{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.disabled\:cursor-default:disabled{cursor:default}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-gray-50:disabled{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.disabled\:bg-red-100:disabled{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.disabled\:text-gray-500:disabled{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.disabled\:opacity-0:disabled{opacity:0}.disabled\:opacity-25:disabled{opacity:.25}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:opacity-75:disabled{opacity:.75}.group:hover .group-hover\:stroke-gray-600{stroke:#4b5563}.group:hover .group-hover\:text-indigo-600{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.peer:checked~.peer-checked\:bg-indigo-600{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.peer:checked~.peer-checked\:after\:translate-x-full:after{content:var(--tw-content);--tw-translate-x: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:checked~.peer-checked\:after\:border-white:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.peer:focus~.peer-focus\:outline-none{outline:2px solid transparent;outline-offset:2px}.peer:focus~.peer-focus\:ring-4{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.peer:focus~.peer-focus\:ring-indigo-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity))}:is([dir=ltr] .ltr\:origin-top-left){transform-origin:top left}:is([dir=ltr] .ltr\:origin-top-right){transform-origin:top right}:is([dir=rtl] .rtl\:origin-top-left){transform-origin:top left}:is([dir=rtl] .rtl\:origin-top-right){transform-origin:top right}:is([dir=rtl] .rtl\:flex-row-reverse){flex-direction:row-reverse}:is([dir=rtl] .peer:checked~.rtl\:peer-checked\:after\:-translate-x-full):after{content:var(--tw-content);--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@media (prefers-reduced-motion: no-preference){.motion-safe\:hover\:scale-\[1\.01\]:hover{--tw-scale-x: 1.01;--tw-scale-y: 1.01;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}}@media (prefers-color-scheme: dark){.dark\:border-gray-500{--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity))}.dark\:border-gray-600{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:border-gray-700{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:border-indigo-600{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.dark\:bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.dark\:bg-gray-700{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:bg-gray-800\/50{background-color:#1f293780}.dark\:bg-gray-900{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:bg-indigo-900\/50{background-color:#312e8180}.dark\:bg-red-600{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.dark\:bg-red-800\/20{background-color:#991b1b33}.dark\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--tw-gradient-stops))}.dark\:from-gray-700\/50{--tw-gradient-from: rgb(55 65 81 / .5) var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.dark\:via-transparent{--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to)}.dark\:fill-indigo-200{fill:#c7d2fe}.dark\:fill-white{fill:#fff}.dark\:stroke-gray-600{stroke:#4b5563}.dark\:text-gray-100{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark\:text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.dark\:text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.dark\:text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.dark\:text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.dark\:text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity))}.dark\:text-indigo-300{--tw-text-opacity: 1;color:rgb(165 180 252 / var(--tw-text-opacity))}.dark\:text-red-100{--tw-text-opacity: 1;color:rgb(254 226 226 / var(--tw-text-opacity))}.dark\:text-red-200{--tw-text-opacity: 1;color:rgb(254 202 202 / var(--tw-text-opacity))}.dark\:text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity))}.dark\:text-slate-100{--tw-text-opacity: 1;color:rgb(241 245 249 / var(--tw-text-opacity))}.dark\:text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:shadow-none{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.dark\:ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.dark\:ring-inset{--tw-ring-inset: inset}.dark\:ring-white\/5{--tw-ring-color: rgb(255 255 255 / .05)}.dark\:hover\:border-gray-500:hover{--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity))}.dark\:hover\:border-gray-600:hover{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:hover\:border-gray-700:hover{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:hover\:bg-gray-800:hover{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:hover\:bg-gray-900:hover{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:hover\:bg-white:hover{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.dark\:hover\:text-gray-100:hover{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark\:hover\:text-gray-200:hover{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:hover\:text-gray-300:hover{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:hover\:text-white:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:focus\:border-blue-700:focus{--tw-border-opacity: 1;border-color:rgb(29 78 216 / var(--tw-border-opacity))}.dark\:focus\:border-blue-800:focus{--tw-border-opacity: 1;border-color:rgb(30 64 175 / var(--tw-border-opacity))}.dark\:focus\:border-gray-600:focus{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:focus\:border-gray-700:focus{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:focus\:border-indigo-300:focus{--tw-border-opacity: 1;border-color:rgb(165 180 252 / var(--tw-border-opacity))}.dark\:focus\:border-indigo-600:focus{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.dark\:focus\:bg-gray-700:focus{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:focus\:bg-gray-800:focus{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:focus\:bg-gray-900:focus{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:focus\:bg-indigo-900:focus{--tw-bg-opacity: 1;background-color:rgb(49 46 129 / var(--tw-bg-opacity))}.dark\:focus\:bg-white:focus{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.dark\:focus\:text-gray-200:focus{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:focus\:text-gray-300:focus{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:focus\:text-gray-400:focus{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:focus\:text-indigo-200:focus{--tw-text-opacity: 1;color:rgb(199 210 254 / var(--tw-text-opacity))}.dark\:focus\:ring-indigo-600:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.dark\:focus\:ring-offset-gray-800:focus{--tw-ring-offset-color: #1f2937}.dark\:active\:bg-gray-300:active{--tw-bg-opacity: 1;background-color:rgb(209 213 219 / var(--tw-bg-opacity))}.dark\:active\:bg-gray-700:active{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:active\:text-gray-300:active{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.group:hover .dark\:group-hover\:stroke-gray-400{stroke:#9ca3af}.peer:focus~.dark\:peer-focus\:ring-indigo-800{--tw-ring-opacity: 1;--tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity))}}@media (min-width: 640px){.sm\:fixed{position:fixed}.sm\:right-0{right:0}.sm\:top-0{top:0}.sm\:col-span-4{grid-column:span 4 / span 4}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:-my-px{margin-top:-1px;margin-bottom:-1px}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:-me-2{margin-inline-end:-.5rem}.sm\:-mr-2{margin-right:-.5rem}.sm\:ml-0{margin-left:0}.sm\:ml-10{margin-left:2.5rem}.sm\:ml-3{margin-left:.75rem}.sm\:ml-4{margin-left:1rem}.sm\:ml-6{margin-left:1.5rem}.sm\:ms-10{margin-inline-start:2.5rem}.sm\:ms-3{margin-inline-start:.75rem}.sm\:ms-4{margin-inline-start:1rem}.sm\:ms-6{margin-inline-start:1.5rem}.sm\:mt-0{margin-top:0}.sm\:block{display:block}.sm\:flex{display:flex}.sm\:hidden{display:none}.sm\:h-10{height:2.5rem}.sm\:w-10{width:2.5rem}.sm\:w-full{width:100%}.sm\:max-w-2xl{max-width:42rem}.sm\:max-w-4xl{max-width:56rem}.sm\:max-w-6xl{max-width:72rem}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-md{max-width:28rem}.sm\:max-w-sm{max-width:24rem}.sm\:max-w-xl{max-width:36rem}.sm\:flex-1{flex:1 1 0%}.sm\:translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:translate-x-2{--tw-translate-x: .5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:flex-col{flex-direction:column}.sm\:items-start{align-items:flex-start}.sm\:items-end{align-items:flex-end}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-md{border-radius:.375rem}.sm\:rounded-bl-md{border-bottom-left-radius:.375rem}.sm\:rounded-br-md{border-bottom-right-radius:.375rem}.sm\:rounded-tl-md{border-top-left-radius:.375rem}.sm\:rounded-tr-md{border-top-right-radius:.375rem}.sm\:p-6{padding:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pb-4{padding-bottom:1rem}.sm\:pl-6{padding-left:1.5rem}.sm\:pr-0{padding-right:0}.sm\:pr-6{padding-right:1.5rem}.sm\:pr-8{padding-right:2rem}.sm\:pt-0{padding-top:0}.sm\:text-left{text-align:left}.sm\:text-right{text-align:right}.sm\:text-start{text-align:start}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:leading-6{line-height:1.5rem}}@media (min-width: 768px){.md\:col-span-1{grid-column:span 1 / span 1}.md\:col-span-2{grid-column:span 2 / span 2}.md\:mt-0{margin-top:0}.md\:grid{display:grid}.md\:w-1\/3{width:33.333333%}.md\:w-1\/4{width:25%}.md\:w-2\/3{width:66.666667%}.md\:w-3\/4{width:75%}.md\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:justify-between{justify-content:space-between}.md\:gap-6{gap:1.5rem}}@media (min-width: 1024px){.lg\:col-span-4{grid-column:span 4 / span 4}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:gap-8{gap:2rem}.lg\:p-8{padding:2rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:pl-8{padding-left:2rem}.lg\:pr-8{padding-right:2rem}} + */.fa{font-family:var(--fa-style-family, "Font Awesome 6 Free");font-weight:var(--fa-style, 900)}.fa,.fa-classic,.fa-sharp,.fas,.fa-solid,.far,.fa-regular,.fab,.fa-brands{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display, inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fas,.fa-classic,.fa-solid,.far,.fa-regular{font-family:"Font Awesome 6 Free"}.fab,.fa-brands{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin, 2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em) * -1);position:absolute;text-align:center;width:var(--fa-li-width, 2em);line-height:inherit}.fa-border{border-color:var(--fa-border-color, #eee);border-radius:var(--fa-border-radius, .1em);border-style:var(--fa-border-style, solid);border-width:var(--fa-border-width, .08em);padding:var(--fa-border-padding, .2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin, .3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin, .3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.28, .84, .42, 1))}.fa-fade{animation-name:fa-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-beat-fade{animation-name:fa-beat-fade;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, ease-in-out)}.fa-shake{animation-name:fa-shake;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin{animation-name:fa-spin;animation-delay:var(--fa-animation-delay, 0s);animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 2s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, linear)}.fa-spin-reverse{--fa-animation-direction: reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction, normal);animation-duration:var(--fa-animation-duration, 1s);animation-iteration-count:var(--fa-animation-iteration-count, infinite);animation-timing-function:var(--fa-animation-timing, steps(8))}@media (prefers-reduced-motion: reduce){.fa-beat,.fa-bounce,.fa-fade,.fa-beat-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale, 1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x, 1.1),var(--fa-bounce-start-scale-y, .9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x, .9),var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x, 1.05),var(--fa-bounce-land-scale-y, .95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound, -.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity, .4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity, .4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale, 1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x, 0),var(--fa-flip-y, 1),var(--fa-flip-z, 0),var(--fa-flip-angle, -180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}8%,24%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0)}}@keyframes fa-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle, 0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index, auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse, #fff)}.fa-0:before{content:"0"}.fa-1:before{content:"1"}.fa-2:before{content:"2"}.fa-3:before{content:"3"}.fa-4:before{content:"4"}.fa-5:before{content:"5"}.fa-6:before{content:"6"}.fa-7:before{content:"7"}.fa-8:before{content:"8"}.fa-9:before{content:"9"}.fa-fill-drip:before{content:""}.fa-arrows-to-circle:before{content:""}.fa-circle-chevron-right:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-at:before{content:"@"}.fa-trash-can:before{content:""}.fa-trash-alt:before{content:""}.fa-text-height:before{content:""}.fa-user-xmark:before{content:""}.fa-user-times:before{content:""}.fa-stethoscope:before{content:""}.fa-message:before{content:""}.fa-comment-alt:before{content:""}.fa-info:before{content:""}.fa-down-left-and-up-right-to-center:before{content:""}.fa-compress-alt:before{content:""}.fa-explosion:before{content:""}.fa-file-lines:before{content:""}.fa-file-alt:before{content:""}.fa-file-text:before{content:""}.fa-wave-square:before{content:""}.fa-ring:before{content:""}.fa-building-un:before{content:""}.fa-dice-three:before{content:""}.fa-calendar-days:before{content:""}.fa-calendar-alt:before{content:""}.fa-anchor-circle-check:before{content:""}.fa-building-circle-arrow-right:before{content:""}.fa-volleyball:before{content:""}.fa-volleyball-ball:before{content:""}.fa-arrows-up-to-line:before{content:""}.fa-sort-down:before{content:""}.fa-sort-desc:before{content:""}.fa-circle-minus:before{content:""}.fa-minus-circle:before{content:""}.fa-door-open:before{content:""}.fa-right-from-bracket:before{content:""}.fa-sign-out-alt:before{content:""}.fa-atom:before{content:""}.fa-soap:before{content:""}.fa-icons:before{content:""}.fa-heart-music-camera-bolt:before{content:""}.fa-microphone-lines-slash:before{content:""}.fa-microphone-alt-slash:before{content:""}.fa-bridge-circle-check:before{content:""}.fa-pump-medical:before{content:""}.fa-fingerprint:before{content:""}.fa-hand-point-right:before{content:""}.fa-magnifying-glass-location:before{content:""}.fa-search-location:before{content:""}.fa-forward-step:before{content:""}.fa-step-forward:before{content:""}.fa-face-smile-beam:before{content:""}.fa-smile-beam:before{content:""}.fa-flag-checkered:before{content:""}.fa-football:before{content:""}.fa-football-ball:before{content:""}.fa-school-circle-exclamation:before{content:""}.fa-crop:before{content:""}.fa-angles-down:before{content:""}.fa-angle-double-down:before{content:""}.fa-users-rectangle:before{content:""}.fa-people-roof:before{content:""}.fa-people-line:before{content:""}.fa-beer-mug-empty:before{content:""}.fa-beer:before{content:""}.fa-diagram-predecessor:before{content:""}.fa-arrow-up-long:before{content:""}.fa-long-arrow-up:before{content:""}.fa-fire-flame-simple:before{content:""}.fa-burn:before{content:""}.fa-person:before{content:""}.fa-male:before{content:""}.fa-laptop:before{content:""}.fa-file-csv:before{content:""}.fa-menorah:before{content:""}.fa-truck-plane:before{content:""}.fa-record-vinyl:before{content:""}.fa-face-grin-stars:before{content:""}.fa-grin-stars:before{content:""}.fa-bong:before{content:""}.fa-spaghetti-monster-flying:before{content:""}.fa-pastafarianism:before{content:""}.fa-arrow-down-up-across-line:before{content:""}.fa-spoon:before{content:""}.fa-utensil-spoon:before{content:""}.fa-jar-wheat:before{content:""}.fa-envelopes-bulk:before{content:""}.fa-mail-bulk:before{content:""}.fa-file-circle-exclamation:before{content:""}.fa-circle-h:before{content:""}.fa-hospital-symbol:before{content:""}.fa-pager:before{content:""}.fa-address-book:before{content:""}.fa-contact-book:before{content:""}.fa-strikethrough:before{content:""}.fa-k:before{content:"K"}.fa-landmark-flag:before{content:""}.fa-pencil:before{content:""}.fa-pencil-alt:before{content:""}.fa-backward:before{content:""}.fa-caret-right:before{content:""}.fa-comments:before{content:""}.fa-paste:before{content:""}.fa-file-clipboard:before{content:""}.fa-code-pull-request:before{content:""}.fa-clipboard-list:before{content:""}.fa-truck-ramp-box:before{content:""}.fa-truck-loading:before{content:""}.fa-user-check:before{content:""}.fa-vial-virus:before{content:""}.fa-sheet-plastic:before{content:""}.fa-blog:before{content:""}.fa-user-ninja:before{content:""}.fa-person-arrow-up-from-line:before{content:""}.fa-scroll-torah:before{content:""}.fa-torah:before{content:""}.fa-broom-ball:before{content:""}.fa-quidditch:before{content:""}.fa-quidditch-broom-ball:before{content:""}.fa-toggle-off:before{content:""}.fa-box-archive:before{content:""}.fa-archive:before{content:""}.fa-person-drowning:before{content:""}.fa-arrow-down-9-1:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-sort-numeric-down-alt:before{content:""}.fa-face-grin-tongue-squint:before{content:""}.fa-grin-tongue-squint:before{content:""}.fa-spray-can:before{content:""}.fa-truck-monster:before{content:""}.fa-w:before{content:"W"}.fa-earth-africa:before{content:""}.fa-globe-africa:before{content:""}.fa-rainbow:before{content:""}.fa-circle-notch:before{content:""}.fa-tablet-screen-button:before{content:""}.fa-tablet-alt:before{content:""}.fa-paw:before{content:""}.fa-cloud:before{content:""}.fa-trowel-bricks:before{content:""}.fa-face-flushed:before{content:""}.fa-flushed:before{content:""}.fa-hospital-user:before{content:""}.fa-tent-arrow-left-right:before{content:""}.fa-gavel:before{content:""}.fa-legal:before{content:""}.fa-binoculars:before{content:""}.fa-microphone-slash:before{content:""}.fa-box-tissue:before{content:""}.fa-motorcycle:before{content:""}.fa-bell-concierge:before{content:""}.fa-concierge-bell:before{content:""}.fa-pen-ruler:before{content:""}.fa-pencil-ruler:before{content:""}.fa-people-arrows:before{content:""}.fa-people-arrows-left-right:before{content:""}.fa-mars-and-venus-burst:before{content:""}.fa-square-caret-right:before{content:""}.fa-caret-square-right:before{content:""}.fa-scissors:before{content:""}.fa-cut:before{content:""}.fa-sun-plant-wilt:before{content:""}.fa-toilets-portable:before{content:""}.fa-hockey-puck:before{content:""}.fa-table:before{content:""}.fa-magnifying-glass-arrow-right:before{content:""}.fa-tachograph-digital:before{content:""}.fa-digital-tachograph:before{content:""}.fa-users-slash:before{content:""}.fa-clover:before{content:""}.fa-reply:before{content:""}.fa-mail-reply:before{content:""}.fa-star-and-crescent:before{content:""}.fa-house-fire:before{content:""}.fa-square-minus:before{content:""}.fa-minus-square:before{content:""}.fa-helicopter:before{content:""}.fa-compass:before{content:""}.fa-square-caret-down:before{content:""}.fa-caret-square-down:before{content:""}.fa-file-circle-question:before{content:""}.fa-laptop-code:before{content:""}.fa-swatchbook:before{content:""}.fa-prescription-bottle:before{content:""}.fa-bars:before{content:""}.fa-navicon:before{content:""}.fa-people-group:before{content:""}.fa-hourglass-end:before{content:""}.fa-hourglass-3:before{content:""}.fa-heart-crack:before{content:""}.fa-heart-broken:before{content:""}.fa-square-up-right:before{content:""}.fa-external-link-square-alt:before{content:""}.fa-face-kiss-beam:before{content:""}.fa-kiss-beam:before{content:""}.fa-film:before{content:""}.fa-ruler-horizontal:before{content:""}.fa-people-robbery:before{content:""}.fa-lightbulb:before{content:""}.fa-caret-left:before{content:""}.fa-circle-exclamation:before{content:""}.fa-exclamation-circle:before{content:""}.fa-school-circle-xmark:before{content:""}.fa-arrow-right-from-bracket:before{content:""}.fa-sign-out:before{content:""}.fa-circle-chevron-down:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-unlock-keyhole:before{content:""}.fa-unlock-alt:before{content:""}.fa-cloud-showers-heavy:before{content:""}.fa-headphones-simple:before{content:""}.fa-headphones-alt:before{content:""}.fa-sitemap:before{content:""}.fa-circle-dollar-to-slot:before{content:""}.fa-donate:before{content:""}.fa-memory:before{content:""}.fa-road-spikes:before{content:""}.fa-fire-burner:before{content:""}.fa-flag:before{content:""}.fa-hanukiah:before{content:""}.fa-feather:before{content:""}.fa-volume-low:before{content:""}.fa-volume-down:before{content:""}.fa-comment-slash:before{content:""}.fa-cloud-sun-rain:before{content:""}.fa-compress:before{content:""}.fa-wheat-awn:before{content:""}.fa-wheat-alt:before{content:""}.fa-ankh:before{content:""}.fa-hands-holding-child:before{content:""}.fa-asterisk:before{content:"*"}.fa-square-check:before{content:""}.fa-check-square:before{content:""}.fa-peseta-sign:before{content:""}.fa-heading:before{content:""}.fa-header:before{content:""}.fa-ghost:before{content:""}.fa-list:before{content:""}.fa-list-squares:before{content:""}.fa-square-phone-flip:before{content:""}.fa-phone-square-alt:before{content:""}.fa-cart-plus:before{content:""}.fa-gamepad:before{content:""}.fa-circle-dot:before{content:""}.fa-dot-circle:before{content:""}.fa-face-dizzy:before{content:""}.fa-dizzy:before{content:""}.fa-egg:before{content:""}.fa-house-medical-circle-xmark:before{content:""}.fa-campground:before{content:""}.fa-folder-plus:before{content:""}.fa-futbol:before{content:""}.fa-futbol-ball:before{content:""}.fa-soccer-ball:before{content:""}.fa-paintbrush:before{content:""}.fa-paint-brush:before{content:""}.fa-lock:before{content:""}.fa-gas-pump:before{content:""}.fa-hot-tub-person:before{content:""}.fa-hot-tub:before{content:""}.fa-map-location:before{content:""}.fa-map-marked:before{content:""}.fa-house-flood-water:before{content:""}.fa-tree:before{content:""}.fa-bridge-lock:before{content:""}.fa-sack-dollar:before{content:""}.fa-pen-to-square:before{content:""}.fa-edit:before{content:""}.fa-car-side:before{content:""}.fa-share-nodes:before{content:""}.fa-share-alt:before{content:""}.fa-heart-circle-minus:before{content:""}.fa-hourglass-half:before{content:""}.fa-hourglass-2:before{content:""}.fa-microscope:before{content:""}.fa-sink:before{content:""}.fa-bag-shopping:before{content:""}.fa-shopping-bag:before{content:""}.fa-arrow-down-z-a:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-alpha-down-alt:before{content:""}.fa-mitten:before{content:""}.fa-person-rays:before{content:""}.fa-users:before{content:""}.fa-eye-slash:before{content:""}.fa-flask-vial:before{content:""}.fa-hand:before{content:""}.fa-hand-paper:before{content:""}.fa-om:before{content:""}.fa-worm:before{content:""}.fa-house-circle-xmark:before{content:""}.fa-plug:before{content:""}.fa-chevron-up:before{content:""}.fa-hand-spock:before{content:""}.fa-stopwatch:before{content:""}.fa-face-kiss:before{content:""}.fa-kiss:before{content:""}.fa-bridge-circle-xmark:before{content:""}.fa-face-grin-tongue:before{content:""}.fa-grin-tongue:before{content:""}.fa-chess-bishop:before{content:""}.fa-face-grin-wink:before{content:""}.fa-grin-wink:before{content:""}.fa-ear-deaf:before{content:""}.fa-deaf:before{content:""}.fa-deafness:before{content:""}.fa-hard-of-hearing:before{content:""}.fa-road-circle-check:before{content:""}.fa-dice-five:before{content:""}.fa-square-rss:before{content:""}.fa-rss-square:before{content:""}.fa-land-mine-on:before{content:""}.fa-i-cursor:before{content:""}.fa-stamp:before{content:""}.fa-stairs:before{content:""}.fa-i:before{content:"I"}.fa-hryvnia-sign:before{content:""}.fa-hryvnia:before{content:""}.fa-pills:before{content:""}.fa-face-grin-wide:before{content:""}.fa-grin-alt:before{content:""}.fa-tooth:before{content:""}.fa-v:before{content:"V"}.fa-bangladeshi-taka-sign:before{content:""}.fa-bicycle:before{content:""}.fa-staff-snake:before{content:""}.fa-rod-asclepius:before{content:""}.fa-rod-snake:before{content:""}.fa-staff-aesculapius:before{content:""}.fa-head-side-cough-slash:before{content:""}.fa-truck-medical:before{content:""}.fa-ambulance:before{content:""}.fa-wheat-awn-circle-exclamation:before{content:""}.fa-snowman:before{content:""}.fa-mortar-pestle:before{content:""}.fa-road-barrier:before{content:""}.fa-school:before{content:""}.fa-igloo:before{content:""}.fa-joint:before{content:""}.fa-angle-right:before{content:""}.fa-horse:before{content:""}.fa-q:before{content:"Q"}.fa-g:before{content:"G"}.fa-notes-medical:before{content:""}.fa-temperature-half:before{content:""}.fa-temperature-2:before{content:""}.fa-thermometer-2:before{content:""}.fa-thermometer-half:before{content:""}.fa-dong-sign:before{content:""}.fa-capsules:before{content:""}.fa-poo-storm:before{content:""}.fa-poo-bolt:before{content:""}.fa-face-frown-open:before{content:""}.fa-frown-open:before{content:""}.fa-hand-point-up:before{content:""}.fa-money-bill:before{content:""}.fa-bookmark:before{content:""}.fa-align-justify:before{content:""}.fa-umbrella-beach:before{content:""}.fa-helmet-un:before{content:""}.fa-bullseye:before{content:""}.fa-bacon:before{content:""}.fa-hand-point-down:before{content:""}.fa-arrow-up-from-bracket:before{content:""}.fa-folder:before{content:""}.fa-folder-blank:before{content:""}.fa-file-waveform:before{content:""}.fa-file-medical-alt:before{content:""}.fa-radiation:before{content:""}.fa-chart-simple:before{content:""}.fa-mars-stroke:before{content:""}.fa-vial:before{content:""}.fa-gauge:before{content:""}.fa-dashboard:before{content:""}.fa-gauge-med:before{content:""}.fa-tachometer-alt-average:before{content:""}.fa-wand-magic-sparkles:before{content:""}.fa-magic-wand-sparkles:before{content:""}.fa-e:before{content:"E"}.fa-pen-clip:before{content:""}.fa-pen-alt:before{content:""}.fa-bridge-circle-exclamation:before{content:""}.fa-user:before{content:""}.fa-school-circle-check:before{content:""}.fa-dumpster:before{content:""}.fa-van-shuttle:before{content:""}.fa-shuttle-van:before{content:""}.fa-building-user:before{content:""}.fa-square-caret-left:before{content:""}.fa-caret-square-left:before{content:""}.fa-highlighter:before{content:""}.fa-key:before{content:""}.fa-bullhorn:before{content:""}.fa-globe:before{content:""}.fa-synagogue:before{content:""}.fa-person-half-dress:before{content:""}.fa-road-bridge:before{content:""}.fa-location-arrow:before{content:""}.fa-c:before{content:"C"}.fa-tablet-button:before{content:""}.fa-building-lock:before{content:""}.fa-pizza-slice:before{content:""}.fa-money-bill-wave:before{content:""}.fa-chart-area:before{content:""}.fa-area-chart:before{content:""}.fa-house-flag:before{content:""}.fa-person-circle-minus:before{content:""}.fa-ban:before{content:""}.fa-cancel:before{content:""}.fa-camera-rotate:before{content:""}.fa-spray-can-sparkles:before{content:""}.fa-air-freshener:before{content:""}.fa-star:before{content:""}.fa-repeat:before{content:""}.fa-cross:before{content:""}.fa-box:before{content:""}.fa-venus-mars:before{content:""}.fa-arrow-pointer:before{content:""}.fa-mouse-pointer:before{content:""}.fa-maximize:before{content:""}.fa-expand-arrows-alt:before{content:""}.fa-charging-station:before{content:""}.fa-shapes:before{content:""}.fa-triangle-circle-square:before{content:""}.fa-shuffle:before{content:""}.fa-random:before{content:""}.fa-person-running:before{content:""}.fa-running:before{content:""}.fa-mobile-retro:before{content:""}.fa-grip-lines-vertical:before{content:""}.fa-spider:before{content:""}.fa-hands-bound:before{content:""}.fa-file-invoice-dollar:before{content:""}.fa-plane-circle-exclamation:before{content:""}.fa-x-ray:before{content:""}.fa-spell-check:before{content:""}.fa-slash:before{content:""}.fa-computer-mouse:before{content:""}.fa-mouse:before{content:""}.fa-arrow-right-to-bracket:before{content:""}.fa-sign-in:before{content:""}.fa-shop-slash:before{content:""}.fa-store-alt-slash:before{content:""}.fa-server:before{content:""}.fa-virus-covid-slash:before{content:""}.fa-shop-lock:before{content:""}.fa-hourglass-start:before{content:""}.fa-hourglass-1:before{content:""}.fa-blender-phone:before{content:""}.fa-building-wheat:before{content:""}.fa-person-breastfeeding:before{content:""}.fa-right-to-bracket:before{content:""}.fa-sign-in-alt:before{content:""}.fa-venus:before{content:""}.fa-passport:before{content:""}.fa-heart-pulse:before{content:""}.fa-heartbeat:before{content:""}.fa-people-carry-box:before{content:""}.fa-people-carry:before{content:""}.fa-temperature-high:before{content:""}.fa-microchip:before{content:""}.fa-crown:before{content:""}.fa-weight-hanging:before{content:""}.fa-xmarks-lines:before{content:""}.fa-file-prescription:before{content:""}.fa-weight-scale:before{content:""}.fa-weight:before{content:""}.fa-user-group:before{content:""}.fa-user-friends:before{content:""}.fa-arrow-up-a-z:before{content:""}.fa-sort-alpha-up:before{content:""}.fa-chess-knight:before{content:""}.fa-face-laugh-squint:before{content:""}.fa-laugh-squint:before{content:""}.fa-wheelchair:before{content:""}.fa-circle-arrow-up:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-toggle-on:before{content:""}.fa-person-walking:before{content:""}.fa-walking:before{content:""}.fa-l:before{content:"L"}.fa-fire:before{content:""}.fa-bed-pulse:before{content:""}.fa-procedures:before{content:""}.fa-shuttle-space:before{content:""}.fa-space-shuttle:before{content:""}.fa-face-laugh:before{content:""}.fa-laugh:before{content:""}.fa-folder-open:before{content:""}.fa-heart-circle-plus:before{content:""}.fa-code-fork:before{content:""}.fa-city:before{content:""}.fa-microphone-lines:before{content:""}.fa-microphone-alt:before{content:""}.fa-pepper-hot:before{content:""}.fa-unlock:before{content:""}.fa-colon-sign:before{content:""}.fa-headset:before{content:""}.fa-store-slash:before{content:""}.fa-road-circle-xmark:before{content:""}.fa-user-minus:before{content:""}.fa-mars-stroke-up:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-champagne-glasses:before{content:""}.fa-glass-cheers:before{content:""}.fa-clipboard:before{content:""}.fa-house-circle-exclamation:before{content:""}.fa-file-arrow-up:before{content:""}.fa-file-upload:before{content:""}.fa-wifi:before{content:""}.fa-wifi-3:before{content:""}.fa-wifi-strong:before{content:""}.fa-bath:before{content:""}.fa-bathtub:before{content:""}.fa-underline:before{content:""}.fa-user-pen:before{content:""}.fa-user-edit:before{content:""}.fa-signature:before{content:""}.fa-stroopwafel:before{content:""}.fa-bold:before{content:""}.fa-anchor-lock:before{content:""}.fa-building-ngo:before{content:""}.fa-manat-sign:before{content:""}.fa-not-equal:before{content:""}.fa-border-top-left:before{content:""}.fa-border-style:before{content:""}.fa-map-location-dot:before{content:""}.fa-map-marked-alt:before{content:""}.fa-jedi:before{content:""}.fa-square-poll-vertical:before{content:""}.fa-poll:before{content:""}.fa-mug-hot:before{content:""}.fa-car-battery:before{content:""}.fa-battery-car:before{content:""}.fa-gift:before{content:""}.fa-dice-two:before{content:""}.fa-chess-queen:before{content:""}.fa-glasses:before{content:""}.fa-chess-board:before{content:""}.fa-building-circle-check:before{content:""}.fa-person-chalkboard:before{content:""}.fa-mars-stroke-right:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-hand-back-fist:before{content:""}.fa-hand-rock:before{content:""}.fa-square-caret-up:before{content:""}.fa-caret-square-up:before{content:""}.fa-cloud-showers-water:before{content:""}.fa-chart-bar:before{content:""}.fa-bar-chart:before{content:""}.fa-hands-bubbles:before{content:""}.fa-hands-wash:before{content:""}.fa-less-than-equal:before{content:""}.fa-train:before{content:""}.fa-eye-low-vision:before{content:""}.fa-low-vision:before{content:""}.fa-crow:before{content:""}.fa-sailboat:before{content:""}.fa-window-restore:before{content:""}.fa-square-plus:before{content:""}.fa-plus-square:before{content:""}.fa-torii-gate:before{content:""}.fa-frog:before{content:""}.fa-bucket:before{content:""}.fa-image:before{content:""}.fa-microphone:before{content:""}.fa-cow:before{content:""}.fa-caret-up:before{content:""}.fa-screwdriver:before{content:""}.fa-folder-closed:before{content:""}.fa-house-tsunami:before{content:""}.fa-square-nfi:before{content:""}.fa-arrow-up-from-ground-water:before{content:""}.fa-martini-glass:before{content:""}.fa-glass-martini-alt:before{content:""}.fa-rotate-left:before{content:""}.fa-rotate-back:before{content:""}.fa-rotate-backward:before{content:""}.fa-undo-alt:before{content:""}.fa-table-columns:before{content:""}.fa-columns:before{content:""}.fa-lemon:before{content:""}.fa-head-side-mask:before{content:""}.fa-handshake:before{content:""}.fa-gem:before{content:""}.fa-dolly:before{content:""}.fa-dolly-box:before{content:""}.fa-smoking:before{content:""}.fa-minimize:before{content:""}.fa-compress-arrows-alt:before{content:""}.fa-monument:before{content:""}.fa-snowplow:before{content:""}.fa-angles-right:before{content:""}.fa-angle-double-right:before{content:""}.fa-cannabis:before{content:""}.fa-circle-play:before{content:""}.fa-play-circle:before{content:""}.fa-tablets:before{content:""}.fa-ethernet:before{content:""}.fa-euro-sign:before{content:""}.fa-eur:before{content:""}.fa-euro:before{content:""}.fa-chair:before{content:""}.fa-circle-check:before{content:""}.fa-check-circle:before{content:""}.fa-circle-stop:before{content:""}.fa-stop-circle:before{content:""}.fa-compass-drafting:before{content:""}.fa-drafting-compass:before{content:""}.fa-plate-wheat:before{content:""}.fa-icicles:before{content:""}.fa-person-shelter:before{content:""}.fa-neuter:before{content:""}.fa-id-badge:before{content:""}.fa-marker:before{content:""}.fa-face-laugh-beam:before{content:""}.fa-laugh-beam:before{content:""}.fa-helicopter-symbol:before{content:""}.fa-universal-access:before{content:""}.fa-circle-chevron-up:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-lari-sign:before{content:""}.fa-volcano:before{content:""}.fa-person-walking-dashed-line-arrow-right:before{content:""}.fa-sterling-sign:before{content:""}.fa-gbp:before{content:""}.fa-pound-sign:before{content:""}.fa-viruses:before{content:""}.fa-square-person-confined:before{content:""}.fa-user-tie:before{content:""}.fa-arrow-down-long:before{content:""}.fa-long-arrow-down:before{content:""}.fa-tent-arrow-down-to-line:before{content:""}.fa-certificate:before{content:""}.fa-reply-all:before{content:""}.fa-mail-reply-all:before{content:""}.fa-suitcase:before{content:""}.fa-person-skating:before{content:""}.fa-skating:before{content:""}.fa-filter-circle-dollar:before{content:""}.fa-funnel-dollar:before{content:""}.fa-camera-retro:before{content:""}.fa-circle-arrow-down:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-file-import:before{content:""}.fa-arrow-right-to-file:before{content:""}.fa-square-arrow-up-right:before{content:""}.fa-external-link-square:before{content:""}.fa-box-open:before{content:""}.fa-scroll:before{content:""}.fa-spa:before{content:""}.fa-location-pin-lock:before{content:""}.fa-pause:before{content:""}.fa-hill-avalanche:before{content:""}.fa-temperature-empty:before{content:""}.fa-temperature-0:before{content:""}.fa-thermometer-0:before{content:""}.fa-thermometer-empty:before{content:""}.fa-bomb:before{content:""}.fa-registered:before{content:""}.fa-address-card:before{content:""}.fa-contact-card:before{content:""}.fa-vcard:before{content:""}.fa-scale-unbalanced-flip:before{content:""}.fa-balance-scale-right:before{content:""}.fa-subscript:before{content:""}.fa-diamond-turn-right:before{content:""}.fa-directions:before{content:""}.fa-burst:before{content:""}.fa-house-laptop:before{content:""}.fa-laptop-house:before{content:""}.fa-face-tired:before{content:""}.fa-tired:before{content:""}.fa-money-bills:before{content:""}.fa-smog:before{content:""}.fa-crutch:before{content:""}.fa-cloud-arrow-up:before{content:""}.fa-cloud-upload:before{content:""}.fa-cloud-upload-alt:before{content:""}.fa-palette:before{content:""}.fa-arrows-turn-right:before{content:""}.fa-vest:before{content:""}.fa-ferry:before{content:""}.fa-arrows-down-to-people:before{content:""}.fa-seedling:before{content:""}.fa-sprout:before{content:""}.fa-left-right:before{content:""}.fa-arrows-alt-h:before{content:""}.fa-boxes-packing:before{content:""}.fa-circle-arrow-left:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-group-arrows-rotate:before{content:""}.fa-bowl-food:before{content:""}.fa-candy-cane:before{content:""}.fa-arrow-down-wide-short:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-down:before{content:""}.fa-cloud-bolt:before{content:""}.fa-thunderstorm:before{content:""}.fa-text-slash:before{content:""}.fa-remove-format:before{content:""}.fa-face-smile-wink:before{content:""}.fa-smile-wink:before{content:""}.fa-file-word:before{content:""}.fa-file-powerpoint:before{content:""}.fa-arrows-left-right:before{content:""}.fa-arrows-h:before{content:""}.fa-house-lock:before{content:""}.fa-cloud-arrow-down:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-download-alt:before{content:""}.fa-children:before{content:""}.fa-chalkboard:before{content:""}.fa-blackboard:before{content:""}.fa-user-large-slash:before{content:""}.fa-user-alt-slash:before{content:""}.fa-envelope-open:before{content:""}.fa-handshake-simple-slash:before{content:""}.fa-handshake-alt-slash:before{content:""}.fa-mattress-pillow:before{content:""}.fa-guarani-sign:before{content:""}.fa-arrows-rotate:before{content:""}.fa-refresh:before{content:""}.fa-sync:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-cruzeiro-sign:before{content:""}.fa-greater-than-equal:before{content:""}.fa-shield-halved:before{content:""}.fa-shield-alt:before{content:""}.fa-book-atlas:before{content:""}.fa-atlas:before{content:""}.fa-virus:before{content:""}.fa-envelope-circle-check:before{content:""}.fa-layer-group:before{content:""}.fa-arrows-to-dot:before{content:""}.fa-archway:before{content:""}.fa-heart-circle-check:before{content:""}.fa-house-chimney-crack:before{content:""}.fa-house-damage:before{content:""}.fa-file-zipper:before{content:""}.fa-file-archive:before{content:""}.fa-square:before{content:""}.fa-martini-glass-empty:before{content:""}.fa-glass-martini:before{content:""}.fa-couch:before{content:""}.fa-cedi-sign:before{content:""}.fa-italic:before{content:""}.fa-table-cells-column-lock:before{content:""}.fa-church:before{content:""}.fa-comments-dollar:before{content:""}.fa-democrat:before{content:""}.fa-z:before{content:"Z"}.fa-person-skiing:before{content:""}.fa-skiing:before{content:""}.fa-road-lock:before{content:""}.fa-a:before{content:"A"}.fa-temperature-arrow-down:before{content:""}.fa-temperature-down:before{content:""}.fa-feather-pointed:before{content:""}.fa-feather-alt:before{content:""}.fa-p:before{content:"P"}.fa-snowflake:before{content:""}.fa-newspaper:before{content:""}.fa-rectangle-ad:before{content:""}.fa-ad:before{content:""}.fa-circle-arrow-right:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-filter-circle-xmark:before{content:""}.fa-locust:before{content:""}.fa-sort:before{content:""}.fa-unsorted:before{content:""}.fa-list-ol:before{content:""}.fa-list-1-2:before{content:""}.fa-list-numeric:before{content:""}.fa-person-dress-burst:before{content:""}.fa-money-check-dollar:before{content:""}.fa-money-check-alt:before{content:""}.fa-vector-square:before{content:""}.fa-bread-slice:before{content:""}.fa-language:before{content:""}.fa-face-kiss-wink-heart:before{content:""}.fa-kiss-wink-heart:before{content:""}.fa-filter:before{content:""}.fa-question:before{content:"?"}.fa-file-signature:before{content:""}.fa-up-down-left-right:before{content:""}.fa-arrows-alt:before{content:""}.fa-house-chimney-user:before{content:""}.fa-hand-holding-heart:before{content:""}.fa-puzzle-piece:before{content:""}.fa-money-check:before{content:""}.fa-star-half-stroke:before{content:""}.fa-star-half-alt:before{content:""}.fa-code:before{content:""}.fa-whiskey-glass:before{content:""}.fa-glass-whiskey:before{content:""}.fa-building-circle-exclamation:before{content:""}.fa-magnifying-glass-chart:before{content:""}.fa-arrow-up-right-from-square:before{content:""}.fa-external-link:before{content:""}.fa-cubes-stacked:before{content:""}.fa-won-sign:before{content:""}.fa-krw:before{content:""}.fa-won:before{content:""}.fa-virus-covid:before{content:""}.fa-austral-sign:before{content:""}.fa-f:before{content:"F"}.fa-leaf:before{content:""}.fa-road:before{content:""}.fa-taxi:before{content:""}.fa-cab:before{content:""}.fa-person-circle-plus:before{content:""}.fa-chart-pie:before{content:""}.fa-pie-chart:before{content:""}.fa-bolt-lightning:before{content:""}.fa-sack-xmark:before{content:""}.fa-file-excel:before{content:""}.fa-file-contract:before{content:""}.fa-fish-fins:before{content:""}.fa-building-flag:before{content:""}.fa-face-grin-beam:before{content:""}.fa-grin-beam:before{content:""}.fa-object-ungroup:before{content:""}.fa-poop:before{content:""}.fa-location-pin:before{content:""}.fa-map-marker:before{content:""}.fa-kaaba:before{content:""}.fa-toilet-paper:before{content:""}.fa-helmet-safety:before{content:""}.fa-hard-hat:before{content:""}.fa-hat-hard:before{content:""}.fa-eject:before{content:""}.fa-circle-right:before{content:""}.fa-arrow-alt-circle-right:before{content:""}.fa-plane-circle-check:before{content:""}.fa-face-rolling-eyes:before{content:""}.fa-meh-rolling-eyes:before{content:""}.fa-object-group:before{content:""}.fa-chart-line:before{content:""}.fa-line-chart:before{content:""}.fa-mask-ventilator:before{content:""}.fa-arrow-right:before{content:""}.fa-signs-post:before{content:""}.fa-map-signs:before{content:""}.fa-cash-register:before{content:""}.fa-person-circle-question:before{content:""}.fa-h:before{content:"H"}.fa-tarp:before{content:""}.fa-screwdriver-wrench:before{content:""}.fa-tools:before{content:""}.fa-arrows-to-eye:before{content:""}.fa-plug-circle-bolt:before{content:""}.fa-heart:before{content:""}.fa-mars-and-venus:before{content:""}.fa-house-user:before{content:""}.fa-home-user:before{content:""}.fa-dumpster-fire:before{content:""}.fa-house-crack:before{content:""}.fa-martini-glass-citrus:before{content:""}.fa-cocktail:before{content:""}.fa-face-surprise:before{content:""}.fa-surprise:before{content:""}.fa-bottle-water:before{content:""}.fa-circle-pause:before{content:""}.fa-pause-circle:before{content:""}.fa-toilet-paper-slash:before{content:""}.fa-apple-whole:before{content:""}.fa-apple-alt:before{content:""}.fa-kitchen-set:before{content:""}.fa-r:before{content:"R"}.fa-temperature-quarter:before{content:""}.fa-temperature-1:before{content:""}.fa-thermometer-1:before{content:""}.fa-thermometer-quarter:before{content:""}.fa-cube:before{content:""}.fa-bitcoin-sign:before{content:""}.fa-shield-dog:before{content:""}.fa-solar-panel:before{content:""}.fa-lock-open:before{content:""}.fa-elevator:before{content:""}.fa-money-bill-transfer:before{content:""}.fa-money-bill-trend-up:before{content:""}.fa-house-flood-water-circle-arrow-right:before{content:""}.fa-square-poll-horizontal:before{content:""}.fa-poll-h:before{content:""}.fa-circle:before{content:""}.fa-backward-fast:before{content:""}.fa-fast-backward:before{content:""}.fa-recycle:before{content:""}.fa-user-astronaut:before{content:""}.fa-plane-slash:before{content:""}.fa-trademark:before{content:""}.fa-basketball:before{content:""}.fa-basketball-ball:before{content:""}.fa-satellite-dish:before{content:""}.fa-circle-up:before{content:""}.fa-arrow-alt-circle-up:before{content:""}.fa-mobile-screen-button:before{content:""}.fa-mobile-alt:before{content:""}.fa-volume-high:before{content:""}.fa-volume-up:before{content:""}.fa-users-rays:before{content:""}.fa-wallet:before{content:""}.fa-clipboard-check:before{content:""}.fa-file-audio:before{content:""}.fa-burger:before{content:""}.fa-hamburger:before{content:""}.fa-wrench:before{content:""}.fa-bugs:before{content:""}.fa-rupee-sign:before{content:""}.fa-rupee:before{content:""}.fa-file-image:before{content:""}.fa-circle-question:before{content:""}.fa-question-circle:before{content:""}.fa-plane-departure:before{content:""}.fa-handshake-slash:before{content:""}.fa-book-bookmark:before{content:""}.fa-code-branch:before{content:""}.fa-hat-cowboy:before{content:""}.fa-bridge:before{content:""}.fa-phone-flip:before{content:""}.fa-phone-alt:before{content:""}.fa-truck-front:before{content:""}.fa-cat:before{content:""}.fa-anchor-circle-exclamation:before{content:""}.fa-truck-field:before{content:""}.fa-route:before{content:""}.fa-clipboard-question:before{content:""}.fa-panorama:before{content:""}.fa-comment-medical:before{content:""}.fa-teeth-open:before{content:""}.fa-file-circle-minus:before{content:""}.fa-tags:before{content:""}.fa-wine-glass:before{content:""}.fa-forward-fast:before{content:""}.fa-fast-forward:before{content:""}.fa-face-meh-blank:before{content:""}.fa-meh-blank:before{content:""}.fa-square-parking:before{content:""}.fa-parking:before{content:""}.fa-house-signal:before{content:""}.fa-bars-progress:before{content:""}.fa-tasks-alt:before{content:""}.fa-faucet-drip:before{content:""}.fa-cart-flatbed:before{content:""}.fa-dolly-flatbed:before{content:""}.fa-ban-smoking:before{content:""}.fa-smoking-ban:before{content:""}.fa-terminal:before{content:""}.fa-mobile-button:before{content:""}.fa-house-medical-flag:before{content:""}.fa-basket-shopping:before{content:""}.fa-shopping-basket:before{content:""}.fa-tape:before{content:""}.fa-bus-simple:before{content:""}.fa-bus-alt:before{content:""}.fa-eye:before{content:""}.fa-face-sad-cry:before{content:""}.fa-sad-cry:before{content:""}.fa-audio-description:before{content:""}.fa-person-military-to-person:before{content:""}.fa-file-shield:before{content:""}.fa-user-slash:before{content:""}.fa-pen:before{content:""}.fa-tower-observation:before{content:""}.fa-file-code:before{content:""}.fa-signal:before{content:""}.fa-signal-5:before{content:""}.fa-signal-perfect:before{content:""}.fa-bus:before{content:""}.fa-heart-circle-xmark:before{content:""}.fa-house-chimney:before{content:""}.fa-home-lg:before{content:""}.fa-window-maximize:before{content:""}.fa-face-frown:before{content:""}.fa-frown:before{content:""}.fa-prescription:before{content:""}.fa-shop:before{content:""}.fa-store-alt:before{content:""}.fa-floppy-disk:before{content:""}.fa-save:before{content:""}.fa-vihara:before{content:""}.fa-scale-unbalanced:before{content:""}.fa-balance-scale-left:before{content:""}.fa-sort-up:before{content:""}.fa-sort-asc:before{content:""}.fa-comment-dots:before{content:""}.fa-commenting:before{content:""}.fa-plant-wilt:before{content:""}.fa-diamond:before{content:""}.fa-face-grin-squint:before{content:""}.fa-grin-squint:before{content:""}.fa-hand-holding-dollar:before{content:""}.fa-hand-holding-usd:before{content:""}.fa-bacterium:before{content:""}.fa-hand-pointer:before{content:""}.fa-drum-steelpan:before{content:""}.fa-hand-scissors:before{content:""}.fa-hands-praying:before{content:""}.fa-praying-hands:before{content:""}.fa-arrow-rotate-right:before{content:""}.fa-arrow-right-rotate:before{content:""}.fa-arrow-rotate-forward:before{content:""}.fa-redo:before{content:""}.fa-biohazard:before{content:""}.fa-location-crosshairs:before{content:""}.fa-location:before{content:""}.fa-mars-double:before{content:""}.fa-child-dress:before{content:""}.fa-users-between-lines:before{content:""}.fa-lungs-virus:before{content:""}.fa-face-grin-tears:before{content:""}.fa-grin-tears:before{content:""}.fa-phone:before{content:""}.fa-calendar-xmark:before{content:""}.fa-calendar-times:before{content:""}.fa-child-reaching:before{content:""}.fa-head-side-virus:before{content:""}.fa-user-gear:before{content:""}.fa-user-cog:before{content:""}.fa-arrow-up-1-9:before{content:""}.fa-sort-numeric-up:before{content:""}.fa-door-closed:before{content:""}.fa-shield-virus:before{content:""}.fa-dice-six:before{content:""}.fa-mosquito-net:before{content:""}.fa-bridge-water:before{content:""}.fa-person-booth:before{content:""}.fa-text-width:before{content:""}.fa-hat-wizard:before{content:""}.fa-pen-fancy:before{content:""}.fa-person-digging:before{content:""}.fa-digging:before{content:""}.fa-trash:before{content:""}.fa-gauge-simple:before{content:""}.fa-gauge-simple-med:before{content:""}.fa-tachometer-average:before{content:""}.fa-book-medical:before{content:""}.fa-poo:before{content:""}.fa-quote-right:before{content:""}.fa-quote-right-alt:before{content:""}.fa-shirt:before{content:""}.fa-t-shirt:before{content:""}.fa-tshirt:before{content:""}.fa-cubes:before{content:""}.fa-divide:before{content:""}.fa-tenge-sign:before{content:""}.fa-tenge:before{content:""}.fa-headphones:before{content:""}.fa-hands-holding:before{content:""}.fa-hands-clapping:before{content:""}.fa-republican:before{content:""}.fa-arrow-left:before{content:""}.fa-person-circle-xmark:before{content:""}.fa-ruler:before{content:""}.fa-align-left:before{content:""}.fa-dice-d6:before{content:""}.fa-restroom:before{content:""}.fa-j:before{content:"J"}.fa-users-viewfinder:before{content:""}.fa-file-video:before{content:""}.fa-up-right-from-square:before{content:""}.fa-external-link-alt:before{content:""}.fa-table-cells:before{content:""}.fa-th:before{content:""}.fa-file-pdf:before{content:""}.fa-book-bible:before{content:""}.fa-bible:before{content:""}.fa-o:before{content:"O"}.fa-suitcase-medical:before{content:""}.fa-medkit:before{content:""}.fa-user-secret:before{content:""}.fa-otter:before{content:""}.fa-person-dress:before{content:""}.fa-female:before{content:""}.fa-comment-dollar:before{content:""}.fa-business-time:before{content:""}.fa-briefcase-clock:before{content:""}.fa-table-cells-large:before{content:""}.fa-th-large:before{content:""}.fa-book-tanakh:before{content:""}.fa-tanakh:before{content:""}.fa-phone-volume:before{content:""}.fa-volume-control-phone:before{content:""}.fa-hat-cowboy-side:before{content:""}.fa-clipboard-user:before{content:""}.fa-child:before{content:""}.fa-lira-sign:before{content:""}.fa-satellite:before{content:""}.fa-plane-lock:before{content:""}.fa-tag:before{content:""}.fa-comment:before{content:""}.fa-cake-candles:before{content:""}.fa-birthday-cake:before{content:""}.fa-cake:before{content:""}.fa-envelope:before{content:""}.fa-angles-up:before{content:""}.fa-angle-double-up:before{content:""}.fa-paperclip:before{content:""}.fa-arrow-right-to-city:before{content:""}.fa-ribbon:before{content:""}.fa-lungs:before{content:""}.fa-arrow-up-9-1:before{content:""}.fa-sort-numeric-up-alt:before{content:""}.fa-litecoin-sign:before{content:""}.fa-border-none:before{content:""}.fa-circle-nodes:before{content:""}.fa-parachute-box:before{content:""}.fa-indent:before{content:""}.fa-truck-field-un:before{content:""}.fa-hourglass:before{content:""}.fa-hourglass-empty:before{content:""}.fa-mountain:before{content:""}.fa-user-doctor:before{content:""}.fa-user-md:before{content:""}.fa-circle-info:before{content:""}.fa-info-circle:before{content:""}.fa-cloud-meatball:before{content:""}.fa-camera:before{content:""}.fa-camera-alt:before{content:""}.fa-square-virus:before{content:""}.fa-meteor:before{content:""}.fa-car-on:before{content:""}.fa-sleigh:before{content:""}.fa-arrow-down-1-9:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-down:before{content:""}.fa-hand-holding-droplet:before{content:""}.fa-hand-holding-water:before{content:""}.fa-water:before{content:""}.fa-calendar-check:before{content:""}.fa-braille:before{content:""}.fa-prescription-bottle-medical:before{content:""}.fa-prescription-bottle-alt:before{content:""}.fa-landmark:before{content:""}.fa-truck:before{content:""}.fa-crosshairs:before{content:""}.fa-person-cane:before{content:""}.fa-tent:before{content:""}.fa-vest-patches:before{content:""}.fa-check-double:before{content:""}.fa-arrow-down-a-z:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-down:before{content:""}.fa-money-bill-wheat:before{content:""}.fa-cookie:before{content:""}.fa-arrow-rotate-left:before{content:""}.fa-arrow-left-rotate:before{content:""}.fa-arrow-rotate-back:before{content:""}.fa-arrow-rotate-backward:before{content:""}.fa-undo:before{content:""}.fa-hard-drive:before{content:""}.fa-hdd:before{content:""}.fa-face-grin-squint-tears:before{content:""}.fa-grin-squint-tears:before{content:""}.fa-dumbbell:before{content:""}.fa-rectangle-list:before{content:""}.fa-list-alt:before{content:""}.fa-tarp-droplet:before{content:""}.fa-house-medical-circle-check:before{content:""}.fa-person-skiing-nordic:before{content:""}.fa-skiing-nordic:before{content:""}.fa-calendar-plus:before{content:""}.fa-plane-arrival:before{content:""}.fa-circle-left:before{content:""}.fa-arrow-alt-circle-left:before{content:""}.fa-train-subway:before{content:""}.fa-subway:before{content:""}.fa-chart-gantt:before{content:""}.fa-indian-rupee-sign:before{content:""}.fa-indian-rupee:before{content:""}.fa-inr:before{content:""}.fa-crop-simple:before{content:""}.fa-crop-alt:before{content:""}.fa-money-bill-1:before{content:""}.fa-money-bill-alt:before{content:""}.fa-left-long:before{content:""}.fa-long-arrow-alt-left:before{content:""}.fa-dna:before{content:""}.fa-virus-slash:before{content:""}.fa-minus:before{content:""}.fa-subtract:before{content:""}.fa-chess:before{content:""}.fa-arrow-left-long:before{content:""}.fa-long-arrow-left:before{content:""}.fa-plug-circle-check:before{content:""}.fa-street-view:before{content:""}.fa-franc-sign:before{content:""}.fa-volume-off:before{content:""}.fa-hands-asl-interpreting:before{content:""}.fa-american-sign-language-interpreting:before{content:""}.fa-asl-interpreting:before{content:""}.fa-hands-american-sign-language-interpreting:before{content:""}.fa-gear:before{content:""}.fa-cog:before{content:""}.fa-droplet-slash:before{content:""}.fa-tint-slash:before{content:""}.fa-mosque:before{content:""}.fa-mosquito:before{content:""}.fa-star-of-david:before{content:""}.fa-person-military-rifle:before{content:""}.fa-cart-shopping:before{content:""}.fa-shopping-cart:before{content:""}.fa-vials:before{content:""}.fa-plug-circle-plus:before{content:""}.fa-place-of-worship:before{content:""}.fa-grip-vertical:before{content:""}.fa-arrow-turn-up:before{content:""}.fa-level-up:before{content:""}.fa-u:before{content:"U"}.fa-square-root-variable:before{content:""}.fa-square-root-alt:before{content:""}.fa-clock:before{content:""}.fa-clock-four:before{content:""}.fa-backward-step:before{content:""}.fa-step-backward:before{content:""}.fa-pallet:before{content:""}.fa-faucet:before{content:""}.fa-baseball-bat-ball:before{content:""}.fa-s:before{content:"S"}.fa-timeline:before{content:""}.fa-keyboard:before{content:""}.fa-caret-down:before{content:""}.fa-house-chimney-medical:before{content:""}.fa-clinic-medical:before{content:""}.fa-temperature-three-quarters:before{content:""}.fa-temperature-3:before{content:""}.fa-thermometer-3:before{content:""}.fa-thermometer-three-quarters:before{content:""}.fa-mobile-screen:before{content:""}.fa-mobile-android-alt:before{content:""}.fa-plane-up:before{content:""}.fa-piggy-bank:before{content:""}.fa-battery-half:before{content:""}.fa-battery-3:before{content:""}.fa-mountain-city:before{content:""}.fa-coins:before{content:""}.fa-khanda:before{content:""}.fa-sliders:before{content:""}.fa-sliders-h:before{content:""}.fa-folder-tree:before{content:""}.fa-network-wired:before{content:""}.fa-map-pin:before{content:""}.fa-hamsa:before{content:""}.fa-cent-sign:before{content:""}.fa-flask:before{content:""}.fa-person-pregnant:before{content:""}.fa-wand-sparkles:before{content:""}.fa-ellipsis-vertical:before{content:""}.fa-ellipsis-v:before{content:""}.fa-ticket:before{content:""}.fa-power-off:before{content:""}.fa-right-long:before{content:""}.fa-long-arrow-alt-right:before{content:""}.fa-flag-usa:before{content:""}.fa-laptop-file:before{content:""}.fa-tty:before{content:""}.fa-teletype:before{content:""}.fa-diagram-next:before{content:""}.fa-person-rifle:before{content:""}.fa-house-medical-circle-exclamation:before{content:""}.fa-closed-captioning:before{content:""}.fa-person-hiking:before{content:""}.fa-hiking:before{content:""}.fa-venus-double:before{content:""}.fa-images:before{content:""}.fa-calculator:before{content:""}.fa-people-pulling:before{content:""}.fa-n:before{content:"N"}.fa-cable-car:before{content:""}.fa-tram:before{content:""}.fa-cloud-rain:before{content:""}.fa-building-circle-xmark:before{content:""}.fa-ship:before{content:""}.fa-arrows-down-to-line:before{content:""}.fa-download:before{content:""}.fa-face-grin:before{content:""}.fa-grin:before{content:""}.fa-delete-left:before{content:""}.fa-backspace:before{content:""}.fa-eye-dropper:before{content:""}.fa-eye-dropper-empty:before{content:""}.fa-eyedropper:before{content:""}.fa-file-circle-check:before{content:""}.fa-forward:before{content:""}.fa-mobile:before{content:""}.fa-mobile-android:before{content:""}.fa-mobile-phone:before{content:""}.fa-face-meh:before{content:""}.fa-meh:before{content:""}.fa-align-center:before{content:""}.fa-book-skull:before{content:""}.fa-book-dead:before{content:""}.fa-id-card:before{content:""}.fa-drivers-license:before{content:""}.fa-outdent:before{content:""}.fa-dedent:before{content:""}.fa-heart-circle-exclamation:before{content:""}.fa-house:before{content:""}.fa-home:before{content:""}.fa-home-alt:before{content:""}.fa-home-lg-alt:before{content:""}.fa-calendar-week:before{content:""}.fa-laptop-medical:before{content:""}.fa-b:before{content:"B"}.fa-file-medical:before{content:""}.fa-dice-one:before{content:""}.fa-kiwi-bird:before{content:""}.fa-arrow-right-arrow-left:before{content:""}.fa-exchange:before{content:""}.fa-rotate-right:before{content:""}.fa-redo-alt:before{content:""}.fa-rotate-forward:before{content:""}.fa-utensils:before{content:""}.fa-cutlery:before{content:""}.fa-arrow-up-wide-short:before{content:""}.fa-sort-amount-up:before{content:""}.fa-mill-sign:before{content:""}.fa-bowl-rice:before{content:""}.fa-skull:before{content:""}.fa-tower-broadcast:before{content:""}.fa-broadcast-tower:before{content:""}.fa-truck-pickup:before{content:""}.fa-up-long:before{content:""}.fa-long-arrow-alt-up:before{content:""}.fa-stop:before{content:""}.fa-code-merge:before{content:""}.fa-upload:before{content:""}.fa-hurricane:before{content:""}.fa-mound:before{content:""}.fa-toilet-portable:before{content:""}.fa-compact-disc:before{content:""}.fa-file-arrow-down:before{content:""}.fa-file-download:before{content:""}.fa-caravan:before{content:""}.fa-shield-cat:before{content:""}.fa-bolt:before{content:""}.fa-zap:before{content:""}.fa-glass-water:before{content:""}.fa-oil-well:before{content:""}.fa-vault:before{content:""}.fa-mars:before{content:""}.fa-toilet:before{content:""}.fa-plane-circle-xmark:before{content:""}.fa-yen-sign:before{content:""}.fa-cny:before{content:""}.fa-jpy:before{content:""}.fa-rmb:before{content:""}.fa-yen:before{content:""}.fa-ruble-sign:before{content:""}.fa-rouble:before{content:""}.fa-rub:before{content:""}.fa-ruble:before{content:""}.fa-sun:before{content:""}.fa-guitar:before{content:""}.fa-face-laugh-wink:before{content:""}.fa-laugh-wink:before{content:""}.fa-horse-head:before{content:""}.fa-bore-hole:before{content:""}.fa-industry:before{content:""}.fa-circle-down:before{content:""}.fa-arrow-alt-circle-down:before{content:""}.fa-arrows-turn-to-dots:before{content:""}.fa-florin-sign:before{content:""}.fa-arrow-down-short-wide:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-amount-down-alt:before{content:""}.fa-less-than:before{content:"<"}.fa-angle-down:before{content:""}.fa-car-tunnel:before{content:""}.fa-head-side-cough:before{content:""}.fa-grip-lines:before{content:""}.fa-thumbs-down:before{content:""}.fa-user-lock:before{content:""}.fa-arrow-right-long:before{content:""}.fa-long-arrow-right:before{content:""}.fa-anchor-circle-xmark:before{content:""}.fa-ellipsis:before{content:""}.fa-ellipsis-h:before{content:""}.fa-chess-pawn:before{content:""}.fa-kit-medical:before{content:""}.fa-first-aid:before{content:""}.fa-person-through-window:before{content:""}.fa-toolbox:before{content:""}.fa-hands-holding-circle:before{content:""}.fa-bug:before{content:""}.fa-credit-card:before{content:""}.fa-credit-card-alt:before{content:""}.fa-car:before{content:""}.fa-automobile:before{content:""}.fa-hand-holding-hand:before{content:""}.fa-book-open-reader:before{content:""}.fa-book-reader:before{content:""}.fa-mountain-sun:before{content:""}.fa-arrows-left-right-to-line:before{content:""}.fa-dice-d20:before{content:""}.fa-truck-droplet:before{content:""}.fa-file-circle-xmark:before{content:""}.fa-temperature-arrow-up:before{content:""}.fa-temperature-up:before{content:""}.fa-medal:before{content:""}.fa-bed:before{content:""}.fa-square-h:before{content:""}.fa-h-square:before{content:""}.fa-podcast:before{content:""}.fa-temperature-full:before{content:""}.fa-temperature-4:before{content:""}.fa-thermometer-4:before{content:""}.fa-thermometer-full:before{content:""}.fa-bell:before{content:""}.fa-superscript:before{content:""}.fa-plug-circle-xmark:before{content:""}.fa-star-of-life:before{content:""}.fa-phone-slash:before{content:""}.fa-paint-roller:before{content:""}.fa-handshake-angle:before{content:""}.fa-hands-helping:before{content:""}.fa-location-dot:before{content:""}.fa-map-marker-alt:before{content:""}.fa-file:before{content:""}.fa-greater-than:before{content:">"}.fa-person-swimming:before{content:""}.fa-swimmer:before{content:""}.fa-arrow-down:before{content:""}.fa-droplet:before{content:""}.fa-tint:before{content:""}.fa-eraser:before{content:""}.fa-earth-americas:before{content:""}.fa-earth:before{content:""}.fa-earth-america:before{content:""}.fa-globe-americas:before{content:""}.fa-person-burst:before{content:""}.fa-dove:before{content:""}.fa-battery-empty:before{content:""}.fa-battery-0:before{content:""}.fa-socks:before{content:""}.fa-inbox:before{content:""}.fa-section:before{content:""}.fa-gauge-high:before{content:""}.fa-tachometer-alt:before{content:""}.fa-tachometer-alt-fast:before{content:""}.fa-envelope-open-text:before{content:""}.fa-hospital:before{content:""}.fa-hospital-alt:before{content:""}.fa-hospital-wide:before{content:""}.fa-wine-bottle:before{content:""}.fa-chess-rook:before{content:""}.fa-bars-staggered:before{content:""}.fa-reorder:before{content:""}.fa-stream:before{content:""}.fa-dharmachakra:before{content:""}.fa-hotdog:before{content:""}.fa-person-walking-with-cane:before{content:""}.fa-blind:before{content:""}.fa-drum:before{content:""}.fa-ice-cream:before{content:""}.fa-heart-circle-bolt:before{content:""}.fa-fax:before{content:""}.fa-paragraph:before{content:""}.fa-check-to-slot:before{content:""}.fa-vote-yea:before{content:""}.fa-star-half:before{content:""}.fa-boxes-stacked:before{content:""}.fa-boxes:before{content:""}.fa-boxes-alt:before{content:""}.fa-link:before{content:""}.fa-chain:before{content:""}.fa-ear-listen:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-tree-city:before{content:""}.fa-play:before{content:""}.fa-font:before{content:""}.fa-table-cells-row-lock:before{content:""}.fa-rupiah-sign:before{content:""}.fa-magnifying-glass:before{content:""}.fa-search:before{content:""}.fa-table-tennis-paddle-ball:before{content:""}.fa-ping-pong-paddle-ball:before{content:""}.fa-table-tennis:before{content:""}.fa-person-dots-from-line:before{content:""}.fa-diagnoses:before{content:""}.fa-trash-can-arrow-up:before{content:""}.fa-trash-restore-alt:before{content:""}.fa-naira-sign:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-walkie-talkie:before{content:""}.fa-file-pen:before{content:""}.fa-file-edit:before{content:""}.fa-receipt:before{content:""}.fa-square-pen:before{content:""}.fa-pen-square:before{content:""}.fa-pencil-square:before{content:""}.fa-suitcase-rolling:before{content:""}.fa-person-circle-exclamation:before{content:""}.fa-chevron-down:before{content:""}.fa-battery-full:before{content:""}.fa-battery:before{content:""}.fa-battery-5:before{content:""}.fa-skull-crossbones:before{content:""}.fa-code-compare:before{content:""}.fa-list-ul:before{content:""}.fa-list-dots:before{content:""}.fa-school-lock:before{content:""}.fa-tower-cell:before{content:""}.fa-down-long:before{content:""}.fa-long-arrow-alt-down:before{content:""}.fa-ranking-star:before{content:""}.fa-chess-king:before{content:""}.fa-person-harassing:before{content:""}.fa-brazilian-real-sign:before{content:""}.fa-landmark-dome:before{content:""}.fa-landmark-alt:before{content:""}.fa-arrow-up:before{content:""}.fa-tv:before{content:""}.fa-television:before{content:""}.fa-tv-alt:before{content:""}.fa-shrimp:before{content:""}.fa-list-check:before{content:""}.fa-tasks:before{content:""}.fa-jug-detergent:before{content:""}.fa-circle-user:before{content:""}.fa-user-circle:before{content:""}.fa-user-shield:before{content:""}.fa-wind:before{content:""}.fa-car-burst:before{content:""}.fa-car-crash:before{content:""}.fa-y:before{content:"Y"}.fa-person-snowboarding:before{content:""}.fa-snowboarding:before{content:""}.fa-truck-fast:before{content:""}.fa-shipping-fast:before{content:""}.fa-fish:before{content:""}.fa-user-graduate:before{content:""}.fa-circle-half-stroke:before{content:""}.fa-adjust:before{content:""}.fa-clapperboard:before{content:""}.fa-circle-radiation:before{content:""}.fa-radiation-alt:before{content:""}.fa-baseball:before{content:""}.fa-baseball-ball:before{content:""}.fa-jet-fighter-up:before{content:""}.fa-diagram-project:before{content:""}.fa-project-diagram:before{content:""}.fa-copy:before{content:""}.fa-volume-xmark:before{content:""}.fa-volume-mute:before{content:""}.fa-volume-times:before{content:""}.fa-hand-sparkles:before{content:""}.fa-grip:before{content:""}.fa-grip-horizontal:before{content:""}.fa-share-from-square:before{content:""}.fa-share-square:before{content:""}.fa-child-combatant:before{content:""}.fa-child-rifle:before{content:""}.fa-gun:before{content:""}.fa-square-phone:before{content:""}.fa-phone-square:before{content:""}.fa-plus:before{content:"+"}.fa-add:before{content:"+"}.fa-expand:before{content:""}.fa-computer:before{content:""}.fa-xmark:before{content:""}.fa-close:before{content:""}.fa-multiply:before{content:""}.fa-remove:before{content:""}.fa-times:before{content:""}.fa-arrows-up-down-left-right:before{content:""}.fa-arrows:before{content:""}.fa-chalkboard-user:before{content:""}.fa-chalkboard-teacher:before{content:""}.fa-peso-sign:before{content:""}.fa-building-shield:before{content:""}.fa-baby:before{content:""}.fa-users-line:before{content:""}.fa-quote-left:before{content:""}.fa-quote-left-alt:before{content:""}.fa-tractor:before{content:""}.fa-trash-arrow-up:before{content:""}.fa-trash-restore:before{content:""}.fa-arrow-down-up-lock:before{content:""}.fa-lines-leaning:before{content:""}.fa-ruler-combined:before{content:""}.fa-copyright:before{content:""}.fa-equals:before{content:"="}.fa-blender:before{content:""}.fa-teeth:before{content:""}.fa-shekel-sign:before{content:""}.fa-ils:before{content:""}.fa-shekel:before{content:""}.fa-sheqel:before{content:""}.fa-sheqel-sign:before{content:""}.fa-map:before{content:""}.fa-rocket:before{content:""}.fa-photo-film:before{content:""}.fa-photo-video:before{content:""}.fa-folder-minus:before{content:""}.fa-store:before{content:""}.fa-arrow-trend-up:before{content:""}.fa-plug-circle-minus:before{content:""}.fa-sign-hanging:before{content:""}.fa-sign:before{content:""}.fa-bezier-curve:before{content:""}.fa-bell-slash:before{content:""}.fa-tablet:before{content:""}.fa-tablet-android:before{content:""}.fa-school-flag:before{content:""}.fa-fill:before{content:""}.fa-angle-up:before{content:""}.fa-drumstick-bite:before{content:""}.fa-holly-berry:before{content:""}.fa-chevron-left:before{content:""}.fa-bacteria:before{content:""}.fa-hand-lizard:before{content:""}.fa-notdef:before{content:""}.fa-disease:before{content:""}.fa-briefcase-medical:before{content:""}.fa-genderless:before{content:""}.fa-chevron-right:before{content:""}.fa-retweet:before{content:""}.fa-car-rear:before{content:""}.fa-car-alt:before{content:""}.fa-pump-soap:before{content:""}.fa-video-slash:before{content:""}.fa-battery-quarter:before{content:""}.fa-battery-2:before{content:""}.fa-radio:before{content:""}.fa-baby-carriage:before{content:""}.fa-carriage-baby:before{content:""}.fa-traffic-light:before{content:""}.fa-thermometer:before{content:""}.fa-vr-cardboard:before{content:""}.fa-hand-middle-finger:before{content:""}.fa-percent:before{content:"%"}.fa-percentage:before{content:"%"}.fa-truck-moving:before{content:""}.fa-glass-water-droplet:before{content:""}.fa-display:before{content:""}.fa-face-smile:before{content:""}.fa-smile:before{content:""}.fa-thumbtack:before{content:""}.fa-thumb-tack:before{content:""}.fa-trophy:before{content:""}.fa-person-praying:before{content:""}.fa-pray:before{content:""}.fa-hammer:before{content:""}.fa-hand-peace:before{content:""}.fa-rotate:before{content:""}.fa-sync-alt:before{content:""}.fa-spinner:before{content:""}.fa-robot:before{content:""}.fa-peace:before{content:""}.fa-gears:before{content:""}.fa-cogs:before{content:""}.fa-warehouse:before{content:""}.fa-arrow-up-right-dots:before{content:""}.fa-splotch:before{content:""}.fa-face-grin-hearts:before{content:""}.fa-grin-hearts:before{content:""}.fa-dice-four:before{content:""}.fa-sim-card:before{content:""}.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-mercury:before{content:""}.fa-arrow-turn-down:before{content:""}.fa-level-down:before{content:""}.fa-person-falling-burst:before{content:""}.fa-award:before{content:""}.fa-ticket-simple:before{content:""}.fa-ticket-alt:before{content:""}.fa-building:before{content:""}.fa-angles-left:before{content:""}.fa-angle-double-left:before{content:""}.fa-qrcode:before{content:""}.fa-clock-rotate-left:before{content:""}.fa-history:before{content:""}.fa-face-grin-beam-sweat:before{content:""}.fa-grin-beam-sweat:before{content:""}.fa-file-export:before{content:""}.fa-arrow-right-from-file:before{content:""}.fa-shield:before{content:""}.fa-shield-blank:before{content:""}.fa-arrow-up-short-wide:before{content:""}.fa-sort-amount-up-alt:before{content:""}.fa-house-medical:before{content:""}.fa-golf-ball-tee:before{content:""}.fa-golf-ball:before{content:""}.fa-circle-chevron-left:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-house-chimney-window:before{content:""}.fa-pen-nib:before{content:""}.fa-tent-arrow-turn-left:before{content:""}.fa-tents:before{content:""}.fa-wand-magic:before{content:""}.fa-magic:before{content:""}.fa-dog:before{content:""}.fa-carrot:before{content:""}.fa-moon:before{content:""}.fa-wine-glass-empty:before{content:""}.fa-wine-glass-alt:before{content:""}.fa-cheese:before{content:""}.fa-yin-yang:before{content:""}.fa-music:before{content:""}.fa-code-commit:before{content:""}.fa-temperature-low:before{content:""}.fa-person-biking:before{content:""}.fa-biking:before{content:""}.fa-broom:before{content:""}.fa-shield-heart:before{content:""}.fa-gopuram:before{content:""}.fa-earth-oceania:before{content:""}.fa-globe-oceania:before{content:""}.fa-square-xmark:before{content:""}.fa-times-square:before{content:""}.fa-xmark-square:before{content:""}.fa-hashtag:before{content:"#"}.fa-up-right-and-down-left-from-center:before{content:""}.fa-expand-alt:before{content:""}.fa-oil-can:before{content:""}.fa-t:before{content:"T"}.fa-hippo:before{content:""}.fa-chart-column:before{content:""}.fa-infinity:before{content:""}.fa-vial-circle-check:before{content:""}.fa-person-arrow-down-to-line:before{content:""}.fa-voicemail:before{content:""}.fa-fan:before{content:""}.fa-person-walking-luggage:before{content:""}.fa-up-down:before{content:""}.fa-arrows-alt-v:before{content:""}.fa-cloud-moon-rain:before{content:""}.fa-calendar:before{content:""}.fa-trailer:before{content:""}.fa-bahai:before{content:""}.fa-haykal:before{content:""}.fa-sd-card:before{content:""}.fa-dragon:before{content:""}.fa-shoe-prints:before{content:""}.fa-circle-plus:before{content:""}.fa-plus-circle:before{content:""}.fa-face-grin-tongue-wink:before{content:""}.fa-grin-tongue-wink:before{content:""}.fa-hand-holding:before{content:""}.fa-plug-circle-exclamation:before{content:""}.fa-link-slash:before{content:""}.fa-chain-broken:before{content:""}.fa-chain-slash:before{content:""}.fa-unlink:before{content:""}.fa-clone:before{content:""}.fa-person-walking-arrow-loop-left:before{content:""}.fa-arrow-up-z-a:before{content:""}.fa-sort-alpha-up-alt:before{content:""}.fa-fire-flame-curved:before{content:""}.fa-fire-alt:before{content:""}.fa-tornado:before{content:""}.fa-file-circle-plus:before{content:""}.fa-book-quran:before{content:""}.fa-quran:before{content:""}.fa-anchor:before{content:""}.fa-border-all:before{content:""}.fa-face-angry:before{content:""}.fa-angry:before{content:""}.fa-cookie-bite:before{content:""}.fa-arrow-trend-down:before{content:""}.fa-rss:before{content:""}.fa-feed:before{content:""}.fa-draw-polygon:before{content:""}.fa-scale-balanced:before{content:""}.fa-balance-scale:before{content:""}.fa-gauge-simple-high:before{content:""}.fa-tachometer:before{content:""}.fa-tachometer-fast:before{content:""}.fa-shower:before{content:""}.fa-desktop:before{content:""}.fa-desktop-alt:before{content:""}.fa-m:before{content:"M"}.fa-table-list:before{content:""}.fa-th-list:before{content:""}.fa-comment-sms:before{content:""}.fa-sms:before{content:""}.fa-book:before{content:""}.fa-user-plus:before{content:""}.fa-check:before{content:""}.fa-battery-three-quarters:before{content:""}.fa-battery-4:before{content:""}.fa-house-circle-check:before{content:""}.fa-angle-left:before{content:""}.fa-diagram-successor:before{content:""}.fa-truck-arrow-right:before{content:""}.fa-arrows-split-up-and-left:before{content:""}.fa-hand-fist:before{content:""}.fa-fist-raised:before{content:""}.fa-cloud-moon:before{content:""}.fa-briefcase:before{content:""}.fa-person-falling:before{content:""}.fa-image-portrait:before{content:""}.fa-portrait:before{content:""}.fa-user-tag:before{content:""}.fa-rug:before{content:""}.fa-earth-europe:before{content:""}.fa-globe-europe:before{content:""}.fa-cart-flatbed-suitcase:before{content:""}.fa-luggage-cart:before{content:""}.fa-rectangle-xmark:before{content:""}.fa-rectangle-times:before{content:""}.fa-times-rectangle:before{content:""}.fa-window-close:before{content:""}.fa-baht-sign:before{content:""}.fa-book-open:before{content:""}.fa-book-journal-whills:before{content:""}.fa-journal-whills:before{content:""}.fa-handcuffs:before{content:""}.fa-triangle-exclamation:before{content:""}.fa-exclamation-triangle:before{content:""}.fa-warning:before{content:""}.fa-database:before{content:""}.fa-share:before{content:""}.fa-mail-forward:before{content:""}.fa-bottle-droplet:before{content:""}.fa-mask-face:before{content:""}.fa-hill-rockslide:before{content:""}.fa-right-left:before{content:""}.fa-exchange-alt:before{content:""}.fa-paper-plane:before{content:""}.fa-road-circle-exclamation:before{content:""}.fa-dungeon:before{content:""}.fa-align-right:before{content:""}.fa-money-bill-1-wave:before{content:""}.fa-money-bill-wave-alt:before{content:""}.fa-life-ring:before{content:""}.fa-hands:before{content:""}.fa-sign-language:before{content:""}.fa-signing:before{content:""}.fa-calendar-day:before{content:""}.fa-water-ladder:before{content:""}.fa-ladder-water:before{content:""}.fa-swimming-pool:before{content:""}.fa-arrows-up-down:before{content:""}.fa-arrows-v:before{content:""}.fa-face-grimace:before{content:""}.fa-grimace:before{content:""}.fa-wheelchair-move:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-turn-down:before{content:""}.fa-level-down-alt:before{content:""}.fa-person-walking-arrow-right:before{content:""}.fa-square-envelope:before{content:""}.fa-envelope-square:before{content:""}.fa-dice:before{content:""}.fa-bowling-ball:before{content:""}.fa-brain:before{content:""}.fa-bandage:before{content:""}.fa-band-aid:before{content:""}.fa-calendar-minus:before{content:""}.fa-circle-xmark:before{content:""}.fa-times-circle:before{content:""}.fa-xmark-circle:before{content:""}.fa-gifts:before{content:""}.fa-hotel:before{content:""}.fa-earth-asia:before{content:""}.fa-globe-asia:before{content:""}.fa-id-card-clip:before{content:""}.fa-id-card-alt:before{content:""}.fa-magnifying-glass-plus:before{content:""}.fa-search-plus:before{content:""}.fa-thumbs-up:before{content:""}.fa-user-clock:before{content:""}.fa-hand-dots:before{content:""}.fa-allergies:before{content:""}.fa-file-invoice:before{content:""}.fa-window-minimize:before{content:""}.fa-mug-saucer:before{content:""}.fa-coffee:before{content:""}.fa-brush:before{content:""}.fa-mask:before{content:""}.fa-magnifying-glass-minus:before{content:""}.fa-search-minus:before{content:""}.fa-ruler-vertical:before{content:""}.fa-user-large:before{content:""}.fa-user-alt:before{content:""}.fa-train-tram:before{content:""}.fa-user-nurse:before{content:""}.fa-syringe:before{content:""}.fa-cloud-sun:before{content:""}.fa-stopwatch-20:before{content:""}.fa-square-full:before{content:""}.fa-magnet:before{content:""}.fa-jar:before{content:""}.fa-note-sticky:before{content:""}.fa-sticky-note:before{content:""}.fa-bug-slash:before{content:""}.fa-arrow-up-from-water-pump:before{content:""}.fa-bone:before{content:""}.fa-user-injured:before{content:""}.fa-face-sad-tear:before{content:""}.fa-sad-tear:before{content:""}.fa-plane:before{content:""}.fa-tent-arrows-down:before{content:""}.fa-exclamation:before{content:"!"}.fa-arrows-spin:before{content:""}.fa-print:before{content:""}.fa-turkish-lira-sign:before{content:""}.fa-try:before{content:""}.fa-turkish-lira:before{content:""}.fa-dollar-sign:before{content:"$"}.fa-dollar:before{content:"$"}.fa-usd:before{content:"$"}.fa-x:before{content:"X"}.fa-magnifying-glass-dollar:before{content:""}.fa-search-dollar:before{content:""}.fa-users-gear:before{content:""}.fa-users-cog:before{content:""}.fa-person-military-pointing:before{content:""}.fa-building-columns:before{content:""}.fa-bank:before{content:""}.fa-institution:before{content:""}.fa-museum:before{content:""}.fa-university:before{content:""}.fa-umbrella:before{content:""}.fa-trowel:before{content:""}.fa-d:before{content:"D"}.fa-stapler:before{content:""}.fa-masks-theater:before{content:""}.fa-theater-masks:before{content:""}.fa-kip-sign:before{content:""}.fa-hand-point-left:before{content:""}.fa-handshake-simple:before{content:""}.fa-handshake-alt:before{content:""}.fa-jet-fighter:before{content:""}.fa-fighter-jet:before{content:""}.fa-square-share-nodes:before{content:""}.fa-share-alt-square:before{content:""}.fa-barcode:before{content:""}.fa-plus-minus:before{content:""}.fa-video:before{content:""}.fa-video-camera:before{content:""}.fa-graduation-cap:before{content:""}.fa-mortar-board:before{content:""}.fa-hand-holding-medical:before{content:""}.fa-person-circle-check:before{content:""}.fa-turn-up:before{content:""}.fa-level-up-alt:before{content:""}.sr-only,.fa-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.sr-only-focusable:not(:focus),.fa-sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:root,:host{--fa-style-family-brands: "Font Awesome 6 Brands";--fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}.fab,.fa-brands{font-weight:400}.fa-monero:before{content:""}.fa-hooli:before{content:""}.fa-yelp:before{content:""}.fa-cc-visa:before{content:""}.fa-lastfm:before{content:""}.fa-shopware:before{content:""}.fa-creative-commons-nc:before{content:""}.fa-aws:before{content:""}.fa-redhat:before{content:""}.fa-yoast:before{content:""}.fa-cloudflare:before{content:""}.fa-ups:before{content:""}.fa-pixiv:before{content:""}.fa-wpexplorer:before{content:""}.fa-dyalog:before{content:""}.fa-bity:before{content:""}.fa-stackpath:before{content:""}.fa-buysellads:before{content:""}.fa-first-order:before{content:""}.fa-modx:before{content:""}.fa-guilded:before{content:""}.fa-vnv:before{content:""}.fa-square-js:before{content:""}.fa-js-square:before{content:""}.fa-microsoft:before{content:""}.fa-qq:before{content:""}.fa-orcid:before{content:""}.fa-java:before{content:""}.fa-invision:before{content:""}.fa-creative-commons-pd-alt:before{content:""}.fa-centercode:before{content:""}.fa-glide-g:before{content:""}.fa-drupal:before{content:""}.fa-jxl:before{content:""}.fa-hire-a-helper:before{content:""}.fa-creative-commons-by:before{content:""}.fa-unity:before{content:""}.fa-whmcs:before{content:""}.fa-rocketchat:before{content:""}.fa-vk:before{content:""}.fa-untappd:before{content:""}.fa-mailchimp:before{content:""}.fa-css3-alt:before{content:""}.fa-square-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-vimeo-v:before{content:""}.fa-contao:before{content:""}.fa-square-font-awesome:before{content:""}.fa-deskpro:before{content:""}.fa-brave:before{content:""}.fa-sistrix:before{content:""}.fa-square-instagram:before{content:""}.fa-instagram-square:before{content:""}.fa-battle-net:before{content:""}.fa-the-red-yeti:before{content:""}.fa-square-hacker-news:before{content:""}.fa-hacker-news-square:before{content:""}.fa-edge:before{content:""}.fa-threads:before{content:""}.fa-napster:before{content:""}.fa-square-snapchat:before{content:""}.fa-snapchat-square:before{content:""}.fa-google-plus-g:before{content:""}.fa-artstation:before{content:""}.fa-markdown:before{content:""}.fa-sourcetree:before{content:""}.fa-google-plus:before{content:""}.fa-diaspora:before{content:""}.fa-foursquare:before{content:""}.fa-stack-overflow:before{content:""}.fa-github-alt:before{content:""}.fa-phoenix-squadron:before{content:""}.fa-pagelines:before{content:""}.fa-algolia:before{content:""}.fa-red-river:before{content:""}.fa-creative-commons-sa:before{content:""}.fa-safari:before{content:""}.fa-google:before{content:""}.fa-square-font-awesome-stroke:before{content:""}.fa-font-awesome-alt:before{content:""}.fa-atlassian:before{content:""}.fa-linkedin-in:before{content:""}.fa-digital-ocean:before{content:""}.fa-nimblr:before{content:""}.fa-chromecast:before{content:""}.fa-evernote:before{content:""}.fa-hacker-news:before{content:""}.fa-creative-commons-sampling:before{content:""}.fa-adversal:before{content:""}.fa-creative-commons:before{content:""}.fa-watchman-monitoring:before{content:""}.fa-fonticons:before{content:""}.fa-weixin:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-codepen:before{content:""}.fa-git-alt:before{content:""}.fa-lyft:before{content:""}.fa-rev:before{content:""}.fa-windows:before{content:""}.fa-wizards-of-the-coast:before{content:""}.fa-square-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-meetup:before{content:""}.fa-centos:before{content:""}.fa-adn:before{content:""}.fa-cloudsmith:before{content:""}.fa-opensuse:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-square-dribbble:before{content:""}.fa-dribbble-square:before{content:""}.fa-codiepie:before{content:""}.fa-node:before{content:""}.fa-mix:before{content:""}.fa-steam:before{content:""}.fa-cc-apple-pay:before{content:""}.fa-scribd:before{content:""}.fa-debian:before{content:""}.fa-openid:before{content:""}.fa-instalod:before{content:""}.fa-expeditedssl:before{content:""}.fa-sellcast:before{content:""}.fa-square-twitter:before{content:""}.fa-twitter-square:before{content:""}.fa-r-project:before{content:""}.fa-delicious:before{content:""}.fa-freebsd:before{content:""}.fa-vuejs:before{content:""}.fa-accusoft:before{content:""}.fa-ioxhost:before{content:""}.fa-fonticons-fi:before{content:""}.fa-app-store:before{content:""}.fa-cc-mastercard:before{content:""}.fa-itunes-note:before{content:""}.fa-golang:before{content:""}.fa-kickstarter:before{content:""}.fa-square-kickstarter:before{content:""}.fa-grav:before{content:""}.fa-weibo:before{content:""}.fa-uncharted:before{content:""}.fa-firstdraft:before{content:""}.fa-square-youtube:before{content:""}.fa-youtube-square:before{content:""}.fa-wikipedia-w:before{content:""}.fa-wpressr:before{content:""}.fa-rendact:before{content:""}.fa-angellist:before{content:""}.fa-galactic-republic:before{content:""}.fa-nfc-directional:before{content:""}.fa-skype:before{content:""}.fa-joget:before{content:""}.fa-fedora:before{content:""}.fa-stripe-s:before{content:""}.fa-meta:before{content:""}.fa-laravel:before{content:""}.fa-hotjar:before{content:""}.fa-bluetooth-b:before{content:""}.fa-square-letterboxd:before{content:""}.fa-sticker-mule:before{content:""}.fa-creative-commons-zero:before{content:""}.fa-hips:before{content:""}.fa-behance:before{content:""}.fa-reddit:before{content:""}.fa-discord:before{content:""}.fa-chrome:before{content:""}.fa-app-store-ios:before{content:""}.fa-cc-discover:before{content:""}.fa-wpbeginner:before{content:""}.fa-confluence:before{content:""}.fa-shoelace:before{content:""}.fa-mdb:before{content:""}.fa-dochub:before{content:""}.fa-accessible-icon:before{content:""}.fa-ebay:before{content:""}.fa-amazon:before{content:""}.fa-unsplash:before{content:""}.fa-yarn:before{content:""}.fa-square-steam:before{content:""}.fa-steam-square:before{content:""}.fa-500px:before{content:""}.fa-square-vimeo:before{content:""}.fa-vimeo-square:before{content:""}.fa-asymmetrik:before{content:""}.fa-font-awesome:before{content:""}.fa-font-awesome-flag:before{content:""}.fa-font-awesome-logo-full:before{content:""}.fa-gratipay:before{content:""}.fa-apple:before{content:""}.fa-hive:before{content:""}.fa-gitkraken:before{content:""}.fa-keybase:before{content:""}.fa-apple-pay:before{content:""}.fa-padlet:before{content:""}.fa-amazon-pay:before{content:""}.fa-square-github:before{content:""}.fa-github-square:before{content:""}.fa-stumbleupon:before{content:""}.fa-fedex:before{content:""}.fa-phoenix-framework:before{content:""}.fa-shopify:before{content:""}.fa-neos:before{content:""}.fa-square-threads:before{content:""}.fa-hackerrank:before{content:""}.fa-researchgate:before{content:""}.fa-swift:before{content:""}.fa-angular:before{content:""}.fa-speakap:before{content:""}.fa-angrycreative:before{content:""}.fa-y-combinator:before{content:""}.fa-empire:before{content:""}.fa-envira:before{content:""}.fa-google-scholar:before{content:""}.fa-square-gitlab:before{content:""}.fa-gitlab-square:before{content:""}.fa-studiovinari:before{content:""}.fa-pied-piper:before{content:""}.fa-wordpress:before{content:""}.fa-product-hunt:before{content:""}.fa-firefox:before{content:""}.fa-linode:before{content:""}.fa-goodreads:before{content:""}.fa-square-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-jsfiddle:before{content:""}.fa-sith:before{content:""}.fa-themeisle:before{content:""}.fa-page4:before{content:""}.fa-hashnode:before{content:""}.fa-react:before{content:""}.fa-cc-paypal:before{content:""}.fa-squarespace:before{content:""}.fa-cc-stripe:before{content:""}.fa-creative-commons-share:before{content:""}.fa-bitcoin:before{content:""}.fa-keycdn:before{content:""}.fa-opera:before{content:""}.fa-itch-io:before{content:""}.fa-umbraco:before{content:""}.fa-galactic-senate:before{content:""}.fa-ubuntu:before{content:""}.fa-draft2digital:before{content:""}.fa-stripe:before{content:""}.fa-houzz:before{content:""}.fa-gg:before{content:""}.fa-dhl:before{content:""}.fa-square-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-xing:before{content:""}.fa-blackberry:before{content:""}.fa-creative-commons-pd:before{content:""}.fa-playstation:before{content:""}.fa-quinscape:before{content:""}.fa-less:before{content:""}.fa-blogger-b:before{content:""}.fa-opencart:before{content:""}.fa-vine:before{content:""}.fa-signal-messenger:before{content:""}.fa-paypal:before{content:""}.fa-gitlab:before{content:""}.fa-typo3:before{content:""}.fa-reddit-alien:before{content:""}.fa-yahoo:before{content:""}.fa-dailymotion:before{content:""}.fa-affiliatetheme:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-bootstrap:before{content:""}.fa-odnoklassniki:before{content:""}.fa-nfc-symbol:before{content:""}.fa-mintbit:before{content:""}.fa-ethereum:before{content:""}.fa-speaker-deck:before{content:""}.fa-creative-commons-nc-eu:before{content:""}.fa-patreon:before{content:""}.fa-avianex:before{content:""}.fa-ello:before{content:""}.fa-gofore:before{content:""}.fa-bimobject:before{content:""}.fa-brave-reverse:before{content:""}.fa-facebook-f:before{content:""}.fa-square-google-plus:before{content:""}.fa-google-plus-square:before{content:""}.fa-web-awesome:before{content:""}.fa-mandalorian:before{content:""}.fa-first-order-alt:before{content:""}.fa-osi:before{content:""}.fa-google-wallet:before{content:""}.fa-d-and-d-beyond:before{content:""}.fa-periscope:before{content:""}.fa-fulcrum:before{content:""}.fa-cloudscale:before{content:""}.fa-forumbee:before{content:""}.fa-mizuni:before{content:""}.fa-schlix:before{content:""}.fa-square-xing:before{content:""}.fa-xing-square:before{content:""}.fa-bandcamp:before{content:""}.fa-wpforms:before{content:""}.fa-cloudversify:before{content:""}.fa-usps:before{content:""}.fa-megaport:before{content:""}.fa-magento:before{content:""}.fa-spotify:before{content:""}.fa-optin-monster:before{content:""}.fa-fly:before{content:""}.fa-aviato:before{content:""}.fa-itunes:before{content:""}.fa-cuttlefish:before{content:""}.fa-blogger:before{content:""}.fa-flickr:before{content:""}.fa-viber:before{content:""}.fa-soundcloud:before{content:""}.fa-digg:before{content:""}.fa-tencent-weibo:before{content:""}.fa-letterboxd:before{content:""}.fa-symfony:before{content:""}.fa-maxcdn:before{content:""}.fa-etsy:before{content:""}.fa-facebook-messenger:before{content:""}.fa-audible:before{content:""}.fa-think-peaks:before{content:""}.fa-bilibili:before{content:""}.fa-erlang:before{content:""}.fa-x-twitter:before{content:""}.fa-cotton-bureau:before{content:""}.fa-dashcube:before{content:""}.fa-42-group:before{content:""}.fa-innosoft:before{content:""}.fa-stack-exchange:before{content:""}.fa-elementor:before{content:""}.fa-square-pied-piper:before{content:""}.fa-pied-piper-square:before{content:""}.fa-creative-commons-nd:before{content:""}.fa-palfed:before{content:""}.fa-superpowers:before{content:""}.fa-resolving:before{content:""}.fa-xbox:before{content:""}.fa-square-web-awesome-stroke:before{content:""}.fa-searchengin:before{content:""}.fa-tiktok:before{content:""}.fa-square-facebook:before{content:""}.fa-facebook-square:before{content:""}.fa-renren:before{content:""}.fa-linux:before{content:""}.fa-glide:before{content:""}.fa-linkedin:before{content:""}.fa-hubspot:before{content:""}.fa-deploydog:before{content:""}.fa-twitch:before{content:""}.fa-ravelry:before{content:""}.fa-mixer:before{content:""}.fa-square-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-vimeo:before{content:""}.fa-mendeley:before{content:""}.fa-uniregistry:before{content:""}.fa-figma:before{content:""}.fa-creative-commons-remix:before{content:""}.fa-cc-amazon-pay:before{content:""}.fa-dropbox:before{content:""}.fa-instagram:before{content:""}.fa-cmplid:before{content:""}.fa-upwork:before{content:""}.fa-facebook:before{content:""}.fa-gripfire:before{content:""}.fa-jedi-order:before{content:""}.fa-uikit:before{content:""}.fa-fort-awesome-alt:before{content:""}.fa-phabricator:before{content:""}.fa-ussunnah:before{content:""}.fa-earlybirds:before{content:""}.fa-trade-federation:before{content:""}.fa-autoprefixer:before{content:""}.fa-whatsapp:before{content:""}.fa-square-upwork:before{content:""}.fa-slideshare:before{content:""}.fa-google-play:before{content:""}.fa-viadeo:before{content:""}.fa-line:before{content:""}.fa-google-drive:before{content:""}.fa-servicestack:before{content:""}.fa-simplybuilt:before{content:""}.fa-bitbucket:before{content:""}.fa-imdb:before{content:""}.fa-deezer:before{content:""}.fa-raspberry-pi:before{content:""}.fa-jira:before{content:""}.fa-docker:before{content:""}.fa-screenpal:before{content:""}.fa-bluetooth:before{content:""}.fa-gitter:before{content:""}.fa-d-and-d:before{content:""}.fa-microblog:before{content:""}.fa-cc-diners-club:before{content:""}.fa-gg-circle:before{content:""}.fa-pied-piper-hat:before{content:""}.fa-kickstarter-k:before{content:""}.fa-yandex:before{content:""}.fa-readme:before{content:""}.fa-html5:before{content:""}.fa-sellsy:before{content:""}.fa-square-web-awesome:before{content:""}.fa-sass:before{content:""}.fa-wirsindhandwerk:before{content:""}.fa-wsh:before{content:""}.fa-buromobelexperte:before{content:""}.fa-salesforce:before{content:""}.fa-octopus-deploy:before{content:""}.fa-medapps:before{content:""}.fa-ns8:before{content:""}.fa-pinterest-p:before{content:""}.fa-apper:before{content:""}.fa-fort-awesome:before{content:""}.fa-waze:before{content:""}.fa-bluesky:before{content:""}.fa-cc-jcb:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-fantasy-flight-games:before{content:""}.fa-rust:before{content:""}.fa-wix:before{content:""}.fa-square-behance:before{content:""}.fa-behance-square:before{content:""}.fa-supple:before{content:""}.fa-webflow:before{content:""}.fa-rebel:before{content:""}.fa-css3:before{content:""}.fa-staylinked:before{content:""}.fa-kaggle:before{content:""}.fa-space-awesome:before{content:""}.fa-deviantart:before{content:""}.fa-cpanel:before{content:""}.fa-goodreads-g:before{content:""}.fa-square-git:before{content:""}.fa-git-square:before{content:""}.fa-square-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-trello:before{content:""}.fa-creative-commons-nc-jp:before{content:""}.fa-get-pocket:before{content:""}.fa-perbyte:before{content:""}.fa-grunt:before{content:""}.fa-weebly:before{content:""}.fa-connectdevelop:before{content:""}.fa-leanpub:before{content:""}.fa-black-tie:before{content:""}.fa-themeco:before{content:""}.fa-python:before{content:""}.fa-android:before{content:""}.fa-bots:before{content:""}.fa-free-code-camp:before{content:""}.fa-hornbill:before{content:""}.fa-js:before{content:""}.fa-ideal:before{content:""}.fa-git:before{content:""}.fa-dev:before{content:""}.fa-sketch:before{content:""}.fa-yandex-international:before{content:""}.fa-cc-amex:before{content:""}.fa-uber:before{content:""}.fa-github:before{content:""}.fa-php:before{content:""}.fa-alipay:before{content:""}.fa-youtube:before{content:""}.fa-skyatlas:before{content:""}.fa-firefox-browser:before{content:""}.fa-replyd:before{content:""}.fa-suse:before{content:""}.fa-jenkins:before{content:""}.fa-twitter:before{content:""}.fa-rockrms:before{content:""}.fa-pinterest:before{content:""}.fa-buffer:before{content:""}.fa-npm:before{content:""}.fa-yammer:before{content:""}.fa-btc:before{content:""}.fa-dribbble:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-internet-explorer:before{content:""}.fa-stubber:before{content:""}.fa-telegram:before{content:""}.fa-telegram-plane:before{content:""}.fa-old-republic:before{content:""}.fa-odysee:before{content:""}.fa-square-whatsapp:before{content:""}.fa-whatsapp-square:before{content:""}.fa-node-js:before{content:""}.fa-edge-legacy:before{content:""}.fa-slack:before{content:""}.fa-slack-hash:before{content:""}.fa-medrt:before{content:""}.fa-usb:before{content:""}.fa-tumblr:before{content:""}.fa-vaadin:before{content:""}.fa-quora:before{content:""}.fa-square-x-twitter:before{content:""}.fa-reacteurope:before{content:""}.fa-medium:before{content:""}.fa-medium-m:before{content:""}.fa-amilia:before{content:""}.fa-mixcloud:before{content:""}.fa-flipboard:before{content:""}.fa-viacoin:before{content:""}.fa-critical-role:before{content:""}.fa-sitrox:before{content:""}.fa-discourse:before{content:""}.fa-joomla:before{content:""}.fa-mastodon:before{content:""}.fa-airbnb:before{content:""}.fa-wolf-pack-battalion:before{content:""}.fa-buy-n-large:before{content:""}.fa-gulp:before{content:""}.fa-creative-commons-sampling-plus:before{content:""}.fa-strava:before{content:""}.fa-ember:before{content:""}.fa-canadian-maple-leaf:before{content:""}.fa-teamspeak:before{content:""}.fa-pushed:before{content:""}.fa-wordpress-simple:before{content:""}.fa-nutritionix:before{content:""}.fa-wodu:before{content:""}.fa-google-pay:before{content:""}.fa-intercom:before{content:""}.fa-zhihu:before{content:""}.fa-korvue:before{content:""}.fa-pix:before{content:""}.fa-steam-symbol:before{content:""}:root,:host{--fa-style-family-classic: "Font Awesome 6 Free";--fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype")}.far,.fa-regular{font-weight:400}:root,:host{--fa-style-family-classic: "Font Awesome 6 Free";--fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}.fas,.fa-solid{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-solid-900-ae17c16a.woff2) format("woff2"),url(/build/assets/fa-solid-900-b4990d0d.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-brands-400-232c6f6a.woff2) format("woff2"),url(/build/assets/fa-brands-400-e28096fa.ttf) format("truetype")}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-regular-400-c27da6f8.woff2) format("woff2"),url(/build/assets/fa-regular-400-9174757e.ttf) format("truetype");unicode-range:U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC}@font-face{font-family:FontAwesome;font-display:block;src:url(/build/assets/fa-v4compatibility-c7a869fa.woff2) format("woff2"),url(/build/assets/fa-v4compatibility-ff8f525f.ttf) format("truetype");unicode-range:U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A}/*! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}progress{vertical-align:initial}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}[role=button],button{cursor:pointer}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.dz-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.dz-mb-2{margin-bottom:.5rem}.dz-mb-4{margin-bottom:1rem}.dz-mr-3{margin-right:.75rem}.dz-mt-2{margin-top:.5rem}.dz-mt-5{margin-top:1.25rem}.dz-flex{display:flex}.dz-hidden{display:none}.dz-h-14{height:3.5rem}.dz-h-5{height:1.25rem}.dz-h-6{height:1.5rem}.dz-h-8{height:2rem}.dz-h-auto{height:auto}.dz-h-full{height:100%}.dz-w-14{width:3.5rem}.dz-w-5{width:1.25rem}.dz-w-6{width:1.5rem}.dz-w-8{width:2rem}.dz-w-full{width:100%}.dz-max-w-2xl{max-width:42rem}.dz-flex-none{flex:none}@keyframes dz-spin{to{transform:rotate(1turn)}}.dz-animate-spin{animation:dz-spin 1s linear infinite}.dz-cursor-pointer{cursor:pointer}.dz-flex-col{flex-direction:column}.dz-flex-wrap{flex-wrap:wrap}.dz-items-start{align-items:flex-start}.dz-items-center{align-items:center}.dz-justify-start{justify-content:flex-start}.dz-justify-center{justify-content:center}.dz-justify-between{justify-content:space-between}.dz-gap-1{gap:.25rem}.dz-gap-2{gap:.5rem}.dz-gap-3{gap:.75rem}.dz-gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.dz-gap-y-2{row-gap:.5rem}.dz-overflow-hidden{overflow:hidden}.dz-rounded{border-radius:.25rem}.dz-border{border-width:1px}.dz-border-dashed{border-style:dashed}.dz-border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.dz-border-gray-500{--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}.dz-bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.dz-bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity))}.dz-bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.dz-bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.dz-fill-blue-600{fill:#2563eb}.dz-object-fill{-o-object-fit:fill;object-fit:fill}.dz-p-10{padding:2.5rem}.dz-p-4{padding:1rem}.dz-py-8{padding-top:2rem;padding-bottom:2rem}.dz-text-center{text-align:center}.dz-text-lg{font-size:1.125rem;line-height:1.75rem}.dz-text-sm{font-size:.875rem;line-height:1.25rem}.dz-font-medium{font-weight:500}.dz-font-semibold{font-weight:600}.dz-text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.dz-text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.dz-text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity))}.dz-text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity))}.dz-text-red-400{--tw-text-opacity:1;color:rgb(248 113 113/var(--tw-text-opacity))}.dz-text-red-500{--tw-text-opacity:1;color:rgb(239 68 68/var(--tw-text-opacity))}.dz-text-red-800{--tw-text-opacity:1;color:rgb(153 27 27/var(--tw-text-opacity))}.dz-text-slate-900{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dz-antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (prefers-color-scheme:dark){.dark\:dz-border-gray-600{--tw-border-opacity:1;border-color:rgb(75 85 99/var(--tw-border-opacity))}.dark\:dz-border-gray-700{--tw-border-opacity:1;border-color:rgb(55 65 81/var(--tw-border-opacity))}.dark\:dz-bg-gray-700{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.dark\:dz-bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.dark\:dz-bg-red-600{--tw-bg-opacity:1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.dark\:dz-text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.dark\:dz-text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.dark\:dz-text-red-100{--tw-text-opacity:1;color:rgb(254 226 226/var(--tw-text-opacity))}.dark\:dz-text-red-200{--tw-text-opacity:1;color:rgb(254 202 202/var(--tw-text-opacity))}.dark\:dz-text-slate-100{--tw-text-opacity:1;color:rgb(241 245 249/var(--tw-text-opacity))}.dark\:dz-text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark\:hover\:dz-border-gray-500:hover{--tw-border-opacity:1;border-color:rgb(107 114 128/var(--tw-border-opacity))}}.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;left:0;top:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::-moz-selection{background:transparent}.leaflet-tile::selection{background:transparent}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{width:1600px;height:1600px;-webkit-transform-origin:0 0}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{max-width:none!important;max-height:none!important;width:auto;padding:0}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:rgba(51,181,229,.4)}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{width:0;height:0;box-sizing:border-box;z-index:800}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{position:relative;z-index:800;pointer-events:visiblePainted;pointer-events:auto}.leaflet-top,.leaflet-bottom{position:absolute;z-index:1000;pointer-events:none}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{background:#ddd;outline-offset:1px}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{border:2px dotted #38f;background:rgba(255,255,255,.5)}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:12px;font-size:.75rem;line-height:1.5}.leaflet-bar{box-shadow:0 1px 5px #000000a6;border-radius:4px}.leaflet-bar a{background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;display:block;text-align:center;text-decoration:none;color:#000}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50% 50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:none}.leaflet-bar a.leaflet-disabled{cursor:default;background-color:#f4f4f4;color:#bbb}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{font:700 18px Lucida Console,Monaco,monospace;text-indent:1px}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{box-shadow:0 1px 5px #0006;background:#fff;border-radius:5px}.leaflet-control-layers-toggle{background-image:url(/build/assets/layers-1dbbe9d0.png);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(/build/assets/layers-2x-066daca8.png);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{padding:6px 10px 6px 6px;color:#333;background:#fff}.leaflet-control-layers-scrollbar{overflow-y:scroll;overflow-x:hidden;padding-right:5px}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{display:block;font-size:13px;font-size:1.08333em}.leaflet-control-layers-separator{height:0;border-top:1px solid #ddd;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(/build/assets/marker-icon-574c3a5c.png)}.leaflet-container .leaflet-control-attribution{background:#fff;background:rgba(255,255,255,.8);margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{padding:0 5px;color:#333;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{display:inline!important;vertical-align:baseline!important;width:1em;height:.6669em}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{border:2px solid #777;border-top:none;line-height:1.1;padding:2px 5px 1px;white-space:nowrap;box-sizing:border-box;background:rgba(255,255,255,.8);text-shadow:1px 1px #fff}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{border:2px solid rgba(0,0,0,.2);background-clip:padding-box}.leaflet-popup{position:absolute;text-align:center;margin-bottom:20px}.leaflet-popup-content-wrapper{padding:1px;text-align:left;border-radius:12px}.leaflet-popup-content{margin:13px 24px 13px 20px;line-height:1.3;font-size:13px;font-size:1.08333em;min-height:1px}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{width:40px;height:20px;position:absolute;left:50%;margin-top:-1px;margin-left:-20px;overflow:hidden;pointer-events:none}.leaflet-popup-tip{width:17px;height:17px;padding:1px;margin:-10px auto 0;pointer-events:auto;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{background:white;color:#333;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{position:absolute;top:0;right:0;border:none;text-align:center;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;color:#757575;text-decoration:none;background:transparent}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{width:24px;margin:0 auto;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";filter:progid:DXImageTransform.Microsoft.Matrix(M11=.70710678,M12=.70710678,M21=-.70710678,M22=.70710678)}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{position:absolute;padding:6px;background-color:#fff;border:1px solid #fff;border-radius:3px;color:#222;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{position:absolute;pointer-events:none;border:6px solid transparent;background:transparent;content:""}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{left:50%;margin-left:-6px}.leaflet-tooltip-top:before{bottom:0;margin-bottom:-12px;border-top-color:#fff}.leaflet-tooltip-bottom:before{top:0;margin-top:-12px;margin-left:-6px;border-bottom-color:#fff}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{top:50%;margin-top:-6px}.leaflet-tooltip-left:before{right:0;margin-right:-12px;border-left-color:#fff}.leaflet-tooltip-right:before{left:0;margin-left:-12px;border-right-color:#fff}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}[type=text],input:where(:not([type])),[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow: 0 0 #0000}[type=text]:focus,input:where(:not([type])):focus,[type=email]:focus,[type=url]:focus,[type=password]:focus,[type=number]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=month]:focus,[type=search]:focus,[type=tel]:focus,[type=time]:focus,[type=week]:focus,[multiple]:focus,textarea:focus,select:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple],[size]:where(select:not([size="1"])){background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow: 0 0 #0000}[type=checkbox]{border-radius:0}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset: var(--tw-empty, );--tw-ring-offset-width: 2px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}@media (forced-colors: active){[type=checkbox]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}@media (forced-colors: active){[type=radio]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:checked:hover,[type=checkbox]:checked:focus,[type=radio]:checked:hover,[type=radio]:checked:focus{border-color:transparent;background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}@media (forced-colors: active){[type=checkbox]:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:indeterminate:hover,[type=checkbox]:indeterminate:focus{border-color:transparent;background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);text-decoration:underline;font-weight:500}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;padding-left:1.625em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{font-weight:400;color:var(--tw-prose-counters)}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-style:italic;color:var(--tw-prose-quotes);border-left-width:.25rem;border-left-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-left:1em}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:900;color:inherit}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:800;color:inherit}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-family:inherit;color:var(--tw-prose-kbd);box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%),0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);font-size:.875em;border-radius:.3125rem;padding:.1875em .375em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-weight:600;font-size:.875em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);overflow-x:auto;font-weight:400;font-size:.875em;line-height:1.7142857;margin-top:1.7142857em;margin-bottom:1.7142857em;border-radius:.375rem;padding:.8571429em 1.1428571em}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){width:100%;table-layout:auto;text-align:left;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;vertical-align:bottom;padding-right:.5714286em;padding-bottom:.5714286em;padding-left:.5714286em}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose{--tw-prose-body: #374151;--tw-prose-headings: #111827;--tw-prose-lead: #4b5563;--tw-prose-links: #111827;--tw-prose-bold: #111827;--tw-prose-counters: #6b7280;--tw-prose-bullets: #d1d5db;--tw-prose-hr: #e5e7eb;--tw-prose-quotes: #111827;--tw-prose-quote-borders: #e5e7eb;--tw-prose-captions: #6b7280;--tw-prose-kbd: #111827;--tw-prose-kbd-shadows: 17 24 39;--tw-prose-code: #111827;--tw-prose-pre-code: #e5e7eb;--tw-prose-pre-bg: #1f2937;--tw-prose-th-borders: #d1d5db;--tw-prose-td-borders: #e5e7eb;--tw-prose-invert-body: #d1d5db;--tw-prose-invert-headings: #fff;--tw-prose-invert-lead: #9ca3af;--tw-prose-invert-links: #fff;--tw-prose-invert-bold: #fff;--tw-prose-invert-counters: #9ca3af;--tw-prose-invert-bullets: #4b5563;--tw-prose-invert-hr: #374151;--tw-prose-invert-quotes: #f3f4f6;--tw-prose-invert-quote-borders: #374151;--tw-prose-invert-captions: #9ca3af;--tw-prose-invert-kbd: #fff;--tw-prose-invert-kbd-shadows: 255 255 255;--tw-prose-invert-code: #fff;--tw-prose-invert-pre-code: #d1d5db;--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);--tw-prose-invert-th-borders: #4b5563;--tw-prose-invert-td-borders: #374151;font-size:1rem;line-height:1.75}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.375em}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>*:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>*:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-left:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-left:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-right:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.pointer-events-auto{pointer-events:auto}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{top:0;right:0;bottom:0;left:0}.bottom-0{bottom:0}.end-0{inset-inline-end:0px}.left-0{left:0}.right-0{right:0}.start-0{inset-inline-start:0px}.top-0{top:0}.z-0{z-index:0}.z-10{z-index:10}.z-50{z-index:50}.col-span-1{grid-column:span 1 / span 1}.col-span-2{grid-column:span 2 / span 2}.col-span-3{grid-column:span 3 / span 3}.col-span-6{grid-column:span 6 / span 6}.m-2{margin:.5rem}.-mx-4{margin-left:-1rem;margin-right:-1rem}.-mx-8{margin-left:-2rem;margin-right:-2rem}.-my-2{margin-top:-.5rem;margin-bottom:-.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.mx-auto{margin-left:auto;margin-right:auto}.my-1{margin-top:.25rem;margin-bottom:.25rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.my-4{margin-top:1rem;margin-bottom:1rem}.-mb-8{margin-bottom:-2rem}.-me-0{margin-inline-end:-0px}.-me-0\.5{margin-inline-end:-.125rem}.-me-1{margin-inline-end:-.25rem}.-me-2{margin-inline-end:-.5rem}.-ml-px{margin-left:-1px}.-mr-0{margin-right:-0px}.-mr-0\.5{margin-right:-.125rem}.-mr-1{margin-right:-.25rem}.-mr-2{margin-right:-.5rem}.-mt-px{margin-top:-1px}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.me-2{margin-inline-end:.5rem}.me-3{margin-inline-end:.75rem}.ml-1{margin-left:.25rem}.ml-12{margin-left:3rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.ml-6{margin-left:1.5rem}.ml-auto{margin-left:auto}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.ms-1{margin-inline-start:.25rem}.ms-2{margin-inline-start:.5rem}.ms-3{margin-inline-start:.75rem}.ms-4{margin-inline-start:1rem}.ms-6{margin-inline-start:1.5rem}.mt-1{margin-top:.25rem}.mt-10{margin-top:2.5rem}.mt-16{margin-top:4rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.flow-root{display:flow-root}.grid{display:grid}.contents{display:contents}.hidden{display:none}.h-1{height:.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-20{height:5rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-\[200px\]{height:200px}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.min-h-screen{min-height:100vh}.w-0{width:0px}.w-1{width:.25rem}.w-1\/2{width:50%}.w-10{width:2.5rem}.w-11{width:2.75rem}.w-12{width:3rem}.w-14{width:3.5rem}.w-16{width:4rem}.w-20{width:5rem}.w-3\/4{width:75%}.w-4{width:1rem}.w-48{width:12rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-60{width:15rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-\[75\%\]{width:75%}.w-auto{width:auto}.w-fit{width:-moz-fit-content;width:fit-content}.w-full{width:100%}.min-w-0{min-width:0px}.min-w-full{min-width:100%}.max-w-6xl{max-width:72rem}.max-w-7xl{max-width:80rem}.max-w-\[250px\]{max-width:250px}.max-w-\[300px\]{max-width:300px}.max-w-screen-xl{max-width:1280px}.max-w-sm{max-width:24rem}.max-w-xl{max-width:36rem}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-none{flex:none}.flex-shrink-0,.shrink-0{flex-shrink:0}.origin-top{transform-origin:top}.origin-top-left{transform-origin:top left}.origin-top-right{transform-origin:top right}.translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-2{--tw-translate-y: .5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-4{--tw-translate-y: 1rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.list-inside{list-style-position:inside}.list-disc{list-style-type:disc}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-items-center{justify-items:center}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-6{gap:1.5rem}.gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.gap-x-1\.5{-moz-column-gap:.375rem;column-gap:.375rem}.gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.gap-y-2{row-gap:.5rem}.space-x-1>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.25rem * var(--tw-space-x-reverse));margin-left:calc(.25rem * calc(1 - var(--tw-space-x-reverse)))}.space-x-8>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(2rem * var(--tw-space-x-reverse));margin-left:calc(2rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem * var(--tw-space-y-reverse))}.space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.space-y-6>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem * var(--tw-space-y-reverse))}.divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse: 0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.divide-dashed>:not([hidden])~:not([hidden]){border-style:dashed}.divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(243 244 246 / var(--tw-divide-opacity))}.divide-gray-200>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(229 231 235 / var(--tw-divide-opacity))}.divide-gray-300>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(209 213 219 / var(--tw-divide-opacity))}.divide-indigo-200>:not([hidden])~:not([hidden]){--tw-divide-opacity: 1;border-color:rgb(199 210 254 / var(--tw-divide-opacity))}.self-end{align-self:flex-end}.self-center{align-self:center}.overflow-hidden{overflow:hidden}.overflow-scroll{overflow:scroll}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-scroll{overflow-x:scroll}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.whitespace-nowrap{white-space:nowrap}.break-words{overflow-wrap:break-word}.break-all{word-break:break-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.rounded-b-none{border-bottom-right-radius:0;border-bottom-left-radius:0}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-t-none{border-top-left-radius:0;border-top-right-radius:0}.border{border-width:1px}.border-0{border-width:0px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-l-4{border-left-width:4px}.border-r{border-right-width:1px}.border-t{border-top-width:1px}.border-dashed{border-style:dashed}.border-gray-100{--tw-border-opacity: 1;border-color:rgb(243 244 246 / var(--tw-border-opacity))}.border-gray-200{--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity))}.border-gray-300{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.border-gray-400{--tw-border-opacity: 1;border-color:rgb(156 163 175 / var(--tw-border-opacity))}.border-indigo-400{--tw-border-opacity: 1;border-color:rgb(129 140 248 / var(--tw-border-opacity))}.border-indigo-500{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity))}.border-slate-300{--tw-border-opacity: 1;border-color:rgb(203 213 225 / var(--tw-border-opacity))}.border-transparent{border-color:transparent}.bg-black\/25{background-color:#00000040}.bg-blue-500{--tw-bg-opacity: 1;background-color:rgb(59 130 246 / var(--tw-bg-opacity))}.bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.bg-gray-400{--tw-bg-opacity: 1;background-color:rgb(156 163 175 / var(--tw-bg-opacity))}.bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.bg-gray-500{--tw-bg-opacity: 1;background-color:rgb(107 114 128 / var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.bg-green-100{--tw-bg-opacity: 1;background-color:rgb(220 252 231 / var(--tw-bg-opacity))}.bg-indigo-50{--tw-bg-opacity: 1;background-color:rgb(238 242 255 / var(--tw-bg-opacity))}.bg-indigo-500{--tw-bg-opacity: 1;background-color:rgb(99 102 241 / var(--tw-bg-opacity))}.bg-indigo-600{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.bg-red-100{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.bg-red-200{--tw-bg-opacity: 1;background-color:rgb(254 202 202 / var(--tw-bg-opacity))}.bg-red-50{--tw-bg-opacity: 1;background-color:rgb(254 242 242 / var(--tw-bg-opacity))}.bg-red-500{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.bg-red-600{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.bg-red-700{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity))}.bg-red-800{--tw-bg-opacity: 1;background-color:rgb(153 27 27 / var(--tw-bg-opacity))}.bg-slate-100{--tw-bg-opacity: 1;background-color:rgb(241 245 249 / var(--tw-bg-opacity))}.bg-slate-300{--tw-bg-opacity: 1;background-color:rgb(203 213 225 / var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-yellow-500{--tw-bg-opacity: 1;background-color:rgb(234 179 8 / var(--tw-bg-opacity))}.bg-yellow-600{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.bg-opacity-25{--tw-bg-opacity: .25}.from-gray-700{--tw-gradient-from: #374151 var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.from-gray-700\/50{--tw-gradient-from: rgb(55 65 81 / .5) var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.via-transparent{--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to)}.bg-cover{background-size:cover}.bg-center{background-position:center}.bg-no-repeat{background-repeat:no-repeat}.fill-black{fill:#000}.fill-blue-600{fill:#2563eb}.fill-current{fill:currentColor}.fill-indigo-500{fill:#6366f1}.fill-red-100{fill:#fee2e2}.stroke-gray-400{stroke:#9ca3af}.stroke-gray-600{stroke:#4b5563}.stroke-red-500{stroke:#ef4444}.object-cover{-o-object-fit:cover;object-fit:cover}.object-fill{-o-object-fit:fill;object-fit:fill}.p-0{padding:0}.p-0\.5{padding:.125rem}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-8{padding:2rem}.px-0{padding-left:0;padding-right:0}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-0{padding-top:0;padding-bottom:0}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-10{padding-top:2.5rem;padding-bottom:2.5rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pb-1{padding-bottom:.25rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pe-4{padding-inline-end:1rem}.pl-10{padding-left:2.5rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pl-4{padding-left:1rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}.ps-3{padding-inline-start:.75rem}.pt-0{padding-top:0}.pt-0\.5{padding-top:.125rem}.pt-1{padding-top:.25rem}.pt-2{padding-top:.5rem}.pt-4{padding-top:1rem}.pt-5{padding-top:1.25rem}.pt-6{padding-top:1.5rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-start{text-align:start}.text-end{text-align:end}.align-middle{vertical-align:middle}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:Inter var,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-relaxed{line-height:1.625}.leading-tight{line-height:1.25}.tracking-wider{letter-spacing:.05em}.tracking-widest{letter-spacing:.1em}.text-black{--tw-text-opacity: 1;color:rgb(0 0 0 / var(--tw-text-opacity))}.text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity))}.text-green-500{--tw-text-opacity: 1;color:rgb(34 197 94 / var(--tw-text-opacity))}.text-green-600{--tw-text-opacity: 1;color:rgb(22 163 74 / var(--tw-text-opacity))}.text-green-700{--tw-text-opacity: 1;color:rgb(21 128 61 / var(--tw-text-opacity))}.text-indigo-500{--tw-text-opacity: 1;color:rgb(99 102 241 / var(--tw-text-opacity))}.text-indigo-600{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.text-indigo-700{--tw-text-opacity: 1;color:rgb(67 56 202 / var(--tw-text-opacity))}.text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity))}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / var(--tw-text-opacity))}.text-red-600{--tw-text-opacity: 1;color:rgb(220 38 38 / var(--tw-text-opacity))}.text-red-700{--tw-text-opacity: 1;color:rgb(185 28 28 / var(--tw-text-opacity))}.text-red-800{--tw-text-opacity: 1;color:rgb(153 27 27 / var(--tw-text-opacity))}.text-slate-700{--tw-text-opacity: 1;color:rgb(51 65 85 / var(--tw-text-opacity))}.text-slate-800{--tw-text-opacity: 1;color:rgb(30 41 59 / var(--tw-text-opacity))}.text-slate-900{--tw-text-opacity: 1;color:rgb(15 23 42 / var(--tw-text-opacity))}.text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-0{opacity:0}.opacity-100{opacity:1}.opacity-50{opacity:.5}.opacity-75{opacity:.75}.shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-2xl{--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-xl{--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-gray-500\/20{--tw-shadow-color: rgb(107 114 128 / .2);--tw-shadow: var(--tw-shadow-colored)}.outline-none{outline:2px solid transparent;outline-offset:2px}.ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.ring-inset{--tw-ring-inset: inset}.ring-black{--tw-ring-opacity: 1;--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity))}.ring-gray-200{--tw-ring-opacity: 1;--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity))}.ring-gray-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity))}.ring-white{--tw-ring-opacity: 1;--tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity: .05}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-100{transition-duration:.1s}.duration-150{transition-duration:.15s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}.duration-75{transition-duration:75ms}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}[x-cloak]{display:none}@media (prefers-color-scheme: dark){.dark\:prose-invert{--tw-prose-body: var(--tw-prose-invert-body);--tw-prose-headings: var(--tw-prose-invert-headings);--tw-prose-lead: var(--tw-prose-invert-lead);--tw-prose-links: var(--tw-prose-invert-links);--tw-prose-bold: var(--tw-prose-invert-bold);--tw-prose-counters: var(--tw-prose-invert-counters);--tw-prose-bullets: var(--tw-prose-invert-bullets);--tw-prose-hr: var(--tw-prose-invert-hr);--tw-prose-quotes: var(--tw-prose-invert-quotes);--tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);--tw-prose-captions: var(--tw-prose-invert-captions);--tw-prose-kbd: var(--tw-prose-invert-kbd);--tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);--tw-prose-code: var(--tw-prose-invert-code);--tw-prose-pre-code: var(--tw-prose-invert-pre-code);--tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);--tw-prose-th-borders: var(--tw-prose-invert-th-borders);--tw-prose-td-borders: var(--tw-prose-invert-td-borders)}}.selection\:bg-red-500 *::-moz-selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:bg-red-500 *::selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:text-white *::-moz-selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:text-white *::selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:bg-red-500::-moz-selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:bg-red-500::selection{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:text-white::-moz-selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:text-white::selection{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.placeholder\:text-gray-400::-moz-placeholder{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.placeholder\:text-gray-400::placeholder{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:start-\[2px\]:after{content:var(--tw-content);inset-inline-start:2px}.after\:top-\[2px\]:after{content:var(--tw-content);top:2px}.after\:h-5:after{content:var(--tw-content);height:1.25rem}.after\:w-5:after{content:var(--tw-content);width:1.25rem}.after\:rounded-full:after{content:var(--tw-content);border-radius:9999px}.after\:border:after{content:var(--tw-content);border-width:1px}.after\:border-gray-300:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.after\:bg-white:after{content:var(--tw-content);--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.after\:transition-all:after{content:var(--tw-content);transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.after\:content-\[\'\'\]:after{--tw-content: "";content:var(--tw-content)}.read-only\:cursor-not-allowed:-moz-read-only{cursor:not-allowed}.read-only\:cursor-not-allowed:read-only{cursor:not-allowed}.read-only\:opacity-50:-moz-read-only{opacity:.5}.read-only\:opacity-50:read-only{opacity:.5}.hover\:rounded-lg:hover{border-radius:.5rem}.hover\:border-0:hover{border-width:0px}.hover\:border-gray-300:hover{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.hover\:bg-gray-100:hover{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:bg-gray-50:hover{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.hover\:bg-indigo-500:hover{--tw-bg-opacity: 1;background-color:rgb(99 102 241 / var(--tw-bg-opacity))}.hover\:bg-indigo-600:hover{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.hover\:bg-red-500:hover{--tw-bg-opacity: 1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.hover\:bg-red-600:hover{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.hover\:bg-slate-50:hover{--tw-bg-opacity: 1;background-color:rgb(248 250 252 / var(--tw-bg-opacity))}.hover\:bg-yellow-600:hover{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.hover\:text-gray-500:hover{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.hover\:text-gray-800:hover{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity))}.hover\:text-indigo-600:hover{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.hover\:text-indigo-900:hover{--tw-text-opacity: 1;color:rgb(49 46 129 / var(--tw-text-opacity))}.focus\:z-10:focus{z-index:10}.focus\:rounded-sm:focus{border-radius:.125rem}.focus\:border-none:focus{border-style:none}.focus\:border-blue-300:focus{--tw-border-opacity: 1;border-color:rgb(147 197 253 / var(--tw-border-opacity))}.focus\:border-gray-300:focus{--tw-border-opacity: 1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.focus\:border-indigo-500:focus{--tw-border-opacity: 1;border-color:rgb(99 102 241 / var(--tw-border-opacity))}.focus\:border-indigo-700:focus{--tw-border-opacity: 1;border-color:rgb(67 56 202 / var(--tw-border-opacity))}.focus\:bg-gray-100:focus{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.focus\:bg-gray-50:focus{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.focus\:bg-gray-700:focus{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.focus\:bg-indigo-100:focus{--tw-bg-opacity: 1;background-color:rgb(224 231 255 / var(--tw-bg-opacity))}.focus\:bg-indigo-600:focus{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.focus\:bg-red-600:focus{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.focus\:bg-yellow-600:focus{--tw-bg-opacity: 1;background-color:rgb(202 138 4 / var(--tw-bg-opacity))}.focus\:text-gray-500:focus{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.focus\:text-gray-700:focus{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.focus\:text-gray-800:focus{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.focus\:text-indigo-800:focus{--tw-text-opacity: 1;color:rgb(55 48 163 / var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:outline:focus{outline-style:solid}.focus\:outline-2:focus{outline-width:2px}.focus\:outline-red-500:focus{outline-color:#ef4444}.focus\:ring:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:ring-inset:focus{--tw-ring-inset: inset}.focus\:ring-indigo-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity))}.focus\:ring-indigo-600:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.focus\:ring-red-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width: 2px}.focus-visible\:outline:focus-visible{outline-style:solid}.focus-visible\:outline-2:focus-visible{outline-width:2px}.focus-visible\:outline-offset-2:focus-visible{outline-offset:2px}.focus-visible\:outline-indigo-600:focus-visible{outline-color:#4f46e5}.focus-visible\:ring-2:focus-visible{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus-visible\:ring-blue-500:focus-visible{--tw-ring-opacity: 1;--tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity))}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width: 2px}.active\:bg-gray-100:active{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.active\:bg-gray-50:active{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.active\:bg-gray-900:active{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.active\:bg-red-700:active{--tw-bg-opacity: 1;background-color:rgb(185 28 28 / var(--tw-bg-opacity))}.active\:text-gray-500:active{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.active\:text-gray-700:active{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.disabled\:cursor-default:disabled{cursor:default}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-gray-50:disabled{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity))}.disabled\:bg-red-100:disabled{--tw-bg-opacity: 1;background-color:rgb(254 226 226 / var(--tw-bg-opacity))}.disabled\:text-gray-500:disabled{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.disabled\:opacity-0:disabled{opacity:0}.disabled\:opacity-25:disabled{opacity:.25}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:opacity-75:disabled{opacity:.75}.group:hover .group-hover\:stroke-gray-600{stroke:#4b5563}.group:hover .group-hover\:text-indigo-600{--tw-text-opacity: 1;color:rgb(79 70 229 / var(--tw-text-opacity))}.peer:checked~.peer-checked\:bg-indigo-600{--tw-bg-opacity: 1;background-color:rgb(79 70 229 / var(--tw-bg-opacity))}.peer:checked~.peer-checked\:after\:translate-x-full:after{content:var(--tw-content);--tw-translate-x: 100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.peer:checked~.peer-checked\:after\:border-white:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.peer:focus~.peer-focus\:outline-none{outline:2px solid transparent;outline-offset:2px}.peer:focus~.peer-focus\:ring-4{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.peer:focus~.peer-focus\:ring-indigo-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity))}:is([dir=ltr] .ltr\:origin-top-left){transform-origin:top left}:is([dir=ltr] .ltr\:origin-top-right){transform-origin:top right}:is([dir=rtl] .rtl\:origin-top-left){transform-origin:top left}:is([dir=rtl] .rtl\:origin-top-right){transform-origin:top right}:is([dir=rtl] .rtl\:flex-row-reverse){flex-direction:row-reverse}:is([dir=rtl] .peer:checked~.rtl\:peer-checked\:after\:-translate-x-full):after{content:var(--tw-content);--tw-translate-x: -100%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@media (prefers-reduced-motion: no-preference){.motion-safe\:hover\:scale-\[1\.01\]:hover{--tw-scale-x: 1.01;--tw-scale-y: 1.01;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}}@media (prefers-color-scheme: dark){.dark\:border-gray-500{--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity))}.dark\:border-gray-600{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:border-gray-700{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:border-indigo-600{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.dark\:bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity))}.dark\:bg-gray-700{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:bg-gray-800\/50{background-color:#1f293780}.dark\:bg-gray-900{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:bg-indigo-900\/50{background-color:#312e8180}.dark\:bg-red-600{--tw-bg-opacity: 1;background-color:rgb(220 38 38 / var(--tw-bg-opacity))}.dark\:bg-red-800\/20{background-color:#991b1b33}.dark\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left,var(--tw-gradient-stops))}.dark\:from-gray-700\/50{--tw-gradient-from: rgb(55 65 81 / .5) var(--tw-gradient-from-position);--tw-gradient-to: rgb(55 65 81 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.dark\:via-transparent{--tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to)}.dark\:fill-indigo-200{fill:#c7d2fe}.dark\:fill-white{fill:#fff}.dark\:stroke-gray-600{stroke:#4b5563}.dark\:text-gray-100{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark\:text-gray-200{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:text-gray-300{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:text-gray-400{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity))}.dark\:text-gray-600{--tw-text-opacity: 1;color:rgb(75 85 99 / var(--tw-text-opacity))}.dark\:text-gray-700{--tw-text-opacity: 1;color:rgb(55 65 81 / var(--tw-text-opacity))}.dark\:text-gray-800{--tw-text-opacity: 1;color:rgb(31 41 55 / var(--tw-text-opacity))}.dark\:text-green-400{--tw-text-opacity: 1;color:rgb(74 222 128 / var(--tw-text-opacity))}.dark\:text-indigo-300{--tw-text-opacity: 1;color:rgb(165 180 252 / var(--tw-text-opacity))}.dark\:text-red-100{--tw-text-opacity: 1;color:rgb(254 226 226 / var(--tw-text-opacity))}.dark\:text-red-200{--tw-text-opacity: 1;color:rgb(254 202 202 / var(--tw-text-opacity))}.dark\:text-red-400{--tw-text-opacity: 1;color:rgb(248 113 113 / var(--tw-text-opacity))}.dark\:text-slate-100{--tw-text-opacity: 1;color:rgb(241 245 249 / var(--tw-text-opacity))}.dark\:text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:shadow-none{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.dark\:ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.dark\:ring-inset{--tw-ring-inset: inset}.dark\:ring-white\/5{--tw-ring-color: rgb(255 255 255 / .05)}.dark\:hover\:border-gray-500:hover{--tw-border-opacity: 1;border-color:rgb(107 114 128 / var(--tw-border-opacity))}.dark\:hover\:border-gray-600:hover{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:hover\:border-gray-700:hover{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:hover\:bg-gray-700:hover{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:hover\:bg-gray-800:hover{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:hover\:bg-gray-900:hover{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:hover\:bg-white:hover{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.dark\:hover\:text-gray-100:hover{--tw-text-opacity: 1;color:rgb(243 244 246 / var(--tw-text-opacity))}.dark\:hover\:text-gray-200:hover{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:hover\:text-gray-300:hover{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:hover\:text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:hover\:text-white:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:focus\:border-blue-700:focus{--tw-border-opacity: 1;border-color:rgb(29 78 216 / var(--tw-border-opacity))}.dark\:focus\:border-blue-800:focus{--tw-border-opacity: 1;border-color:rgb(30 64 175 / var(--tw-border-opacity))}.dark\:focus\:border-gray-600:focus{--tw-border-opacity: 1;border-color:rgb(75 85 99 / var(--tw-border-opacity))}.dark\:focus\:border-gray-700:focus{--tw-border-opacity: 1;border-color:rgb(55 65 81 / var(--tw-border-opacity))}.dark\:focus\:border-indigo-300:focus{--tw-border-opacity: 1;border-color:rgb(165 180 252 / var(--tw-border-opacity))}.dark\:focus\:border-indigo-600:focus{--tw-border-opacity: 1;border-color:rgb(79 70 229 / var(--tw-border-opacity))}.dark\:focus\:bg-gray-700:focus{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:focus\:bg-gray-800:focus{--tw-bg-opacity: 1;background-color:rgb(31 41 55 / var(--tw-bg-opacity))}.dark\:focus\:bg-gray-900:focus{--tw-bg-opacity: 1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:focus\:bg-indigo-900:focus{--tw-bg-opacity: 1;background-color:rgb(49 46 129 / var(--tw-bg-opacity))}.dark\:focus\:bg-white:focus{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.dark\:focus\:text-gray-200:focus{--tw-text-opacity: 1;color:rgb(229 231 235 / var(--tw-text-opacity))}.dark\:focus\:text-gray-300:focus{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.dark\:focus\:text-gray-400:focus{--tw-text-opacity: 1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:focus\:text-indigo-200:focus{--tw-text-opacity: 1;color:rgb(199 210 254 / var(--tw-text-opacity))}.dark\:focus\:ring-indigo-600:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity))}.dark\:focus\:ring-offset-gray-800:focus{--tw-ring-offset-color: #1f2937}.dark\:active\:bg-gray-300:active{--tw-bg-opacity: 1;background-color:rgb(209 213 219 / var(--tw-bg-opacity))}.dark\:active\:bg-gray-700:active{--tw-bg-opacity: 1;background-color:rgb(55 65 81 / var(--tw-bg-opacity))}.dark\:active\:text-gray-300:active{--tw-text-opacity: 1;color:rgb(209 213 219 / var(--tw-text-opacity))}.group:hover .dark\:group-hover\:stroke-gray-400{stroke:#9ca3af}.peer:focus~.dark\:peer-focus\:ring-indigo-800{--tw-ring-opacity: 1;--tw-ring-color: rgb(55 48 163 / var(--tw-ring-opacity))}}@media (min-width: 640px){.sm\:fixed{position:fixed}.sm\:right-0{right:0}.sm\:top-0{top:0}.sm\:col-span-4{grid-column:span 4 / span 4}.sm\:-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.sm\:-my-px{margin-top:-1px;margin-bottom:-1px}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:mx-auto{margin-left:auto;margin-right:auto}.sm\:-me-2{margin-inline-end:-.5rem}.sm\:-mr-2{margin-right:-.5rem}.sm\:ml-0{margin-left:0}.sm\:ml-10{margin-left:2.5rem}.sm\:ml-3{margin-left:.75rem}.sm\:ml-4{margin-left:1rem}.sm\:ml-6{margin-left:1.5rem}.sm\:ms-10{margin-inline-start:2.5rem}.sm\:ms-3{margin-inline-start:.75rem}.sm\:ms-4{margin-inline-start:1rem}.sm\:ms-6{margin-inline-start:1.5rem}.sm\:mt-0{margin-top:0}.sm\:block{display:block}.sm\:flex{display:flex}.sm\:hidden{display:none}.sm\:h-10{height:2.5rem}.sm\:w-10{width:2.5rem}.sm\:w-full{width:100%}.sm\:max-w-2xl{max-width:42rem}.sm\:max-w-4xl{max-width:56rem}.sm\:max-w-6xl{max-width:72rem}.sm\:max-w-lg{max-width:32rem}.sm\:max-w-md{max-width:28rem}.sm\:max-w-sm{max-width:24rem}.sm\:max-w-xl{max-width:36rem}.sm\:flex-1{flex:1 1 0%}.sm\:translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:translate-x-2{--tw-translate-x: .5rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.sm\:flex-col{flex-direction:column}.sm\:items-start{align-items:flex-start}.sm\:items-end{align-items:flex-end}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:rounded-lg{border-radius:.5rem}.sm\:rounded-md{border-radius:.375rem}.sm\:rounded-bl-md{border-bottom-left-radius:.375rem}.sm\:rounded-br-md{border-bottom-right-radius:.375rem}.sm\:rounded-tl-md{border-top-left-radius:.375rem}.sm\:rounded-tr-md{border-top-right-radius:.375rem}.sm\:p-6{padding:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pb-4{padding-bottom:1rem}.sm\:pl-6{padding-left:1.5rem}.sm\:pr-0{padding-right:0}.sm\:pr-6{padding-right:1.5rem}.sm\:pr-8{padding-right:2rem}.sm\:pt-0{padding-top:0}.sm\:text-left{text-align:left}.sm\:text-right{text-align:right}.sm\:text-start{text-align:start}.sm\:text-sm{font-size:.875rem;line-height:1.25rem}.sm\:leading-6{line-height:1.5rem}}@media (min-width: 768px){.md\:col-span-1{grid-column:span 1 / span 1}.md\:col-span-2{grid-column:span 2 / span 2}.md\:mt-0{margin-top:0}.md\:grid{display:grid}.md\:w-1\/3{width:33.333333%}.md\:w-1\/4{width:25%}.md\:w-2\/3{width:66.666667%}.md\:w-3\/4{width:75%}.md\:grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:justify-between{justify-content:space-between}.md\:gap-6{gap:1.5rem}}@media (min-width: 1024px){.lg\:col-span-4{grid-column:span 4 / span 4}.lg\:-mx-8{margin-left:-2rem;margin-right:-2rem}.lg\:gap-8{gap:2rem}.lg\:p-8{padding:2rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:pl-8{padding-left:2rem}.lg\:pr-8{padding-right:2rem}} diff --git a/laravel_app/public/build/manifest.json b/laravel_app/public/build/manifest.json index 996ebe5..766a824 100644 --- a/laravel_app/public/build/manifest.json +++ b/laravel_app/public/build/manifest.json @@ -44,7 +44,7 @@ "src": "node_modules/leaflet/dist/images/marker-icon.png" }, "resources/css/app.css": { - "file": "assets/app-36af0ee7.css", + "file": "assets/app-287c5da9.css", "isEntry": true, "src": "resources/css/app.css" }, diff --git a/pivot.geojson b/pivot.geojson new file mode 100644 index 0000000..7ee5090 --- /dev/null +++ b/pivot.geojson @@ -0,0 +1,80 @@ +{ +"type": "FeatureCollection", +"name": "Sony_trial", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "field": "4042903", "sub_field": "4042903" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.549953905787561, -0.922915429414839 ], [ 34.549828694277387, -0.923021886080446 ], [ 34.549717625808142, -0.923125941818272 ], [ 34.549628348107582, -0.923256270140473 ], [ 34.549589862974607, -0.923402652447291 ], [ 34.549545745270393, -0.923548523600757 ], [ 34.549499461421739, -0.92366860429326 ], [ 34.549526795425663, -0.92382172368986 ], [ 34.549540533982103, -0.923962985646977 ], [ 34.549548459947303, -0.924093942061356 ], [ 34.549608521785558, -0.924186699219492 ], [ 34.549649285434619, -0.924321641181188 ], [ 34.549678435552458, -0.924482190345894 ], [ 34.549643934058068, -0.924572704608711 ], [ 34.549619050920533, -0.924672681305338 ], [ 34.549592348003188, -0.924739959147393 ], [ 34.549613556310739, -0.924832046705356 ], [ 34.54955218364335, -0.924878069322249 ], [ 34.549486950008387, -0.924954784488041 ], [ 34.549421921962669, -0.925052769654829 ], [ 34.549376129232257, -0.925137269477682 ], [ 34.549355432485939, -0.925219847470198 ], [ 34.549431176515093, -0.925504924780274 ], [ 34.549466632031347, -0.925655076621386 ], [ 34.549514780488387, -0.925721150332201 ], [ 34.549556857119462, -0.925762571461321 ], [ 34.549631126091668, -0.92579806688147 ], [ 34.5496522775112, -0.925878645151319 ], [ 34.549643114649427, -0.925964698651907 ], [ 34.54960749008292, -0.926075311205271 ], [ 34.549656823005641, -0.92613792579843 ], [ 34.549767840458443, -0.92611463691025 ], [ 34.549799761613173, -0.925980445015098 ], [ 34.549858185637149, -0.9258793340686 ], [ 34.549924219406932, -0.925817320367601 ], [ 34.549990232701653, -0.925747555592705 ], [ 34.550035631060737, -0.925664706576271 ], [ 34.550064223219429, -0.92558560651495 ], [ 34.550115231803623, -0.925519491162867 ], [ 34.550138091699182, -0.925459047064998 ], [ 34.550166920241487, -0.925330359993552 ], [ 34.550228813797233, -0.925181970291741 ], [ 34.550390810439943, -0.924508546690978 ], [ 34.550410105893931, -0.924315565369893 ], [ 34.550419983318797, -0.924160798019344 ], [ 34.550450975558583, -0.924018300069256 ], [ 34.550432207576833, -0.923879213423036 ], [ 34.550442507896292, -0.923683985981069 ], [ 34.550439292665871, -0.923458377194445 ], [ 34.550429975239439, -0.923293641799181 ], [ 34.550451599724823, -0.923155587600997 ], [ 34.550480768368281, -0.923056523815696 ], [ 34.550458861029362, -0.923009369467096 ], [ 34.550250915823042, -0.922633992455874 ], [ 34.549953905787561, -0.922915429414839 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4042902", "sub_field": "4042902" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.551608672825047, -0.921178729822374 ], [ 34.55143343246683, -0.921211653177208 ], [ 34.551120358606973, -0.921280680539983 ], [ 34.550936654850787, -0.921278342875399 ], [ 34.550805464883283, -0.921248890164281 ], [ 34.550776268690832, -0.921348455087677 ], [ 34.550805199243918, -0.9214516408875 ], [ 34.55072958710943, -0.921563213762755 ], [ 34.550635115013932, -0.921686537977029 ], [ 34.550540605858806, -0.921836294348995 ], [ 34.550453527158012, -0.92198661702017 ], [ 34.550424556924881, -0.922070859143133 ], [ 34.550445005992039, -0.922170236587777 ], [ 34.550421253244743, -0.922343918767005 ], [ 34.550319428666839, -0.922420264501648 ], [ 34.550309307729492, -0.92247497154792 ], [ 34.55030104585849, -0.922597489374206 ], [ 34.550289235379807, -0.922695761924851 ], [ 34.550411281467909, -0.922917347019954 ], [ 34.550471970375852, -0.92295599811673 ], [ 34.550807049582353, -0.923135522082279 ], [ 34.551477589384312, -0.923520678004762 ], [ 34.551551549774473, -0.923443530368199 ], [ 34.551670006349973, -0.923294158400227 ], [ 34.551854441732218, -0.92307496336656 ], [ 34.551931823147811, -0.922992792616735 ], [ 34.551977110464627, -0.922868218236384 ], [ 34.55196012709176, -0.922760621319948 ], [ 34.551918746003629, -0.922308204986594 ], [ 34.551910527566747, -0.922085257281872 ], [ 34.551906235973362, -0.921904542788813 ], [ 34.551894106862797, -0.92171341298756 ], [ 34.551885951264033, -0.921616816162145 ], [ 34.551830612284682, -0.921324977635609 ], [ 34.551801909736383, -0.921252933956047 ], [ 34.55175557352014, -0.921205858406093 ], [ 34.551608672825047, -0.921178729822374 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4043005", "sub_field": "4043005" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.552088160063327, -0.922825851714054 ], [ 34.552133576393892, -0.922807798835908 ], [ 34.55217799564798, -0.922777845522849 ], [ 34.55222550523041, -0.922745832372555 ], [ 34.552270462618097, -0.92271586465647 ], [ 34.552321656009482, -0.922690012344663 ], [ 34.552383617824148, -0.922659021846177 ], [ 34.552436333498491, -0.922633712035394 ], [ 34.552494822035683, -0.922608350724822 ], [ 34.552553879317209, -0.922584014288059 ], [ 34.552612451168081, -0.922570020351295 ], [ 34.5526793963244, -0.922552924060609 ], [ 34.552733103174937, -0.922545533743633 ], [ 34.552779255274373, -0.922546968605383 ], [ 34.552826120999512, -0.922548411708287 ], [ 34.552876332271929, -0.922552980704899 ], [ 34.552918811795763, -0.922557619186 ], [ 34.552962452649062, -0.922563835744672 ], [ 34.553061435356547, -0.92258577932245 ], [ 34.553136776801793, -0.922601540514673 ], [ 34.553224217700411, -0.922624268741799 ], [ 34.553314956309663, -0.922649405569011 ], [ 34.55339593266342, -0.922678778207114 ], [ 34.553458182840487, -0.922699120220038 ], [ 34.553531278291437, -0.922731786296172 ], [ 34.553633991342487, -0.922780066127885 ], [ 34.553695043320253, -0.922806940149418 ], [ 34.553749825603283, -0.922761247474833 ], [ 34.553777246078681, -0.922737461710221 ], [ 34.553803944524077, -0.922701138224347 ], [ 34.553858052033952, -0.922679363590779 ], [ 34.553911783834778, -0.92266271698067 ], [ 34.553945785221337, -0.922647890887525 ], [ 34.554015129404164, -0.922614484388564 ], [ 34.554140816759173, -0.92256281538609 ], [ 34.554281938637949, -0.922514594055678 ], [ 34.554421062267338, -0.922472593515596 ], [ 34.554546840176833, -0.922417695510853 ], [ 34.554645629483232, -0.9223658045991 ], [ 34.554723323781772, -0.922251636270901 ], [ 34.554663627845173, -0.922157397201618 ], [ 34.554501550595973, -0.922047912161215 ], [ 34.554341179945709, -0.921938536861109 ], [ 34.55412040140402, -0.921806926767444 ], [ 34.55382493460273, -0.921619586837996 ], [ 34.553683439965553, -0.921553703180351 ], [ 34.553531489399163, -0.921467287737541 ], [ 34.553411820250489, -0.921389937454016 ], [ 34.553262558018972, -0.921338066588737 ], [ 34.55313719951981, -0.921291017978154 ], [ 34.553042139306207, -0.921263152597427 ], [ 34.552933615538002, -0.921225651206016 ], [ 34.552829791726467, -0.921209386584942 ], [ 34.55271875314962, -0.921187617683103 ], [ 34.552586846127006, -0.921155372356545 ], [ 34.552496715194764, -0.921061946385722 ], [ 34.552354104199182, -0.920831004391208 ], [ 34.552250232867777, -0.9207071673267 ], [ 34.552113725176582, -0.920586273898043 ], [ 34.551983576554818, -0.920543216327482 ], [ 34.55187366770717, -0.920553302469636 ], [ 34.551802876555591, -0.920693085971517 ], [ 34.551774748335127, -0.920833138932691 ], [ 34.551776128417004, -0.921008632260352 ], [ 34.551816273335959, -0.921161048946093 ], [ 34.551889400596522, -0.921364685065552 ], [ 34.551917236503101, -0.921551124676623 ], [ 34.551941434870187, -0.92178770927621 ], [ 34.551946145213194, -0.921949910042194 ], [ 34.551951377326013, -0.922161882213934 ], [ 34.551968363571319, -0.92247849038726 ], [ 34.551975222644572, -0.922611076818726 ], [ 34.552011026582377, -0.922774388938912 ], [ 34.552039849075847, -0.922827637115716 ], [ 34.552088160063327, -0.922825851714054 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4043105", "sub_field": "4043105" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.555509459688153, -0.925709408954186 ], [ 34.555739938463162, -0.925818073568178 ], [ 34.555969678335977, -0.925981017168614 ], [ 34.556187282815301, -0.926139882216563 ], [ 34.556388474100451, -0.926256436438567 ], [ 34.556638285855037, -0.926355172138286 ], [ 34.556872190162558, -0.926411743322927 ], [ 34.557067365872271, -0.926428504793532 ], [ 34.557143146363003, -0.926346648845565 ], [ 34.557085547751747, -0.926021071928589 ], [ 34.557103588144791, -0.925894197826655 ], [ 34.557064292679947, -0.925679162339949 ], [ 34.55685666692586, -0.925133938719143 ], [ 34.556729399210077, -0.924883814526183 ], [ 34.55676096008311, -0.92470823154645 ], [ 34.556748036968891, -0.924585182505237 ], [ 34.556708918771371, -0.924352074124327 ], [ 34.556607857146041, -0.924149777346567 ], [ 34.556439990390793, -0.924119956278078 ], [ 34.556110316699339, -0.92406423353291 ], [ 34.555816920023148, -0.923960726246742 ], [ 34.555550780526282, -0.923848584900721 ], [ 34.555272308483538, -0.923710422911073 ], [ 34.555055608561673, -0.923598801986745 ], [ 34.554769993706849, -0.923448389298672 ], [ 34.554623292171676, -0.923358293753513 ], [ 34.554489494348303, -0.923324394856752 ], [ 34.554364855692427, -0.923342883766579 ], [ 34.554330982702368, -0.923408634312422 ], [ 34.554361631373659, -0.923495568277219 ], [ 34.554457270169323, -0.923682124462206 ], [ 34.554579934837442, -0.924020811406282 ], [ 34.554772214768583, -0.924536250437399 ], [ 34.555205972042863, -0.92570973518327 ], [ 34.555509459688153, -0.925709408954186 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4043300", "sub_field": "4043300" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.55500010388716, -0.925729724166885 ], [ 34.554815416306553, -0.925824172011236 ], [ 34.554493229963732, -0.925955186894103 ], [ 34.554366371897473, -0.926030887904257 ], [ 34.55438145910977, -0.926079195806835 ], [ 34.554450857716013, -0.926118181420821 ], [ 34.554441800182488, -0.926160554409572 ], [ 34.554468954444808, -0.926223924242449 ], [ 34.554523203525697, -0.926329847145483 ], [ 34.5545714345348, -0.926486676558429 ], [ 34.554640785145338, -0.926640426549582 ], [ 34.554698056450967, -0.926776100002257 ], [ 34.554700986679372, -0.926881620383687 ], [ 34.55474308684547, -0.926969245869581 ], [ 34.554757856188743, -0.927065037108207 ], [ 34.554754888897477, -0.927119851666412 ], [ 34.554784427623233, -0.927173011501317 ], [ 34.554799192389581, -0.927226190967236 ], [ 34.554788324523749, -0.927319650661485 ], [ 34.554779075672229, -0.927437985991291 ], [ 34.554777980832817, -0.927495932238439 ], [ 34.554749313511508, -0.927546662621851 ], [ 34.554769308992597, -0.927588815888672 ], [ 34.554755492370703, -0.927620022920744 ], [ 34.554746643646439, -0.927720692907202 ], [ 34.554740770489403, -0.927788587805893 ], [ 34.554751645784037, -0.927838678308091 ], [ 34.554764459488418, -0.927886907877704 ], [ 34.554769403654177, -0.927931817220093 ], [ 34.554795976081799, -0.927970290721876 ], [ 34.554826525803989, -0.927959771485658 ], [ 34.55489568508375, -0.927951538345265 ], [ 34.554954077075237, -0.927957808558022 ], [ 34.555055391050693, -0.927941065749427 ], [ 34.555158728474701, -0.927928373130648 ], [ 34.55523701519553, -0.927913313522222 ], [ 34.555303545835962, -0.927914982344162 ], [ 34.555386261851517, -0.92790973326947 ], [ 34.555525735700691, -0.927885586395847 ], [ 34.555678705555323, -0.927876003679317 ], [ 34.555806623370167, -0.927870872817918 ], [ 34.55577721146021, -0.927786204326906 ], [ 34.55574417241715, -0.927689603158888 ], [ 34.555721686463528, -0.927609669790082 ], [ 34.555711069097242, -0.927565054416384 ], [ 34.555679690257193, -0.927469736733362 ], [ 34.555659965388159, -0.927407198535972 ], [ 34.555614617016282, -0.927252563277375 ], [ 34.555564360824349, -0.927068132129641 ], [ 34.555542095778932, -0.926968847552537 ], [ 34.555522896457489, -0.926914303070717 ], [ 34.555489882354259, -0.926806832152098 ], [ 34.555476584301438, -0.926749373676807 ], [ 34.555457414617003, -0.926687987696569 ], [ 34.555438012757513, -0.926620001575276 ], [ 34.555415726375642, -0.926555159309076 ], [ 34.555392342034928, -0.92647247562498 ], [ 34.555375889756583, -0.926423881581669 ], [ 34.555362026885788, -0.926375635745604 ], [ 34.555337034949318, -0.926300980907256 ], [ 34.555321091792671, -0.926241179561965 ], [ 34.555303296893022, -0.926189833220389 ], [ 34.555279051202703, -0.92610347919197 ], [ 34.555252633446358, -0.926018054378397 ], [ 34.555241151924747, -0.92597212112809 ], [ 34.555224895818228, -0.9259168233514 ], [ 34.555181450674723, -0.925797006117427 ], [ 34.555146780138521, -0.925694697973774 ], [ 34.555123560703898, -0.925699966094116 ], [ 34.55500010388716, -0.925729724166885 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4043602", "sub_field": "4043602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.553674774353318, -0.93267587656135 ], [ 34.553549269448489, -0.932798125415028 ], [ 34.553416905535741, -0.932934029471101 ], [ 34.553355877844062, -0.933021346372711 ], [ 34.553339626169993, -0.933093325003052 ], [ 34.553321562460617, -0.93314166583812 ], [ 34.553571562766983, -0.933525497945626 ], [ 34.554288992549893, -0.934545217521544 ], [ 34.554351364938363, -0.933994386183116 ], [ 34.554395240298298, -0.933696906377955 ], [ 34.554472349394267, -0.933476753831473 ], [ 34.554629815379137, -0.932853251290078 ], [ 34.554028210273408, -0.932271639322232 ], [ 34.553674774353318, -0.93267587656135 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4043605", "sub_field": "4043605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.554588300610163, -0.933043918140478 ], [ 34.554515049455148, -0.933363669619721 ], [ 34.554440722806177, -0.933668076626236 ], [ 34.554382323994723, -0.933955673354905 ], [ 34.554363168574604, -0.934044426702733 ], [ 34.554337980310329, -0.934208086476938 ], [ 34.554322852947912, -0.93432686837825 ], [ 34.554307718440441, -0.934442791723271 ], [ 34.554292563195602, -0.934548602485776 ], [ 34.554344874911123, -0.934641811865121 ], [ 34.554428318917893, -0.934680091366967 ], [ 34.55455129929085, -0.934735657165726 ], [ 34.554590704826573, -0.934783271818582 ], [ 34.554644336558518, -0.934850269567502 ], [ 34.554692007838973, -0.934903117970457 ], [ 34.554745869008407, -0.934934871849997 ], [ 34.554816777825003, -0.934972654475994 ], [ 34.554891813094898, -0.934929185073533 ], [ 34.555082198294294, -0.934803438841388 ], [ 34.555174860241507, -0.93477403602769 ], [ 34.555216990043469, -0.934811815146646 ], [ 34.555287157510612, -0.934827366650809 ], [ 34.555434125414052, -0.934800373703462 ], [ 34.555476160272129, -0.934698770764122 ], [ 34.555557757338832, -0.934666682890835 ], [ 34.555682398502483, -0.934606373823952 ], [ 34.555773056200593, -0.93455277978454 ], [ 34.555848288249877, -0.934486512942307 ], [ 34.555953767208308, -0.934476601727844 ], [ 34.55603885231907, -0.934473310221176 ], [ 34.556077220894693, -0.934570076254651 ], [ 34.556110606835638, -0.934573654443377 ], [ 34.556203532023403, -0.934533309995852 ], [ 34.556331303534272, -0.934492993463781 ], [ 34.556364929709083, -0.934564636721849 ], [ 34.55646271020418, -0.934550822472242 ], [ 34.556546664713537, -0.934520999586034 ], [ 34.556489822086583, -0.934477608076142 ], [ 34.556359334353019, -0.934411745190418 ], [ 34.556218491774359, -0.934303638344415 ], [ 34.556054208291542, -0.934144268391174 ], [ 34.555922700445109, -0.934011410001409 ], [ 34.555831057407687, -0.933937750126399 ], [ 34.55572077339545, -0.93382316390346 ], [ 34.555573361904692, -0.933706518176647 ], [ 34.55545305164042, -0.933600210962462 ], [ 34.55531527805924, -0.93346787781041 ], [ 34.555185592089828, -0.933352838266484 ], [ 34.55503919705442, -0.933203096495186 ], [ 34.554934594676801, -0.933128856316324 ], [ 34.554814651456617, -0.933024509607928 ], [ 34.554644136320583, -0.93286802662885 ], [ 34.554613463634801, -0.932949854023246 ], [ 34.554588300610163, -0.933043918140478 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5052103", "sub_field": "5052103" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.534783224210891, -0.927750627573522 ], [ 34.534673740602678, -0.927866416161864 ], [ 34.534555047759397, -0.927991423609823 ], [ 34.534417889830742, -0.928114627184638 ], [ 34.534261588532807, -0.928266143964292 ], [ 34.534382112991928, -0.928383762854953 ], [ 34.534515115814592, -0.928531648779706 ], [ 34.534758483072913, -0.928812135134087 ], [ 34.5350394851476, -0.929122059332023 ], [ 34.535162557203208, -0.929247733355751 ], [ 34.535318415895958, -0.929421127230475 ], [ 34.535408319521139, -0.929533710195232 ], [ 34.535532487077937, -0.929684997831544 ], [ 34.535737783904978, -0.929894614015247 ], [ 34.535828249621822, -0.92998630818356 ], [ 34.535926232755102, -0.930089342813404 ], [ 34.536045494759342, -0.930153585370948 ], [ 34.536097589885372, -0.930055112049898 ], [ 34.536146104150127, -0.929949022471525 ], [ 34.536183313881693, -0.92984055521213 ], [ 34.536247492339953, -0.929668772566253 ], [ 34.53628673143195, -0.929614214772345 ], [ 34.536280621179429, -0.92956645444109 ], [ 34.536259792085303, -0.929521219489881 ], [ 34.536288908638276, -0.929440454793479 ], [ 34.536326524707228, -0.929317128720852 ], [ 34.536368360875997, -0.9292087287401 ], [ 34.53640514118915, -0.929122374523152 ], [ 34.536467667746237, -0.928912459145159 ], [ 34.536531971939773, -0.928735001891769 ], [ 34.536572179170847, -0.928642535736552 ], [ 34.536631879217033, -0.928571794745631 ], [ 34.536604274117387, -0.928552508269177 ], [ 34.536360711608957, -0.928397991031595 ], [ 34.536163269071579, -0.928287087647733 ], [ 34.535936247988161, -0.92815367003299 ], [ 34.5357161765847, -0.928027452402824 ], [ 34.535500736940023, -0.927909153646728 ], [ 34.535160155435939, -0.927720979503536 ], [ 34.53486950256179, -0.927563094449098 ], [ 34.534783224210891, -0.927750627573522 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5052207", "sub_field": "5052207" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.52665233687101, -0.926451849113769 ], [ 34.526549031387979, -0.926421292213002 ], [ 34.52636234847833, -0.926423293621708 ], [ 34.526255399757808, -0.926413582175781 ], [ 34.526246808013411, -0.926737214469312 ], [ 34.526255829188017, -0.927012306907619 ], [ 34.526209337065808, -0.927122817639197 ], [ 34.526233317970409, -0.927122725088743 ], [ 34.526399209410037, -0.927165315489124 ], [ 34.526666553593493, -0.927209492914412 ], [ 34.526783263461539, -0.927217922692568 ], [ 34.52677780269206, -0.926892524736238 ], [ 34.526767992435623, -0.926461322857392 ], [ 34.52665233687101, -0.926451849113769 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5052503", "sub_field": "5052503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.535792229603693, -0.932385232119908 ], [ 34.535718505136757, -0.932357688898829 ], [ 34.535625141998473, -0.93234823014146 ], [ 34.535546130619913, -0.932322296613725 ], [ 34.535449404311613, -0.932294911686073 ], [ 34.535358490443237, -0.932273049448474 ], [ 34.535279898689467, -0.932251075628959 ], [ 34.535168172423113, -0.932219774571223 ], [ 34.535033393952332, -0.932203606779849 ], [ 34.534932442744903, -0.932184524102873 ], [ 34.534831699405153, -0.932168904833163 ], [ 34.534738470369327, -0.932163112081459 ], [ 34.534675212582478, -0.93215947946806 ], [ 34.534524751971638, -0.932167322032268 ], [ 34.534493018044707, -0.932155817414133 ], [ 34.534372069575447, -0.932167778810375 ], [ 34.534235874584887, -0.932146126055935 ], [ 34.534120791690491, -0.932118164040404 ], [ 34.534017396537891, -0.932096877808103 ], [ 34.533923039823833, -0.93206722796976 ], [ 34.533851012565592, -0.932036653104644 ], [ 34.533802279277573, -0.932013687830131 ], [ 34.53370292091121, -0.931966621176691 ], [ 34.533645618872463, -0.931925788464853 ], [ 34.533539587727788, -0.931858483218474 ], [ 34.533416124999647, -0.931764047303608 ], [ 34.533257938798137, -0.931648826546791 ], [ 34.533165851309782, -0.931580853159021 ], [ 34.533128347449022, -0.93153357059081 ], [ 34.533058171360722, -0.931440678671277 ], [ 34.533013016562784, -0.931409292052244 ], [ 34.532961540039082, -0.931352973643015 ], [ 34.532929568243709, -0.931364273365281 ], [ 34.532820306986878, -0.931440574937691 ], [ 34.532722031778292, -0.931521970141527 ], [ 34.532655767964243, -0.931573568878514 ], [ 34.532564087283127, -0.93164404455207 ], [ 34.532490956169369, -0.931702517177011 ], [ 34.532382100091411, -0.931788081820573 ], [ 34.5322902651832, -0.931860326685017 ], [ 34.532257995880968, -0.931915681038881 ], [ 34.53227663494286, -0.931961361059287 ], [ 34.53230133445124, -0.932015360661792 ], [ 34.532353781972773, -0.932082086531564 ], [ 34.532434929900901, -0.932147469987126 ], [ 34.532581471437837, -0.932254749055244 ], [ 34.532680386874787, -0.932346905161402 ], [ 34.532764439254102, -0.932409207832152 ], [ 34.532818993720127, -0.932450559006884 ], [ 34.532899354967483, -0.932494876831535 ], [ 34.532924025077698, -0.932524068912605 ], [ 34.532987805860373, -0.932554086189291 ], [ 34.533003447095673, -0.932579517060399 ], [ 34.533044022467926, -0.932596057873901 ], [ 34.533097964357637, -0.932638774524081 ], [ 34.533170278318721, -0.932665620467646 ], [ 34.533234387010552, -0.932720213807133 ], [ 34.533337252373201, -0.932777225722834 ], [ 34.533498416469648, -0.932845462955281 ], [ 34.533541962765739, -0.932854862853214 ], [ 34.533657485492952, -0.932890106905377 ], [ 34.533752805010522, -0.932902863241544 ], [ 34.533950629685172, -0.932958327532738 ], [ 34.534051559616238, -0.932957893433282 ], [ 34.534173488895249, -0.932977325542006 ], [ 34.53428504011913, -0.932993765218645 ], [ 34.534421608485367, -0.933013991998831 ], [ 34.534520858623146, -0.933050363966649 ], [ 34.534578600689819, -0.933065340011993 ], [ 34.534648908580351, -0.933109657562736 ], [ 34.534694792993278, -0.933164118120941 ], [ 34.534750849408667, -0.933231528487763 ], [ 34.534812966017917, -0.933267127165317 ], [ 34.534863611303912, -0.933271486019655 ], [ 34.534954585041447, -0.933244669908512 ], [ 34.535015289104606, -0.93317902496481 ], [ 34.535106973014763, -0.93315079604498 ], [ 34.535163412212171, -0.93300474878075 ], [ 34.53523545011543, -0.932950469435098 ], [ 34.535368832331123, -0.932906162870744 ], [ 34.535540407188712, -0.932838451073196 ], [ 34.53573621593948, -0.932743682976791 ], [ 34.535934559897314, -0.932427858602648 ], [ 34.535792229603693, -0.932385232119908 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5052900", "sub_field": "5052900" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.545669473229168, -0.924590041660346 ], [ 34.545681876877431, -0.924713493162345 ], [ 34.545687773785858, -0.924899493140795 ], [ 34.545699167382622, -0.925054380660408 ], [ 34.545759988225761, -0.925217201850196 ], [ 34.545842112522678, -0.925390068705403 ], [ 34.545986627992583, -0.92557019709001 ], [ 34.546078579951477, -0.925689900243108 ], [ 34.546211259612193, -0.925907671227523 ], [ 34.546311329065169, -0.926060921804421 ], [ 34.546360255687382, -0.926323936766513 ], [ 34.546431466534557, -0.926388847578765 ], [ 34.546467097729732, -0.926472549041247 ], [ 34.546668043786873, -0.92647932876508 ], [ 34.546824106835693, -0.926449973297853 ], [ 34.547007336781817, -0.926500970254778 ], [ 34.547187223590967, -0.926576086285329 ], [ 34.547250204271307, -0.926646969187909 ], [ 34.547356069479257, -0.926647664072749 ], [ 34.54747848122345, -0.926668591345438 ], [ 34.547557628870543, -0.926600252224721 ], [ 34.547622199250071, -0.926537881102239 ], [ 34.547674752045822, -0.926459132259183 ], [ 34.54770916362709, -0.926388296109076 ], [ 34.547723372008441, -0.926284796508099 ], [ 34.54776394722834, -0.926191428726727 ], [ 34.547784254605332, -0.9261223550005 ], [ 34.547774100295847, -0.926045203528169 ], [ 34.547796447207652, -0.925931260493529 ], [ 34.54772540768866, -0.925727274707497 ], [ 34.547682868337461, -0.925502267956573 ], [ 34.547614235692187, -0.92520125818961 ], [ 34.547557704006898, -0.924746068665844 ], [ 34.547529218999713, -0.924357312094286 ], [ 34.547520916681158, -0.924063094768483 ], [ 34.547368325379558, -0.924071856656302 ], [ 34.547141101389123, -0.924108957427577 ], [ 34.546807068157563, -0.924117658974762 ], [ 34.54659722316552, -0.924136113432964 ], [ 34.546402529828072, -0.924160377942412 ], [ 34.546236928674482, -0.924216272693043 ], [ 34.546045083282813, -0.924305381784234 ], [ 34.545876232742373, -0.924425320230292 ], [ 34.545669473229168, -0.924590041660346 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5053500", "sub_field": "5053500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541706557224742, -0.939573609926086 ], [ 34.541488174734077, -0.939782419669452 ], [ 34.541827468063893, -0.940122180657309 ], [ 34.542160258211787, -0.940435779985403 ], [ 34.54237579096354, -0.940626237567017 ], [ 34.542566271728482, -0.940823252646794 ], [ 34.54278274262203, -0.941029231961956 ], [ 34.543052530428987, -0.941255920941919 ], [ 34.543243126141121, -0.941380775689292 ], [ 34.543377286379979, -0.9414707434785 ], [ 34.543510936156913, -0.941553761831122 ], [ 34.543698317077741, -0.941622515758221 ], [ 34.543887140869003, -0.941663589331152 ], [ 34.544067451126892, -0.941685906899316 ], [ 34.544086232702483, -0.94148781233902 ], [ 34.544117843038912, -0.941487960894649 ], [ 34.544092375026111, -0.941314058037309 ], [ 34.544043365051792, -0.940915675542696 ], [ 34.543966952903908, -0.940486431902214 ], [ 34.54344503202681, -0.941010104294636 ], [ 34.543095325002071, -0.940674810279224 ], [ 34.543111096988149, -0.940622439048768 ], [ 34.543358571308993, -0.940464060440975 ], [ 34.543558010346651, -0.940325463180145 ], [ 34.543753570585572, -0.940155895777708 ], [ 34.54370723808136, -0.940080621811769 ], [ 34.543396524103692, -0.939724906332436 ], [ 34.543417312805552, -0.939676427792454 ], [ 34.543297593632992, -0.939627856649012 ], [ 34.543288908205717, -0.9395777665594 ], [ 34.543196408297057, -0.939497688467097 ], [ 34.543151158914682, -0.939428548769639 ], [ 34.542917075554612, -0.939170251586432 ], [ 34.542784017267337, -0.939283955609318 ], [ 34.54275460837178, -0.939314959908645 ], [ 34.542806473209893, -0.939361403268703 ], [ 34.542641502479711, -0.939532031965027 ], [ 34.5424335919962, -0.939724633615244 ], [ 34.542293559452503, -0.939866277655496 ], [ 34.542173515936049, -0.939988063669737 ], [ 34.542042761557589, -0.939898598468815 ], [ 34.541944265329533, -0.939824731837004 ], [ 34.541873793320768, -0.939771986371341 ], [ 34.541831726538653, -0.939684044729136 ], [ 34.541779087560691, -0.939617263940667 ], [ 34.541706557224742, -0.939573609926086 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5053504", "sub_field": "5053504" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.541465691483822, -0.939753084296751 ], [ 34.541680454604709, -0.939541654810764 ], [ 34.541810341429553, -0.9393186930189 ], [ 34.541829993305633, -0.93924677512763 ], [ 34.541804039748648, -0.939200955716626 ], [ 34.54165097836556, -0.939064654364699 ], [ 34.541490761513487, -0.938914304997256 ], [ 34.541329214654347, -0.938756545071425 ], [ 34.541237460409739, -0.938665319547647 ], [ 34.541141739732083, -0.938578462467459 ], [ 34.540950529979803, -0.93837529309646 ], [ 34.540822854404993, -0.938238240204175 ], [ 34.540787868416473, -0.938301190662269 ], [ 34.540755231093101, -0.938411602444627 ], [ 34.540725151162903, -0.938467579628276 ], [ 34.54066123981508, -0.938498761592688 ], [ 34.540607317661838, -0.938522506710558 ], [ 34.540524669545313, -0.93849008592498 ], [ 34.540430853384471, -0.938447630146408 ], [ 34.540435491429903, -0.938396790567148 ], [ 34.540401949140048, -0.93834436705599 ], [ 34.540344261893047, -0.938360611440881 ], [ 34.540294764655421, -0.938293236286766 ], [ 34.540265117870867, -0.938223473062474 ], [ 34.540273096762157, -0.938171317589093 ], [ 34.540308665741428, -0.938129360316831 ], [ 34.540366283595311, -0.938067600295252 ], [ 34.540401279177964, -0.938039309844606 ], [ 34.540448285425661, -0.938083832977763 ], [ 34.540567678430698, -0.937996610315746 ], [ 34.540496765509168, -0.937878041004843 ], [ 34.5403683055196, -0.937725057998191 ], [ 34.540253740143783, -0.937597968712069 ], [ 34.540221584266092, -0.937564523915815 ], [ 34.540154666238003, -0.937587725582232 ], [ 34.540139732811362, -0.937626016866467 ], [ 34.540190597731538, -0.937715322558704 ], [ 34.540238910213027, -0.93774011421596 ], [ 34.540247590812427, -0.937830538184951 ], [ 34.540206672641879, -0.937852908649836 ], [ 34.540145132440067, -0.937862953728013 ], [ 34.540088824264373, -0.937833871626359 ], [ 34.540033404152062, -0.937767375880663 ], [ 34.539976100180603, -0.937679591264356 ], [ 34.539950190513487, -0.93765737595339 ], [ 34.539875796178471, -0.937711800522302 ], [ 34.539794715600159, -0.937699650478249 ], [ 34.539626951115707, -0.937739385509953 ], [ 34.539526760614521, -0.937870703905419 ], [ 34.539712594265168, -0.938038003045797 ], [ 34.539917467249893, -0.938229648202813 ], [ 34.540055201546153, -0.938374545755907 ], [ 34.540197612885052, -0.938522498712547 ], [ 34.540372100976647, -0.938702525737063 ], [ 34.540584266540968, -0.938905116294664 ], [ 34.540805926608627, -0.939119893317215 ], [ 34.540958661459463, -0.939270627960592 ], [ 34.54111877854119, -0.939412783566784 ], [ 34.541341409994637, -0.939644001429581 ], [ 34.541465691483822, -0.939753084296751 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5053900", "sub_field": "5053900" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.546930103420721, -0.934130170460893 ], [ 34.546889340894353, -0.934332741536233 ], [ 34.546798992938889, -0.934721842281054 ], [ 34.546755953929313, -0.93494256044316 ], [ 34.546700479762272, -0.935287249009985 ], [ 34.546595253967787, -0.935611093665608 ], [ 34.546721964153662, -0.93572505773128 ], [ 34.54706838417021, -0.935730952260012 ], [ 34.547300493971427, -0.935759803057746 ], [ 34.547473962868018, -0.935767727361452 ], [ 34.547609180529143, -0.935749735180223 ], [ 34.547836365481878, -0.935768658505488 ], [ 34.547985421410573, -0.93576739680351 ], [ 34.548177537552888, -0.935764989302652 ], [ 34.548311041715138, -0.935781443953689 ], [ 34.548332761814798, -0.935724748117192 ], [ 34.548363654023817, -0.935567802883859 ], [ 34.548467056736001, -0.935343215972168 ], [ 34.548599702258812, -0.935129585069048 ], [ 34.548671354954543, -0.935076112014066 ], [ 34.548712742093798, -0.935009904268599 ], [ 34.548663307799401, -0.93491654681797 ], [ 34.548589183164729, -0.93480119184009 ], [ 34.548486974802017, -0.934657579000962 ], [ 34.548387931699743, -0.934539828845787 ], [ 34.548282984238227, -0.934408846003896 ], [ 34.548204542645223, -0.93430595464684 ], [ 34.548133626544342, -0.934228963435491 ], [ 34.548085109574977, -0.934191523874398 ], [ 34.548038364702563, -0.934149103594434 ], [ 34.547979141051862, -0.934115717713364 ], [ 34.547892804146763, -0.934101591717427 ], [ 34.547793184504712, -0.934089509280276 ], [ 34.547643780887228, -0.934052624672216 ], [ 34.547478520028768, -0.934017423346149 ], [ 34.547325132533103, -0.933962170229604 ], [ 34.547221135098823, -0.933929042335754 ], [ 34.547035367858918, -0.933868546281725 ], [ 34.54698375065847, -0.933834163948455 ], [ 34.546930103420721, -0.934130170460893 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5053903", "sub_field": "5053903" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.548248704503401, -0.934360411880229 ], [ 34.548481339536423, -0.934641912983941 ], [ 34.54859650806759, -0.934807203367999 ], [ 34.548820562482007, -0.935123272165046 ], [ 34.549027300756791, -0.935396481707047 ], [ 34.549158325619842, -0.935565098379747 ], [ 34.549317223168231, -0.935786935775804 ], [ 34.54939783490174, -0.93587761232669 ], [ 34.549515237565252, -0.935991250433117 ], [ 34.549617467493533, -0.936056422686082 ], [ 34.549816354103193, -0.936043494228619 ], [ 34.549904446612352, -0.935904093262751 ], [ 34.549965707124237, -0.93594967245741 ], [ 34.550009914701903, -0.935934854260927 ], [ 34.550111814404183, -0.935829121762902 ], [ 34.550172260595573, -0.935528377409765 ], [ 34.550237616196497, -0.935429822826994 ], [ 34.550315199475193, -0.93535034317855 ], [ 34.550298879458147, -0.935309272956854 ], [ 34.550297655378372, -0.935254685470897 ], [ 34.550352123639129, -0.935212773738001 ], [ 34.550357932265669, -0.935084197680812 ], [ 34.550395207323973, -0.934921637095413 ], [ 34.550376971554797, -0.934903487653296 ], [ 34.55031621329951, -0.934813596398485 ], [ 34.55021504603868, -0.934687807011838 ], [ 34.550081547458888, -0.934513160317549 ], [ 34.549959956616988, -0.934364952914248 ], [ 34.549939247381651, -0.93434561652985 ], [ 34.549923634993888, -0.934308659008827 ], [ 34.549897047663507, -0.934280490088323 ], [ 34.54988110417758, -0.93422737658848 ], [ 34.549770937274559, -0.934110992255372 ], [ 34.549657300463487, -0.933979575962715 ], [ 34.549589405679001, -0.933877721440225 ], [ 34.54958034934554, -0.933806746302359 ], [ 34.549707191014448, -0.933742547437205 ], [ 34.549596690136497, -0.933616581934539 ], [ 34.54949602210413, -0.933567276057734 ], [ 34.549425051666297, -0.933469846772563 ], [ 34.549347887861657, -0.933358875430701 ], [ 34.549294982668989, -0.933273551576339 ], [ 34.549265210974021, -0.933161774803202 ], [ 34.549222045390053, -0.933083600280653 ], [ 34.549177119037033, -0.933032303762606 ], [ 34.549017275006207, -0.933048913941534 ], [ 34.548977179280861, -0.932970609980235 ], [ 34.548908778030537, -0.933066482764625 ], [ 34.548829174659367, -0.93328342054411 ], [ 34.54877371779277, -0.933404740656681 ], [ 34.548703289746207, -0.933519110095533 ], [ 34.54868469550037, -0.933649831555364 ], [ 34.548649164414478, -0.933715025417453 ], [ 34.548550458323547, -0.933864210464505 ], [ 34.548487979217953, -0.933961101808509 ], [ 34.548355674558501, -0.934149483170109 ], [ 34.548233561657469, -0.934116293102513 ], [ 34.548101448076032, -0.934008373713582 ], [ 34.548047662139552, -0.933981188721003 ], [ 34.547966584165387, -0.934038805205804 ], [ 34.548248704503401, -0.934360411880229 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5054101", "sub_field": "5054101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.553180932730882, -0.935099934463369 ], [ 34.552958732598547, -0.935076405560519 ], [ 34.55270329304804, -0.935114303517583 ], [ 34.55248836521902, -0.935167230356232 ], [ 34.552237576897262, -0.935236645988029 ], [ 34.552008980183047, -0.935310987692372 ], [ 34.551879841491107, -0.935465119955381 ], [ 34.55166047384219, -0.935702921689815 ], [ 34.55145448353214, -0.935966337701239 ], [ 34.551446572887258, -0.936146645652655 ], [ 34.551635060789692, -0.936245225915063 ], [ 34.552023631854709, -0.936388368760097 ], [ 34.552371889133553, -0.936560332778929 ], [ 34.552649803731541, -0.936732260709667 ], [ 34.552776388428697, -0.936552908084865 ], [ 34.552926139049767, -0.936627472533845 ], [ 34.553077262899983, -0.936325006482906 ], [ 34.552854489959593, -0.936120326476626 ], [ 34.553121814312263, -0.935569356936707 ], [ 34.553186840882532, -0.935516940345767 ], [ 34.553501169601383, -0.935755757526611 ], [ 34.553547543994107, -0.935728160336167 ], [ 34.553469583649353, -0.935544092102352 ], [ 34.55341974879255, -0.935346662483438 ], [ 34.553344297499287, -0.935121230467525 ], [ 34.553180932730882, -0.935099934463369 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5054700", "sub_field": "5054700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.550997037837277, -0.938867425948718 ], [ 34.55108554359596, -0.939060242885368 ], [ 34.551132279937264, -0.939211541188952 ], [ 34.551168483912832, -0.939451426131663 ], [ 34.551168589723432, -0.939721965640746 ], [ 34.551158351482577, -0.939982116418097 ], [ 34.551106044162758, -0.94021133591185 ], [ 34.551032915852197, -0.940476826638307 ], [ 34.550980715660273, -0.940695309201552 ], [ 34.55090796948496, -0.940919047317615 ], [ 34.550803836247013, -0.941080229411472 ], [ 34.550673711065023, -0.94121528857656 ], [ 34.550543644856667, -0.941428167516212 ], [ 34.550382539039468, -0.941754195805586 ], [ 34.550538396569912, -0.941843381667403 ], [ 34.550986161582223, -0.941809005234404 ], [ 34.551320307987623, -0.941774040082822 ], [ 34.551546338569018, -0.941353473100571 ], [ 34.551689141457672, -0.941090722880128 ], [ 34.55183212581197, -0.940834223452808 ], [ 34.551927627136763, -0.940639706314624 ], [ 34.552061398141547, -0.94030498526725 ], [ 34.552190719556172, -0.940005316520549 ], [ 34.552264660524003, -0.939923781155046 ], [ 34.55223321585904, -0.939802187375593 ], [ 34.55228339154629, -0.93963481282665 ], [ 34.552342925574123, -0.939522958215415 ], [ 34.552385005080012, -0.939459303133774 ], [ 34.552444930820329, -0.939289454641191 ], [ 34.552507497850499, -0.939104789909473 ], [ 34.552512668011339, -0.939001792558041 ], [ 34.552487326372891, -0.938854216399812 ], [ 34.552454780953383, -0.938713329556919 ], [ 34.552408893064943, -0.938598036046374 ], [ 34.552369999136168, -0.938451379876354 ], [ 34.552337718528662, -0.93830275312876 ], [ 34.552310802028472, -0.938185427729408 ], [ 34.550997037837277, -0.938867425948718 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6060200", "sub_field": "6060200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.557852843267938, -0.937228970842136 ], [ 34.557860070225189, -0.937535214159227 ], [ 34.55786363171741, -0.937864871445712 ], [ 34.557864813524233, -0.938165734270179 ], [ 34.557866819035937, -0.938303646928434 ], [ 34.557883770381729, -0.938410345440698 ], [ 34.557951506318567, -0.938389860660336 ], [ 34.558031813255973, -0.938392843873322 ], [ 34.558133404695013, -0.938414052161486 ], [ 34.558243886710187, -0.93843298127374 ], [ 34.558391625534263, -0.938469742820982 ], [ 34.558558333242317, -0.938507998075633 ], [ 34.5587382035554, -0.938534963897948 ], [ 34.559002792848993, -0.938563887265276 ], [ 34.559144430441989, -0.938577461328016 ], [ 34.559249088604872, -0.938602133550412 ], [ 34.559384146760003, -0.938641862634871 ], [ 34.559585166681352, -0.938667440760838 ], [ 34.559704681356031, -0.938680241843457 ], [ 34.560083965683788, -0.938767688458231 ], [ 34.560303417194341, -0.938817784156387 ], [ 34.560538310316353, -0.938870089815587 ], [ 34.560692252842621, -0.938907470908007 ], [ 34.560839114076643, -0.938934520736556 ], [ 34.560947450782137, -0.938940412531647 ], [ 34.56095690906092, -0.938883415719136 ], [ 34.56084707485531, -0.938717331416211 ], [ 34.560690988189059, -0.938462849135301 ], [ 34.560433914929128, -0.938051700080878 ], [ 34.56026843445342, -0.937803669128382 ], [ 34.560165695343727, -0.937646162516694 ], [ 34.560059316896883, -0.937501359608436 ], [ 34.559972638097967, -0.93737995764798 ], [ 34.559869672437969, -0.937200161348368 ], [ 34.559833077893003, -0.9371113695263 ], [ 34.559753818336787, -0.936958666584284 ], [ 34.559691126793901, -0.936757707425897 ], [ 34.559664183744147, -0.936647763589564 ], [ 34.559629720495892, -0.936581693835134 ], [ 34.559583974202582, -0.936569220143932 ], [ 34.559529131086528, -0.936600594240786 ], [ 34.559437924891292, -0.936637331487374 ], [ 34.559330422625521, -0.936681384699246 ], [ 34.559219421591898, -0.936716289417416 ], [ 34.559021387020401, -0.936777195905574 ], [ 34.558901107650968, -0.936830317025692 ], [ 34.558801195108153, -0.936868408759734 ], [ 34.55868682574264, -0.936918853043817 ], [ 34.558584974293979, -0.936949324634589 ], [ 34.558402590811582, -0.937023470817248 ], [ 34.558324003138523, -0.937056121099421 ], [ 34.558192093099393, -0.937094112967603 ], [ 34.558050529321832, -0.937148613214844 ], [ 34.557936323261828, -0.937196033449615 ], [ 34.557852843267938, -0.937228970842136 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6060300", "sub_field": "6060300" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.558976017460289, -0.935106587878912 ], [ 34.559068315515553, -0.935297128033958 ], [ 34.559117400526183, -0.935404510853889 ], [ 34.559194722176578, -0.935549875056488 ], [ 34.559281550998001, -0.935786146478888 ], [ 34.559379429163343, -0.935994240390407 ], [ 34.559471319021952, -0.936221241102205 ], [ 34.559553257135491, -0.936420301371242 ], [ 34.559635102201192, -0.936583323347886 ], [ 34.559668259402557, -0.936666177633761 ], [ 34.559721380816093, -0.936826086492039 ], [ 34.559793378540732, -0.936990516196701 ], [ 34.559851525578843, -0.937136265205663 ], [ 34.559893977450692, -0.937210968398009 ], [ 34.559932426268062, -0.937215141979689 ], [ 34.559983808340363, -0.937157116857538 ], [ 34.56008257461108, -0.937091224714377 ], [ 34.560128060671417, -0.937039374237995 ], [ 34.560198748831233, -0.936987590699913 ], [ 34.560281759423347, -0.936915993858341 ], [ 34.560355422445838, -0.936862628448687 ], [ 34.560412139335973, -0.936827111583465 ], [ 34.560482262837787, -0.936781691973907 ], [ 34.560532811043487, -0.93675411288578 ], [ 34.560593595853803, -0.936718297361174 ], [ 34.560653798887842, -0.936690482516943 ], [ 34.560724099541403, -0.936662183631398 ], [ 34.560777010412878, -0.936632531469764 ], [ 34.560872502344083, -0.93659203464466 ], [ 34.560944530979818, -0.936559219496554 ], [ 34.561016555092323, -0.936527901709969 ], [ 34.561091393192889, -0.936499327437972 ], [ 34.561165548233681, -0.936471696565284 ], [ 34.56121886492474, -0.936457010833968 ], [ 34.561191128387073, -0.936398046636452 ], [ 34.561154051881331, -0.936334334821904 ], [ 34.5611230570305, -0.936283104547488 ], [ 34.56109284954799, -0.936230699396512 ], [ 34.56105329712765, -0.936131781139948 ], [ 34.560992885874853, -0.936040004382009 ], [ 34.560937944622303, -0.935951355815491 ], [ 34.560897784735232, -0.935885540023542 ], [ 34.560836692591877, -0.935804252741328 ], [ 34.560767578022812, -0.935725175608477 ], [ 34.560710000252563, -0.935667704251859 ], [ 34.560671531978272, -0.935596060466168 ], [ 34.560589721144929, -0.935528216944984 ], [ 34.560529737249063, -0.935474153520192 ], [ 34.560468724149644, -0.935421314516884 ], [ 34.560385025824331, -0.935339209844212 ], [ 34.560334636345402, -0.935294473058085 ], [ 34.560269345443778, -0.935226186795654 ], [ 34.56018454524272, -0.935118083881895 ], [ 34.560102540466538, -0.935061186451809 ], [ 34.560017986914673, -0.935006370952656 ], [ 34.559943308673887, -0.934943575410601 ], [ 34.559867365863603, -0.934880632868853 ], [ 34.559762079201093, -0.934809599481301 ], [ 34.559665427196933, -0.934747456967058 ], [ 34.55960735588507, -0.934732746940201 ], [ 34.559549842170142, -0.934723768997936 ], [ 34.55946869712232, -0.934741817715285 ], [ 34.559377533618587, -0.934755228811434 ], [ 34.559276066424097, -0.934794753376352 ], [ 34.55918932254221, -0.9348104931697 ], [ 34.559097178252387, -0.934850586217423 ], [ 34.558972246816552, -0.934905790559178 ], [ 34.558919694139782, -0.934959026403948 ], [ 34.558976017460289, -0.935106587878912 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6060402", "sub_field": "6060402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.562047951432469, -0.936348941315117 ], [ 34.561889039853092, -0.936366861453264 ], [ 34.561723749041647, -0.936394877078957 ], [ 34.561590537789833, -0.936398885461474 ], [ 34.561404558617141, -0.936442071792937 ], [ 34.561252461314069, -0.936469530740704 ], [ 34.561132053448212, -0.936513621363894 ], [ 34.560972263709012, -0.936568705477211 ], [ 34.560835148140526, -0.936637638812016 ], [ 34.560715415784941, -0.936695070129837 ], [ 34.560550918627072, -0.936768110903719 ], [ 34.560478267031911, -0.936832267769592 ], [ 34.560461018898707, -0.936935789538192 ], [ 34.560477834247401, -0.937039022498238 ], [ 34.560543985328032, -0.937128773821982 ], [ 34.560648811843059, -0.937136559110768 ], [ 34.560748858629722, -0.937213097637696 ], [ 34.560859913010972, -0.937313469198771 ], [ 34.5609819979313, -0.937474424164033 ], [ 34.561080324061479, -0.937611259938077 ], [ 34.561177973855088, -0.937679673359398 ], [ 34.56129111453793, -0.937732566268734 ], [ 34.561433297688467, -0.937735574898722 ], [ 34.561575733561263, -0.937780816763351 ], [ 34.561766165425901, -0.937800360087911 ], [ 34.561925247157788, -0.937848926256882 ], [ 34.561980376080207, -0.937804278971455 ], [ 34.561835229062652, -0.937639466990072 ], [ 34.561818533655611, -0.937523058226641 ], [ 34.561876066767447, -0.937464864464142 ], [ 34.561991828312138, -0.93740127894646 ], [ 34.562134436060553, -0.937318814502162 ], [ 34.562253602073682, -0.937262705525774 ], [ 34.562527504074843, -0.937457423072451 ], [ 34.562608239597708, -0.937538982798876 ], [ 34.562684781309258, -0.937550225759819 ], [ 34.562766756788847, -0.937609780160599 ], [ 34.562826397724578, -0.937698679350459 ], [ 34.56288219920711, -0.937783850064629 ], [ 34.563044854457502, -0.937944389599098 ], [ 34.563155554810898, -0.938041020958146 ], [ 34.563219299822869, -0.93806552628613 ], [ 34.563258963186527, -0.938044266374161 ], [ 34.56328995962506, -0.937978601926951 ], [ 34.563266718728663, -0.937912234372241 ], [ 34.563167171665498, -0.937784589443595 ], [ 34.563077871222958, -0.937631358422223 ], [ 34.562993617132378, -0.93752529926678 ], [ 34.562928015588, -0.937424982309207 ], [ 34.562847167007853, -0.937323787824009 ], [ 34.562765252367043, -0.937216404449598 ], [ 34.562682171382853, -0.937098912099776 ], [ 34.56259275915928, -0.936991709648374 ], [ 34.562535333526867, -0.93687456973791 ], [ 34.562494488776231, -0.936805680253093 ], [ 34.562454988688529, -0.93672227028965 ], [ 34.562440007452018, -0.936673518087343 ], [ 34.562409724115717, -0.936623714062286 ], [ 34.562380756968103, -0.936572851897972 ], [ 34.562342171074263, -0.936520948287765 ], [ 34.562306474841748, -0.936484330009124 ], [ 34.562280069550603, -0.936429186399744 ], [ 34.562247117203867, -0.936382831770413 ], [ 34.562239303641867, -0.936350350447514 ], [ 34.562221680014112, -0.936311341740856 ], [ 34.562047951432469, -0.936348941315117 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6060903", "sub_field": "6060903" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.56328298534217, -0.938097566815428 ], [ 34.563187053692452, -0.938246906471678 ], [ 34.563082560269173, -0.938392977802981 ], [ 34.562978199939828, -0.93856517255279 ], [ 34.562879801764502, -0.938717013762466 ], [ 34.562747447403872, -0.938931181348619 ], [ 34.562578648307507, -0.939208270697123 ], [ 34.562482369821993, -0.939346423838679 ], [ 34.562375576023683, -0.939531435958377 ], [ 34.562286842087353, -0.939683576551875 ], [ 34.56243035701165, -0.939691132191057 ], [ 34.562520179148883, -0.939761466443001 ], [ 34.562577860453487, -0.939809396867309 ], [ 34.562640008291012, -0.939873753654653 ], [ 34.562733751945053, -0.939954828353401 ], [ 34.562803974188213, -0.940000406198137 ], [ 34.562891668468268, -0.940056627587217 ], [ 34.56298773402937, -0.940118079650616 ], [ 34.563081462256307, -0.940163855092131 ], [ 34.56317496987478, -0.940231088676979 ], [ 34.563290142769702, -0.940306245149335 ], [ 34.563400362910087, -0.940405722851545 ], [ 34.563494474564934, -0.940482636106667 ], [ 34.563616887937123, -0.940585954734602 ], [ 34.563729335835603, -0.940671061716603 ], [ 34.563807834060682, -0.9407271316088 ], [ 34.563905101614587, -0.940803902464746 ], [ 34.564001955805203, -0.940887080240754 ], [ 34.564046286147949, -0.940909860428429 ], [ 34.564090638892807, -0.940916892847869 ], [ 34.564124163094533, -0.940903924678141 ], [ 34.564160089611697, -0.940884787123465 ], [ 34.56420992552934, -0.940863936389365 ], [ 34.564254145808462, -0.940851429237077 ], [ 34.564299404788763, -0.940845656704668 ], [ 34.564343140386541, -0.940835618038098 ], [ 34.564406841540332, -0.940839100393561 ], [ 34.564460073920642, -0.94084737167559 ], [ 34.564535671802133, -0.940873754175154 ], [ 34.564627126234242, -0.940919905142326 ], [ 34.564712539519263, -0.940974682833834 ], [ 34.564809299477147, -0.941028681911311 ], [ 34.564896733234477, -0.941087855598186 ], [ 34.565001581985463, -0.941154983252145 ], [ 34.565032580258453, -0.941180937251277 ], [ 34.565048038440693, -0.94120236199872 ], [ 34.565087570987508, -0.941225349675389 ], [ 34.565128688938692, -0.941227183224262 ], [ 34.565166421479162, -0.941224755034779 ], [ 34.565188756356569, -0.941209529500743 ], [ 34.565202558935113, -0.941168548163426 ], [ 34.565198282625538, -0.941135099172812 ], [ 34.565167256223504, -0.941082635888805 ], [ 34.56512268771219, -0.941013739306124 ], [ 34.565066715144731, -0.940921549737213 ], [ 34.564967849427518, -0.940794116329619 ], [ 34.56489139652129, -0.940696079381134 ], [ 34.564812170146929, -0.940578588283 ], [ 34.564754683035837, -0.940450584704632 ], [ 34.564727202542002, -0.940428655815235 ], [ 34.564678539661003, -0.940343500767292 ], [ 34.564613125649167, -0.940230132116131 ], [ 34.564545895739293, -0.940110711919265 ], [ 34.56446829955383, -0.93996770713866 ], [ 34.564379533552582, -0.939802151905064 ], [ 34.564306395922813, -0.939645095814265 ], [ 34.564219088643092, -0.939479073018728 ], [ 34.564151679894799, -0.939356568590428 ], [ 34.564078578115087, -0.939213062654645 ], [ 34.564007341755278, -0.939076393231496 ], [ 34.563942579523122, -0.938951876586385 ], [ 34.563890993670867, -0.938844759303588 ], [ 34.563826785167578, -0.938733500189001 ], [ 34.563766322560419, -0.938623610085901 ], [ 34.5636946276367, -0.93849506631048 ], [ 34.563613197721047, -0.938351170886085 ], [ 34.563535481684987, -0.938237047907577 ], [ 34.563466635165923, -0.938122744140632 ], [ 34.563383514114939, -0.937992153067153 ], [ 34.56328298534217, -0.938097566815428 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6061202", "sub_field": "6061202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.563412633277068, -0.953764505334999 ], [ 34.563410493480767, -0.953698816188417 ], [ 34.563407438718592, -0.95360793833634 ], [ 34.563395942280749, -0.953522088206648 ], [ 34.563379704521537, -0.953442125147083 ], [ 34.563371412567307, -0.953347894900107 ], [ 34.563368298592273, -0.953294044154205 ], [ 34.563340772341697, -0.953199730362909 ], [ 34.563318529373653, -0.953037210606039 ], [ 34.563305607919702, -0.952843431554228 ], [ 34.563300597110903, -0.952760634219125 ], [ 34.563299777085433, -0.952686239884051 ], [ 34.563304791137739, -0.952603999458888 ], [ 34.563317364751008, -0.952543747090193 ], [ 34.56332906211577, -0.952481419806867 ], [ 34.563348861006332, -0.952367881651293 ], [ 34.563365422583082, -0.952248219873624 ], [ 34.563391804065219, -0.952176350869153 ], [ 34.563421951330128, -0.952069153003623 ], [ 34.563450944551512, -0.951972619896199 ], [ 34.563477462343151, -0.951899368639084 ], [ 34.563522418843633, -0.951802699086863 ], [ 34.563551112993927, -0.951723711167442 ], [ 34.563580885279407, -0.951646660735279 ], [ 34.563610606572212, -0.95160924087183 ], [ 34.563645092682357, -0.951546816267192 ], [ 34.563674642846941, -0.951497577798037 ], [ 34.563713766144318, -0.951439633945076 ], [ 34.563747261080508, -0.951390752188038 ], [ 34.563764589932347, -0.951337170713454 ], [ 34.563766870574909, -0.951259708733762 ], [ 34.563775749371587, -0.951203711736827 ], [ 34.563727040317801, -0.951201452656603 ], [ 34.56360098379082, -0.95117509991155 ], [ 34.563444315174721, -0.951120915295164 ], [ 34.563302985454257, -0.951067478579174 ], [ 34.563144367623487, -0.951003168008442 ], [ 34.563019226007313, -0.950957229381434 ], [ 34.562858254515383, -0.950899078479307 ], [ 34.562724229129827, -0.950842828806694 ], [ 34.56262865610222, -0.950844649019923 ], [ 34.562555581582387, -0.950868068774932 ], [ 34.562520513474517, -0.950907083450337 ], [ 34.56249039384911, -0.950961430031651 ], [ 34.562558235476907, -0.951005331752434 ], [ 34.562549426174598, -0.95107227787539 ], [ 34.562550958882021, -0.951114445263011 ], [ 34.562523198292602, -0.951140929288254 ], [ 34.562498497794508, -0.951278135445709 ], [ 34.562519670171682, -0.951435354670306 ], [ 34.562495177854267, -0.951555325921586 ], [ 34.562527735807521, -0.951729532340012 ], [ 34.562532937470188, -0.951836888648031 ], [ 34.562539669344822, -0.951980547370537 ], [ 34.562542841554652, -0.952127453850126 ], [ 34.562546146309941, -0.952270074785028 ], [ 34.562548080796212, -0.952406656760983 ], [ 34.562596141487163, -0.952392805671962 ], [ 34.562622010804077, -0.952464806603097 ], [ 34.562671869151707, -0.952581767005594 ], [ 34.56271197093875, -0.952640555767094 ], [ 34.562749239951273, -0.952663087758918 ], [ 34.562775320510553, -0.952699063808961 ], [ 34.562786952966917, -0.952764153137919 ], [ 34.562811930467177, -0.952808615188538 ], [ 34.562845319849579, -0.952873261505711 ], [ 34.562880676523932, -0.952936864872653 ], [ 34.562918113422391, -0.952984466265804 ], [ 34.562942054302567, -0.953039653674587 ], [ 34.562960034218086, -0.953104773889572 ], [ 34.562977836260373, -0.953151294258845 ], [ 34.563001638652658, -0.953233269959531 ], [ 34.56301766846984, -0.95328708438954 ], [ 34.563067229576603, -0.953358315211352 ], [ 34.563110707509949, -0.953512668934048 ], [ 34.563156365312487, -0.953647551489281 ], [ 34.563185346930972, -0.953714713322723 ], [ 34.563226628417659, -0.95375924902681 ], [ 34.563250630001257, -0.953788211018825 ], [ 34.563305276028949, -0.95380971342724 ], [ 34.563353966570297, -0.953827769177983 ], [ 34.563395186262397, -0.953853280010399 ], [ 34.563412633277068, -0.953764505334999 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6061203", "sub_field": "6061203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.563772613837898, -0.951200219151594 ], [ 34.563769930238728, -0.951126156400271 ], [ 34.563765296735632, -0.951039750086685 ], [ 34.563759819044449, -0.950920305450956 ], [ 34.563753119459747, -0.950793764983595 ], [ 34.56375778774936, -0.950664620847281 ], [ 34.563753881491387, -0.950498158738108 ], [ 34.563756093591287, -0.950419256783648 ], [ 34.563753290498269, -0.950336898857359 ], [ 34.563749420957357, -0.95024066167604 ], [ 34.563735145645651, -0.950147585138417 ], [ 34.563740647637331, -0.949970505772212 ], [ 34.563749544434451, -0.949881400873366 ], [ 34.563762915808837, -0.949731475682167 ], [ 34.563781994305458, -0.949603636259247 ], [ 34.56379944115227, -0.949514269998835 ], [ 34.563822618805098, -0.949440147971241 ], [ 34.56385843535287, -0.949335500060865 ], [ 34.563910068816327, -0.949207015646193 ], [ 34.563941478421853, -0.949122167208385 ], [ 34.56398462429285, -0.949033307630625 ], [ 34.564024465081623, -0.948914275647537 ], [ 34.564061949436379, -0.948807349669194 ], [ 34.56409014981601, -0.948725725884568 ], [ 34.56414160611309, -0.948578750950327 ], [ 34.564181217180341, -0.948507516676558 ], [ 34.564197373647772, -0.948468964262312 ], [ 34.564195696391671, -0.948429969673095 ], [ 34.564152150769722, -0.948446347057506 ], [ 34.56411136597486, -0.948455002521879 ], [ 34.564058341818971, -0.948498905594822 ], [ 34.564013094302162, -0.948541589474174 ], [ 34.56397762649059, -0.948577864680458 ], [ 34.563942421734481, -0.948595681121637 ], [ 34.563892041911252, -0.948616198586044 ], [ 34.56384040719049, -0.948644421284542 ], [ 34.563780568598169, -0.948662957106635 ], [ 34.563726626929778, -0.948679076991184 ], [ 34.563687514181439, -0.948656222131405 ], [ 34.563639042654721, -0.948650897050287 ], [ 34.56357608730751, -0.948655182459228 ], [ 34.563529895528447, -0.948658175398647 ], [ 34.56349242661959, -0.948667023266616 ], [ 34.563438826188978, -0.948682654169064 ], [ 34.563377070906689, -0.948708488239168 ], [ 34.563324888898777, -0.948741737962861 ], [ 34.563261223832093, -0.948777620698668 ], [ 34.563227095338952, -0.94881404272967 ], [ 34.56317661857917, -0.948860707906959 ], [ 34.563106023414839, -0.948918556018733 ], [ 34.563048919651543, -0.94898262428119 ], [ 34.563011516524178, -0.949025085141645 ], [ 34.562949634406714, -0.949123287926734 ], [ 34.562877011551727, -0.949219183418228 ], [ 34.562798026813716, -0.949298666216451 ], [ 34.562721504665717, -0.949366812123096 ], [ 34.562642806946698, -0.949419891053614 ], [ 34.562584336934101, -0.949484864093732 ], [ 34.56255258664968, -0.949516825908587 ], [ 34.562542577074467, -0.949566122064339 ], [ 34.562547457200758, -0.949647554865793 ], [ 34.562547240653103, -0.949736402696516 ], [ 34.562550568768557, -0.94981710438084 ], [ 34.562568559503958, -0.949888815620715 ], [ 34.562570049754378, -0.949973016012915 ], [ 34.562561572662403, -0.950055783674802 ], [ 34.5625537139926, -0.950130092201404 ], [ 34.562534150497683, -0.950223562523314 ], [ 34.562536076014958, -0.950294957522259 ], [ 34.562524993785132, -0.950409228009147 ], [ 34.562520360953272, -0.950489042514314 ], [ 34.562533673585413, -0.950544573726143 ], [ 34.562532270478499, -0.95061277785639 ], [ 34.562537620472817, -0.950685043783203 ], [ 34.562556300449728, -0.950722506510559 ], [ 34.562583621070573, -0.950756817130024 ], [ 34.562613101289081, -0.9507994375841 ], [ 34.562669925686031, -0.950819960808682 ], [ 34.562766480833332, -0.95085394657464 ], [ 34.562878920232841, -0.950901029988364 ], [ 34.562996863405473, -0.950946195926506 ], [ 34.56313914703253, -0.950997691165694 ], [ 34.563291625863073, -0.951060449302592 ], [ 34.563386970466823, -0.951096835397235 ], [ 34.563458611804123, -0.951123284993352 ], [ 34.563560332014518, -0.951158940511587 ], [ 34.563602882511447, -0.951174467050457 ], [ 34.563657531594302, -0.951185019751093 ], [ 34.56373015936834, -0.951202256436061 ], [ 34.563772613837898, -0.951200219151594 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6061300", "sub_field": "6061300" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.563766102348488, -0.95001328288598 ], [ 34.563753457495757, -0.950104209249168 ], [ 34.563763584425438, -0.950190148655666 ], [ 34.563770325718657, -0.950278022669958 ], [ 34.563777135432026, -0.950374519702983 ], [ 34.56377584410393, -0.950579304663387 ], [ 34.563771746092698, -0.95091152341684 ], [ 34.563795048468407, -0.951182393721236 ], [ 34.563797971666382, -0.951279596192014 ], [ 34.56383394003246, -0.95128509119133 ], [ 34.563868490712963, -0.951224912148353 ], [ 34.563972939131851, -0.95115578029844 ], [ 34.564143992261691, -0.95104223245545 ], [ 34.564291903705701, -0.95094157249156 ], [ 34.564455965078793, -0.950835837742927 ], [ 34.564607861946293, -0.950727659991304 ], [ 34.564769483586389, -0.95060907371308 ], [ 34.564903473462323, -0.950509051005508 ], [ 34.565066622207723, -0.950383718819744 ], [ 34.56524515556967, -0.950273706121946 ], [ 34.565404571114243, -0.950176047517148 ], [ 34.565536198541047, -0.950097522706695 ], [ 34.565646046721881, -0.95003803867075 ], [ 34.56575888106785, -0.949970014876401 ], [ 34.565856560759237, -0.949905074852706 ], [ 34.565920186302158, -0.949848048760252 ], [ 34.566061325545832, -0.949731940289116 ], [ 34.566182777138422, -0.949641184966009 ], [ 34.566312097308227, -0.949552823695386 ], [ 34.566423976113569, -0.94946386854817 ], [ 34.566455303864458, -0.949424473475399 ], [ 34.566397290025328, -0.949332165730037 ], [ 34.566300758877411, -0.949271953243915 ], [ 34.566220001331118, -0.949233722364932 ], [ 34.566095101314673, -0.949195447020934 ], [ 34.565994809737369, -0.949238883871353 ], [ 34.565765185359361, -0.949293557630401 ], [ 34.565420218767869, -0.949353959508296 ], [ 34.565217853398273, -0.94940471111741 ], [ 34.564999438330631, -0.949467525528773 ], [ 34.564826816519869, -0.949529401713736 ], [ 34.564664334529382, -0.949623963980234 ], [ 34.564448788346013, -0.949719956024585 ], [ 34.564363176623829, -0.949753904683067 ], [ 34.564274732420287, -0.949814445979998 ], [ 34.56411939784369, -0.949857206840383 ], [ 34.564023299314158, -0.949886732115663 ], [ 34.56376347365007, -0.949986164435659 ], [ 34.563766102348488, -0.95001328288598 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6061400", "sub_field": "6061400" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.568810046503863, -0.943964585747067 ], [ 34.568738049197563, -0.943989725049818 ], [ 34.568621015772507, -0.944029676210508 ], [ 34.56852951267323, -0.944080185107264 ], [ 34.568417863583242, -0.944147590253526 ], [ 34.56829377732889, -0.944230834765371 ], [ 34.568155573774128, -0.944322054133031 ], [ 34.568051813281009, -0.944394399214409 ], [ 34.56794201541345, -0.944488807748579 ], [ 34.567848275945622, -0.944571298535238 ], [ 34.567787050808278, -0.944636975096419 ], [ 34.567702822418397, -0.944711952684238 ], [ 34.56761156545052, -0.944810645895895 ], [ 34.567530724508259, -0.944888377708683 ], [ 34.567456059539388, -0.944964018781708 ], [ 34.567378249941882, -0.945068235794707 ], [ 34.567292205773832, -0.9451687297032 ], [ 34.567198192686682, -0.945287974782392 ], [ 34.567139034050108, -0.94538313712565 ], [ 34.567069069336448, -0.945502197578341 ], [ 34.567025598486047, -0.945627625270741 ], [ 34.566989163807889, -0.945736131091518 ], [ 34.566967587297853, -0.945848347193474 ], [ 34.566963345982707, -0.94595680540756 ], [ 34.566956227459542, -0.946070415988507 ], [ 34.566950044464228, -0.946173813808427 ], [ 34.566946599775108, -0.946286931582142 ], [ 34.56693745422406, -0.946398957403152 ], [ 34.566944229659768, -0.946516809692735 ], [ 34.566972491649437, -0.946535673564228 ], [ 34.567054623104617, -0.946554505686297 ], [ 34.567152640369983, -0.946562252048201 ], [ 34.567284439801753, -0.946593847448864 ], [ 34.56737637585708, -0.946615547098397 ], [ 34.5675275484545, -0.946669733917131 ], [ 34.56768671640004, -0.946720977318914 ], [ 34.567807800830742, -0.946762301598169 ], [ 34.567965637694599, -0.946817381412621 ], [ 34.568096588435253, -0.94686344629178 ], [ 34.568232170541577, -0.94690748817112 ], [ 34.568346892556193, -0.946943613636464 ], [ 34.568461714843437, -0.946978912590318 ], [ 34.568526003031593, -0.946873438836936 ], [ 34.568574700009343, -0.946806945550839 ], [ 34.568613840208869, -0.946740351479694 ], [ 34.56865577342225, -0.946674415609843 ], [ 34.568707146978227, -0.946596521523192 ], [ 34.568745707439817, -0.946547274568358 ], [ 34.56881705948971, -0.946470793509121 ], [ 34.568886687746009, -0.946384883924949 ], [ 34.568958684427933, -0.946285835644308 ], [ 34.569022006967337, -0.94619050127799 ], [ 34.569074622154133, -0.946125927152283 ], [ 34.569131571770029, -0.946059068616926 ], [ 34.569184728619291, -0.946001938008304 ], [ 34.569227146224463, -0.945945748161872 ], [ 34.569270136551303, -0.945878811602698 ], [ 34.569313923288547, -0.945827436629715 ], [ 34.569342982147603, -0.945789288296245 ], [ 34.569369716032362, -0.945754075838296 ], [ 34.569409684025217, -0.945707754713162 ], [ 34.56944606954599, -0.945666444325839 ], [ 34.569477668413548, -0.945624061352747 ], [ 34.569532944545067, -0.945544524903904 ], [ 34.56956243684413, -0.945507440491706 ], [ 34.56962108887064, -0.945450618496868 ], [ 34.569669717045628, -0.945398929496901 ], [ 34.569707391374429, -0.945347123756646 ], [ 34.569743324277638, -0.945292771237487 ], [ 34.569799502410433, -0.945216000237869 ], [ 34.569871372855118, -0.945121727275396 ], [ 34.569960382350153, -0.945015476836301 ], [ 34.570089335465042, -0.944840931298561 ], [ 34.570293434905771, -0.944744871453326 ], [ 34.57025680458829, -0.944731642318865 ], [ 34.570167125400332, -0.944695965621431 ], [ 34.570091174214546, -0.944660591045018 ], [ 34.569975301222343, -0.944610554454133 ], [ 34.569871267343899, -0.944550260848163 ], [ 34.569777278644523, -0.944495908096491 ], [ 34.569664593879658, -0.944417190865415 ], [ 34.5695308430045, -0.944322774607099 ], [ 34.569443073294217, -0.944261802636979 ], [ 34.569301322025623, -0.944180302192191 ], [ 34.569228444384137, -0.944137028783418 ], [ 34.569133130083507, -0.944083595680774 ], [ 34.569053918150267, -0.944038532782168 ], [ 34.568947254266689, -0.943970009499904 ], [ 34.568810046503863, -0.943964585747067 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6061500", "sub_field": "6061500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.569846055181912, -0.947638202580217 ], [ 34.569967020490303, -0.947711401292405 ], [ 34.57006874502153, -0.947804078513903 ], [ 34.570234872820691, -0.947946986537398 ], [ 34.570361071611018, -0.948048587643409 ], [ 34.570465451646861, -0.948143872003523 ], [ 34.570538895630428, -0.948216037933212 ], [ 34.570589359658847, -0.948279998057953 ], [ 34.570705391432803, -0.948431971162152 ], [ 34.570790596970767, -0.948544065741588 ], [ 34.570830893479638, -0.948633674264151 ], [ 34.570922502334199, -0.948890408838436 ], [ 34.570983156766417, -0.949085234357642 ], [ 34.571026000619121, -0.949171846800037 ], [ 34.571098768430538, -0.949369185929991 ], [ 34.571176625088057, -0.949560390048503 ], [ 34.571199634599971, -0.949641894707795 ], [ 34.571267572753158, -0.949605347234934 ], [ 34.571348145481473, -0.949546079862417 ], [ 34.571416761419997, -0.949476387307222 ], [ 34.571521976919414, -0.949374827914039 ], [ 34.57162310796209, -0.949286645166953 ], [ 34.571717332961683, -0.949219716456199 ], [ 34.571823084250781, -0.949169911565245 ], [ 34.571891120668781, -0.949147119491263 ], [ 34.571991064978818, -0.949122718826153 ], [ 34.572102940308973, -0.94910835714319 ], [ 34.572306972144652, -0.949083205592593 ], [ 34.572433618640353, -0.949045404834373 ], [ 34.572494557405108, -0.948999937141199 ], [ 34.572527206766303, -0.948946871408388 ], [ 34.572525387845779, -0.94888204397534 ], [ 34.572504755382781, -0.948705312501355 ], [ 34.572468967337407, -0.948508096350086 ], [ 34.572307918426823, -0.94854763396176 ], [ 34.572172253279888, -0.948368232869291 ], [ 34.5719882349944, -0.948078508749082 ], [ 34.57184636762333, -0.947812864413316 ], [ 34.571708216522687, -0.947531331848734 ], [ 34.571679112462967, -0.947477731718549 ], [ 34.571751793816802, -0.947392175187253 ], [ 34.571764458601017, -0.947310358237479 ], [ 34.571763902322658, -0.947226571792916 ], [ 34.571738512037513, -0.947170295692954 ], [ 34.571727026476843, -0.947103104213844 ], [ 34.571703166900512, -0.947054393011809 ], [ 34.571653777006318, -0.946963991497987 ], [ 34.571614308156427, -0.946882674820822 ], [ 34.571583506576857, -0.946807519360616 ], [ 34.57158298426441, -0.946744459936857 ], [ 34.571565951524057, -0.946687444316986 ], [ 34.571534798960698, -0.946624830132533 ], [ 34.57151085226495, -0.946556275521207 ], [ 34.571481999537369, -0.946518638523661 ], [ 34.571395175543749, -0.94656923824989 ], [ 34.571280524292717, -0.946644260106482 ], [ 34.571102827021143, -0.946757890977277 ], [ 34.571070742851823, -0.946765831144049 ], [ 34.570982022512503, -0.946827852713698 ], [ 34.57087317296611, -0.946887800609666 ], [ 34.570771799308517, -0.94696168049272 ], [ 34.570657967294864, -0.947034564602896 ], [ 34.570587174046103, -0.947074459875616 ], [ 34.570482129432428, -0.947148374611054 ], [ 34.570420666662962, -0.947189363999159 ], [ 34.570308184769317, -0.947260474259097 ], [ 34.570133227720753, -0.947356277042962 ], [ 34.570005742747213, -0.947447663560301 ], [ 34.569810171705527, -0.947561078579386 ], [ 34.569818087810987, -0.947602578016631 ], [ 34.569846055181912, -0.947638202580217 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6061700", "sub_field": "6061700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.565730659546333, -0.95005133994557 ], [ 34.565598498868709, -0.950116171161564 ], [ 34.565443785601687, -0.950200637616687 ], [ 34.565319314112493, -0.950274609257177 ], [ 34.565123043192763, -0.950413969854517 ], [ 34.565083524510051, -0.950481853962385 ], [ 34.565102592618622, -0.950569657565796 ], [ 34.565248638831413, -0.950755978447297 ], [ 34.565383717247023, -0.950941420023507 ], [ 34.565457901648443, -0.951055598776663 ], [ 34.565506447147619, -0.951141876561133 ], [ 34.565554981981123, -0.951199948074836 ], [ 34.565636983649867, -0.951237210339005 ], [ 34.565762806860917, -0.951267869842601 ], [ 34.56591171734091, -0.951293801607831 ], [ 34.56603077950605, -0.951333816840857 ], [ 34.566132444126808, -0.95135339797984 ], [ 34.566234695588527, -0.951387036368335 ], [ 34.566346025692233, -0.951424481173909 ], [ 34.566448229452917, -0.951474886586198 ], [ 34.566573424945418, -0.951523936215531 ], [ 34.566720936076429, -0.951597660312421 ], [ 34.566808931977491, -0.951648176291428 ], [ 34.56693700610132, -0.951719259020865 ], [ 34.566968646534711, -0.951667844012175 ], [ 34.567029008058789, -0.951547294430409 ], [ 34.567060017824033, -0.951517620646045 ], [ 34.567099806321387, -0.951455428175183 ], [ 34.567127338159374, -0.951412407192599 ], [ 34.567169503960542, -0.951362697252135 ], [ 34.567271645802272, -0.951249545808076 ], [ 34.567301796066523, -0.951187283500097 ], [ 34.567337445865277, -0.95115036230993 ], [ 34.567378502524143, -0.951075475331751 ], [ 34.567420845938408, -0.950994761671779 ], [ 34.567482701702502, -0.950902988285793 ], [ 34.567588368284071, -0.950763259649556 ], [ 34.567661860539893, -0.950656746251332 ], [ 34.567640355666292, -0.950616320149369 ], [ 34.567556197416138, -0.950561774173468 ], [ 34.567392694470662, -0.950463583250721 ], [ 34.567277376210427, -0.950388710264892 ], [ 34.567145459004479, -0.950310429456408 ], [ 34.566951753078122, -0.95022164251249 ], [ 34.566729328622458, -0.950113463531199 ], [ 34.566543679095652, -0.950041611518208 ], [ 34.566403199822197, -0.950005661595825 ], [ 34.56622669016167, -0.949988848263174 ], [ 34.566084787840119, -0.949985038595024 ], [ 34.565889461941303, -0.949997832457179 ], [ 34.565730659546333, -0.95005133994557 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6061701", "sub_field": "6061701" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.567665725707528, -0.950654893582503 ], [ 34.567630367707729, -0.95070548464654 ], [ 34.567595666264751, -0.950755942022439 ], [ 34.567559191968797, -0.95080456227241 ], [ 34.567519737046297, -0.950856638986229 ], [ 34.567484563251, -0.950904134138807 ], [ 34.567450831579627, -0.950954046043834 ], [ 34.567423138650163, -0.950994534800289 ], [ 34.567420458666923, -0.951001668914762 ], [ 34.56733931087917, -0.951150884976078 ], [ 34.56730335848637, -0.951188271606075 ], [ 34.567273288683438, -0.951250158466385 ], [ 34.567259510015603, -0.951265299047142 ], [ 34.567210121787213, -0.951319681263899 ], [ 34.567163064186794, -0.951372314643547 ], [ 34.567127220946283, -0.951414993495025 ], [ 34.567077288397577, -0.951494046656905 ], [ 34.567061493939043, -0.951518406134952 ], [ 34.567055915971913, -0.951523667083161 ], [ 34.567030012478817, -0.95154806194626 ], [ 34.567011790718041, -0.951584052638317 ], [ 34.566982915786568, -0.951643955790132 ], [ 34.566975416870783, -0.951660658406103 ], [ 34.567135335300222, -0.951823748219414 ], [ 34.567191591869168, -0.951839986432451 ], [ 34.567234258927272, -0.951905916850492 ], [ 34.567365644877952, -0.952040384790503 ], [ 34.567454771836069, -0.952131959323161 ], [ 34.567529039263071, -0.952257600592596 ], [ 34.567584637106478, -0.95226917069375 ], [ 34.567627833308677, -0.952335575100938 ], [ 34.567702078591417, -0.952431401450154 ], [ 34.567711585923639, -0.952464829986358 ], [ 34.567768983265317, -0.952524443656922 ], [ 34.567834584788542, -0.952595482337696 ], [ 34.567894024348909, -0.952671683822833 ], [ 34.567961667211982, -0.952658575165951 ], [ 34.567999537331339, -0.95264887544813 ], [ 34.568079671285091, -0.95264725877533 ], [ 34.568170095940118, -0.952626233256571 ], [ 34.568215337700238, -0.952633378060927 ], [ 34.568300013146491, -0.952636125545318 ], [ 34.568385298142957, -0.952631174537842 ], [ 34.568474078057477, -0.95262582250972 ], [ 34.568575259955537, -0.952622125424805 ], [ 34.568707583847782, -0.952605116789168 ], [ 34.568871382300983, -0.95259657080832 ], [ 34.568955010191551, -0.952595221575713 ], [ 34.569055710862571, -0.952584846736856 ], [ 34.569134969646093, -0.952577701075613 ], [ 34.569283071858678, -0.952573848302895 ], [ 34.569374648965201, -0.952567990965698 ], [ 34.569462608342143, -0.95255966280007 ], [ 34.569460541048286, -0.952531346286346 ], [ 34.569442015581409, -0.952476722079846 ], [ 34.56939759816882, -0.952425909345801 ], [ 34.569311243430541, -0.952300517629457 ], [ 34.569256935862903, -0.952218063374193 ], [ 34.569185841337109, -0.952137560074363 ], [ 34.569120744047432, -0.952049121252449 ], [ 34.5690393929127, -0.951960600201135 ], [ 34.568974632374271, -0.951885209792444 ], [ 34.568922769093781, -0.951826129448256 ], [ 34.568866068514509, -0.951770200106296 ], [ 34.568792583917919, -0.95169349158489 ], [ 34.568705396502793, -0.951598078877063 ], [ 34.568640277614293, -0.951537336104596 ], [ 34.568568273797837, -0.951466522286875 ], [ 34.568501406792087, -0.95139240270118 ], [ 34.568446534774701, -0.951331406945822 ], [ 34.568384603159842, -0.951283428245691 ], [ 34.568335578553729, -0.951229381353914 ], [ 34.568285671250401, -0.951186037605012 ], [ 34.568212400951651, -0.951099287184519 ], [ 34.568141557791613, -0.951028487999667 ], [ 34.568091470030211, -0.950992367118524 ], [ 34.56805329853583, -0.950946325063839 ], [ 34.568008074014337, -0.950889298572486 ], [ 34.567960703459804, -0.950867581216682 ], [ 34.567926114227177, -0.95082850215649 ], [ 34.56786481304875, -0.950766508844413 ], [ 34.567819304901299, -0.950735634205612 ], [ 34.567748814855939, -0.950686057290834 ], [ 34.56768284646509, -0.950643353445747 ], [ 34.567665725707528, -0.950654893582503 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6061901", "sub_field": "6061901" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.565831010839368, -0.95507186766011 ], [ 34.565869067360019, -0.955303106659455 ], [ 34.565862074251029, -0.955366699026719 ], [ 34.565875602236162, -0.955527480521167 ], [ 34.565893685902203, -0.955561002295009 ], [ 34.565922129120267, -0.955648977219897 ], [ 34.565974164598231, -0.955736430879251 ], [ 34.566006412741487, -0.955847908760921 ], [ 34.566067362704572, -0.956016005340774 ], [ 34.56612663476794, -0.956186742770303 ], [ 34.566181543371577, -0.956414606445891 ], [ 34.566203398398187, -0.956546511687618 ], [ 34.5662211409741, -0.956777790171051 ], [ 34.566287898523591, -0.95692532197268 ], [ 34.566328075677731, -0.956914031900954 ], [ 34.566367302470248, -0.95689307176187 ], [ 34.566411377105553, -0.95685973940474 ], [ 34.566444327348073, -0.956840158517186 ], [ 34.566481771628979, -0.956803539937518 ], [ 34.566540986264712, -0.956749807840965 ], [ 34.566590595702131, -0.956698619593601 ], [ 34.566643474398717, -0.95661453774298 ], [ 34.56671490748576, -0.956539390755371 ], [ 34.566832503191883, -0.956446743727849 ], [ 34.566840351021561, -0.956401051201264 ], [ 34.566842147185383, -0.956344696586916 ], [ 34.566826098573181, -0.956295449819925 ], [ 34.566806974902029, -0.956257349682258 ], [ 34.566777991041718, -0.956208491854384 ], [ 34.566769078816399, -0.956151381727223 ], [ 34.566740967009082, -0.956044444233995 ], [ 34.566742569855037, -0.955998550365998 ], [ 34.566724405090262, -0.955964591743428 ], [ 34.566710156780893, -0.955869436693762 ], [ 34.56669599366893, -0.955800246167782 ], [ 34.566659982261271, -0.955756919777267 ], [ 34.566560667170762, -0.955635980291823 ], [ 34.56648356033832, -0.955545900792265 ], [ 34.566383733656778, -0.955462013024694 ], [ 34.566304342289797, -0.955397006030856 ], [ 34.56617917657347, -0.955281156095537 ], [ 34.566061500143007, -0.955171625234053 ], [ 34.56597093292568, -0.95510188217572 ], [ 34.565892653591469, -0.955044480938004 ], [ 34.565843422135899, -0.955031603182395 ], [ 34.565831010839368, -0.95507186766011 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6062303", "sub_field": "6062303" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.569866626400547, -0.956432384291117 ], [ 34.569828936440743, -0.9567425105654 ], [ 34.569809050611639, -0.957048512459033 ], [ 34.569810269082083, -0.957208973258086 ], [ 34.569834987578169, -0.957378680507061 ], [ 34.569872262625118, -0.957608716165172 ], [ 34.569948183462643, -0.957827004836252 ], [ 34.57007655854688, -0.958121007368647 ], [ 34.570200026222999, -0.958350102557654 ], [ 34.570240067164818, -0.958372247974586 ], [ 34.57034505866546, -0.958395820856173 ], [ 34.570361659185693, -0.958360086417659 ], [ 34.570365856847523, -0.958243917833511 ], [ 34.570381172798641, -0.958125526743814 ], [ 34.570424311700712, -0.958049752518672 ], [ 34.570480043159499, -0.957980596322035 ], [ 34.570521982576381, -0.957914068108058 ], [ 34.570543419854687, -0.95781953556514 ], [ 34.570742962355752, -0.95754061954266 ], [ 34.570763958468781, -0.957519832735442 ], [ 34.570856625889263, -0.957417253729299 ], [ 34.570996278186868, -0.957370483045307 ], [ 34.571070179975251, -0.957288004638505 ], [ 34.571111822928678, -0.957229758488819 ], [ 34.571154166841239, -0.957121273790033 ], [ 34.571216398185257, -0.957033770179495 ], [ 34.571324025088813, -0.956968877085001 ], [ 34.57138775812453, -0.956903736951132 ], [ 34.571387757990358, -0.956830100133441 ], [ 34.571373538790077, -0.95669132035513 ], [ 34.571332931289277, -0.956568134744861 ], [ 34.571311569760297, -0.956460589551581 ], [ 34.571292514129198, -0.956387631285697 ], [ 34.571269932689503, -0.956294366269487 ], [ 34.571214206270618, -0.956197228234933 ], [ 34.571164663708508, -0.956090590696037 ], [ 34.57111473666437, -0.956089648532655 ], [ 34.570997090737492, -0.956100234296776 ], [ 34.570871901140038, -0.95611309416345 ], [ 34.570692402940743, -0.956109227507034 ], [ 34.570581286908897, -0.956110760684709 ], [ 34.570439183104362, -0.956117930402086 ], [ 34.570243206512487, -0.956154124014644 ], [ 34.570064772870303, -0.95617013210258 ], [ 34.569910689214488, -0.956163764327384 ], [ 34.569866626400547, -0.956432384291117 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6062500", "sub_field": "6062500" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.571182573224299, -0.959410768557859 ], [ 34.571347387129109, -0.959487226857878 ], [ 34.571547631705407, -0.959586460828647 ], [ 34.571683575616262, -0.959643253767572 ], [ 34.571826853982273, -0.959707566093221 ], [ 34.571932894655433, -0.959751891851527 ], [ 34.572064966606227, -0.959812820160149 ], [ 34.572254374071647, -0.959899392593756 ], [ 34.57245274202036, -0.959995517065813 ], [ 34.572620644487571, -0.960064689997953 ], [ 34.572845533037793, -0.960150209007432 ], [ 34.572931544494089, -0.960185681156871 ], [ 34.573023192661111, -0.960221096862117 ], [ 34.573121434054308, -0.960270405010707 ], [ 34.573190032034773, -0.960320183648462 ], [ 34.573297367044482, -0.960349567624137 ], [ 34.573351011804419, -0.960331792094438 ], [ 34.573391491079711, -0.960268008949486 ], [ 34.573437429762869, -0.960208235003451 ], [ 34.573491062027927, -0.960127311333077 ], [ 34.573532826209032, -0.960056516500583 ], [ 34.573582652160432, -0.959984359551822 ], [ 34.573622097753557, -0.959923586403882 ], [ 34.573660340701103, -0.959834711690866 ], [ 34.573692615309177, -0.959783039501891 ], [ 34.573788322954108, -0.959615581869032 ], [ 34.573628681333247, -0.959532964695749 ], [ 34.573476655000228, -0.959481242298123 ], [ 34.573378797424077, -0.959453256307567 ], [ 34.573283566541761, -0.959396489596727 ], [ 34.573183662334777, -0.959362984441989 ], [ 34.573126854705727, -0.959339934614829 ], [ 34.57290542739063, -0.959266433167276 ], [ 34.572809248338672, -0.959225945313593 ], [ 34.572703433834633, -0.959176185663176 ], [ 34.57260261238558, -0.959136946988661 ], [ 34.572508862528423, -0.959096962981402 ], [ 34.572409873004787, -0.959070941568962 ], [ 34.572317654420686, -0.959049063980752 ], [ 34.572262147967358, -0.959032814336491 ], [ 34.572214908261962, -0.959043389110391 ], [ 34.572119040854957, -0.959044077584444 ], [ 34.572001759387149, -0.959041947502384 ], [ 34.571914975962777, -0.959044777949747 ], [ 34.571823263618519, -0.959034798542265 ], [ 34.571694718692839, -0.959011951176374 ], [ 34.571630825613667, -0.95901837453353 ], [ 34.571577128535097, -0.959025397620712 ], [ 34.571530365472441, -0.959029642109392 ], [ 34.571454518708506, -0.959046664671909 ], [ 34.571410818766829, -0.959067873199211 ], [ 34.571364278906621, -0.959078401702797 ], [ 34.571294761636139, -0.959099697705485 ], [ 34.571218951412121, -0.959132292221977 ], [ 34.571116588446159, -0.959189768751309 ], [ 34.571038106766487, -0.959244115325465 ], [ 34.570991749848559, -0.959306177719553 ], [ 34.571182573224299, -0.959410768557859 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6062803", "sub_field": "6062803" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.575797307570717, -0.96421793575432 ], [ 34.575811944739591, -0.96434636639762 ], [ 34.575802628284073, -0.964449691176575 ], [ 34.575791354028027, -0.96470478636432 ], [ 34.57578826110062, -0.964781422038892 ], [ 34.575779974151388, -0.964898293342914 ], [ 34.575767502374077, -0.965075016985121 ], [ 34.575746751777501, -0.965208527724229 ], [ 34.575707320447002, -0.965425273368156 ], [ 34.575674042325858, -0.965603480249849 ], [ 34.575681012616073, -0.965752717921282 ], [ 34.575698752500287, -0.965964755717255 ], [ 34.575724338132481, -0.966063434535509 ], [ 34.575760821355757, -0.966249010866006 ], [ 34.575762109520959, -0.966319847320956 ], [ 34.575775986403237, -0.966469606201993 ], [ 34.575786448691858, -0.966563196813133 ], [ 34.575842519399878, -0.96660812301485 ], [ 34.575877978223822, -0.966649627761506 ], [ 34.575918417543988, -0.966657323024184 ], [ 34.575962030565321, -0.966605722292452 ], [ 34.576014101222967, -0.966538398913295 ], [ 34.576041244195437, -0.96646650156077 ], [ 34.576056925346172, -0.966403829537513 ], [ 34.576061106112228, -0.966333796084843 ], [ 34.576072620055832, -0.966278335662449 ], [ 34.576084207256123, -0.9662288591514 ], [ 34.576120826147623, -0.966139979584187 ], [ 34.576154360346102, -0.966041477813251 ], [ 34.576177567020963, -0.965947344134338 ], [ 34.576192485705853, -0.965855425992075 ], [ 34.576192500791862, -0.965778478775171 ], [ 34.576232194224922, -0.965721425221273 ], [ 34.576490139582553, -0.965709020575432 ], [ 34.576574405228037, -0.965629270406783 ], [ 34.576626411770746, -0.965448126741519 ], [ 34.576634091053123, -0.965289896550298 ], [ 34.576688846093539, -0.965180985165961 ], [ 34.576824162304717, -0.96504055255292 ], [ 34.576928433172441, -0.964879203469496 ], [ 34.577005973342182, -0.964705748196022 ], [ 34.577032512796883, -0.964554934523287 ], [ 34.576851586634973, -0.964550253409361 ], [ 34.576712078106013, -0.964545853599731 ], [ 34.576630920025003, -0.96454682869262 ], [ 34.576555885410023, -0.964532205545207 ], [ 34.576463535663073, -0.964500928365535 ], [ 34.576384255082672, -0.96446961004062 ], [ 34.576315812212201, -0.964422322631092 ], [ 34.576264504298777, -0.964378573136173 ], [ 34.576203947342911, -0.964334538003248 ], [ 34.576153394639533, -0.964305077626159 ], [ 34.576103690244892, -0.964272080220386 ], [ 34.576040345525307, -0.964239213793023 ], [ 34.57597198000753, -0.964210761571794 ], [ 34.575918445785263, -0.964189059024242 ], [ 34.57585872588043, -0.96418359719882 ], [ 34.575797307570717, -0.96421793575432 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6064201", "sub_field": "6064201" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.575845314282638, -0.952564343099833 ], [ 34.575876600755251, -0.952657237525368 ], [ 34.575883941582099, -0.952767951387741 ], [ 34.575878719149117, -0.952863061670459 ], [ 34.575887119168208, -0.953054433365098 ], [ 34.575881103843948, -0.95332136008377 ], [ 34.575880179709628, -0.953483985242139 ], [ 34.575879373363342, -0.953674408973022 ], [ 34.575875625665702, -0.953953688357749 ], [ 34.575880060795697, -0.954158507031475 ], [ 34.575885454653509, -0.954375547429653 ], [ 34.57587760973535, -0.954576090024166 ], [ 34.576039097965079, -0.954459887152491 ], [ 34.576212466972692, -0.954315359126733 ], [ 34.576612297021221, -0.954112545623666 ], [ 34.576861241344538, -0.953980150295585 ], [ 34.576946994652488, -0.95394172416485 ], [ 34.577000160061509, -0.953878736831836 ], [ 34.577005146211199, -0.953811225872298 ], [ 34.577015109186327, -0.953679830041548 ], [ 34.576990968056627, -0.953637364302443 ], [ 34.576967419625007, -0.95355933833574 ], [ 34.576923808624052, -0.953503942109447 ], [ 34.576887510813258, -0.953425699042282 ], [ 34.576888778853672, -0.953375738999712 ], [ 34.576900058415703, -0.953334799905816 ], [ 34.576949483472717, -0.953286885188182 ], [ 34.57698123583382, -0.953251861764207 ], [ 34.57703475744912, -0.953228805313946 ], [ 34.577081104327718, -0.953209497445364 ], [ 34.577127277774778, -0.953185374178337 ], [ 34.577183965777166, -0.953154113808158 ], [ 34.577193483355217, -0.953121997554273 ], [ 34.577164024403558, -0.953100718058683 ], [ 34.57710367543644, -0.953094969719981 ], [ 34.577065562780177, -0.953105646527392 ], [ 34.577044423436611, -0.953122481511205 ], [ 34.577003924725773, -0.953138271036375 ], [ 34.576936264543569, -0.953146394195949 ], [ 34.576890037485128, -0.953141815959771 ], [ 34.576854693237841, -0.953107316814234 ], [ 34.576844859221218, -0.953052444282821 ], [ 34.576868096009051, -0.95301510872393 ], [ 34.576891988806132, -0.95300094915119 ], [ 34.576883670972109, -0.952976286349708 ], [ 34.57690620680831, -0.952953303249688 ], [ 34.576936011680097, -0.952958729523722 ], [ 34.576944728279862, -0.952912972145152 ], [ 34.576938802836892, -0.95288463748521 ], [ 34.576936293900189, -0.952866241455012 ], [ 34.576958158338108, -0.952840115134716 ], [ 34.576984526898862, -0.952816783670952 ], [ 34.577012717193639, -0.952809922109294 ], [ 34.577036677872101, -0.952810745573168 ], [ 34.577057311853657, -0.95278068251418 ], [ 34.577066256322411, -0.9527702298319 ], [ 34.577080988453083, -0.952772915161617 ], [ 34.577114945340313, -0.952773603319881 ], [ 34.577112670795067, -0.95274921105816 ], [ 34.577110434051278, -0.952703639056376 ], [ 34.577103235569872, -0.952670690240268 ], [ 34.577082511981253, -0.952665729997325 ], [ 34.57705539152029, -0.95265810369115 ], [ 34.577007402366561, -0.952609349513088 ], [ 34.576958674509243, -0.95256533172007 ], [ 34.576907860698711, -0.952497957521688 ], [ 34.576805912333953, -0.952390559898551 ], [ 34.576742723951639, -0.952455151898559 ], [ 34.576736317121927, -0.952488504805798 ], [ 34.576692964115047, -0.952517384759755 ], [ 34.576664974822819, -0.952516118321182 ], [ 34.57658849174485, -0.952525851178414 ], [ 34.576535648828987, -0.952556440125921 ], [ 34.576499493198583, -0.952583784815904 ], [ 34.576482704665963, -0.952649957400705 ], [ 34.576422908438403, -0.952648566949586 ], [ 34.576355232466959, -0.952647176525695 ], [ 34.57627532875857, -0.952624855326426 ], [ 34.576222949453332, -0.952568775512835 ], [ 34.576215069310997, -0.952525209389637 ], [ 34.576143221654682, -0.952464958400842 ], [ 34.576076936315687, -0.952427417399928 ], [ 34.576022262296121, -0.952401788528154 ], [ 34.575965629668652, -0.95237824954316 ], [ 34.575913287141177, -0.952362137549634 ], [ 34.575878115520098, -0.952396445629145 ], [ 34.575861954315052, -0.952430624029422 ], [ 34.575834767526572, -0.952501517807033 ], [ 34.575845314282638, -0.952564343099833 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5054301", "sub_field": "5054301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.538614006728309, -0.937295159875682 ], [ 34.538408394751578, -0.93731790412386 ], [ 34.538263474680143, -0.937353266906348 ], [ 34.538058346134591, -0.937414468787554 ], [ 34.537895180260797, -0.937457443439961 ], [ 34.537698344545369, -0.937539408776141 ], [ 34.537699612849913, -0.937615225992449 ], [ 34.537744405970763, -0.937721510984875 ], [ 34.537825440686142, -0.937819377198522 ], [ 34.537922969754597, -0.937889287272829 ], [ 34.538003423718791, -0.937953102085107 ], [ 34.538092658501917, -0.937992678591727 ], [ 34.538174554184863, -0.938081673588041 ], [ 34.53823829020066, -0.938149676804672 ], [ 34.5382770436605, -0.938199562916455 ], [ 34.538348608935287, -0.938333209528001 ], [ 34.538409503995616, -0.938452228450148 ], [ 34.538520176971922, -0.938633472560225 ], [ 34.538640547023029, -0.938832605615851 ], [ 34.538774772357527, -0.939026303673155 ], [ 34.538876967986653, -0.939124336049317 ], [ 34.539016537974312, -0.939299830943291 ], [ 34.539190402873622, -0.939172760062439 ], [ 34.539404864706327, -0.93900784790625 ], [ 34.539538671748083, -0.938877972810122 ], [ 34.539875632245987, -0.938626557468231 ], [ 34.539999437742381, -0.9385094351392 ], [ 34.54002500739216, -0.93843846609628 ], [ 34.540000521512873, -0.938374443449126 ], [ 34.539902133259808, -0.93825019038948 ], [ 34.539710999097252, -0.938078633047195 ], [ 34.539532852460518, -0.937923679190471 ], [ 34.539357993652843, -0.937764039728054 ], [ 34.539206197766028, -0.937624998770883 ], [ 34.53909517494354, -0.937494842271371 ], [ 34.538974435859913, -0.937325495724277 ], [ 34.538899254708113, -0.937201257639342 ], [ 34.538614006728309, -0.937295159875682 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "6060401", "sub_field": "6060401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.560717214823882, -0.937346087716135 ], [ 34.560795498968552, -0.937435333077331 ], [ 34.56092665941371, -0.937592223480204 ], [ 34.560977916773929, -0.937751898925968 ], [ 34.561039178239767, -0.937862283182275 ], [ 34.561163198601051, -0.938062425585428 ], [ 34.561336131477951, -0.938291935918973 ], [ 34.561591587224562, -0.938610110772675 ], [ 34.561706333480082, -0.938789088383083 ], [ 34.561879438973143, -0.939114682930599 ], [ 34.562045520875927, -0.939317172742496 ], [ 34.562189979793061, -0.939518019408987 ], [ 34.562275931446337, -0.939638578322953 ], [ 34.562356170982767, -0.939502829223118 ], [ 34.562465239971971, -0.939331811645646 ], [ 34.562589522493766, -0.939135822181707 ], [ 34.562815316289523, -0.938771016717565 ], [ 34.562879353447002, -0.938665660513832 ], [ 34.562802918544833, -0.938578889707957 ], [ 34.563003559518052, -0.938395881033321 ], [ 34.563171745070058, -0.938098449904279 ], [ 34.562969698392408, -0.937914318071334 ], [ 34.56277815011137, -0.937717559735836 ], [ 34.562617102831759, -0.937583673908376 ], [ 34.562437227765344, -0.937425062219046 ], [ 34.562251855172043, -0.937295695323794 ], [ 34.562119305888771, -0.937370538328174 ], [ 34.561957158480311, -0.937447002750355 ], [ 34.561878233607153, -0.93751109666265 ], [ 34.561873562914002, -0.937640521121358 ], [ 34.562020065717029, -0.937799634976545 ], [ 34.561942762352253, -0.937881966216469 ], [ 34.561849642577947, -0.93785448087304 ], [ 34.561721893777943, -0.937837791470578 ], [ 34.561571992869403, -0.937805111353681 ], [ 34.561444472003863, -0.937795001533462 ], [ 34.561318731956717, -0.937779229609841 ], [ 34.561138897639147, -0.937728618816632 ], [ 34.561069525835613, -0.937641721406521 ], [ 34.560930364626991, -0.937472146715816 ], [ 34.560811170368787, -0.937323815248525 ], [ 34.560732460359453, -0.93728565601596 ], [ 34.560717214823882, -0.937346087716135 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4041504", "sub_field": "4041504" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.540945242230073, -0.908844578725473 ], [ 34.540831637303377, -0.908824604437187 ], [ 34.540732976981907, -0.908817588903443 ], [ 34.54060587001598, -0.908796487089208 ], [ 34.540526849073117, -0.908780407096542 ], [ 34.540416675197747, -0.908773304403307 ], [ 34.540306241145103, -0.908756104661879 ], [ 34.54021762712172, -0.908741852256393 ], [ 34.54008307930971, -0.908725398053023 ], [ 34.539995366391942, -0.908719217455979 ], [ 34.539923651263997, -0.908715077215289 ], [ 34.539797905830959, -0.908704653329033 ], [ 34.539708777706061, -0.908698419827761 ], [ 34.539634755003853, -0.90869109377208 ], [ 34.539543195896613, -0.908683727358615 ], [ 34.539454385985351, -0.908677320226465 ], [ 34.539366420429147, -0.908678178725695 ], [ 34.539267951892597, -0.908689213515821 ], [ 34.539193262709269, -0.908715813829014 ], [ 34.539127203271107, -0.908733209125112 ], [ 34.539134675433438, -0.908760153893682 ], [ 34.539148372816307, -0.908794300521009 ], [ 34.539199000609052, -0.908843890833148 ], [ 34.539313670051627, -0.908949411094504 ], [ 34.539520908059757, -0.909137221611279 ], [ 34.539716376016997, -0.909316803277216 ], [ 34.539852085325627, -0.909438533764908 ], [ 34.539971823812579, -0.909567222382717 ], [ 34.54009573469903, -0.909683437384916 ], [ 34.54025104579987, -0.909816148682556 ], [ 34.5404428574112, -0.910007816858932 ], [ 34.540605385748229, -0.910153495526099 ], [ 34.540811349450301, -0.910353529809689 ], [ 34.540914672286632, -0.910448088248669 ], [ 34.541023142904898, -0.910562514798092 ], [ 34.541135729574577, -0.910654780111972 ], [ 34.541237466436677, -0.91063472489973 ], [ 34.541355664631347, -0.910607375833174 ], [ 34.541479218339603, -0.910590111261229 ], [ 34.541590918637908, -0.910584920800715 ], [ 34.541681595231282, -0.910586357611047 ], [ 34.541774669356172, -0.910586572146593 ], [ 34.541883084188882, -0.910603609043918 ], [ 34.542014455273787, -0.910627076511659 ], [ 34.542134905191091, -0.91063561799631 ], [ 34.542267837614517, -0.910651788046531 ], [ 34.54236984138273, -0.91066571689273 ], [ 34.542491899244929, -0.910670740309048 ], [ 34.54257978105484, -0.910675728517511 ], [ 34.542689222047407, -0.910688428924351 ], [ 34.542780776297498, -0.910693549395552 ], [ 34.542893183690978, -0.910709843702442 ], [ 34.543002243533238, -0.910750380142372 ], [ 34.543125842028957, -0.910780766697943 ], [ 34.543238848083092, -0.910798587429689 ], [ 34.543303057776292, -0.910763785230574 ], [ 34.543257544653677, -0.91070926891129 ], [ 34.543102556831563, -0.910569857542882 ], [ 34.542884889262943, -0.910383915558593 ], [ 34.542729785779557, -0.910262554791964 ], [ 34.542552606168279, -0.910122600789862 ], [ 34.542299870244733, -0.909895891530868 ], [ 34.542085443499587, -0.909686971016663 ], [ 34.541900904133001, -0.90952734601931 ], [ 34.541738443639353, -0.909388358214463 ], [ 34.541584196372021, -0.909243369570897 ], [ 34.54138728304072, -0.909083496619821 ], [ 34.541192058542158, -0.908926676971226 ], [ 34.541082718853673, -0.908830564253815 ], [ 34.540945242230073, -0.908844578725473 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5052000", "sub_field": "5052000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.534347367899848, -0.926233361184167 ], [ 34.534146048427083, -0.926106713631068 ], [ 34.533872510246503, -0.925943344758386 ], [ 34.533666642110212, -0.925805634488996 ], [ 34.53362909353028, -0.925864159482374 ], [ 34.533599875317712, -0.925893391388211 ], [ 34.533548028020142, -0.926021175163537 ], [ 34.533491499369987, -0.926139908381789 ], [ 34.533408946169097, -0.92633732317283 ], [ 34.53337208778062, -0.926445761520366 ], [ 34.53332883667678, -0.926527390154635 ], [ 34.533720633718829, -0.926735670800234 ], [ 34.534031145274682, -0.926919550273542 ], [ 34.534416821128268, -0.927136409554956 ], [ 34.534620981739188, -0.927255052295813 ], [ 34.534952238206778, -0.927438365571888 ], [ 34.535260542064151, -0.927594816843955 ], [ 34.535560399756477, -0.927768056617246 ], [ 34.535759159094063, -0.927886618971133 ], [ 34.535867877709087, -0.927723069966856 ], [ 34.535932766060697, -0.927634204228447 ], [ 34.536000882950333, -0.927490205428812 ], [ 34.536038497406253, -0.927403500445924 ], [ 34.536046058953247, -0.927316598551609 ], [ 34.536025567765577, -0.927255782110522 ], [ 34.535953809542292, -0.927203395276154 ], [ 34.53579748980632, -0.927102453573265 ], [ 34.535662930657708, -0.927024919117899 ], [ 34.535529770514863, -0.926926775832482 ], [ 34.535376290065471, -0.926859386604877 ], [ 34.53515440774558, -0.926725128113218 ], [ 34.534956530600148, -0.926589945687906 ], [ 34.534656888156967, -0.926437565693267 ], [ 34.534347367899848, -0.926233361184167 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5052001", "sub_field": "5052001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.533659405832672, -0.925802844235474 ], [ 34.533605947952211, -0.925765767402526 ], [ 34.53352387633015, -0.925712676120291 ], [ 34.533488203865289, -0.925669233542209 ], [ 34.533425291000732, -0.925619507425907 ], [ 34.53337854928499, -0.925581053533614 ], [ 34.53333655126881, -0.925545404303784 ], [ 34.533308505860589, -0.925525278478524 ], [ 34.533222617541043, -0.925474466030925 ], [ 34.533195556785742, -0.925447308661653 ], [ 34.533151645500553, -0.925410654519727 ], [ 34.533067568395268, -0.925343581808959 ], [ 34.532961081730903, -0.925265340129986 ], [ 34.532847807200731, -0.925170936321242 ], [ 34.532733789755788, -0.925090179782801 ], [ 34.532615573046932, -0.92498542748747 ], [ 34.53248636356183, -0.924869679486086 ], [ 34.532392022383178, -0.924780665824841 ], [ 34.532205951705564, -0.924648372490322 ], [ 34.532140494444803, -0.924587913265304 ], [ 34.531980181350903, -0.924500861722504 ], [ 34.531863837069608, -0.924437316678932 ], [ 34.53172084732585, -0.92434874981366 ], [ 34.53162069109716, -0.924496253429358 ], [ 34.531515946011318, -0.924645011513159 ], [ 34.531415579296727, -0.924785026678941 ], [ 34.531346382015407, -0.924880844821343 ], [ 34.531285790393653, -0.924957889726101 ], [ 34.531219581711497, -0.9250434066426 ], [ 34.531156002568807, -0.925186373273072 ], [ 34.53115597003211, -0.925255674706963 ], [ 34.53121932237746, -0.925291089660594 ], [ 34.531365328483233, -0.925379561595939 ], [ 34.531514297209199, -0.925472252234149 ], [ 34.531636563672542, -0.925541182462745 ], [ 34.531811639592867, -0.925623283471353 ], [ 34.531905477186633, -0.925669832274818 ], [ 34.532052786778792, -0.925778506820819 ], [ 34.532185162296443, -0.925860460315481 ], [ 34.532317187340801, -0.925930463906492 ], [ 34.532417175030197, -0.925986398530013 ], [ 34.532635585194761, -0.926103325282024 ], [ 34.532783293054308, -0.926179161551637 ], [ 34.532936852748193, -0.926259690190111 ], [ 34.532987829024627, -0.926290176700344 ], [ 34.533037493193852, -0.926322116528597 ], [ 34.533310645884967, -0.926482998729378 ], [ 34.533382776913662, -0.926333946093458 ], [ 34.533417069001487, -0.926258236899782 ], [ 34.533449502903572, -0.926198706166863 ], [ 34.533487628046807, -0.926054942413065 ], [ 34.533554287147354, -0.925953063623161 ], [ 34.533593515425657, -0.925881502572423 ], [ 34.533659405832672, -0.925802844235474 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5052002", "sub_field": "5052002" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.532133209557529, -0.923756077574488 ], [ 34.532045979773187, -0.923897536655814 ], [ 34.531885549056973, -0.924126856000855 ], [ 34.531754097811877, -0.92435034023602 ], [ 34.531922199924892, -0.92444819178244 ], [ 34.532128092495697, -0.924561323711918 ], [ 34.532184068778072, -0.924611161906684 ], [ 34.532376757975747, -0.924757087007173 ], [ 34.532447466346063, -0.924814669372207 ], [ 34.532623553604118, -0.924968481435637 ], [ 34.532797337603391, -0.925123652226369 ], [ 34.53303241638249, -0.925304151254063 ], [ 34.533233489312899, -0.925474751402654 ], [ 34.533317897510429, -0.925525831100529 ], [ 34.533495108965738, -0.925667200946376 ], [ 34.533532135923203, -0.925711416398562 ], [ 34.53364341870499, -0.925788063704153 ], [ 34.533684590189232, -0.92565947368146 ], [ 34.533733819344953, -0.925515959578313 ], [ 34.533766215762931, -0.92540322410155 ], [ 34.533819459387317, -0.925228280994388 ], [ 34.533897206894267, -0.925070415766624 ], [ 34.534008827519123, -0.924811259624856 ], [ 34.534087478226979, -0.924577399309178 ], [ 34.533969241637337, -0.924518359833473 ], [ 34.5338192825932, -0.924444211879812 ], [ 34.53366224052359, -0.924367885931837 ], [ 34.533477498844, -0.924285523040322 ], [ 34.533208168152868, -0.924155365883691 ], [ 34.533001710375693, -0.924054552790724 ], [ 34.532885815978503, -0.923987803944717 ], [ 34.532817049978277, -0.92392381772219 ], [ 34.532719191160567, -0.923863910313447 ], [ 34.532631973653679, -0.923814413084275 ], [ 34.532455236673073, -0.923713445557497 ], [ 34.532269004240348, -0.923610968316206 ], [ 34.532133209557529, -0.923756077574488 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5052003", "sub_field": "5052003" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.534015342125151, -0.924824767967818 ], [ 34.533975964965258, -0.924908135966177 ], [ 34.533931247277003, -0.925011771650762 ], [ 34.533824003878173, -0.925235924918133 ], [ 34.533806405271029, -0.925288975828658 ], [ 34.533746042796267, -0.925490789638935 ], [ 34.533655316717862, -0.925771899266922 ], [ 34.533717127266982, -0.925804156946335 ], [ 34.533959836725117, -0.925943994828833 ], [ 34.534362754888853, -0.926188930615339 ], [ 34.534517484662317, -0.926299696861157 ], [ 34.534776090914043, -0.926480556155401 ], [ 34.534971272632497, -0.926583582054293 ], [ 34.535048078522408, -0.926635160250001 ], [ 34.5351230146183, -0.926687954571534 ], [ 34.535216217643338, -0.926734638084245 ], [ 34.535360424971167, -0.92682390325644 ], [ 34.535532073184157, -0.926919308663553 ], [ 34.535596439949423, -0.926966614229236 ], [ 34.535643643807717, -0.927002386376921 ], [ 34.535726669985308, -0.92705077936244 ], [ 34.535844635271289, -0.927106066976178 ], [ 34.535959906720379, -0.927151716540505 ], [ 34.535938746482572, -0.927110442627029 ], [ 34.535902049018929, -0.927039884044579 ], [ 34.535867287069152, -0.926975112709728 ], [ 34.53583144199748, -0.926882954401055 ], [ 34.535804206764169, -0.926823662043834 ], [ 34.535786792050281, -0.926759560187474 ], [ 34.535778545009492, -0.926711182028214 ], [ 34.535749378897542, -0.926601278541001 ], [ 34.535720258465659, -0.926527396025661 ], [ 34.535697945241509, -0.926464166048104 ], [ 34.535670662071148, -0.926396963836052 ], [ 34.535647292915712, -0.926331710008426 ], [ 34.535617688388967, -0.926258342954307 ], [ 34.535582377958157, -0.926172442738121 ], [ 34.535555668041169, -0.926106092370309 ], [ 34.535527446064492, -0.926037105422775 ], [ 34.535515815300599, -0.925991460372017 ], [ 34.535475915305447, -0.925908214675238 ], [ 34.535453355463567, -0.925829230830856 ], [ 34.535428915643067, -0.925744600835954 ], [ 34.535415833256252, -0.925650602935998 ], [ 34.53538944670381, -0.92558284844125 ], [ 34.535351255132248, -0.925528928745327 ], [ 34.535293782429846, -0.92542085327613 ], [ 34.535205286144311, -0.925322080007275 ], [ 34.535116938360098, -0.925242441307145 ], [ 34.535004993536148, -0.925123632329132 ], [ 34.534910010587048, -0.925041738807952 ], [ 34.534821910961767, -0.924988249579339 ], [ 34.534737176845887, -0.924913866918562 ], [ 34.534658420111931, -0.924871319238601 ], [ 34.534581450392423, -0.924827743063981 ], [ 34.534512829781818, -0.924780652784013 ], [ 34.53439926516603, -0.92472985214732 ], [ 34.534295845437953, -0.924679583917042 ], [ 34.534174644787491, -0.924632325885409 ], [ 34.534089773579289, -0.924578282670331 ], [ 34.534015342125151, -0.924824767967818 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5050808", "sub_field": "5050808" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.52770800966379, -0.921251231687896 ], [ 34.527494780432598, -0.921196458734716 ], [ 34.527430951056992, -0.921368466036676 ], [ 34.527370053940423, -0.921603940016133 ], [ 34.52734485933906, -0.921752839462381 ], [ 34.527305914048128, -0.921923708593364 ], [ 34.527235832801559, -0.922171904372469 ], [ 34.527215545365792, -0.922310117436956 ], [ 34.527181331836339, -0.922461181363848 ], [ 34.527145750291552, -0.922627724466101 ], [ 34.527114199308038, -0.922728278726916 ], [ 34.527026974301457, -0.922971534942114 ], [ 34.527070297080911, -0.922993201191055 ], [ 34.527272396635702, -0.923114274855002 ], [ 34.528299217192973, -0.923731507310856 ], [ 34.528352974197993, -0.923666458451996 ], [ 34.528415473738193, -0.923550109763229 ], [ 34.5284947703909, -0.923397272271299 ], [ 34.528565977361019, -0.923241295827978 ], [ 34.528623766228108, -0.923106545683334 ], [ 34.528726752325262, -0.92288834790676 ], [ 34.528869353510281, -0.922629628356977 ], [ 34.52894820936335, -0.922487980317654 ], [ 34.528991541098208, -0.922404316440664 ], [ 34.529047680281572, -0.922349882084793 ], [ 34.529153841230077, -0.922204865430793 ], [ 34.529109772348242, -0.92216392666217 ], [ 34.5289399800007, -0.922048465904708 ], [ 34.528728717083759, -0.921908417834265 ], [ 34.528655852776431, -0.921842657499325 ], [ 34.528573233758877, -0.921767123092823 ], [ 34.52848352242512, -0.92169715645525 ], [ 34.528424963840379, -0.921616256744177 ], [ 34.528374670387258, -0.921526972963477 ], [ 34.528303091539797, -0.921443494124081 ], [ 34.528136947241052, -0.921299869758246 ], [ 34.527976634273067, -0.921161903527828 ], [ 34.527830234630841, -0.921058644603074 ], [ 34.52770800966379, -0.921251231687896 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5050804", "sub_field": "5050804" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.530183157587651, -0.91994543101739 ], [ 34.530183416361631, -0.920010265738726 ], [ 34.530204717631463, -0.920104621575252 ], [ 34.530212021269023, -0.920237309508057 ], [ 34.530210587779848, -0.920338513832515 ], [ 34.530197050886102, -0.920432468241723 ], [ 34.530200874639398, -0.920524388303117 ], [ 34.530201262619947, -0.920636654373792 ], [ 34.53021706562091, -0.920726141536274 ], [ 34.530236235163557, -0.920851465203746 ], [ 34.530255328812068, -0.920945570307973 ], [ 34.530264055910507, -0.921030944585788 ], [ 34.530246996855482, -0.921080385512856 ], [ 34.530219753290098, -0.921143248560418 ], [ 34.530224713238212, -0.921196441731092 ], [ 34.530195225958963, -0.921270930616946 ], [ 34.530211676955261, -0.921356802361745 ], [ 34.530173890174247, -0.921413268740487 ], [ 34.530114087090773, -0.921491809371978 ], [ 34.530035625201293, -0.921558350875161 ], [ 34.5300078856814, -0.92169319199684 ], [ 34.530056965356778, -0.921722141918574 ], [ 34.530132974154341, -0.921783326452261 ], [ 34.530190068429292, -0.921834146229842 ], [ 34.530265791206858, -0.921900133444197 ], [ 34.530360884659068, -0.921987653416308 ], [ 34.530477809981043, -0.9220647832905 ], [ 34.530541133720888, -0.922076219115818 ], [ 34.530621948324857, -0.922035643471182 ], [ 34.530697889626722, -0.921978278054321 ], [ 34.530794112807953, -0.921935570457935 ], [ 34.530843330672589, -0.92190038206473 ], [ 34.530938347604952, -0.921828144227081 ], [ 34.531017225976882, -0.921737573772419 ], [ 34.531084811367592, -0.921635069879859 ], [ 34.531127202881429, -0.921535351440904 ], [ 34.531211112367473, -0.92141891030178 ], [ 34.531283664320597, -0.921315969392489 ], [ 34.53134203693164, -0.92122949697012 ], [ 34.531396414082401, -0.921132819239215 ], [ 34.53146121558057, -0.921051226648128 ], [ 34.531517342328478, -0.92100014400878 ], [ 34.531598527462222, -0.920977791385493 ], [ 34.531677949809342, -0.920957183367935 ], [ 34.531772358238292, -0.920953515761914 ], [ 34.531872711709497, -0.920964907657504 ], [ 34.532004188723157, -0.920944339320768 ], [ 34.531823912812278, -0.920785753977203 ], [ 34.531618729451772, -0.920618593465505 ], [ 34.531468053470142, -0.920492891549718 ], [ 34.531319525776681, -0.920366341332395 ], [ 34.531156275471901, -0.920225292393335 ], [ 34.531019603804637, -0.92011805414339 ], [ 34.530841163327374, -0.919996053466087 ], [ 34.53071557028882, -0.919923093089096 ], [ 34.530705320173702, -0.919858876669395 ], [ 34.530228280709892, -0.919727082983633 ], [ 34.530183157587651, -0.91994543101739 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5050901", "sub_field": "5050901" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.525304410225253, -0.919064004915167 ], [ 34.52521959189545, -0.919223640968199 ], [ 34.525057041662023, -0.919559363300321 ], [ 34.524733014991, -0.920198991652287 ], [ 34.524673781700308, -0.920347952874653 ], [ 34.524729425097298, -0.920391026134701 ], [ 34.524835326771047, -0.920435893914915 ], [ 34.524937638942042, -0.920484351218204 ], [ 34.525063285164293, -0.920552550351291 ], [ 34.525170981961352, -0.920624338743465 ], [ 34.525312694410417, -0.920688050685458 ], [ 34.525411416533338, -0.920743686814437 ], [ 34.525517318651403, -0.920795733362725 ], [ 34.52563243869124, -0.920849315429497 ], [ 34.525741935907647, -0.920883254255345 ], [ 34.52583876320417, -0.920924490003055 ], [ 34.525973991448012, -0.920970732235609 ], [ 34.526089263556372, -0.92100272832988 ], [ 34.526202639194508, -0.921059642416158 ], [ 34.526276039410398, -0.921088191465268 ], [ 34.526365675847309, -0.921107618042661 ], [ 34.526444456954849, -0.921125274653341 ], [ 34.526548081633713, -0.921141270719185 ], [ 34.526651609073447, -0.921143263883623 ], [ 34.526749879532723, -0.921156149869119 ], [ 34.526844730527444, -0.921163639148705 ], [ 34.526928933415263, -0.921187136207987 ], [ 34.527002433344137, -0.921208790648791 ], [ 34.527108205774113, -0.921237584790557 ], [ 34.527226521001189, -0.921294993151492 ], [ 34.527316382765598, -0.921332904908933 ], [ 34.527415129304693, -0.921374276088336 ], [ 34.5274768443781, -0.921240344267814 ], [ 34.5274937261972, -0.921143841527881 ], [ 34.527559239393867, -0.920860201462533 ], [ 34.52759399161279, -0.920815415490482 ], [ 34.527647358243463, -0.920547465719939 ], [ 34.527598467089682, -0.920523913202289 ], [ 34.527495065430593, -0.920474872311483 ], [ 34.527400762419113, -0.920424061203239 ], [ 34.527279796034307, -0.920350044909755 ], [ 34.527187142509881, -0.920271314725815 ], [ 34.527011371291863, -0.920135709098761 ], [ 34.526844150699212, -0.919982944677517 ], [ 34.52667544502188, -0.91984467084443 ], [ 34.526521439223849, -0.91970316641762 ], [ 34.526377627279743, -0.919586229578593 ], [ 34.52625540334904, -0.919494459295098 ], [ 34.52616106404075, -0.919449294739936 ], [ 34.526045442319408, -0.919370084614416 ], [ 34.525876542266808, -0.919262214667902 ], [ 34.525736490968207, -0.919168573911634 ], [ 34.525635792831117, -0.919092796309553 ], [ 34.52553312764465, -0.91899699220532 ], [ 34.525442928118473, -0.918915685909535 ], [ 34.525304410225253, -0.919064004915167 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5050902", "sub_field": "5050902" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.52586641910554, -0.91817119283239 ], [ 34.525794989353628, -0.918271704333209 ], [ 34.52571336284322, -0.918391902775726 ], [ 34.525674156267307, -0.918475987012139 ], [ 34.525598702269882, -0.918581697249461 ], [ 34.525515297081093, -0.918697459536219 ], [ 34.525426362300443, -0.9188471271119 ], [ 34.525437771192138, -0.918884921652122 ], [ 34.525450671684332, -0.918907599294705 ], [ 34.525622416108703, -0.919064997175687 ], [ 34.525693342633311, -0.919123994459411 ], [ 34.525961463262448, -0.919304414238333 ], [ 34.526178812550953, -0.919451002080805 ], [ 34.526255141454207, -0.919486040183845 ], [ 34.526303078928699, -0.919524804776131 ], [ 34.526356511157033, -0.919559150359163 ], [ 34.526397718050497, -0.919596105163776 ], [ 34.526450199919687, -0.919633723288267 ], [ 34.526509625790368, -0.919675303616689 ], [ 34.526551306446841, -0.919717871906941 ], [ 34.526601702200232, -0.919758382931013 ], [ 34.52666002284866, -0.9198018110256 ], [ 34.526728529587622, -0.919861752493292 ], [ 34.526826264772687, -0.919946730835443 ], [ 34.52691900304535, -0.920021734579957 ], [ 34.526944519008353, -0.920060566654937 ], [ 34.526985051003336, -0.920097945029118 ], [ 34.52702224672943, -0.920133790713742 ], [ 34.527087750919527, -0.920185288696172 ], [ 34.527191006545337, -0.920264351273083 ], [ 34.527261694821348, -0.920315506726033 ], [ 34.527359350789261, -0.920391933425251 ], [ 34.527464532045641, -0.92045151429056 ], [ 34.527540571287247, -0.920489271759522 ], [ 34.527644819822669, -0.920539000873311 ], [ 34.527665581559503, -0.920458628372601 ], [ 34.527709698908978, -0.92024603489371 ], [ 34.527725704884723, -0.920165702201648 ], [ 34.527757932831449, -0.92003053476636 ], [ 34.527776716847612, -0.919936431952649 ], [ 34.527740919030862, -0.919868957151202 ], [ 34.527699493774278, -0.919831970805046 ], [ 34.527661112251508, -0.919800074675496 ], [ 34.527613101802601, -0.919753688614701 ], [ 34.527559108589379, -0.91971643212342 ], [ 34.52752458499252, -0.919676513218926 ], [ 34.527484390274402, -0.919636135701488 ], [ 34.527433712742543, -0.91957793075183 ], [ 34.527379331357899, -0.919509900665571 ], [ 34.527310115645697, -0.919427136140896 ], [ 34.52727458062423, -0.919365721585632 ], [ 34.527225717172072, -0.919313002579595 ], [ 34.527179414656047, -0.919265009519645 ], [ 34.527138650741563, -0.919185651887178 ], [ 34.527093994757273, -0.919103549748245 ], [ 34.527059175552971, -0.919033157154032 ], [ 34.527026755504949, -0.918990364649011 ], [ 34.526986642588, -0.918948029201745 ], [ 34.526943773165797, -0.918888214726676 ], [ 34.526915834636362, -0.918853852391099 ], [ 34.526849561307273, -0.918755794735537 ], [ 34.526799033305529, -0.918629255352756 ], [ 34.52672632732969, -0.918528001609896 ], [ 34.52660296485611, -0.918427229952259 ], [ 34.526511319351727, -0.918351485713809 ], [ 34.526406970013419, -0.918281656908934 ], [ 34.526245896136743, -0.918209357447599 ], [ 34.526113350934793, -0.918159134247896 ], [ 34.525953140122013, -0.918039326741041 ], [ 34.52586641910554, -0.91817119283239 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5051600", "sub_field": "5051600" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.547482866933777, -0.923989816275373 ], [ 34.54744828488468, -0.923653764668648 ], [ 34.547418759814427, -0.923422638441662 ], [ 34.547385886321237, -0.92327595443094 ], [ 34.547314138553133, -0.92314987706918 ], [ 34.547320049469008, -0.922979201780599 ], [ 34.54733190107617, -0.9228218974135 ], [ 34.5473023179443, -0.922669097399129 ], [ 34.547242283500069, -0.922566852205525 ], [ 34.547224454480869, -0.922464222121681 ], [ 34.547215924913303, -0.922388676430896 ], [ 34.547166787636151, -0.922290428337254 ], [ 34.547136518989802, -0.92221260840737 ], [ 34.547147557061038, -0.922135169056411 ], [ 34.547082259291088, -0.921953207230318 ], [ 34.547046751864123, -0.921908588743095 ], [ 34.546973699051073, -0.92194503704399 ], [ 34.546903708022583, -0.921997986682482 ], [ 34.546806162033171, -0.922078571023268 ], [ 34.546731690124133, -0.922135736388566 ], [ 34.546626869707438, -0.922210544847922 ], [ 34.54650044314922, -0.92230997163446 ], [ 34.546461546592752, -0.92234480974402 ], [ 34.546459132483449, -0.92236215294418 ], [ 34.546950129644522, -0.923380254756027 ], [ 34.546870750847887, -0.923411668901174 ], [ 34.54678505585516, -0.923446586873587 ], [ 34.546640088572588, -0.923504302337025 ], [ 34.54648923370091, -0.92356445735708 ], [ 34.546474358719493, -0.923538120859067 ], [ 34.546458194741248, -0.923510291918314 ], [ 34.546427433848933, -0.923457313410359 ], [ 34.546396574608593, -0.923403970809781 ], [ 34.546365034065012, -0.923353050945804 ], [ 34.546301815293063, -0.923240245361742 ], [ 34.546244710597009, -0.923119288054216 ], [ 34.546136786542348, -0.922890755491929 ], [ 34.546082629245497, -0.922775880246347 ], [ 34.546030015122213, -0.922664861549979 ], [ 34.545939629921577, -0.922706037183885 ], [ 34.545745465081119, -0.922832019370497 ], [ 34.545495654745338, -0.922999447332138 ], [ 34.545353993747717, -0.923066729278439 ], [ 34.545190833034248, -0.923163398546972 ], [ 34.545037381374392, -0.923234926328528 ], [ 34.544971146650433, -0.923288559242863 ], [ 34.544962556562282, -0.923347538326125 ], [ 34.54501146383064, -0.923432296131679 ], [ 34.545089208944447, -0.923521729582388 ], [ 34.545136440497153, -0.923574889749943 ], [ 34.545154465045833, -0.923604621961517 ], [ 34.545164660312018, -0.923766420065778 ], [ 34.545221801530587, -0.923871262702203 ], [ 34.545337414837, -0.923894366183033 ], [ 34.545451217405109, -0.923872545530491 ], [ 34.545511210394793, -0.923890698815635 ], [ 34.545591920062208, -0.923922403981407 ], [ 34.545648205209581, -0.923965989985525 ], [ 34.545667014494832, -0.92405518230562 ], [ 34.545691071050342, -0.92415355232523 ], [ 34.545733635529857, -0.924269656215766 ], [ 34.545810047580048, -0.924394144421056 ], [ 34.545995514476708, -0.924285607720291 ], [ 34.546096155390572, -0.924222799173978 ], [ 34.546186075029112, -0.924185708099781 ], [ 34.546288737249412, -0.92414178275284 ], [ 34.546436718197761, -0.924098355483879 ], [ 34.546645293027893, -0.924078620673798 ], [ 34.546780156591034, -0.924064614015532 ], [ 34.546889920501407, -0.924058514518308 ], [ 34.547153697149888, -0.924038805919448 ], [ 34.547328351818898, -0.92402463470605 ], [ 34.547482866933777, -0.923989816275373 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5051604", "sub_field": "5051604" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.546032735764001, -0.922665580813154 ], [ 34.546308369984573, -0.923250338116272 ], [ 34.546490889545673, -0.923562979951137 ], [ 34.546948591125947, -0.923379377915842 ], [ 34.546457104561, -0.922363677391 ], [ 34.546032735764001, -0.922665580813154 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "5051503", "sub_field": "5051503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.542740201146231, -0.916348005952099 ], [ 34.542689841096362, -0.916535838724767 ], [ 34.542648952702493, -0.916684240675167 ], [ 34.542617679864712, -0.916817873512961 ], [ 34.542618687137796, -0.916948104536881 ], [ 34.54260871718931, -0.917077131498606 ], [ 34.542593829151997, -0.917348166818644 ], [ 34.542555810125137, -0.917556349026141 ], [ 34.542567259017751, -0.917686782626387 ], [ 34.542558071871667, -0.917729707346745 ], [ 34.542551916305989, -0.917880593472634 ], [ 34.542543829540627, -0.917977643734387 ], [ 34.542530436476383, -0.918095282653989 ], [ 34.542609499299253, -0.918225895707215 ], [ 34.542773698190572, -0.918476607831967 ], [ 34.542928164081587, -0.918685109447898 ], [ 34.542946123688438, -0.918672650463089 ], [ 34.542977605113691, -0.918651257638947 ], [ 34.543025500675149, -0.918652210262394 ], [ 34.543182901173132, -0.918667963426411 ], [ 34.543376966053202, -0.918681348249643 ], [ 34.543408000726913, -0.918620110444174 ], [ 34.543462991770241, -0.918603999632591 ], [ 34.543589153390393, -0.918609709793809 ], [ 34.543671096092353, -0.918667137659975 ], [ 34.543807363904669, -0.918675802005624 ], [ 34.54398437021834, -0.918703364153218 ], [ 34.544106791369011, -0.918715565013279 ], [ 34.544256120660307, -0.918712317743673 ], [ 34.544381032565703, -0.918700707555993 ], [ 34.544467153399012, -0.918704319534864 ], [ 34.54461158118464, -0.918721942164225 ], [ 34.544619723093867, -0.918691727446187 ], [ 34.544531780533283, -0.918599650543242 ], [ 34.544402136538658, -0.918498985557099 ], [ 34.544332438281728, -0.918399953658575 ], [ 34.544261059350532, -0.918278763490578 ], [ 34.544221228959287, -0.918197737207375 ], [ 34.544185481329478, -0.918132658016582 ], [ 34.544130532761713, -0.918057135178505 ], [ 34.544089812539049, -0.917994799874068 ], [ 34.544049729897267, -0.917923987946429 ], [ 34.544022124741147, -0.917883460876299 ], [ 34.543999796119287, -0.917845636525243 ], [ 34.543979279151607, -0.917813388934252 ], [ 34.543966947394573, -0.917782405416515 ], [ 34.543961583055243, -0.917762949589959 ], [ 34.543953511895602, -0.917726755258667 ], [ 34.543945170529383, -0.917678176629384 ], [ 34.543952302906447, -0.917617965211975 ], [ 34.543966912032957, -0.917574264374757 ], [ 34.543973921419372, -0.91751831658457 ], [ 34.543960307034432, -0.917470819786153 ], [ 34.543938491990581, -0.917422573040152 ], [ 34.543940838145488, -0.917384900666109 ], [ 34.543938682925649, -0.917347088138421 ], [ 34.543888143571067, -0.917284093007754 ], [ 34.543760568359829, -0.917141325273617 ], [ 34.543670762448272, -0.917073653296933 ], [ 34.543599080296673, -0.916998006820899 ], [ 34.543488356389297, -0.916927234121464 ], [ 34.543399169430771, -0.916847003568278 ], [ 34.543311315332993, -0.916772981572547 ], [ 34.54323542028245, -0.916703264168358 ], [ 34.54312690174843, -0.916608283201851 ], [ 34.543019740341158, -0.916501736187686 ], [ 34.542917699446669, -0.916410543096059 ], [ 34.542783746543279, -0.916274847762805 ], [ 34.542740201146231, -0.916348005952099 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1010201", "sub_field": "1010201" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.51837824847216, -0.900837192547212 ], [ 34.518338793412298, -0.900951212740684 ], [ 34.518268356307452, -0.901155973971843 ], [ 34.518185111372183, -0.901387015960091 ], [ 34.51809890480876, -0.901596711505853 ], [ 34.518008518046763, -0.901830229623396 ], [ 34.517925511498127, -0.902018218212892 ], [ 34.517862553832693, -0.902172183911117 ], [ 34.517829726901716, -0.90226726581969 ], [ 34.517791921170847, -0.902358356628008 ], [ 34.517761788885977, -0.902457683954003 ], [ 34.517795761415691, -0.90247848153883 ], [ 34.517956756898172, -0.902532579230399 ], [ 34.518092084623959, -0.902577016725212 ], [ 34.518282045484341, -0.902658652697211 ], [ 34.518501926131748, -0.902764743079635 ], [ 34.518640986183243, -0.902835107549234 ], [ 34.51874848970985, -0.9029014175985 ], [ 34.51885458576389, -0.902979120559028 ], [ 34.518872264818228, -0.903018896044785 ], [ 34.518907560135538, -0.903025609678664 ], [ 34.51896145905107, -0.903061496979006 ], [ 34.519083512915188, -0.902979953062459 ], [ 34.519150118622683, -0.902927293380604 ], [ 34.519210536711697, -0.902896446652473 ], [ 34.519280841719379, -0.902861568278515 ], [ 34.519319094707278, -0.902811794159423 ], [ 34.519413324522851, -0.902726663919728 ], [ 34.519446156044268, -0.902679559536237 ], [ 34.51949180214325, -0.902637635305297 ], [ 34.519532451230688, -0.902579233880188 ], [ 34.51960752107567, -0.902516787748808 ], [ 34.519621722851561, -0.902478083797161 ], [ 34.519661689923367, -0.902444622383039 ], [ 34.519700892385089, -0.902394676463164 ], [ 34.519714320505948, -0.90236108844656 ], [ 34.519729226471249, -0.902338970394226 ], [ 34.519760346873703, -0.902278703521343 ], [ 34.5197945262167, -0.902194787464252 ], [ 34.51982434135018, -0.902120035515331 ], [ 34.519869787036477, -0.902041215043953 ], [ 34.519901117504197, -0.901931565004541 ], [ 34.519925871997387, -0.901796495583365 ], [ 34.519907073781653, -0.901727104196491 ], [ 34.51993271739444, -0.901657578177105 ], [ 34.519930103879943, -0.901572496804256 ], [ 34.519871541030177, -0.901529611772476 ], [ 34.51987256579752, -0.901448371059767 ], [ 34.519881329794977, -0.901400255264767 ], [ 34.519897951934148, -0.901367394073681 ], [ 34.519871147040057, -0.901256709651319 ], [ 34.519849391643277, -0.901124526953371 ], [ 34.519841662059868, -0.901035003258579 ], [ 34.519742933900837, -0.901003895326969 ], [ 34.519586448953078, -0.900962281860045 ], [ 34.519380114775217, -0.900917233752896 ], [ 34.519240934169368, -0.900887137622625 ], [ 34.518963664399791, -0.900843821846796 ], [ 34.518934331426877, -0.900847963251883 ], [ 34.518792794626123, -0.900824266614687 ], [ 34.51863166392868, -0.900785882291954 ], [ 34.518506984436527, -0.900759903426554 ], [ 34.518431457954257, -0.900767646355463 ], [ 34.51837824847216, -0.900837192547212 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1010303", "sub_field": "1010303" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.513986220488157, -0.900023245651626 ], [ 34.513962874277922, -0.900084787140925 ], [ 34.513899109182709, -0.90010891834102 ], [ 34.513853875358762, -0.900066544537844 ], [ 34.513792406604253, -0.900068663890433 ], [ 34.513695829850519, -0.900137368795702 ], [ 34.513587724480352, -0.900212981728826 ], [ 34.513573590680103, -0.900252567864826 ], [ 34.513475625507581, -0.900265716319965 ], [ 34.513431715271992, -0.900346912433732 ], [ 34.513366224426747, -0.90034411138635 ], [ 34.513238995735684, -0.900443514553995 ], [ 34.513231703230282, -0.900505369046661 ], [ 34.513312499262547, -0.900568428114204 ], [ 34.513333807643292, -0.900679069138749 ], [ 34.51338134525885, -0.900753290782355 ], [ 34.51340578207099, -0.900846489494634 ], [ 34.513513034664911, -0.900849416742391 ], [ 34.513544069013648, -0.900861282168641 ], [ 34.513703097651479, -0.900913169053577 ], [ 34.513865167142328, -0.900967832378583 ], [ 34.514009203442107, -0.900990569327986 ], [ 34.514184531635003, -0.90098166538859 ], [ 34.514251198443318, -0.90099773755762 ], [ 34.514485680252967, -0.901011969464327 ], [ 34.514622246073714, -0.901016555029688 ], [ 34.51470247406337, -0.901013402130563 ], [ 34.514795015354323, -0.901023033484835 ], [ 34.514706491793838, -0.900816870359253 ], [ 34.514640192477259, -0.900629122096417 ], [ 34.514588471347381, -0.900502442605525 ], [ 34.514542853104601, -0.900367404619409 ], [ 34.514520432525181, -0.90028035375167 ], [ 34.514481189997923, -0.900205420350721 ], [ 34.514456742081983, -0.900146845557817 ], [ 34.514431064923983, -0.900091739541714 ], [ 34.514398612528502, -0.900003121502256 ], [ 34.514357471045592, -0.899924982082969 ], [ 34.51432331990646, -0.899852589134044 ], [ 34.514288976240913, -0.899765085956189 ], [ 34.514174943687593, -0.899817849356222 ], [ 34.514148606184612, -0.899840112650476 ], [ 34.514041657665388, -0.89992666181085 ], [ 34.513984059559903, -0.89998405212997 ], [ 34.513986220488157, -0.900023245651626 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1001000", "sub_field": "1001000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.511938411959072, -0.901057179078545 ], [ 34.511804018364913, -0.901096026606617 ], [ 34.511639359222343, -0.901129615584726 ], [ 34.511497005328103, -0.901144443272819 ], [ 34.511337564271223, -0.901150048882179 ], [ 34.511226574221617, -0.901163781446344 ], [ 34.511099015704701, -0.901166371536106 ], [ 34.511026718069388, -0.901184828404466 ], [ 34.51093400358468, -0.90119958129028 ], [ 34.510824073155177, -0.901208866819166 ], [ 34.510774764893782, -0.901272510305671 ], [ 34.510773277849779, -0.901373706114091 ], [ 34.510759105331083, -0.901545219021137 ], [ 34.510757834542737, -0.901749500799801 ], [ 34.510766978933972, -0.901852218590377 ], [ 34.510777133433287, -0.901949758360403 ], [ 34.510787188669489, -0.902041154659011 ], [ 34.510802792031932, -0.902133551831301 ], [ 34.510961934198868, -0.902226356416664 ], [ 34.51105032137108, -0.902222167329869 ], [ 34.511184171510067, -0.90221773304103 ], [ 34.511322588171012, -0.902221904390838 ], [ 34.511450434640913, -0.902213161033459 ], [ 34.511581254610768, -0.902212146955381 ], [ 34.511680741996138, -0.902207432438906 ], [ 34.511775520019889, -0.902206639044849 ], [ 34.511913332816498, -0.90220191206019 ], [ 34.511918027693227, -0.902165815145353 ], [ 34.511933602662531, -0.902022336288681 ], [ 34.511967752568673, -0.901858732252457 ], [ 34.511991589721653, -0.901684837997192 ], [ 34.512019748795993, -0.901554914081015 ], [ 34.51203665497367, -0.901465866399761 ], [ 34.512047301459432, -0.90136763839563 ], [ 34.512065071842592, -0.90131201607139 ], [ 34.512068934745777, -0.901235535404897 ], [ 34.512071953751473, -0.901141284602794 ], [ 34.512074872418879, -0.901042470685134 ], [ 34.511938411959072, -0.901057179078545 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1011100", "sub_field": "1011100" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.519208931103996, -0.908876578068891 ], [ 34.519203180487317, -0.90929056647405 ], [ 34.51910344292601, -0.90972786353296 ], [ 34.519041528382218, -0.910069055768932 ], [ 34.518959714445927, -0.910250970149846 ], [ 34.519413045524637, -0.910444703282255 ], [ 34.519709123306718, -0.910591381752942 ], [ 34.519995722535569, -0.910672984905034 ], [ 34.520058868057077, -0.91048766496981 ], [ 34.519997132836039, -0.910433234303694 ], [ 34.519898952072893, -0.910325853793141 ], [ 34.519888773909948, -0.910190751104098 ], [ 34.519935943653621, -0.910012799600289 ], [ 34.519961795767088, -0.909943040801617 ], [ 34.519997118211499, -0.909848472598546 ], [ 34.520015456397672, -0.909740980598854 ], [ 34.520053396944753, -0.909633536360202 ], [ 34.520078428860202, -0.909544638740592 ], [ 34.520081992968493, -0.909442288060986 ], [ 34.520068222885833, -0.90938657795314 ], [ 34.52008868071136, -0.909258766655697 ], [ 34.520100348942037, -0.90914870601373 ], [ 34.520024612338297, -0.90914580425384 ], [ 34.519930216191938, -0.909068963508122 ], [ 34.519860147431281, -0.909031066242259 ], [ 34.519784822858497, -0.90897595461969 ], [ 34.519715172410258, -0.90892214570315 ], [ 34.519621672701398, -0.90888474341552 ], [ 34.519520458026157, -0.908855272366838 ], [ 34.519439668337462, -0.908848075158386 ], [ 34.519395571789268, -0.908856446223636 ], [ 34.519298277672561, -0.908854817163703 ], [ 34.519208931103996, -0.908876578068891 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1011101", "sub_field": "1011101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.519430671596098, -0.907311247234191 ], [ 34.519403442172049, -0.907431125998368 ], [ 34.519416377380793, -0.90762464993588 ], [ 34.519421512731597, -0.907813383763557 ], [ 34.519391948719942, -0.907957778231823 ], [ 34.519372757113977, -0.908140516024695 ], [ 34.519368952139622, -0.908231609012429 ], [ 34.519324388859339, -0.908366856445116 ], [ 34.51923879705663, -0.90845806911979 ], [ 34.519196036496908, -0.908559799244833 ], [ 34.519152860587752, -0.908725537002578 ], [ 34.519212873334403, -0.908808477088603 ], [ 34.51930151186194, -0.908849607508205 ], [ 34.519394573772267, -0.908853677916469 ], [ 34.519436378063027, -0.908843555809788 ], [ 34.519498933005131, -0.908848404271704 ], [ 34.519541320275813, -0.90885625436205 ], [ 34.51971428206506, -0.908918950904406 ], [ 34.519785364357212, -0.908973310274625 ], [ 34.519859698032207, -0.909027205048137 ], [ 34.519890703903357, -0.909043850639497 ], [ 34.519922640228138, -0.909057797875883 ], [ 34.519988037419438, -0.909111449763057 ], [ 34.520026055757199, -0.909143517551423 ], [ 34.520077289267057, -0.909145258556508 ], [ 34.520100185568268, -0.909143605358855 ], [ 34.520125667702253, -0.909132404595935 ], [ 34.520041058976368, -0.908801776169283 ], [ 34.520017781744507, -0.908663794638363 ], [ 34.519973609080203, -0.908519294536588 ], [ 34.520018381549228, -0.908327202816611 ], [ 34.520110790557958, -0.908202852054441 ], [ 34.520224119615797, -0.908072202867713 ], [ 34.520271990260063, -0.907944310414605 ], [ 34.5202965378827, -0.90777435165356 ], [ 34.520326808979547, -0.907645906369297 ], [ 34.520422747572127, -0.907493397989325 ], [ 34.520560760124241, -0.907403250880809 ], [ 34.52057304446415, -0.907337241884186 ], [ 34.520447941131913, -0.90730393487868 ], [ 34.520304416969203, -0.907280051833667 ], [ 34.520142750431553, -0.907244699205106 ], [ 34.519936456982698, -0.907212583281798 ], [ 34.519736484136061, -0.907198432759958 ], [ 34.519587406382499, -0.907189710800453 ], [ 34.519423611149058, -0.907217040025416 ], [ 34.519430671596098, -0.907311247234191 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1011400", "sub_field": "1011400" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.510758610655387, -0.905885689803315 ], [ 34.510456544685198, -0.905900646386417 ], [ 34.510379652455157, -0.905920724949738 ], [ 34.510252579740929, -0.906416653875258 ], [ 34.510085722946258, -0.907099014013562 ], [ 34.510012001213589, -0.907448367166705 ], [ 34.510138903441167, -0.907545832341052 ], [ 34.510282102553717, -0.907674560843473 ], [ 34.510476858738741, -0.907762571630095 ], [ 34.510715384770243, -0.907813770616189 ], [ 34.511080011635649, -0.907865885243262 ], [ 34.511236254850623, -0.907872342181254 ], [ 34.511238064741733, -0.907733908918801 ], [ 34.511215002825551, -0.907646422761833 ], [ 34.511172938880073, -0.907475406622138 ], [ 34.511150094923103, -0.907348368498127 ], [ 34.511109062948037, -0.907047509189752 ], [ 34.511080178937441, -0.906707349561861 ], [ 34.511038353576623, -0.90635806734885 ], [ 34.511019377435368, -0.906005764159707 ], [ 34.510873721960998, -0.905894227490523 ], [ 34.510758610655387, -0.905885689803315 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1012001", "sub_field": "1012001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.513139554258167, -0.911086150372873 ], [ 34.513136248549458, -0.910274863515073 ], [ 34.513179369739781, -0.909752868800165 ], [ 34.512949165768497, -0.909799438685062 ], [ 34.512771345564197, -0.909834398597343 ], [ 34.512567832074438, -0.909834707530268 ], [ 34.512354094608611, -0.909806364890723 ], [ 34.512003462903877, -0.909738620120708 ], [ 34.511736513040297, -0.909690600030969 ], [ 34.511706192521487, -0.909813627900492 ], [ 34.511630426621018, -0.910248618247966 ], [ 34.511637583515054, -0.910743601750185 ], [ 34.511805810695741, -0.911190366823789 ], [ 34.511969878091932, -0.911481969045885 ], [ 34.512064352258179, -0.911681191666797 ], [ 34.512171673284413, -0.911888177177493 ], [ 34.512298296720942, -0.912099551883246 ], [ 34.512429203588603, -0.912325920536879 ], [ 34.512572094084, -0.91261426397109 ], [ 34.512698913649729, -0.912848449243454 ], [ 34.512857206206363, -0.913138991953266 ], [ 34.51296724699619, -0.913315700591728 ], [ 34.51303806720847, -0.913416512230801 ], [ 34.513128201259093, -0.913445856770996 ], [ 34.513223596989278, -0.913462809139023 ], [ 34.513279626493933, -0.913440792474507 ], [ 34.513264511775013, -0.913243669187823 ], [ 34.51325575948767, -0.913071524778667 ], [ 34.51324593813348, -0.913003715121047 ], [ 34.513252141357363, -0.912952610352458 ], [ 34.513243877497999, -0.912907543173047 ], [ 34.513229425000517, -0.912808697647574 ], [ 34.513216181028959, -0.912643228008377 ], [ 34.513200622774903, -0.912430899508012 ], [ 34.513176889321343, -0.91222775853927 ], [ 34.513158842029632, -0.912128197803911 ], [ 34.513152671932978, -0.911963059675516 ], [ 34.513139554258167, -0.911086150372873 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1012700", "sub_field": "1012700" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.524265233805323, -0.920527483286595 ], [ 34.524483166042167, -0.919996009544827 ], [ 34.524670434188401, -0.919600857905171 ], [ 34.524824964325987, -0.91927885882836 ], [ 34.525100772873927, -0.918810037195537 ], [ 34.525324244035453, -0.918451457149671 ], [ 34.525581073883671, -0.918056514686223 ], [ 34.525718913323523, -0.917872859169124 ], [ 34.525478224156458, -0.91786551213264 ], [ 34.525191635541283, -0.9178912281918 ], [ 34.524931353077058, -0.917863735345823 ], [ 34.524710168217567, -0.917889491198302 ], [ 34.524552203310883, -0.917898721231318 ], [ 34.524387576737482, -0.917907851185374 ], [ 34.524206480648623, -0.917915235561809 ], [ 34.523969110358848, -0.917957429032201 ], [ 34.523595937087727, -0.918054708853504 ], [ 34.523568745007019, -0.918640473255753 ], [ 34.523543376917132, -0.919167259219033 ], [ 34.523534877418413, -0.919777213563372 ], [ 34.523530673462822, -0.920281430534534 ], [ 34.523485348331263, -0.920665318099264 ], [ 34.523592316737172, -0.920792213044447 ], [ 34.523720213929622, -0.920857057941214 ], [ 34.524107934073292, -0.92106330532541 ], [ 34.524265233805323, -0.920527483286595 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1012909", "sub_field": "1012909" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.521618761389902, -0.919493489632326 ], [ 34.521577997739954, -0.919463212007479 ], [ 34.521406255441732, -0.919220820163204 ], [ 34.521251883201892, -0.918990470271571 ], [ 34.521080402368199, -0.91874799064303 ], [ 34.520929584692873, -0.918519020094812 ], [ 34.520827871196403, -0.918350233761384 ], [ 34.52070133645632, -0.918128490080051 ], [ 34.520624092221091, -0.918008995637789 ], [ 34.520580405340468, -0.918018511877683 ], [ 34.520433881811307, -0.918161894682087 ], [ 34.520288610712043, -0.91829686388127 ], [ 34.520222799724017, -0.91837390321084 ], [ 34.520100022739101, -0.918508479708238 ], [ 34.520044686945951, -0.91862140167736 ], [ 34.519929421410623, -0.918838464964216 ], [ 34.519833193883791, -0.919024290768085 ], [ 34.520105371188102, -0.919165730756644 ], [ 34.520330874386516, -0.919257295899866 ], [ 34.520448622901398, -0.919322011425809 ], [ 34.520534100942882, -0.919426193693054 ], [ 34.520622287035252, -0.919628833397926 ], [ 34.520724985596438, -0.919896625263197 ], [ 34.520815863000088, -0.920178690050686 ], [ 34.520927618153181, -0.920470325244822 ], [ 34.521144053944333, -0.920300667778434 ], [ 34.521311248972353, -0.920175644264859 ], [ 34.521509621209027, -0.920056052860448 ], [ 34.521591303805288, -0.919967088793644 ], [ 34.521788216811267, -0.919761450532473 ], [ 34.521618761389902, -0.919493489632326 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1012900", "sub_field": "1012900" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.520505195487033, -0.917764896279184 ], [ 34.520428394271583, -0.917603955030876 ], [ 34.520325651837581, -0.917379226264249 ], [ 34.520203184649752, -0.917117054271879 ], [ 34.520096488150948, -0.916913917278344 ], [ 34.519995899583918, -0.916700141795235 ], [ 34.519895961000969, -0.916508023277245 ], [ 34.519798300935427, -0.916355564671962 ], [ 34.519697808625317, -0.916365946149683 ], [ 34.519650297274673, -0.916425221135862 ], [ 34.519589766082852, -0.916518642341546 ], [ 34.519535445930003, -0.916597479218715 ], [ 34.519461999721557, -0.916707763610808 ], [ 34.519341357262697, -0.916894106131288 ], [ 34.519213621440578, -0.917066000010511 ], [ 34.519115725399807, -0.917219759376196 ], [ 34.519017613224079, -0.917366802650916 ], [ 34.518892977189758, -0.917539409956867 ], [ 34.518781120842682, -0.91771576588679 ], [ 34.518674056251413, -0.917887178580075 ], [ 34.51857112933272, -0.918039423793816 ], [ 34.518474624563048, -0.918160035640695 ], [ 34.518407770876983, -0.91825272734301 ], [ 34.518339216985673, -0.918373362481335 ], [ 34.518376958533572, -0.918426608642758 ], [ 34.518578151351569, -0.918535794977386 ], [ 34.51885358133287, -0.918642420715495 ], [ 34.519121627137913, -0.918761277036333 ], [ 34.519392183317422, -0.918877735712298 ], [ 34.519633369569192, -0.91897025538135 ], [ 34.519820009641627, -0.919034032019808 ], [ 34.519911517399862, -0.918843498652406 ], [ 34.519999825812121, -0.918665769762833 ], [ 34.520093436130963, -0.918514858508648 ], [ 34.520139200673079, -0.918461086993989 ], [ 34.520306287297267, -0.918263121073218 ], [ 34.520598395328818, -0.917963211984098 ], [ 34.520505195487033, -0.917764896279184 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1013000", "sub_field": "1013000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.523771804491993, -0.920965184449886 ], [ 34.52355211150612, -0.920833370112687 ], [ 34.523240524917647, -0.920698941305932 ], [ 34.522948819392177, -0.920567230392938 ], [ 34.522757352149803, -0.920467910245286 ], [ 34.522494775246493, -0.920320934003666 ], [ 34.522283385977367, -0.920193501038596 ], [ 34.522108804705127, -0.920068172165904 ], [ 34.521971735162509, -0.919944041725902 ], [ 34.521869580435833, -0.919847012417692 ], [ 34.521609379592661, -0.91996346275988 ], [ 34.521500767746673, -0.920068181881336 ], [ 34.521380197306122, -0.920165521524226 ], [ 34.521278050550237, -0.920273122792473 ], [ 34.521329941929046, -0.920381726217848 ], [ 34.521367605243761, -0.920430230958364 ], [ 34.521537169084411, -0.920533603314368 ], [ 34.521677720699273, -0.920636249270086 ], [ 34.521799277324462, -0.920729130687698 ], [ 34.521951032238157, -0.920843779770792 ], [ 34.522055443237861, -0.920938987092375 ], [ 34.522138962055983, -0.921012205712515 ], [ 34.522220451284412, -0.921131850392346 ], [ 34.522325885276757, -0.921267864728465 ], [ 34.52240034499939, -0.921372466828975 ], [ 34.522416971829728, -0.921440383739503 ], [ 34.522535990779183, -0.921616101573336 ], [ 34.522634173625818, -0.921724191987613 ], [ 34.522768903640923, -0.921906545845439 ], [ 34.522922215504693, -0.922071018794141 ], [ 34.52308168453898, -0.922186297795552 ], [ 34.52329299080057, -0.922345694997977 ], [ 34.523540284471707, -0.922537162135317 ], [ 34.523598745555027, -0.922558639787358 ], [ 34.523716272481458, -0.922346495351749 ], [ 34.52375201062042, -0.922165253240244 ], [ 34.523823443035667, -0.921921004310222 ], [ 34.523874416594637, -0.921719353180174 ], [ 34.523983427381559, -0.921440643920634 ], [ 34.524069440118829, -0.921106539086621 ], [ 34.523771804491993, -0.920965184449886 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "1013100", "sub_field": "1013100" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.522095601763347, -0.922008590859519 ], [ 34.522082083658589, -0.92224350667508 ], [ 34.522083017329713, -0.922440201014402 ], [ 34.522064940520018, -0.922671550173641 ], [ 34.522078657132433, -0.922853427540987 ], [ 34.522074835848599, -0.922926328504075 ], [ 34.522070234428092, -0.923111048446732 ], [ 34.522066374927903, -0.923293261617024 ], [ 34.522281620617548, -0.923362333175234 ], [ 34.522578706550618, -0.923476343506421 ], [ 34.522754397265302, -0.923546666157641 ], [ 34.522908511020383, -0.923602561468295 ], [ 34.523007041961478, -0.923627933562831 ], [ 34.523287597484412, -0.923698826018212 ], [ 34.523311650666017, -0.923613048900772 ], [ 34.523360297585207, -0.923450656411917 ], [ 34.523391752205221, -0.923385396401878 ], [ 34.52340816392379, -0.923324754764822 ], [ 34.523430936433392, -0.923271330748426 ], [ 34.523449001575329, -0.923153529788586 ], [ 34.523477209364863, -0.923040406744568 ], [ 34.523498850347622, -0.922977075813894 ], [ 34.523539543677067, -0.922820774641505 ], [ 34.523569791927947, -0.92271010297262 ], [ 34.523608119754819, -0.922604310677956 ], [ 34.5235760565334, -0.922573083623914 ], [ 34.523515532073539, -0.922545665510756 ], [ 34.523457508580712, -0.922504608981499 ], [ 34.523396523893808, -0.922458454340417 ], [ 34.52333864954042, -0.922415271419546 ], [ 34.523276825554547, -0.922371395034965 ], [ 34.523215051902312, -0.922319923817291 ], [ 34.523160029741213, -0.922282057963562 ], [ 34.523104956957482, -0.922243894042543 ], [ 34.523020943004063, -0.922186171592107 ], [ 34.522972028746452, -0.922150582091132 ], [ 34.522937349813311, -0.922114736332867 ], [ 34.522871362225523, -0.922056006261297 ], [ 34.522807026069508, -0.921995275573366 ], [ 34.522744593120677, -0.921933621355166 ], [ 34.522691840655327, -0.921865306350077 ], [ 34.522627212655472, -0.921764192662986 ], [ 34.522579671070709, -0.921708038184003 ], [ 34.522519697825373, -0.921633446198725 ], [ 34.522481076374419, -0.921574875581976 ], [ 34.522429745807202, -0.921496063532083 ], [ 34.522392547406021, -0.921440569639598 ], [ 34.522372254888353, -0.921384290524263 ], [ 34.522341587145569, -0.92134071135225 ], [ 34.522258515546632, -0.921218180145253 ], [ 34.522178549602607, -0.921114709682415 ], [ 34.522084743049597, -0.920985159853987 ], [ 34.522073154028007, -0.920997877444582 ], [ 34.522064858441439, -0.921071355994465 ], [ 34.522068928873971, -0.921288865982173 ], [ 34.522075089775377, -0.921520798088599 ], [ 34.522078945055853, -0.921855525232579 ], [ 34.522095601763347, -0.922008590859519 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "3030200", "sub_field": "3030200" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.536617560627569, -0.885980601116327 ], [ 34.536673986844228, -0.886036903298095 ], [ 34.536743890194323, -0.886136542063422 ], [ 34.536781845050683, -0.886241071713184 ], [ 34.536796673600762, -0.886347007359641 ], [ 34.536854101006647, -0.886561768900872 ], [ 34.536935211242763, -0.88686749579186 ], [ 34.537002857527384, -0.88696210009635 ], [ 34.537292406874073, -0.886946627352536 ], [ 34.537548666248107, -0.886941150749121 ], [ 34.537768326135627, -0.886925416551544 ], [ 34.53798450809149, -0.886912477051908 ], [ 34.538154457035972, -0.886893971654903 ], [ 34.538349131772037, -0.886880844532617 ], [ 34.538502241787647, -0.886868598710018 ], [ 34.538632827804378, -0.886837726648621 ], [ 34.5385518845587, -0.886514031553046 ], [ 34.538423757737789, -0.886068792097811 ], [ 34.538296250386907, -0.885675780942109 ], [ 34.538193941697969, -0.88533547840479 ], [ 34.538165194848872, -0.885334387534625 ], [ 34.537969231805008, -0.885341701489345 ], [ 34.537783717563727, -0.885379163079379 ], [ 34.537550349319083, -0.885408726239732 ], [ 34.537403195943767, -0.885424699020383 ], [ 34.537139265828927, -0.88544221403267 ], [ 34.53689890549709, -0.885469560049606 ], [ 34.536729014609087, -0.885494466106983 ], [ 34.536608736825123, -0.885531174785686 ], [ 34.536473779096333, -0.885626637604989 ], [ 34.536501074752863, -0.885745998469748 ], [ 34.536551708243643, -0.885810363726022 ], [ 34.536617560627569, -0.885980601116327 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "3030202", "sub_field": "3030202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.536345356716318, -0.885056442758892 ], [ 34.536370963120973, -0.884812101190816 ], [ 34.536424225168993, -0.884585321305103 ], [ 34.53641438033344, -0.884384900190548 ], [ 34.536414401444603, -0.884140394818468 ], [ 34.536267654445957, -0.883986540005361 ], [ 34.535954102702647, -0.883998986289156 ], [ 34.535699982673968, -0.883887395824221 ], [ 34.535475777609463, -0.883792906514868 ], [ 34.535044948078713, -0.883755339899821 ], [ 34.535006117798282, -0.883905987774327 ], [ 34.53488547621243, -0.883984399039325 ], [ 34.534855921453712, -0.884094575170945 ], [ 34.53484659129419, -0.884190414288755 ], [ 34.534885858612853, -0.884302470662388 ], [ 34.534978830898751, -0.884382626034699 ], [ 34.535043450521151, -0.884552063851802 ], [ 34.535179400535327, -0.884620319207911 ], [ 34.535257561345837, -0.884714133195304 ], [ 34.535355596687857, -0.884865678043501 ], [ 34.5354175450749, -0.885070972848452 ], [ 34.535458935179427, -0.88520562382038 ], [ 34.535518677575318, -0.88539725710442 ], [ 34.535552638809158, -0.885500888478197 ], [ 34.535564622982903, -0.885630487729073 ], [ 34.535602289105107, -0.885820516193421 ], [ 34.535861458341166, -0.885794155871595 ], [ 34.536233165786562, -0.885723627320019 ], [ 34.536428704149003, -0.885644218410799 ], [ 34.536386076945433, -0.885448258648769 ], [ 34.536352517797432, -0.885298119640413 ], [ 34.536345356716318, -0.885056442758892 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "3030502", "sub_field": "3030502" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.525707606997507, -0.886991467332092 ], [ 34.525610125112671, -0.886829260252008 ], [ 34.525445042461641, -0.886457892993553 ], [ 34.525347202636802, -0.886253132112314 ], [ 34.525252011039221, -0.886003541106689 ], [ 34.525165732343233, -0.885761855753994 ], [ 34.525055693746317, -0.885434280608493 ], [ 34.52492157350774, -0.885029200262 ], [ 34.524836705029713, -0.884786490932541 ], [ 34.524742976065482, -0.884531649465352 ], [ 34.524680950467918, -0.884457523618707 ], [ 34.524621804405079, -0.884527258706587 ], [ 34.524513330332127, -0.884708514635391 ], [ 34.524442213898517, -0.884841429541409 ], [ 34.524364147489443, -0.885019733937742 ], [ 34.524241771038533, -0.885243942199991 ], [ 34.524165515034603, -0.885410418433398 ], [ 34.524134674448348, -0.885521917422699 ], [ 34.524054328404567, -0.885655012431237 ], [ 34.523978448008407, -0.88581131290611 ], [ 34.523959956609247, -0.885944745592198 ], [ 34.523844080701679, -0.886116800209075 ], [ 34.523745869004053, -0.886291003377689 ], [ 34.523720839886892, -0.88636705556442 ], [ 34.523597983215673, -0.886631667491453 ], [ 34.523785933796631, -0.886817076887192 ], [ 34.523974480606647, -0.886969895389799 ], [ 34.524135347810237, -0.887091232209902 ], [ 34.524301223016707, -0.887184760328571 ], [ 34.524569373989308, -0.887266040277715 ], [ 34.524734443423391, -0.887326118275844 ], [ 34.524978043504518, -0.887433368749342 ], [ 34.525186501308717, -0.887621198431213 ], [ 34.525383923620737, -0.887736653637014 ], [ 34.525463956355019, -0.887739069129746 ], [ 34.525585001030159, -0.887342279295034 ], [ 34.525707606997507, -0.886991467332092 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "3030605", "sub_field": "3030605" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.522874102946957, -0.888315975496343 ], [ 34.522795910708801, -0.888280227364099 ], [ 34.522664192406737, -0.888228614857543 ], [ 34.52251537879804, -0.888212107939554 ], [ 34.52236569300814, -0.888211963714187 ], [ 34.522187892143798, -0.888214279389358 ], [ 34.522011575231822, -0.888213832248302 ], [ 34.521861713441247, -0.888200777368131 ], [ 34.521689074977623, -0.888189130895645 ], [ 34.521403498972987, -0.888176826081174 ], [ 34.521159973546183, -0.888168524096773 ], [ 34.520871208675452, -0.888166420564283 ], [ 34.520744149676368, -0.888160744826702 ], [ 34.520521910626833, -0.888157081859761 ], [ 34.52031635176435, -0.888132626512105 ], [ 34.520041016057739, -0.888188025581604 ], [ 34.519904181906149, -0.888304642813209 ], [ 34.51988696851987, -0.888528273148105 ], [ 34.519815927743572, -0.888745355502783 ], [ 34.51982493471882, -0.888854266760543 ], [ 34.519840225186151, -0.889008453964452 ], [ 34.519789628261819, -0.889087598043702 ], [ 34.51969278810283, -0.889187370548036 ], [ 34.519742190755053, -0.88926167124459 ], [ 34.519800560935309, -0.889357217654385 ], [ 34.519844742943818, -0.88944436830991 ], [ 34.519869481823463, -0.889533375443232 ], [ 34.519857607194361, -0.889609971885344 ], [ 34.519958108788792, -0.889661990250945 ], [ 34.520057549069563, -0.889665813339229 ], [ 34.52014253894032, -0.889669714784415 ], [ 34.520239596391178, -0.889691130894382 ], [ 34.520339585136639, -0.889702857684944 ], [ 34.520569616036553, -0.889736351497297 ], [ 34.52068459337314, -0.88972996709626 ], [ 34.520773877314042, -0.889731429260138 ], [ 34.520852053728682, -0.889722536367833 ], [ 34.520915795657487, -0.88969168664084 ], [ 34.520949721514782, -0.889664009346066 ], [ 34.52100077567534, -0.889648952581511 ], [ 34.521093097761742, -0.889636210678628 ], [ 34.521161920192867, -0.889615957377862 ], [ 34.52124581502823, -0.889593197135363 ], [ 34.521357873144893, -0.889572849197453 ], [ 34.52144511658237, -0.889553886881358 ], [ 34.521558250012632, -0.889511293538763 ], [ 34.521672169772017, -0.889480663908299 ], [ 34.521768597080758, -0.88944470170459 ], [ 34.521854817617893, -0.889418578801708 ], [ 34.521991218544557, -0.889403195806632 ], [ 34.522080744002189, -0.889388982297286 ], [ 34.522169001369981, -0.889367250298639 ], [ 34.522269382195688, -0.889341770558027 ], [ 34.522359531145398, -0.889287690621904 ], [ 34.522463620756326, -0.889220882908416 ], [ 34.522532975690638, -0.889146470350315 ], [ 34.522616388484472, -0.889025797889715 ], [ 34.522681732688937, -0.888895383681052 ], [ 34.522749308977929, -0.8887777296674 ], [ 34.52278214580604, -0.888681187911944 ], [ 34.522826026183708, -0.888593592373105 ], [ 34.522864720039351, -0.888523666736225 ], [ 34.522909410173973, -0.888458211188169 ], [ 34.522955695927237, -0.888384491173686 ], [ 34.522874102946957, -0.888315975496343 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "3030905", "sub_field": "3030905" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.536923281478181, -0.894146202114993 ], [ 34.536608400220167, -0.894133713986721 ], [ 34.536410864420098, -0.894083545659719 ], [ 34.536120657350253, -0.894031511780457 ], [ 34.535805396911272, -0.893899069933241 ], [ 34.535548347706467, -0.893819615175383 ], [ 34.535323285481972, -0.89373796702868 ], [ 34.535011031387931, -0.893595121616291 ], [ 34.534726850235117, -0.893454813051842 ], [ 34.534459219574188, -0.893280322839782 ], [ 34.534245135668101, -0.893181586414943 ], [ 34.534103042690823, -0.893057526162428 ], [ 34.533901726232919, -0.892923282571821 ], [ 34.533752486940287, -0.892722847490753 ], [ 34.533571156432821, -0.892623375767475 ], [ 34.533497012027667, -0.892680432744437 ], [ 34.533435990534947, -0.892793935584303 ], [ 34.533444005987491, -0.892900968709259 ], [ 34.533531022313518, -0.893033021247117 ], [ 34.533840890368552, -0.893307599450846 ], [ 34.534280802146398, -0.893574768537199 ], [ 34.534614811059157, -0.893845786849296 ], [ 34.534978080355167, -0.894041229641924 ], [ 34.535300088890402, -0.894173391620305 ], [ 34.535675317554883, -0.894317950898089 ], [ 34.536082032430379, -0.894487067647732 ], [ 34.536367815714719, -0.894606037214495 ], [ 34.536532022279623, -0.89467502664043 ], [ 34.536793311949957, -0.894653378861545 ], [ 34.536941630802893, -0.894639196728228 ], [ 34.537102727978237, -0.894562599232535 ], [ 34.537277915000843, -0.89447152297273 ], [ 34.537413898506671, -0.89439125258764 ], [ 34.537497228668279, -0.89433431923696 ], [ 34.537529883356392, -0.894254857154114 ], [ 34.537422227043052, -0.894192121536371 ], [ 34.537276161920829, -0.894152569891916 ], [ 34.536923281478181, -0.894146202114993 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "3031003", "sub_field": "3031003" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.539047435160789, -0.889790961195856 ], [ 34.538943808892029, -0.889661604537627 ], [ 34.538849155459253, -0.889519078021152 ], [ 34.538733872433347, -0.889348130237497 ], [ 34.538659454025691, -0.889146821925549 ], [ 34.538593263126771, -0.888969964658338 ], [ 34.538582097771808, -0.888829343287316 ], [ 34.538591128714693, -0.88867872972944 ], [ 34.538605779329878, -0.888454387778357 ], [ 34.538622510480486, -0.88834826533628 ], [ 34.538630297280363, -0.888225198345054 ], [ 34.538334118841959, -0.888297514931604 ], [ 34.538217681577052, -0.888330809988812 ], [ 34.53809849673727, -0.888367443899521 ], [ 34.538041134895778, -0.888378242042615 ], [ 34.537806300990617, -0.888433143491951 ], [ 34.537622249701002, -0.888477567539044 ], [ 34.537423718930199, -0.88852881019101 ], [ 34.53728988993138, -0.888556329657343 ], [ 34.537145620573803, -0.888609480362287 ], [ 34.537116967622268, -0.888676358336934 ], [ 34.537088232380981, -0.888773057411767 ], [ 34.537040612961832, -0.888919097034318 ], [ 34.536994936904946, -0.889027591289536 ], [ 34.53693587511016, -0.88914216022636 ], [ 34.536964690832093, -0.889187163515724 ], [ 34.537079688030737, -0.889404615603874 ], [ 34.53721009297324, -0.889615789452438 ], [ 34.537291277926741, -0.889745795913354 ], [ 34.537389097949358, -0.889843660259736 ], [ 34.537500567274272, -0.88993765003916 ], [ 34.537611347285207, -0.890022312244365 ], [ 34.537727389559947, -0.890090891407343 ], [ 34.537854814629881, -0.890173911942978 ], [ 34.537932537437207, -0.890229666660998 ], [ 34.538031614071492, -0.890306855257499 ], [ 34.538138828089231, -0.890340346996286 ], [ 34.538268163019438, -0.890311016107943 ], [ 34.538390349558341, -0.890252041686586 ], [ 34.538488331714852, -0.890195645205552 ], [ 34.538667101707659, -0.890121219569716 ], [ 34.538863894406639, -0.890031146312384 ], [ 34.539133920710732, -0.889902360254434 ], [ 34.539047435160789, -0.889790961195856 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "3001600", "sub_field": "3001600" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.539821299751523, -0.889641952738347 ], [ 34.539729077937857, -0.88966579319306 ], [ 34.539626052105667, -0.889694956980739 ], [ 34.5392374261382, -0.889891550228907 ], [ 34.538823176567398, -0.890080310450118 ], [ 34.538538340154759, -0.890207859850543 ], [ 34.538622292481428, -0.890454348727002 ], [ 34.538677883658593, -0.890625819171358 ], [ 34.538708413665347, -0.890772091959701 ], [ 34.538731650348247, -0.890863029691557 ], [ 34.539234269759348, -0.890981927031959 ], [ 34.539886403775803, -0.891121270339552 ], [ 34.540046136582433, -0.891115229777098 ], [ 34.540053072382833, -0.891035905168066 ], [ 34.540036746445217, -0.890621346860179 ], [ 34.54000159507779, -0.889673985433273 ], [ 34.539926735547333, -0.889656373268251 ], [ 34.539821299751523, -0.889641952738347 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "3031602", "sub_field": "3031602" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.52264380005407, -0.892192691676663 ], [ 34.52252223114413, -0.892199525843174 ], [ 34.522337724169013, -0.892228657104294 ], [ 34.522186736916112, -0.89224394797691 ], [ 34.522051317788218, -0.892290483855329 ], [ 34.521869266670002, -0.892325557398651 ], [ 34.521698349686623, -0.892336088376079 ], [ 34.521533397689069, -0.892371912453417 ], [ 34.521522618307998, -0.89244064347482 ], [ 34.521600595566937, -0.892567354719302 ], [ 34.521755880250488, -0.892754907014837 ], [ 34.521968505951911, -0.892931944500411 ], [ 34.522389625558262, -0.893257272238818 ], [ 34.522715677058088, -0.893528375268688 ], [ 34.522725773336028, -0.893629468529925 ], [ 34.522822436473902, -0.893657276583365 ], [ 34.523108699580057, -0.893599385427077 ], [ 34.523251279552127, -0.893466138076297 ], [ 34.523461842603652, -0.89338014291256 ], [ 34.523434205224937, -0.893316528416234 ], [ 34.52331254238274, -0.893090991508509 ], [ 34.523263769037079, -0.892989406890379 ], [ 34.523183850635021, -0.892840383545834 ], [ 34.523079262051127, -0.892627966554487 ], [ 34.52295241750776, -0.892439214629478 ], [ 34.522879867137327, -0.892321540503091 ], [ 34.522817145477283, -0.892253205818276 ], [ 34.522811629431473, -0.89219021205126 ], [ 34.52264380005407, -0.892192691676663 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4040300", "sub_field": "4040300" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.546429127399051, -0.893759990462458 ], [ 34.546584352414037, -0.893626599046613 ], [ 34.54672445710127, -0.89349880637004 ], [ 34.546862449458729, -0.893347858410663 ], [ 34.546884134977887, -0.893304562540744 ], [ 34.54685838701257, -0.893138383835451 ], [ 34.546773062417699, -0.892894519248026 ], [ 34.546651338540762, -0.892513676831905 ], [ 34.546530379815728, -0.89217895514234 ], [ 34.546446986480618, -0.891901167149516 ], [ 34.546360910342273, -0.891617214064163 ], [ 34.546250136147592, -0.891469335974731 ], [ 34.546151187748158, -0.891370062996309 ], [ 34.545959855817983, -0.891283288689934 ], [ 34.545785720656809, -0.89122095971923 ], [ 34.545631634160607, -0.891158814249701 ], [ 34.545531058265453, -0.891151311379413 ], [ 34.545506553223319, -0.891211873910421 ], [ 34.545475772044448, -0.891362437260686 ], [ 34.545486090861637, -0.891597695062014 ], [ 34.545494892835357, -0.89180099461259 ], [ 34.545528399433522, -0.892090640860727 ], [ 34.545546757435297, -0.892269860140339 ], [ 34.545546474739353, -0.892562863695235 ], [ 34.545558604446313, -0.892741345249357 ], [ 34.545564260591213, -0.893036774591205 ], [ 34.545560860812103, -0.89320013536648 ], [ 34.54556837222426, -0.89342760789714 ], [ 34.545593527355827, -0.893573069075591 ], [ 34.545623604772622, -0.893743026756136 ], [ 34.545668325594441, -0.893883700372863 ], [ 34.545747797671041, -0.89397728374952 ], [ 34.545845545880113, -0.894041840228317 ], [ 34.545993147009277, -0.894070817606175 ], [ 34.546123079186678, -0.893983580002884 ], [ 34.54628653771627, -0.893861660445379 ], [ 34.546429127399051, -0.893759990462458 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4040203", "sub_field": "4040203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.545346660131813, -0.895364424242096 ], [ 34.545216925951422, -0.895413481745366 ], [ 34.545064950318377, -0.895482227557478 ], [ 34.54505531476628, -0.895488766068318 ], [ 34.545044167040928, -0.895495937161893 ], [ 34.545025560463017, -0.895504437561114 ], [ 34.544990904715597, -0.895519508157209 ], [ 34.544972854487582, -0.89552852950907 ], [ 34.544949008560558, -0.89553674736892 ], [ 34.544931778011751, -0.895540192649941 ], [ 34.544914826282287, -0.895546286440193 ], [ 34.544898674304221, -0.895551848161685 ], [ 34.544886774797703, -0.89555740189518 ], [ 34.544874151970753, -0.895563976275653 ], [ 34.544851484038581, -0.895570528705068 ], [ 34.544786341800361, -0.895588687299509 ], [ 34.544733874493723, -0.895592450754245 ], [ 34.544737540203514, -0.895599983521354 ], [ 34.544797402772218, -0.895705960329503 ], [ 34.54490284199963, -0.895890300424285 ], [ 34.544981045562871, -0.896046386814128 ], [ 34.545049112526563, -0.896224202624854 ], [ 34.545120900636533, -0.896370185665496 ], [ 34.545222429679029, -0.896554645695028 ], [ 34.545294430367477, -0.896720669935476 ], [ 34.545338154698243, -0.896759781423663 ], [ 34.545403651108352, -0.896726867970137 ], [ 34.545451598093443, -0.896644560726363 ], [ 34.545497000116292, -0.896599338940271 ], [ 34.545571117214131, -0.896588987329083 ], [ 34.54561027914891, -0.89653434749713 ], [ 34.545680787862558, -0.89644379783768 ], [ 34.54571385250884, -0.896421233219934 ], [ 34.545738044025427, -0.896369848515056 ], [ 34.545773896187953, -0.896306391771816 ], [ 34.545783365373481, -0.896245134777539 ], [ 34.545821510764348, -0.896155749594179 ], [ 34.545864297569288, -0.896144772409539 ], [ 34.545886787593147, -0.896123919828061 ], [ 34.545926347832378, -0.896079637751177 ], [ 34.545901162250871, -0.895863590606706 ], [ 34.545915713274503, -0.895748921634547 ], [ 34.545928036727283, -0.895689301738479 ], [ 34.545918097188007, -0.895632481191181 ], [ 34.545936804252953, -0.895617807290127 ], [ 34.545941468594407, -0.895576873353398 ], [ 34.545943284590031, -0.895513872261604 ], [ 34.545911246428773, -0.89541186262273 ], [ 34.545961096442362, -0.895345573964001 ], [ 34.545971964271779, -0.895290608221904 ], [ 34.545960857703513, -0.895239333289659 ], [ 34.54593251020313, -0.895203255895403 ], [ 34.545884786805573, -0.895192496927578 ], [ 34.54573477840777, -0.895222888510933 ], [ 34.545649571852501, -0.895270186691174 ], [ 34.545533824526139, -0.89529856670143 ], [ 34.545407208728989, -0.895330708777093 ], [ 34.545346660131813, -0.895364424242096 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4040302", "sub_field": "4040302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.546804849296393, -0.893428948751392 ], [ 34.546786933037367, -0.893443962543283 ], [ 34.546731151683048, -0.89350183032134 ], [ 34.546644289739682, -0.893574414077814 ], [ 34.546519610446992, -0.893696695419895 ], [ 34.54637173641509, -0.893810055904819 ], [ 34.54625544230317, -0.893896105135394 ], [ 34.546140678544567, -0.893996525329763 ], [ 34.546207128973528, -0.893997330490784 ], [ 34.546346532351052, -0.893993329324257 ], [ 34.546396225076087, -0.893938669470011 ], [ 34.546461425077368, -0.894040136056087 ], [ 34.546387649205847, -0.894095121046012 ], [ 34.546438361065363, -0.89421894324125 ], [ 34.546377667091043, -0.894291983956646 ], [ 34.546405689846473, -0.894376225038975 ], [ 34.546514424027038, -0.894481280091841 ], [ 34.5466645905353, -0.894410588897931 ], [ 34.546753751918018, -0.894350356647595 ], [ 34.546837980188521, -0.894282297890344 ], [ 34.546913969422043, -0.89422710139819 ], [ 34.546995465716677, -0.894161538109946 ], [ 34.547045057420199, -0.894094540937606 ], [ 34.54721153257784, -0.893994757796281 ], [ 34.547141174265377, -0.893882227120138 ], [ 34.547060826508812, -0.893752243467843 ], [ 34.54698496639984, -0.893611421278898 ], [ 34.546866219569793, -0.893485134092283 ], [ 34.546804849296393, -0.893428948751392 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4040504", "sub_field": "4040504" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.543585140800268, -0.898459372763502 ], [ 34.543491021626117, -0.898609224816674 ], [ 34.543423997037678, -0.898709637295602 ], [ 34.543351026114152, -0.898818816187959 ], [ 34.543304178473527, -0.898957468261547 ], [ 34.543183172717242, -0.899063571584511 ], [ 34.543063141614198, -0.899169209216355 ], [ 34.542909123735527, -0.899250116580847 ], [ 34.542713526521041, -0.89935772498592 ], [ 34.542590097469343, -0.899409877468063 ], [ 34.542401332323607, -0.899486929038952 ], [ 34.542227986485521, -0.899571155907203 ], [ 34.542156387889172, -0.899621687177244 ], [ 34.542057141435237, -0.899680600490134 ], [ 34.542005578565799, -0.899723960071718 ], [ 34.541942884520147, -0.899773830436902 ], [ 34.541920542353573, -0.899816565933936 ], [ 34.541940502411528, -0.899855029958428 ], [ 34.541980901171392, -0.899873329977297 ], [ 34.542057843184843, -0.899875821021125 ], [ 34.542111469652461, -0.899865920502288 ], [ 34.542183918710137, -0.899897125903452 ], [ 34.542266843750468, -0.899877140865403 ], [ 34.542336898114563, -0.899878194448408 ], [ 34.54248818579272, -0.899815321564963 ], [ 34.542623564144471, -0.899765777953643 ], [ 34.542736250379548, -0.899733714914361 ], [ 34.542922896257508, -0.899680188426357 ], [ 34.543076230726427, -0.899615556346586 ], [ 34.543250339280583, -0.899554671588568 ], [ 34.543371013268818, -0.899514510876655 ], [ 34.543575480089501, -0.899418874794969 ], [ 34.543816865129777, -0.899322678083571 ], [ 34.543778039504552, -0.899047849675489 ], [ 34.543762000626067, -0.898820764185567 ], [ 34.543728853120058, -0.898665963641965 ], [ 34.543741319019887, -0.898477264082946 ], [ 34.543770717974539, -0.898302527927467 ], [ 34.543734727415647, -0.898290796783235 ], [ 34.543699928704072, -0.898300402465279 ], [ 34.543663400085038, -0.898325759264189 ], [ 34.543585140800268, -0.898459372763502 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4040901", "sub_field": "4040901" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.539332985859183, -0.901023969567886 ], [ 34.539609538280381, -0.901506996459428 ], [ 34.53981881389722, -0.901876323933854 ], [ 34.540098788090212, -0.901812261715397 ], [ 34.540489006604012, -0.901812059602001 ], [ 34.54113166200235, -0.901692736090445 ], [ 34.541215329932669, -0.90111737797991 ], [ 34.541877821256513, -0.900792751334525 ], [ 34.542282470161553, -0.900525452470653 ], [ 34.542900409498053, -0.900201520535209 ], [ 34.543132224816418, -0.900005589256897 ], [ 34.543179463799881, -0.899737710811518 ], [ 34.542959236061243, -0.899729366062433 ], [ 34.542253515732099, -0.899952684536085 ], [ 34.542026100232597, -0.899966659530357 ], [ 34.54170366630175, -0.899872649817949 ], [ 34.541468509567252, -0.899859501189631 ], [ 34.541106763935801, -0.900003874359908 ], [ 34.54062248421495, -0.900238909823403 ], [ 34.540114766710587, -0.900478749476243 ], [ 34.539593388400171, -0.900705227083569 ], [ 34.53932852548693, -0.900872504706341 ], [ 34.539332985859183, -0.901023969567886 ] ] ] } }, +{ "type": "Feature", "properties": { "field": "4041104", "sub_field": "4041104" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.545473670123457, -0.900313944199276 ], [ 34.545367756850183, -0.900545028112076 ], [ 34.545228486621887, -0.900736771658958 ], [ 34.545126719726802, -0.900771883829354 ], [ 34.544941149717367, -0.90084249025152 ], [ 34.544796517685263, -0.900922986360997 ], [ 34.544694736692861, -0.900993518033882 ], [ 34.544612517613267, -0.901107823041161 ], [ 34.544456892305533, -0.901320330554823 ], [ 34.5443001268765, -0.901533743240174 ], [ 34.544215677145473, -0.901702095791291 ], [ 34.544302078806332, -0.901735376769232 ], [ 34.544455237214748, -0.901694745257437 ], [ 34.544648770028218, -0.901644037428865 ], [ 34.544799865908523, -0.901623757330334 ], [ 34.545094398720671, -0.901590317764223 ], [ 34.545413297729972, -0.901558058254986 ], [ 34.545731976796837, -0.90153462320938 ], [ 34.545895504254517, -0.901522461638231 ], [ 34.546197264853333, -0.90148730779486 ], [ 34.546352226359197, -0.901470569268192 ], [ 34.546514811495811, -0.901476461818015 ], [ 34.546678895216672, -0.901442393862512 ], [ 34.546867208501588, -0.9014021324516 ], [ 34.547002369278978, -0.90137473743038 ], [ 34.54714223380612, -0.901355336115848 ], [ 34.547293734065619, -0.90131935982148 ], [ 34.54740128131013, -0.901282357901993 ], [ 34.547512697367587, -0.901245358832563 ], [ 34.547562926298419, -0.901189117075615 ], [ 34.547461611297969, -0.900959333133917 ], [ 34.547393474211638, -0.90069608878081 ], [ 34.547348169851837, -0.900624808305746 ], [ 34.547133172935943, -0.900692958627307 ], [ 34.547051058358051, -0.900700448934913 ], [ 34.546967038271902, -0.900685495231157 ], [ 34.546907753528068, -0.900646226826647 ], [ 34.546854326760403, -0.900574362270952 ], [ 34.546823812762973, -0.900484138130976 ], [ 34.546780134853719, -0.900268505332224 ], [ 34.546745727241813, -0.900246746229611 ], [ 34.546652060952951, -0.900248069153662 ], [ 34.546490313043577, -0.900277950556776 ], [ 34.546412197954012, -0.900243553704886 ], [ 34.546386583177792, -0.900179294730257 ], [ 34.54627543049785, -0.900211402935995 ], [ 34.546075200621807, -0.900231408531772 ], [ 34.545764202540958, -0.90025874936184 ], [ 34.545638589803552, -0.900234400334413 ], [ 34.545473670123457, -0.900313944199276 ] ] ] } } +] +} diff --git a/python_app/planet_download.ipynb b/python_app/planet_download.ipynb index e3b8ae2..02bd1b4 100644 --- a/python_app/planet_download.ipynb +++ b/python_app/planet_download.ipynb @@ -190,10 +190,10 @@ "\n", " function evaluatePixel(sample) {\n", " // Scale the bands\n", - " var scaledBlue = [2.5 * sample.Blue / 10000];\n", - " var scaledGreen = [2.5 * sample.Green / 10000];\n", - " var scaledRed = [2.5 * sample.Red / 10000];\n", - " var scaledNIR = [2.5 * sample.NIR / 10000];\n", + " var scaledBlue = [2.5 * sample.blue / 10000];\n", + " var scaledGreen = [2.5 * sample.green / 10000];\n", + " var scaledRed = [2.5 * sample.red / 10000];\n", + " var scaledNIR = [2.5 * sample.nir / 10000];\n", " \n", " // Calculate the CI (Chlorophyll Index) using the scaled values\n", " // var CI = [scaledNIR / scaledGreen - 1] ;\n", @@ -274,13 +274,13 @@ "text": [ "Monthly time windows:\n", "\n", - "2024-08-14\n", - "2024-08-15\n", "2024-08-16\n", "2024-08-17\n", "2024-08-18\n", "2024-08-19\n", - "2024-08-20\n" + "2024-08-20\n", + "2024-08-21\n", + "2024-08-22\n" ] } ], @@ -503,21 +503,13 @@ "id": "41b7369c-f768-44ba-983e-eb8eae4f3afd", "metadata": {}, "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - " Image downloaded for 2024-08-14 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", - " Image downloaded for 2024-08-14 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n" - ] - }, { "name": "stderr", "output_type": "stream", "text": [ "/usr/local/anaconda3/lib/python3.11/site-packages/sentinelhub/geometry.py:136: SHDeprecationWarning: Initializing `BBox` objects from `BBox` objects will no longer be possible in future versions.\n", " return BBox._tuple_from_bbox(bbox)\n", - "/var/folders/qt/jcd_lqsd6nq6_5902w6403_h0000gn/T/ipykernel_46134/4136298839.py:67: SHDeprecationWarning: The string representation of `BBox` will change to match its `repr` representation.\n", + "/var/folders/qt/jcd_lqsd6nq6_5902w6403_h0000gn/T/ipykernel_49969/170088608.py:67: SHDeprecationWarning: The string representation of `BBox` will change to match its `repr` representation.\n", " print(f' Image downloaded for ' +slot + ' and bbox ' + str(bbox))\n", "/usr/local/anaconda3/lib/python3.11/site-packages/sentinelhub/geometry.py:136: SHDeprecationWarning: Initializing `BBox` objects from `BBox` objects will no longer be possible in future versions.\n", " return BBox._tuple_from_bbox(bbox)\n" @@ -527,12 +519,6 @@ "name": "stdout", "output_type": "stream", "text": [ - " Image downloaded for 2024-08-14 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", - " Image downloaded for 2024-08-14 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n", - " Image downloaded for 2024-08-15 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", - " Image downloaded for 2024-08-15 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n", - " Image downloaded for 2024-08-15 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", - " Image downloaded for 2024-08-15 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n", " Image downloaded for 2024-08-16 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", " Image downloaded for 2024-08-16 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n", " Image downloaded for 2024-08-16 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", @@ -552,7 +538,15 @@ " Image downloaded for 2024-08-20 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", " Image downloaded for 2024-08-20 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n", " Image downloaded for 2024-08-20 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", - " Image downloaded for 2024-08-20 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n" + " Image downloaded for 2024-08-20 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n", + " Image downloaded for 2024-08-21 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", + " Image downloaded for 2024-08-21 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n", + " Image downloaded for 2024-08-21 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", + " Image downloaded for 2024-08-21 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n", + " Image downloaded for 2024-08-22 and bbox 34.82970726773786,0.502167631314441,34.830536536294375,0.503255785720052\n", + " Image downloaded for 2024-08-22 and bbox 34.8334617198946,0.49885648209679895,34.83398097497386,0.499660676826314\n", + " Image downloaded for 2024-08-22 and bbox 34.83398097497386,0.498759712488145,34.83427174382217,0.4993881837791638\n", + " Image downloaded for 2024-08-22 and bbox 34.83990692108071,0.490469085371239,34.84039153582786,0.49136130359895\n" ] } ], @@ -641,146 +635,566 @@ "name": "stderr", "output_type": "stream", "text": [ - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ef6d31c5422078af6cb7cd4f081fba55/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/36bd12bbd011c2e5035a467fa4310f56/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/86f5adebbde3cc84ebd1a1c2713eb1b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/a4c9cb5abf29ec3892eb8050f4c01e61/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/30ba735efce3cdec1ff0d0aaa5157ee6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/0a06635da5cf935382069d0a0b5bdc71/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ed08da38bdd2dce45b239ebd36aaf6cb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/808fd0dfd243ea6e7411d35b7733e19e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ef6d31c5422078af6cb7cd4f081fba55/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/f49425840160bc879eb0a7539cb90048/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/86f5adebbde3cc84ebd1a1c2713eb1b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/070484edb493c7f6c225923b12b215d3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/30ba735efce3cdec1ff0d0aaa5157ee6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/03b0c33d61f005a03a0fe85b3228dca0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ed08da38bdd2dce45b239ebd36aaf6cb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/a3bddbe871c58e722bd1a6ae019a4a54/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ef6d31c5422078af6cb7cd4f081fba55/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/86f5adebbde3cc84ebd1a1c2713eb1b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/30ba735efce3cdec1ff0d0aaa5157ee6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-14/ed08da38bdd2dce45b239ebd36aaf6cb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/eb155f61d90258554446c4b0e19e3a1d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/ae6ac369948aef2f0edfda6611eb8a17/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/27a18decf46bc92dab45207d670de64d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/ed7b2541f4c5850b7479d40da058c22f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/c68945780987cf316798e3cfba1d8c1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/38895dbb50ecdced3d21943117a3c599/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/495c4ff2ba333860fbd7cb2df6ae6337/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/e4be5e8d9698089e3a2ce7516d7ac4a1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/eb155f61d90258554446c4b0e19e3a1d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/c82c9381c397faa3871269473f4e57ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/27a18decf46bc92dab45207d670de64d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/7b4742c9afde5771bd401c466e23ddd0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/c68945780987cf316798e3cfba1d8c1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/5ccb0298e8351bbc38326ea54090ada0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/495c4ff2ba333860fbd7cb2df6ae6337/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/22e9b6c33a093754355f51c8d1a0c70e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/eb155f61d90258554446c4b0e19e3a1d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/27a18decf46bc92dab45207d670de64d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/c68945780987cf316798e3cfba1d8c1c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-15/495c4ff2ba333860fbd7cb2df6ae6337/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/457e50bbe535548c2365e486ba9c2aa2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/a4a4083b042abbff923cd1f3d5fc51b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/c90a5f036c9116f4953608a61e7cc42b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/39541d529cba9d3a6d8d0a5433ec32f1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/b9652f82e47a22769af83d591d68eae3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/36bd12bbd011c2e5035a467fa4310f56/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/7850ac546430c815d19b497da6b6c7ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/a4c9cb5abf29ec3892eb8050f4c01e61/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/457e50bbe535548c2365e486ba9c2aa2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/0a06635da5cf935382069d0a0b5bdc71/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/c90a5f036c9116f4953608a61e7cc42b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/808fd0dfd243ea6e7411d35b7733e19e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/b9652f82e47a22769af83d591d68eae3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/f49425840160bc879eb0a7539cb90048/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/7850ac546430c815d19b497da6b6c7ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/070484edb493c7f6c225923b12b215d3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/457e50bbe535548c2365e486ba9c2aa2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/c90a5f036c9116f4953608a61e7cc42b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/b9652f82e47a22769af83d591d68eae3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/7850ac546430c815d19b497da6b6c7ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/22a882b61a4bc5fa7df1c26c003d0d58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/03b0c33d61f005a03a0fe85b3228dca0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/281a6c4e3583b4f96fd46be0af82edbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/a3bddbe871c58e722bd1a6ae019a4a54/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/b6506ef411afcd941a0b776573d4f1ca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/ae6ac369948aef2f0edfda6611eb8a17/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/46922f95c5409b9213eed0d7294e45ea/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/ed7b2541f4c5850b7479d40da058c22f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/22a882b61a4bc5fa7df1c26c003d0d58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/38895dbb50ecdced3d21943117a3c599/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/281a6c4e3583b4f96fd46be0af82edbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/e4be5e8d9698089e3a2ce7516d7ac4a1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/b6506ef411afcd941a0b776573d4f1ca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/c82c9381c397faa3871269473f4e57ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/46922f95c5409b9213eed0d7294e45ea/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/7b4742c9afde5771bd401c466e23ddd0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/22a882b61a4bc5fa7df1c26c003d0d58/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/281a6c4e3583b4f96fd46be0af82edbd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/b6506ef411afcd941a0b776573d4f1ca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/46922f95c5409b9213eed0d7294e45ea/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/97ff9146fcf97134abfb024813c18a46/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/5ccb0298e8351bbc38326ea54090ada0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/f6749a66964c04dee41c4332fa1ba226/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/22e9b6c33a093754355f51c8d1a0c70e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d97d9736fa409aeee3abaf6584e25691/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/a4a4083b042abbff923cd1f3d5fc51b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/4c5943399e742c95c2f4b91cf96f2360/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/39541d529cba9d3a6d8d0a5433ec32f1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/97ff9146fcf97134abfb024813c18a46/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/36bd12bbd011c2e5035a467fa4310f56/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/a4c9cb5abf29ec3892eb8050f4c01e61/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/0a06635da5cf935382069d0a0b5bdc71/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/808fd0dfd243ea6e7411d35b7733e19e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/f49425840160bc879eb0a7539cb90048/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/070484edb493c7f6c225923b12b215d3/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/03b0c33d61f005a03a0fe85b3228dca0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/a3bddbe871c58e722bd1a6ae019a4a54/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/ae6ac369948aef2f0edfda6611eb8a17/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/ed7b2541f4c5850b7479d40da058c22f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/38895dbb50ecdced3d21943117a3c599/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/e4be5e8d9698089e3a2ce7516d7ac4a1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/7b4742c9afde5771bd401c466e23ddd0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/c82c9381c397faa3871269473f4e57ee/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/5ccb0298e8351bbc38326ea54090ada0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/22e9b6c33a093754355f51c8d1a0c70e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/a4a4083b042abbff923cd1f3d5fc51b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-16/39541d529cba9d3a6d8d0a5433ec32f1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/d36239eb565774be129de7542d60a649/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/f6749a66964c04dee41c4332fa1ba226/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/db9a74aa20be77d9445e1d8adc7bf474/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d97d9736fa409aeee3abaf6584e25691/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/08739e26f45c405e9fc6b4350faac197/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/4c5943399e742c95c2f4b91cf96f2360/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/737cf17bd4f66a38a24472f0788eb49e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/97ff9146fcf97134abfb024813c18a46/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/f6749a66964c04dee41c4332fa1ba226/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d97d9736fa409aeee3abaf6584e25691/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/4c5943399e742c95c2f4b91cf96f2360/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/1bcc6b42db152e6dc6f7b2363542c017/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/520cb5333907fd9f5a71f937ab2b6247/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/96359544e98d143c3579d27f525f2c2b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/ccd86520eda5eb2cb7a5406f4b106b25/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/21adbda11f4f80e341a2b6638bdb7a38/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/c4e81e0a0042a027a201065ee68e305c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/d260b63a7020a6d388e1745a3c77be00/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/ab13067d1a6ce236278e72fad5a2dc9a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/1bcc6b42db152e6dc6f7b2363542c017/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/868e87d76c8c5a5a11b0d1c340a03f7e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/96359544e98d143c3579d27f525f2c2b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/b11b351705d1f0cbb41195404e348016/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/21adbda11f4f80e341a2b6638bdb7a38/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/4b6bcc3a88b1b84c61336371bd193956/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/d260b63a7020a6d388e1745a3c77be00/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/62e8d5795b0c1ed0cfd25bc1a417f06b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/1bcc6b42db152e6dc6f7b2363542c017/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/96359544e98d143c3579d27f525f2c2b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/21adbda11f4f80e341a2b6638bdb7a38/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/d260b63a7020a6d388e1745a3c77be00/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/d6d7322e5b2e1ee200c1289f7e3ca584/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/8685a11838114f255189d2b926f46530/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/8743609eaa73d8daccf38173f18cab62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/318405945d62078946b9f91b5fc5aea9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/51430ceb565cc95c4bf84fd6d0ba17ab/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/88ba97af60d21f4461cc85acaff25388/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/c8f521df119266886b1d57f10ca39666/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/bc8cf8201439dc749ec0ae410944a05b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/d6d7322e5b2e1ee200c1289f7e3ca584/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/58ef26db1a1604fb8d9e6a72a9d67e94/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/8743609eaa73d8daccf38173f18cab62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/5127fbec45846220837e3379880580bb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/51430ceb565cc95c4bf84fd6d0ba17ab/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/d36239eb565774be129de7542d60a649/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/c8f521df119266886b1d57f10ca39666/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/db9a74aa20be77d9445e1d8adc7bf474/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/d6d7322e5b2e1ee200c1289f7e3ca584/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/8743609eaa73d8daccf38173f18cab62/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/51430ceb565cc95c4bf84fd6d0ba17ab/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", - "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/c8f521df119266886b1d57f10ca39666/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n" + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/08739e26f45c405e9fc6b4350faac197/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/737cf17bd4f66a38a24472f0788eb49e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/520cb5333907fd9f5a71f937ab2b6247/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/ccd86520eda5eb2cb7a5406f4b106b25/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/c4e81e0a0042a027a201065ee68e305c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/ab13067d1a6ce236278e72fad5a2dc9a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/868e87d76c8c5a5a11b0d1c340a03f7e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/b11b351705d1f0cbb41195404e348016/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/4b6bcc3a88b1b84c61336371bd193956/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/62e8d5795b0c1ed0cfd25bc1a417f06b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/8685a11838114f255189d2b926f46530/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/318405945d62078946b9f91b5fc5aea9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/88ba97af60d21f4461cc85acaff25388/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/bc8cf8201439dc749ec0ae410944a05b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/58ef26db1a1604fb8d9e6a72a9d67e94/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/5127fbec45846220837e3379880580bb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/d36239eb565774be129de7542d60a649/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/db9a74aa20be77d9445e1d8adc7bf474/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/08739e26f45c405e9fc6b4350faac197/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/737cf17bd4f66a38a24472f0788eb49e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/520cb5333907fd9f5a71f937ab2b6247/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/ccd86520eda5eb2cb7a5406f4b106b25/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/c4e81e0a0042a027a201065ee68e305c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/ab13067d1a6ce236278e72fad5a2dc9a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/868e87d76c8c5a5a11b0d1c340a03f7e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/b11b351705d1f0cbb41195404e348016/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/4b6bcc3a88b1b84c61336371bd193956/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/62e8d5795b0c1ed0cfd25bc1a417f06b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/58ef26db1a1604fb8d9e6a72a9d67e94/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/8685a11838114f255189d2b926f46530/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/318405945d62078946b9f91b5fc5aea9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/88ba97af60d21f4461cc85acaff25388/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/bc8cf8201439dc749ec0ae410944a05b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-17/5127fbec45846220837e3379880580bb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/65cbda15a61788601e455c0ac4935206/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d21a7b22fd7f207ba3c879d93dc22975/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/86bffc2563bf95501e8fc52b5332be9b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/94cf8605c29c2c98bcaa52d29d62fd09/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/dd62fbae09eddea99e93fb8749686135/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/35eea044ebdd3838cb1a700cce052c60/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b76e7ed4fa12130399335c9e9399741b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/8f34528ddc8ba423124500a6b569923a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/3390196e741d6eab674c354f17a3968e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/94710389b9b4e54d0cbaa6d12b3cc9cd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/f4041228c369096083685d0e6c56d73f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/a6f5ff8416b63d9b8691f27ee87c5b2e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/2cf34b379cfc44beb3f7915a023787ca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b93a246efbcf62b33965d5a500d01315/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/75e4c4bd5ca5aa0657d17ead096bc288/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/545442505ea3d124db2cbd27f5f158b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b0b811c8619267b1a22ce27099ed0d6e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d561abbd5890b9c96ffd763fe4b15460/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/65cbda15a61788601e455c0ac4935206/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d21a7b22fd7f207ba3c879d93dc22975/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/86bffc2563bf95501e8fc52b5332be9b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/94cf8605c29c2c98bcaa52d29d62fd09/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/dd62fbae09eddea99e93fb8749686135/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/35eea044ebdd3838cb1a700cce052c60/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b76e7ed4fa12130399335c9e9399741b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/8f34528ddc8ba423124500a6b569923a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/3390196e741d6eab674c354f17a3968e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/94710389b9b4e54d0cbaa6d12b3cc9cd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/f4041228c369096083685d0e6c56d73f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/a6f5ff8416b63d9b8691f27ee87c5b2e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/2cf34b379cfc44beb3f7915a023787ca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b93a246efbcf62b33965d5a500d01315/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/75e4c4bd5ca5aa0657d17ead096bc288/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/545442505ea3d124db2cbd27f5f158b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b0b811c8619267b1a22ce27099ed0d6e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d561abbd5890b9c96ffd763fe4b15460/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/65cbda15a61788601e455c0ac4935206/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d21a7b22fd7f207ba3c879d93dc22975/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/86bffc2563bf95501e8fc52b5332be9b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/94cf8605c29c2c98bcaa52d29d62fd09/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/dd62fbae09eddea99e93fb8749686135/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/35eea044ebdd3838cb1a700cce052c60/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b76e7ed4fa12130399335c9e9399741b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/8f34528ddc8ba423124500a6b569923a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/3390196e741d6eab674c354f17a3968e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/94710389b9b4e54d0cbaa6d12b3cc9cd/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/f4041228c369096083685d0e6c56d73f/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/a6f5ff8416b63d9b8691f27ee87c5b2e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/2cf34b379cfc44beb3f7915a023787ca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b93a246efbcf62b33965d5a500d01315/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/75e4c4bd5ca5aa0657d17ead096bc288/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/545442505ea3d124db2cbd27f5f158b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/b0b811c8619267b1a22ce27099ed0d6e/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-18/d561abbd5890b9c96ffd763fe4b15460/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/ab94380bd1370378a6ad4721fa75bcfc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/1946db811b14a065c787169ff5fa69b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/59fbda3c0285bd5b6a3c7eabe6695afa/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/db4b22cb91696c2f743ce06d2338579a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/470c179781c95e2d7038750d1cd077a7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/b5e6b54d1a3b03671b43d14d75ffb7a5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/7d47e6760dc7403cff5c27e141308015/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/70d7fa5d607de97ab33d321a51966e55/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/2416c7cdfcb63e392c043b5b741ca4f0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/bec736f594a34e1a8ae6c5ee13d869f6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/6a2f6c804dbd039012d4c18100a72d87/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/476931972143810df56925af68535094/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/e93659883829f537e0b162abaf8f4645/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/03b9e5b71dd7d508fbcfc61741867494/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/27c79247e754dc0f2bbf59f41deb47a8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/8c8bd0ce2b3c9af17c5d9827a2a668f9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/221538b1552ebbe0a5c5043d50baf2f1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/50a3e98242687345ac0dca1f751693b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/ab94380bd1370378a6ad4721fa75bcfc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/1946db811b14a065c787169ff5fa69b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/59fbda3c0285bd5b6a3c7eabe6695afa/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/db4b22cb91696c2f743ce06d2338579a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/470c179781c95e2d7038750d1cd077a7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/b5e6b54d1a3b03671b43d14d75ffb7a5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/7d47e6760dc7403cff5c27e141308015/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/70d7fa5d607de97ab33d321a51966e55/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/2416c7cdfcb63e392c043b5b741ca4f0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/bec736f594a34e1a8ae6c5ee13d869f6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/6a2f6c804dbd039012d4c18100a72d87/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/476931972143810df56925af68535094/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/e93659883829f537e0b162abaf8f4645/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/03b9e5b71dd7d508fbcfc61741867494/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/27c79247e754dc0f2bbf59f41deb47a8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/8c8bd0ce2b3c9af17c5d9827a2a668f9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/221538b1552ebbe0a5c5043d50baf2f1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/50a3e98242687345ac0dca1f751693b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/ab94380bd1370378a6ad4721fa75bcfc/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/1946db811b14a065c787169ff5fa69b4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/59fbda3c0285bd5b6a3c7eabe6695afa/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/db4b22cb91696c2f743ce06d2338579a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/470c179781c95e2d7038750d1cd077a7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/b5e6b54d1a3b03671b43d14d75ffb7a5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/7d47e6760dc7403cff5c27e141308015/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/70d7fa5d607de97ab33d321a51966e55/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/2416c7cdfcb63e392c043b5b741ca4f0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/bec736f594a34e1a8ae6c5ee13d869f6/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/8c8bd0ce2b3c9af17c5d9827a2a668f9/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/6a2f6c804dbd039012d4c18100a72d87/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/476931972143810df56925af68535094/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/e93659883829f537e0b162abaf8f4645/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/03b9e5b71dd7d508fbcfc61741867494/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/27c79247e754dc0f2bbf59f41deb47a8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/221538b1552ebbe0a5c5043d50baf2f1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-19/50a3e98242687345ac0dca1f751693b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/153eada3c3a0b708a3ffcdb150a761eb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/0a2136600f0a2bd0e02d0cbd3192ceca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/b1fad54766349931ea0bf9d1a69b9873/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/6635542f4f14b11ec37aa26d2d817e4c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/1b6b82b7b076d7a2bfde6ac4aded60b8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/880ce33c46254e1da0c51369d5e259fb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/46871616264708ba364200b428c1dbb1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/44126287cae64f2fbd5816d6a256c5b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/39c69091c86191dede6dbe44df3e1bbe/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/2fe0f907f0c568a045c166538b25cdab/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/10e18818be87e113a8826c3dca9a47c7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/a57f105205a5f4adb5e7e688f828b5ea/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/699329e81392805fd0c3f859b1899406/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/6519985655103e10693afd797aa4b34d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/45c6877083f79a4b366cc09ff042a56b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/91775355eef9323a57429384ac7f1981/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/287fb6297d72b208365566101d8b4a38/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/a175e0f7e015346646f6d358d918fdb1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/153eada3c3a0b708a3ffcdb150a761eb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/0a2136600f0a2bd0e02d0cbd3192ceca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/b1fad54766349931ea0bf9d1a69b9873/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/6635542f4f14b11ec37aa26d2d817e4c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/1b6b82b7b076d7a2bfde6ac4aded60b8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/880ce33c46254e1da0c51369d5e259fb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/46871616264708ba364200b428c1dbb1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/44126287cae64f2fbd5816d6a256c5b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/39c69091c86191dede6dbe44df3e1bbe/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/2fe0f907f0c568a045c166538b25cdab/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/10e18818be87e113a8826c3dca9a47c7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/a57f105205a5f4adb5e7e688f828b5ea/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/699329e81392805fd0c3f859b1899406/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/6519985655103e10693afd797aa4b34d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/45c6877083f79a4b366cc09ff042a56b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/91775355eef9323a57429384ac7f1981/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/287fb6297d72b208365566101d8b4a38/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/a175e0f7e015346646f6d358d918fdb1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/153eada3c3a0b708a3ffcdb150a761eb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/0a2136600f0a2bd0e02d0cbd3192ceca/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/b1fad54766349931ea0bf9d1a69b9873/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/6635542f4f14b11ec37aa26d2d817e4c/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/1b6b82b7b076d7a2bfde6ac4aded60b8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/880ce33c46254e1da0c51369d5e259fb/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/46871616264708ba364200b428c1dbb1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/44126287cae64f2fbd5816d6a256c5b2/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/39c69091c86191dede6dbe44df3e1bbe/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/2fe0f907f0c568a045c166538b25cdab/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/10e18818be87e113a8826c3dca9a47c7/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/a57f105205a5f4adb5e7e688f828b5ea/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/699329e81392805fd0c3f859b1899406/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/6519985655103e10693afd797aa4b34d/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/45c6877083f79a4b366cc09ff042a56b/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/91775355eef9323a57429384ac7f1981/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/287fb6297d72b208365566101d8b4a38/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-20/a175e0f7e015346646f6d358d918fdb1/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/f6989c7f6f011f9c675e150d9130d661/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/70868171ed3cbb200ec7afee26295bae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/1a6c5744ffbf6968c755d857d35354df/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/8d3e75ee0aebd8d264fd12d82aa633a4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/d05854d9715e545def2925998a864024/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/e02df2d23be3d4602e3b2838cb4a5d77/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/9127c066771f3bde7ec7b7cbdaa5e7b5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/b57c171f9c67ba13f792a60f3cd8b984/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/c919af034b0d6b8aceda9a06766469ae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/27cf4337f4af60084bd00512e39a9618/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/41752a38edb32c672a0ed673d6ad8343/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/f1cf013222b8d05ce34812562e4c09a5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/95a593e7b604a5b20505ce1c3688060a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/bb90771be151e29893f3d3cd6644f3e0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/d21062207dc80de433fc8cb68175c7de/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/5f064e0fd6760312a9a0cf5ebcc55ead/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/3b22bd61ce9dcc16347761109ea0a7da/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/8f8b963bfcc46350aa980cc8c65ee7ae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/f6989c7f6f011f9c675e150d9130d661/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/70868171ed3cbb200ec7afee26295bae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/1a6c5744ffbf6968c755d857d35354df/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/8d3e75ee0aebd8d264fd12d82aa633a4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/d05854d9715e545def2925998a864024/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/e02df2d23be3d4602e3b2838cb4a5d77/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/9127c066771f3bde7ec7b7cbdaa5e7b5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/b57c171f9c67ba13f792a60f3cd8b984/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/c919af034b0d6b8aceda9a06766469ae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/27cf4337f4af60084bd00512e39a9618/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/41752a38edb32c672a0ed673d6ad8343/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/f1cf013222b8d05ce34812562e4c09a5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/95a593e7b604a5b20505ce1c3688060a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/bb90771be151e29893f3d3cd6644f3e0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/d21062207dc80de433fc8cb68175c7de/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/5f064e0fd6760312a9a0cf5ebcc55ead/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/3b22bd61ce9dcc16347761109ea0a7da/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/8f8b963bfcc46350aa980cc8c65ee7ae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/f6989c7f6f011f9c675e150d9130d661/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/70868171ed3cbb200ec7afee26295bae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/1a6c5744ffbf6968c755d857d35354df/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/8d3e75ee0aebd8d264fd12d82aa633a4/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/d05854d9715e545def2925998a864024/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/e02df2d23be3d4602e3b2838cb4a5d77/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/9127c066771f3bde7ec7b7cbdaa5e7b5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/b57c171f9c67ba13f792a60f3cd8b984/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/c919af034b0d6b8aceda9a06766469ae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/27cf4337f4af60084bd00512e39a9618/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/41752a38edb32c672a0ed673d6ad8343/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/f1cf013222b8d05ce34812562e4c09a5/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/bb90771be151e29893f3d3cd6644f3e0/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/95a593e7b604a5b20505ce1c3688060a/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/d21062207dc80de433fc8cb68175c7de/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/5f064e0fd6760312a9a0cf5ebcc55ead/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/3b22bd61ce9dcc16347761109ea0a7da/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-21/8f8b963bfcc46350aa980cc8c65ee7ae/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/e5b6001af493c81be2301a326ca924c8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/9c0d8b3302b48f657200baec889d8930/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/985e394ed0d9c86a4a4ba7560cdc0854/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/74a45db7168a9fbd6b368c99e8878740/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/e5b6001af493c81be2301a326ca924c8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/9c0d8b3302b48f657200baec889d8930/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/985e394ed0d9c86a4a4ba7560cdc0854/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/74a45db7168a9fbd6b368c99e8878740/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/e5b6001af493c81be2301a326ca924c8/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/9c0d8b3302b48f657200baec889d8930/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/985e394ed0d9c86a4a4ba7560cdc0854/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n", + "Warning 1: ../laravel_app/storage/app/Butali/single_images/2024-08-22/74a45db7168a9fbd6b368c99e8878740/response.tiff: TIFFReadDirectory:Sum of Photometric type-related color channels and ExtraSamples doesn't match SamplesPerPixel. Defining non-color channels as ExtraSamples.\n" ] } ], diff --git a/r_app/CI_report_dashboard_planet.Rmd b/r_app/CI_report_dashboard_planet.Rmd index 50c9446..ec8236f 100644 --- a/r_app/CI_report_dashboard_planet.Rmd +++ b/r_app/CI_report_dashboard_planet.Rmd @@ -48,7 +48,13 @@ library(caret) library(randomForest) library(CAST) +# Define the log file path +log_file <- here("laravel_app/storage/app/rmd_log.txt") +# Create a logging function +log_message <- function(message) { + cat(message, "\n", file = log_file, append = TRUE) +} ``` @@ -78,18 +84,26 @@ mail_day_as_character <- as.character(mail_day) report_date_as_week_day <- weekdays(ymd(today)) - days_of_week <- c("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday") +days_of_week <- c("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday") #als de index of report_date_as_week_day groter dan de index van de mail_day dan moet de week + 1 week <- week(today) +log_message(paste("week", week, "today", today)) today_minus_1 <- as.character(ymd(today) - 7) today_minus_2 <- as.character(ymd(today) - 14) today_minus_3 <- as.character(ymd(today) - 21) + +log_message(paste("report_date_as_week_day", report_date_as_week_day)) +log_message(paste("which(days_of_week == report_date_as_week_day)", which(days_of_week == report_date_as_week_day))) +log_message(paste("mail_day_as_character", mail_day_as_character)) +log_message(paste(" which(days_of_week == mail_day_as_character)", which(days_of_week == mail_day_as_character))) + if (which(days_of_week == report_date_as_week_day) > which(days_of_week == mail_day_as_character)){ + log_message("adjusting weeks because of mail day") week <- week(today) + 1 today_minus_1 <- as.character(ymd(today)) today_minus_2 <- as.character(ymd(today) - 7) today_minus_3 <- as.character(ymd(today) - 14) -} + } # week <- week(today) @@ -142,11 +156,11 @@ path_to_week_minus_1 = here(weekly_CI_mosaic, paste0("week_",week_minus_1, "_", path_to_week_minus_2 = here(weekly_CI_mosaic, paste0("week_",week_minus_2, "_", year_2, ".tif")) path_to_week_minus_3 = here(weekly_CI_mosaic, paste0("week_",week_minus_3, "_", year_3, ".tif")) -print("required mosaic paths") -print(path_to_week_current) -print(path_to_week_minus_1) -print(path_to_week_minus_2) -print(path_to_week_minus_3) +log_message("required mosaic paths") +log_message(paste("path to week current",path_to_week_current)) +log_message(paste("path to week minus 1",path_to_week_minus_1)) +log_message(paste("path to week minus 2",path_to_week_minus_2)) +log_message(paste("path to week minus 3",path_to_week_minus_3)) CI <- brick(path_to_week_current) %>% subset("CI") CI_m1 <- brick(path_to_week_minus_1) %>% subset("CI") diff --git a/r_app/Rplots.pdf b/r_app/Rplots.pdf index 39d9bd71c14f9d4dd7206f2a20c9662beb244ce7..52ad2cf3916afd91610de7ae8e6608f9369cda62 100644 GIT binary patch delta 40470 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 delta 2468 zcmZved0bOh7RO0K1RrHF0)>bep&3KyNJ5sE%z%(eB1CKgL`0$xh_Ww=vb04Ks0yfT z1{hJj22Cc)~7dqo;nm^wC<(zZxJLl${?YK`T?0}9Pk2xF=2_;;<Y_+w=0k$9K0S=v8Gq>hS2mKweW8DT!=2d#}(t`L@V% zFz;;3vpE+(>B8=-2e#Pse!0T?iD{X1aap#dxok@dyZ*(PIsZy0bL)sQ`n=sp z)l<0qDF5$ot?%4Ax!t&Ny7Ng!M?W>s*X<>RaKvX766ow&y{wufIS=L_D>=FYT*oau{vQ5CP~8_RZM;)42~ ziH+uy90UK7F-@Fn=)|;s6>1(`wCXh>=)3nTT3*+kqZt3l)riJsK?H)G>*3JgkmCe8 ztcVR@Vpwcg5v>o)Mmb>^s<8`aa+T0gxv{5Pm08|@NEucABpU1M_&TZBKI-W|XDm^l zF4lSQu~P}=q((IES3Ic#9amtO>x24bb9k;N%C^uZ&j%GwGRa;zRHK4?cGk!fgG{mo zHF78rJN0LOawEFFQsj(nL@(Na7=J#|yK5vD>IwFCMVY8q&850T{s7z0(rt%O(RLO#!(f!D`fovBDjE=lo0QmH0*BiWKkCPGfF90HZot{{uZ z$oBsuD$wLK5TULXEC%Y3Y>*}oWkQFVjtU%5GP&ndW>NHVm6qQ_w_167&;zBYi>G5> zA?gYQ$9jvTx)xOyFcWJZC=h; z5D^MCm&+6JSkZ;SVXV%L*VgM4iN0={eK6|lfTAlR^(_<>vA*nYH$zogM%p*~oSrkf zFV`uimYLP$l;j}4hObv%l}UIRX)8^R)6Zvazq+{V(%E_LU~FV*cTpQYCc>k9>buhx z;$hO!OdP{=igdkU>seHVtXQ9V+Q}SH8%q{>*|3lR8JLYgEjY@S{M#l z{ifDT;0Lvq_)weL<^Hr7QGc}uHF|s}OC^*}T0~}j(aIkCaVcchENt$2bG9@GZxf@e z&av8c1`$0uWxO*MHetD}_rI$h>Bm4I@SEBADnn49=eZR1;-@~x7%?&C#Yxu%@eL{Xo>Sw;;|K8GH z&fg!GACOE6E}C=vm9AS9m*QM><-1*rM)xI__K%BLL7$Z?VRF-0liMX3v^fFEFNh0eaQSBX#mHH$9gZ+S2+0na)R=}% zAY)%0PvhRi?fx~S%-R(C8Zk+z|$Vo2OtXA`i=pQ2M+UVuTMZr!YOsoG;8=|RTtL&Mn(YQ03Z24Y6DY`s5JiC0f7n zq7g^8rzxOTmW;x-r+?_Qr%+iMHm2sm_AryG5yxgRKeWMA>RyjKmS&%O0k~8p*&6 V7*@=*?$m?9|1pS2