├── .editorconfig ├── .env ├── .env.development ├── .eslintignore ├── .eslintrc.js ├── .eslintrc.yaml ├── .gitconfig ├── .github └── ISSUE_TEMPLATE │ └── custom.md ├── .gitignore ├── .placeMapImages └── .gitkeep ├── .prettierignore ├── .prettierrc.yaml ├── .yarnclean ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── BookmarkButton.tsx ├── Bookmarks.tsx ├── CenteredCross.tsx ├── ClickedPoint.tsx ├── Container.tsx ├── Content.tsx ├── ContentUI.tsx ├── Elections.tsx ├── ElectionsUI.tsx ├── FeatureImage.tsx ├── FocusedImage.tsx ├── GareInfo.tsx ├── LightsWarning.tsx ├── Map.tsx ├── MapComponents.tsx ├── ModalSheet.tsx ├── ModalSheetReminder.tsx ├── ModalSwitch.tsx ├── MoreCategories.tsx ├── OsmFeature.tsx ├── OsmFeatureUI.tsx ├── Panoramax.tsx ├── PanoramaxLoader.tsx ├── PanoramaxUI.tsx ├── PaymentBanner.tsx ├── PlaceButtonsUI.tsx ├── PlaceSearch │ ├── _components │ │ ├── FromHereLink.tsx │ │ ├── Geolocate.tsx │ │ ├── LogoCarteApp.tsx │ │ ├── SearchBar.tsx │ │ └── SearchResults │ │ │ ├── SearchHereButton.tsx │ │ │ ├── SearchHistory.tsx │ │ │ ├── SearchLoader.tsx │ │ │ ├── SearchNoResults.tsx │ │ │ └── SearchResultsContainer.tsx │ └── index.tsx ├── ProfileChooser.tsx ├── QuickBookmarks.tsx ├── QuickFeatureSearch.tsx ├── QuickFeatureSearchUI.tsx ├── RouteRésumé.tsx ├── SafeMap.tsx ├── SetDestination.tsx ├── ShareButton.tsx ├── SideSheet.tsx ├── UI.tsx ├── Voyage.tsx ├── ZoneImages.tsx ├── a-propos │ └── page.tsx ├── api │ ├── download-github-issues │ │ └── route.ts │ ├── edge-geolocation │ │ └── route.ts │ ├── fetch-github-issue-comments │ │ └── route.ts │ ├── news │ │ └── route.ts │ ├── osm │ │ └── route.ts │ ├── osmTagsToIcon │ │ └── route.ts │ ├── sentry-example-api │ │ └── route.ts │ └── styles │ │ └── route.ts ├── apple-icon.png ├── bikeRouteProfiles.yaml ├── blog │ ├── Article.tsx │ ├── Blog.tsx │ ├── Contribution.tsx │ ├── OtherArticles.tsx │ ├── Sommaire.tsx │ ├── UI.tsx │ ├── [slug] │ │ └── page.tsx │ ├── blogArticles.ts │ ├── getPosts.ts │ ├── mdxComponents.tsx │ ├── metadata.ts │ ├── page.tsx │ └── utils.ts ├── boussole │ ├── Boussole.tsx │ ├── MapCompassArrow.tsx │ ├── UI.tsx │ ├── page.tsx │ └── useCompass.ts ├── categories.yaml ├── categoryGroupColors.yaml ├── clickableLayers.ts ├── complexQueries.yaml ├── createSearchPolygon.ts ├── defaultState.tsx ├── documentation │ └── tickets │ │ ├── Issue.tsx │ │ ├── Issues.tsx │ │ ├── [number] │ │ └── page.tsx │ │ ├── metadata.ts │ │ └── page.tsx ├── effects │ ├── buildSvgImage.ts │ ├── fetchOverpassRequest.ts │ ├── handleCirconscriptionsLegislativesClick.ts │ ├── useAddMap.ts │ ├── useDrawBookmarks.ts │ ├── useDrawCyclingSegments.ts │ ├── useDrawElectionCluserResults.ts │ ├── useDrawFeatures.ts │ ├── useDrawOsmFeaturePolygon.ts │ ├── useDrawPanoramaxPosition.ts │ ├── useDrawRightClickMarker.ts │ ├── useDrawSearchResults.ts │ ├── useDrawTransit.ts │ ├── useDrawTransport.ts │ ├── useDrawTransportAreas.tsx │ ├── useFetchTransportMap.ts │ ├── useGeocodeRightClick.ts │ ├── useGeolocation.ts │ ├── useGeolocationAutofocus.ts │ ├── useIcons.ts │ ├── useImageSearch.ts │ ├── useMapClick.ts │ ├── useMapIcons.ts │ ├── useOsmRequest.ts │ ├── useOverpassRequest.ts │ ├── useRightClick.ts │ ├── useSearchLocalTransit.ts │ ├── useSetTargetMarkerAndZoom.ts │ ├── useTerraDraw.ts │ ├── useTriggerErrorForDebug.ts │ ├── useWikipediaInfoboxImages.ts │ └── utils.ts ├── elections │ ├── Candidates.tsx │ └── useCircoData.ts ├── gares.ts ├── getOgImage │ └── route.ts ├── global-error.tsx ├── icon.svg ├── icons │ ├── Icons.tsx │ ├── fetch.ts │ └── icons.json ├── imageRedirects.yaml ├── integration │ ├── CTA.tsx │ ├── Page.tsx │ ├── UI.tsx │ └── page.tsx ├── itineraire │ ├── Page.tsx │ ├── StepsUI.tsx │ ├── api │ │ └── route.ts │ └── page.tsx ├── itinerary │ ├── ClickItineraryInstruction.tsx │ ├── DateSelector.tsx │ ├── DateSelectorUI.tsx │ ├── Itinerary.tsx │ ├── Steps.tsx │ ├── Timeline.tsx │ ├── ValhallaRésumé.tsx │ ├── areStepsEqual.ts │ ├── computeSlopeGradient.ts │ ├── fetchValhalla.ts │ ├── transit │ │ ├── BestConnection.tsx │ │ ├── LateWarning.tsx │ │ ├── Line.tsx │ │ ├── NoTransitMessages.tsx │ │ ├── Transit.tsx │ │ ├── TransitLoader.tsx │ │ ├── TransitSummary.tsx │ │ ├── TransportMoveBlock.tsx │ │ ├── findBestConnection.ts │ │ ├── motisRequest.ts │ │ ├── motisTripsRequest.ts │ │ ├── transportIcon.ts │ │ ├── useMotisTrips.ts │ │ └── utils.ts │ ├── useDrawItinerary.ts │ ├── useDrawRoute.ts │ ├── useFetchDrawBikeParkings.ts │ ├── useFetchItinerary.ts │ ├── useSetItineraryModeFromUrl.ts │ └── valhallaGeojson.ts ├── layout.tsx ├── lieux │ ├── Régions.tsx │ ├── [ville] │ │ ├── Annuaire.tsx │ │ ├── Results.tsx │ │ ├── fetchVille.ts │ │ └── page.tsx │ ├── departement │ │ ├── [departement] │ │ │ └── page.tsx │ │ ├── départements.yaml │ │ ├── départementsOSM.json │ │ └── fetchCommunes.ts │ ├── page.tsx │ └── region │ │ ├── [region] │ │ └── page.tsx │ │ └── fetchCommunes.ts ├── lightenGares.ts ├── maj │ └── page.tsx ├── manifest.ts ├── meteo │ └── Meteo.tsx ├── moreCategories.yaml ├── osm │ ├── Heritage.tsx │ ├── OpeningHours.tsx │ ├── getName.ts │ └── getUrl.ts ├── osmRequest.ts ├── osmTagLabels.ts ├── overpassFetcher.ts ├── page.tsx ├── presentation │ ├── CTA.tsx │ ├── Page.tsx │ ├── Phone.tsx │ ├── UI.tsx │ ├── dependances │ │ └── page.tsx │ ├── devices.css │ ├── page.tsx │ └── state-of-the-map-2024 │ │ ├── Page.tsx │ │ ├── page.tsx │ │ ├── presentation-notes.mdx │ │ ├── presentation1.mdx │ │ ├── presentation2.mdx │ │ ├── presentation3.mdx │ │ └── presentation4.mdx ├── referentiel-gares-voyageurs.json ├── roadmap │ ├── CTA.tsx │ ├── Content.tsx │ ├── Page.tsx │ ├── basemaps.mdx │ ├── contribution.mdx │ ├── divers.mdx │ ├── i18n.mdx │ ├── interface.mdx │ ├── intro.mdx │ ├── itinerary.mdx │ ├── page.tsx │ ├── placeSearch.mdx │ └── street.mdx ├── robots.txt ├── scrapWikipediaInfobox │ └── route.ts ├── sentry-example-page │ └── page.tsx ├── serverUrls.ts ├── sitemap.ts ├── stepOsmRequest.ts ├── styles │ ├── PanoramaxChooser.tsx │ ├── StyleChooser.tsx │ ├── TerraDrawButton.tsx │ ├── TerrainChooser.tsx │ ├── cassiniIgnStyle.ts │ ├── cyclOsmStyle.ts │ ├── cycleHighwayLayers.ts │ ├── elections.ts │ ├── france.ts │ ├── ign-clair.json │ ├── ign-simple.json │ ├── indoorequal-layers.js │ ├── nature.ts │ ├── protomaps.ts │ ├── railStyle.ts │ ├── satellite.ts │ ├── styles.ts │ ├── terrainLayers.ts │ ├── test-street-complete.ts │ ├── transit.ts │ └── voyage.ts ├── svgo │ ├── bulk │ │ └── route.ts │ └── route.ts ├── tags │ └── Brand.tsx ├── transport-en-commun │ ├── Page.tsx │ ├── UI.tsx │ ├── page.tsx │ ├── regions.yaml │ └── regionsAoms.yaml ├── transport │ ├── AgencyFilter.tsx │ ├── DayView.tsx │ ├── SncfSelect.tsx │ ├── StopByName.tsx │ ├── TransitFilter.tsx │ ├── TransportMap.tsx │ ├── TransportMapRoutes.tsx │ ├── decodeTransportsData.ts │ ├── enrichTransportsData.ts │ ├── filterTransportFeatures.ts │ ├── stop │ │ ├── Calendar.tsx │ │ ├── CalendarUI.tsx │ │ ├── Route.tsx │ │ ├── RouteUI.tsx │ │ └── Stop.tsx │ └── useTransportStopData.ts ├── trouver-adresse-annonce │ ├── Trouver.tsx │ ├── dpe │ │ ├── DPE.yaml │ │ ├── DPELabel.tsx │ │ ├── DPEMarkers.tsx │ │ ├── DpeList.tsx │ │ ├── README.md │ │ └── enrich.ts │ ├── geoUtils.ts │ ├── page.tsx │ └── useAddSobreMap.ts ├── useHoverOnMapFeatures.tsx ├── useOgImageFetcher.ts ├── useTerrainControl.ts ├── useWikidata.ts └── utils.ts ├── articles ├── a-free-european-alternative-to-google-maps.mdx ├── a-propos.mdx ├── digital-relocation.mdx ├── maps-cartes.mdx ├── plan-sncf.mdx ├── qwant-maps.mdx ├── relocalisation-numerique.mdx ├── souverainete-cartographique.mdx ├── street-view-france.mdx ├── un-beau-voyage.mdx ├── vie-privée.mdx ├── voyage-v0.1.mdx ├── voyage-v0.2.mdx ├── voyage-v0.3.mdx └── voyage-v0.4.mdx ├── buildPlaceJsonLd.ts ├── bun.lock ├── components ├── Address.tsx ├── ArticleUI.ts ├── BlueskyComment.tsx ├── BlueskyComments.tsx ├── CircularIcon.tsx ├── ContactAndSocial.tsx ├── DownloadGPX.tsx ├── DownloadGPXWrapper.tsx ├── FeatureLink.tsx ├── FriendlyObjectViewer.tsx ├── GeoInputOptions.tsx ├── Icon.tsx ├── InfoIcon.tsx ├── InputStyle.tsx ├── Introduction.tsx ├── LeftVerticalBar.tsx ├── MapButtons.tsx ├── MapContent.tsx ├── NextSteps.tsx ├── ObjectiViewerUI.tsx ├── OsmAttribution.tsx ├── OsmLinks.tsx ├── Payment2.tsx ├── PaymentBlock.tsx ├── PaymentUI.tsx ├── Pouete.tsx ├── SimilarNodes.tsx ├── StaticPageHeader.tsx ├── Tags.tsx ├── TechDependenciesGallery.tsx ├── Wikipedia.tsx ├── analytics │ ├── Analytics.tsx │ ├── TrackUser.tsx │ ├── TrackUserClient.tsx │ ├── useTrackUser.ts │ └── useUUID.ts ├── autoroutes │ ├── prix-autoroutes.csv │ └── prixAutoroutes.ts ├── buildPlaceMap.ts ├── categories.ts ├── categories │ ├── CategoryResult.tsx │ └── CategoryResults.tsx ├── categoryIconUrl.ts ├── css │ └── utils.ts ├── cycling │ ├── brouterResultToSegments.ts │ ├── computeSafeRatio.ts │ └── isSafeCyclingSegment.ts ├── dependencies.yaml ├── diapos │ ├── CaptureSpacebar.tsx │ ├── Diapo.tsx │ └── Wrapper.tsx ├── explanations.mdx ├── fetchOgImage.ts ├── fetchPhoton.ts ├── geoUtils.ts ├── geocodeLatLon.ts ├── icons │ └── close.tsx ├── isWebglSupported.ts ├── itinerary │ ├── ElevationGraph.tsx │ ├── ItineraryButton.tsx │ └── splitAllez.ts ├── loader │ └── index.tsx ├── map │ ├── CartesProtocol.ts │ ├── DrawCategories.tsx │ ├── DrawTransportMaps.tsx │ ├── frenchMaplibreLocale.ts │ ├── hexagone.json │ └── useMapContent.ts ├── mapUtils.ts ├── news │ ├── News.tsx │ ├── NewsPlop.tsx │ └── news.yaml ├── openmojis.json ├── osm │ ├── CityData.tsx │ ├── Website.tsx │ ├── buildAddress.ts │ ├── buildDescription.ts │ ├── buildOsmFeatureGeojson.ts │ ├── combinedOsmFeaturesRequest.ts │ ├── disambiguateWayRelation.ts │ ├── osmApiRequest.ts │ └── tailoredTags.yaml ├── placeSearch │ ├── ItineraryProposition.tsx │ ├── detectCodePostal.ts │ ├── detectCoordinates.ts │ └── detectSmartItinerary.ts ├── react-modal-sheet │ ├── SheetBackdrop.tsx │ ├── SheetContainer.tsx │ ├── SheetContent.tsx │ ├── SheetHeader.tsx │ ├── SheetScroller.tsx │ ├── constants.ts │ ├── context.tsx │ ├── hooks.tsx │ ├── index.tsx │ ├── sheet.tsx │ ├── styles.ts │ ├── types.tsx │ ├── use-prevent-scroll.ts │ └── utils.ts ├── transit │ ├── DetailsButton.tsx │ ├── StartEndOptions.tsx │ ├── TransitInstructions.tsx │ ├── TransitInstructionsUI.tsx │ ├── TransitOptions.tsx │ ├── TransitOptionsUI.tsx │ ├── UI.tsx │ └── modes.ts ├── transport │ ├── cycleHighwaysOverpassExample.json │ ├── fetchAgency.ts │ └── useDrawCycleHighways.ts ├── useDisplayOnIntersecting.ts ├── useEffectDebugger.ts ├── useSetSearchParams.tsx ├── utils │ ├── ColorProviderComponent.tsx │ ├── DisableScroll.ts │ ├── IframeOptionsProvider.tsx │ ├── Scroll.tsx │ ├── SitePathsContext.tsx │ ├── colors.tsx │ ├── computeBboxArea.ts │ ├── embeddedContext.js │ ├── embeddedContext.ts │ ├── htmlUtils.ts │ ├── index.tsx │ ├── markdown.tsx │ ├── publicodesUtils.tsx │ ├── simulationUtils.ts │ ├── useDisplayOnIntersecting.ts │ ├── useKeyPress.ts │ ├── useNextQuestion.tsx │ ├── useTraceComponentUpdate.tsx │ ├── useWhatChanged.ts │ ├── utils.ts │ └── withTracker.tsx ├── valhalla-decode-shape.ts ├── watchOsmPlaces.ts └── wikidata.js ├── contentlayer.config.ts ├── deno.lock ├── globals.css ├── icon.svg ├── instrumentation.ts ├── lib ├── downloadGithubIssues.ts ├── githubIssues.ts └── rss.ts ├── mdx-components.tsx ├── mdxOptions.mjs ├── middleware.ts ├── next-env.d.ts ├── next.config.mjs ├── nixpacks.toml ├── package.json ├── postcss.config.js ├── public ├── 399f403c66e9492fbd19e508e56323b7.txt ├── IGN.svg ├── add-circle-stroke.svg ├── annuaire-entreprises.svg ├── backward-10.svg ├── bike-lights.svg ├── blog-images │ ├── Carte-touristique-de-Marseille-2019-2020.jpg │ ├── boulangerie-dina-cartes.png │ ├── bretagne-apple.png │ ├── bretagne-train.png │ ├── burger-maps.png │ ├── cartes-bus-saint-malo.png │ ├── cartes-minou.png │ ├── cartes-panoramax.png │ ├── cartes-panoramax.svg │ ├── cartotrain.png │ ├── conflict.png │ ├── construction.jpg │ ├── crozon-satellite.png │ ├── date-train.png │ ├── distances-1.png │ ├── fond-0.4-2.png │ ├── fond-0.4.png │ ├── fond-piéton-0.4.png │ ├── fonds-cartes.png │ ├── france-google.png │ ├── france-horizon-us.png │ ├── france-ign.png │ ├── france-train.png │ ├── google-maps-accueil.png │ ├── google-maps-bricolage-rennes.png │ ├── google-maps-itinéraire.png │ ├── hiver-3D-0.4.png │ ├── laposte-horaires-officiels.png │ ├── laposte-horaires.png │ ├── mappy-pubs-2.png │ ├── mappy-pubs.png │ ├── mappy-viamichelin.png │ ├── michelin-bretagne-1990.jpg │ ├── mobile-0.4.png │ ├── panoramax-haute-vienne.png │ ├── panoramax-mappy.png │ ├── panoramax-pompiers.png │ ├── plus-recherches-rapides.png │ ├── poi-images.png │ ├── prez-cartes-sotm2024.png │ ├── qwant-maps.png │ ├── qwant-maps.webp │ ├── qwant-routes-2.png │ ├── qwant-routes.png │ ├── recherche-0.4.png │ ├── recherche-saint-malo.png │ ├── relocalisation-numerique.jpg │ ├── street-view-half-moon.png │ ├── top-pays-osm.png │ ├── versailles-0.4.png │ └── voyage-routes-2.png ├── bretagne.svg ├── brouter.png ├── calendar.svg ├── car.svg ├── cartes-search.xml ├── check-circle.svg ├── check.svg ├── chevron-bas.svg ├── circonscriptions-candidats.png ├── circonscriptions.png ├── close-circle-stroke.svg ├── close-circle.svg ├── close.svg ├── compass-arrow.svg ├── connection-details.svg ├── correspondance.svg ├── crayon.svg ├── cross.svg ├── cycling.svg ├── demo-iframe.html ├── dessin-nosgestesclimat.png ├── destination-point.svg ├── distance-light.svg ├── distance.svg ├── dot.svg ├── fonts │ ├── NotoSans-Bold.ttf │ ├── NotoSans-Italic.ttf │ ├── NotoSans-Regular.ttf │ ├── Roboto-Bold.ttf │ ├── glyphs │ │ ├── RobotoBold-NotoSansBold │ │ │ ├── 0-255.pbf │ │ │ ├── 1024-1279.pbf │ │ │ ├── 10240-10495.pbf │ │ │ ├── 10496-10751.pbf │ │ │ ├── 10752-11007.pbf │ │ │ ├── 11008-11263.pbf │ │ │ ├── 11264-11519.pbf │ │ │ ├── 11520-11775.pbf │ │ │ ├── 11776-12031.pbf │ │ │ ├── 12032-12287.pbf │ │ │ ├── 12288-12543.pbf │ │ │ ├── 12544-12799.pbf │ │ │ ├── 1280-1535.pbf │ │ │ ├── 12800-13055.pbf │ │ │ ├── 13056-13311.pbf │ │ │ ├── 13312-13567.pbf │ │ │ ├── 13568-13823.pbf │ │ │ ├── 13824-14079.pbf │ │ │ ├── 14080-14335.pbf │ │ │ ├── 14336-14591.pbf │ │ │ ├── 14592-14847.pbf │ │ │ ├── 14848-15103.pbf │ │ │ ├── 15104-15359.pbf │ │ │ ├── 1536-1791.pbf │ │ │ ├── 15360-15615.pbf │ │ │ ├── 15616-15871.pbf │ │ │ ├── 15872-16127.pbf │ │ │ ├── 16128-16383.pbf │ │ │ ├── 16384-16639.pbf │ │ │ ├── 16640-16895.pbf │ │ │ ├── 16896-17151.pbf │ │ │ ├── 17152-17407.pbf │ │ │ ├── 17408-17663.pbf │ │ │ ├── 17664-17919.pbf │ │ │ ├── 1792-2047.pbf │ │ │ ├── 17920-18175.pbf │ │ │ ├── 18176-18431.pbf │ │ │ ├── 18432-18687.pbf │ │ │ ├── 18688-18943.pbf │ │ │ ├── 18944-19199.pbf │ │ │ ├── 19200-19455.pbf │ │ │ ├── 19456-19711.pbf │ │ │ ├── 19712-19967.pbf │ │ │ ├── 19968-20223.pbf │ │ │ ├── 20224-20479.pbf │ │ │ ├── 2048-2303.pbf │ │ │ ├── 20480-20735.pbf │ │ │ ├── 20736-20991.pbf │ │ │ ├── 20992-21247.pbf │ │ │ ├── 21248-21503.pbf │ │ │ ├── 21504-21759.pbf │ │ │ ├── 21760-22015.pbf │ │ │ ├── 22016-22271.pbf │ │ │ ├── 22272-22527.pbf │ │ │ ├── 22528-22783.pbf │ │ │ ├── 22784-23039.pbf │ │ │ ├── 2304-2559.pbf │ │ │ ├── 23040-23295.pbf │ │ │ ├── 23296-23551.pbf │ │ │ ├── 23552-23807.pbf │ │ │ ├── 23808-24063.pbf │ │ │ ├── 24064-24319.pbf │ │ │ ├── 24320-24575.pbf │ │ │ ├── 24576-24831.pbf │ │ │ ├── 24832-25087.pbf │ │ │ ├── 25088-25343.pbf │ │ │ ├── 25344-25599.pbf │ │ │ ├── 256-511.pbf │ │ │ ├── 2560-2815.pbf │ │ │ ├── 25600-25855.pbf │ │ │ ├── 25856-26111.pbf │ │ │ ├── 26112-26367.pbf │ │ │ ├── 26368-26623.pbf │ │ │ ├── 26624-26879.pbf │ │ │ ├── 26880-27135.pbf │ │ │ ├── 27136-27391.pbf │ │ │ ├── 27392-27647.pbf │ │ │ ├── 27648-27903.pbf │ │ │ ├── 27904-28159.pbf │ │ │ ├── 2816-3071.pbf │ │ │ ├── 28160-28415.pbf │ │ │ ├── 28416-28671.pbf │ │ │ ├── 28672-28927.pbf │ │ │ ├── 28928-29183.pbf │ │ │ ├── 29184-29439.pbf │ │ │ ├── 29440-29695.pbf │ │ │ ├── 29696-29951.pbf │ │ │ ├── 29952-30207.pbf │ │ │ ├── 30208-30463.pbf │ │ │ ├── 30464-30719.pbf │ │ │ ├── 3072-3327.pbf │ │ │ ├── 30720-30975.pbf │ │ │ ├── 30976-31231.pbf │ │ │ ├── 31232-31487.pbf │ │ │ ├── 31488-31743.pbf │ │ │ ├── 31744-31999.pbf │ │ │ ├── 32000-32255.pbf │ │ │ ├── 32256-32511.pbf │ │ │ ├── 32512-32767.pbf │ │ │ ├── 32768-33023.pbf │ │ │ ├── 33024-33279.pbf │ │ │ ├── 3328-3583.pbf │ │ │ ├── 33280-33535.pbf │ │ │ ├── 33536-33791.pbf │ │ │ ├── 33792-34047.pbf │ │ │ ├── 34048-34303.pbf │ │ │ ├── 34304-34559.pbf │ │ │ ├── 34560-34815.pbf │ │ │ ├── 34816-35071.pbf │ │ │ ├── 35072-35327.pbf │ │ │ ├── 35328-35583.pbf │ │ │ ├── 35584-35839.pbf │ │ │ ├── 3584-3839.pbf │ │ │ ├── 35840-36095.pbf │ │ │ ├── 36096-36351.pbf │ │ │ ├── 36352-36607.pbf │ │ │ ├── 36608-36863.pbf │ │ │ ├── 36864-37119.pbf │ │ │ ├── 37120-37375.pbf │ │ │ ├── 37376-37631.pbf │ │ │ ├── 37632-37887.pbf │ │ │ ├── 37888-38143.pbf │ │ │ ├── 38144-38399.pbf │ │ │ ├── 3840-4095.pbf │ │ │ ├── 38400-38655.pbf │ │ │ ├── 38656-38911.pbf │ │ │ ├── 38912-39167.pbf │ │ │ ├── 39168-39423.pbf │ │ │ ├── 39424-39679.pbf │ │ │ ├── 39680-39935.pbf │ │ │ ├── 39936-40191.pbf │ │ │ ├── 40192-40447.pbf │ │ │ ├── 40448-40703.pbf │ │ │ ├── 40704-40959.pbf │ │ │ ├── 4096-4351.pbf │ │ │ ├── 40960-41215.pbf │ │ │ ├── 41216-41471.pbf │ │ │ ├── 41472-41727.pbf │ │ │ ├── 41728-41983.pbf │ │ │ ├── 41984-42239.pbf │ │ │ ├── 42240-42495.pbf │ │ │ ├── 42496-42751.pbf │ │ │ ├── 42752-43007.pbf │ │ │ ├── 43008-43263.pbf │ │ │ ├── 43264-43519.pbf │ │ │ ├── 4352-4607.pbf │ │ │ ├── 43520-43775.pbf │ │ │ ├── 43776-44031.pbf │ │ │ ├── 44032-44287.pbf │ │ │ ├── 44288-44543.pbf │ │ │ ├── 44544-44799.pbf │ │ │ ├── 44800-45055.pbf │ │ │ ├── 45056-45311.pbf │ │ │ ├── 45312-45567.pbf │ │ │ ├── 45568-45823.pbf │ │ │ ├── 45824-46079.pbf │ │ │ ├── 4608-4863.pbf │ │ │ ├── 46080-46335.pbf │ │ │ ├── 46336-46591.pbf │ │ │ ├── 46592-46847.pbf │ │ │ ├── 46848-47103.pbf │ │ │ ├── 47104-47359.pbf │ │ │ ├── 47360-47615.pbf │ │ │ ├── 47616-47871.pbf │ │ │ ├── 47872-48127.pbf │ │ │ ├── 48128-48383.pbf │ │ │ ├── 48384-48639.pbf │ │ │ ├── 4864-5119.pbf │ │ │ ├── 48640-48895.pbf │ │ │ ├── 48896-49151.pbf │ │ │ ├── 49152-49407.pbf │ │ │ ├── 49408-49663.pbf │ │ │ ├── 49664-49919.pbf │ │ │ ├── 49920-50175.pbf │ │ │ ├── 50176-50431.pbf │ │ │ ├── 50432-50687.pbf │ │ │ ├── 50688-50943.pbf │ │ │ ├── 50944-51199.pbf │ │ │ ├── 512-767.pbf │ │ │ ├── 5120-5375.pbf │ │ │ ├── 51200-51455.pbf │ │ │ ├── 51456-51711.pbf │ │ │ ├── 51712-51967.pbf │ │ │ ├── 51968-52223.pbf │ │ │ ├── 52224-52479.pbf │ │ │ ├── 52480-52735.pbf │ │ │ ├── 52736-52991.pbf │ │ │ ├── 52992-53247.pbf │ │ │ ├── 53248-53503.pbf │ │ │ ├── 53504-53759.pbf │ │ │ ├── 5376-5631.pbf │ │ │ ├── 53760-54015.pbf │ │ │ ├── 54016-54271.pbf │ │ │ ├── 54272-54527.pbf │ │ │ ├── 54528-54783.pbf │ │ │ ├── 54784-55039.pbf │ │ │ ├── 55040-55295.pbf │ │ │ ├── 55296-55551.pbf │ │ │ ├── 55552-55807.pbf │ │ │ ├── 55808-56063.pbf │ │ │ ├── 56064-56319.pbf │ │ │ ├── 5632-5887.pbf │ │ │ ├── 56320-56575.pbf │ │ │ ├── 56576-56831.pbf │ │ │ ├── 56832-57087.pbf │ │ │ ├── 57088-57343.pbf │ │ │ ├── 57344-57599.pbf │ │ │ ├── 57600-57855.pbf │ │ │ ├── 57856-58111.pbf │ │ │ ├── 58112-58367.pbf │ │ │ ├── 58368-58623.pbf │ │ │ ├── 58624-58879.pbf │ │ │ ├── 5888-6143.pbf │ │ │ ├── 58880-59135.pbf │ │ │ ├── 59136-59391.pbf │ │ │ ├── 59392-59647.pbf │ │ │ ├── 59648-59903.pbf │ │ │ ├── 59904-60159.pbf │ │ │ ├── 60160-60415.pbf │ │ │ ├── 60416-60671.pbf │ │ │ ├── 60672-60927.pbf │ │ │ ├── 60928-61183.pbf │ │ │ ├── 61184-61439.pbf │ │ │ ├── 6144-6399.pbf │ │ │ ├── 61440-61695.pbf │ │ │ ├── 61696-61951.pbf │ │ │ ├── 61952-62207.pbf │ │ │ ├── 62208-62463.pbf │ │ │ ├── 62464-62719.pbf │ │ │ ├── 62720-62975.pbf │ │ │ ├── 62976-63231.pbf │ │ │ ├── 63232-63487.pbf │ │ │ ├── 63488-63743.pbf │ │ │ ├── 63744-63999.pbf │ │ │ ├── 6400-6655.pbf │ │ │ ├── 64000-64255.pbf │ │ │ ├── 64256-64511.pbf │ │ │ ├── 64512-64767.pbf │ │ │ ├── 64768-65023.pbf │ │ │ ├── 65024-65279.pbf │ │ │ ├── 65280-65535.pbf │ │ │ ├── 6656-6911.pbf │ │ │ ├── 6912-7167.pbf │ │ │ ├── 7168-7423.pbf │ │ │ ├── 7424-7679.pbf │ │ │ ├── 768-1023.pbf │ │ │ ├── 7680-7935.pbf │ │ │ ├── 7936-8191.pbf │ │ │ ├── 8192-8447.pbf │ │ │ ├── 8448-8703.pbf │ │ │ ├── 8704-8959.pbf │ │ │ ├── 8960-9215.pbf │ │ │ ├── 9216-9471.pbf │ │ │ ├── 9472-9727.pbf │ │ │ ├── 9728-9983.pbf │ │ │ └── 9984-10239.pbf │ │ ├── RobotoItalic-NotoSansItalic │ │ │ ├── 0-255.pbf │ │ │ ├── 1024-1279.pbf │ │ │ ├── 10240-10495.pbf │ │ │ ├── 10496-10751.pbf │ │ │ ├── 10752-11007.pbf │ │ │ ├── 11008-11263.pbf │ │ │ ├── 11264-11519.pbf │ │ │ ├── 11520-11775.pbf │ │ │ ├── 11776-12031.pbf │ │ │ ├── 12032-12287.pbf │ │ │ ├── 12288-12543.pbf │ │ │ ├── 12544-12799.pbf │ │ │ ├── 1280-1535.pbf │ │ │ ├── 12800-13055.pbf │ │ │ ├── 13056-13311.pbf │ │ │ ├── 13312-13567.pbf │ │ │ ├── 13568-13823.pbf │ │ │ ├── 13824-14079.pbf │ │ │ ├── 14080-14335.pbf │ │ │ ├── 14336-14591.pbf │ │ │ ├── 14592-14847.pbf │ │ │ ├── 14848-15103.pbf │ │ │ ├── 15104-15359.pbf │ │ │ ├── 1536-1791.pbf │ │ │ ├── 15360-15615.pbf │ │ │ ├── 15616-15871.pbf │ │ │ ├── 15872-16127.pbf │ │ │ ├── 16128-16383.pbf │ │ │ ├── 16384-16639.pbf │ │ │ ├── 16640-16895.pbf │ │ │ ├── 16896-17151.pbf │ │ │ ├── 17152-17407.pbf │ │ │ ├── 17408-17663.pbf │ │ │ ├── 17664-17919.pbf │ │ │ ├── 1792-2047.pbf │ │ │ ├── 17920-18175.pbf │ │ │ ├── 18176-18431.pbf │ │ │ ├── 18432-18687.pbf │ │ │ ├── 18688-18943.pbf │ │ │ ├── 18944-19199.pbf │ │ │ ├── 19200-19455.pbf │ │ │ ├── 19456-19711.pbf │ │ │ ├── 19712-19967.pbf │ │ │ ├── 19968-20223.pbf │ │ │ ├── 20224-20479.pbf │ │ │ ├── 2048-2303.pbf │ │ │ ├── 20480-20735.pbf │ │ │ ├── 20736-20991.pbf │ │ │ ├── 20992-21247.pbf │ │ │ ├── 21248-21503.pbf │ │ │ ├── 21504-21759.pbf │ │ │ ├── 21760-22015.pbf │ │ │ ├── 22016-22271.pbf │ │ │ ├── 22272-22527.pbf │ │ │ ├── 22528-22783.pbf │ │ │ ├── 22784-23039.pbf │ │ │ ├── 2304-2559.pbf │ │ │ ├── 23040-23295.pbf │ │ │ ├── 23296-23551.pbf │ │ │ ├── 23552-23807.pbf │ │ │ ├── 23808-24063.pbf │ │ │ ├── 24064-24319.pbf │ │ │ ├── 24320-24575.pbf │ │ │ ├── 24576-24831.pbf │ │ │ ├── 24832-25087.pbf │ │ │ ├── 25088-25343.pbf │ │ │ ├── 25344-25599.pbf │ │ │ ├── 256-511.pbf │ │ │ ├── 2560-2815.pbf │ │ │ ├── 25600-25855.pbf │ │ │ ├── 25856-26111.pbf │ │ │ ├── 26112-26367.pbf │ │ │ ├── 26368-26623.pbf │ │ │ ├── 26624-26879.pbf │ │ │ ├── 26880-27135.pbf │ │ │ ├── 27136-27391.pbf │ │ │ ├── 27392-27647.pbf │ │ │ ├── 27648-27903.pbf │ │ │ ├── 27904-28159.pbf │ │ │ ├── 2816-3071.pbf │ │ │ ├── 28160-28415.pbf │ │ │ ├── 28416-28671.pbf │ │ │ ├── 28672-28927.pbf │ │ │ ├── 28928-29183.pbf │ │ │ ├── 29184-29439.pbf │ │ │ ├── 29440-29695.pbf │ │ │ ├── 29696-29951.pbf │ │ │ ├── 29952-30207.pbf │ │ │ ├── 30208-30463.pbf │ │ │ ├── 30464-30719.pbf │ │ │ ├── 3072-3327.pbf │ │ │ ├── 30720-30975.pbf │ │ │ ├── 30976-31231.pbf │ │ │ ├── 31232-31487.pbf │ │ │ ├── 31488-31743.pbf │ │ │ ├── 31744-31999.pbf │ │ │ ├── 32000-32255.pbf │ │ │ ├── 32256-32511.pbf │ │ │ ├── 32512-32767.pbf │ │ │ ├── 32768-33023.pbf │ │ │ ├── 33024-33279.pbf │ │ │ ├── 3328-3583.pbf │ │ │ ├── 33280-33535.pbf │ │ │ ├── 33536-33791.pbf │ │ │ ├── 33792-34047.pbf │ │ │ ├── 34048-34303.pbf │ │ │ ├── 34304-34559.pbf │ │ │ ├── 34560-34815.pbf │ │ │ ├── 34816-35071.pbf │ │ │ ├── 35072-35327.pbf │ │ │ ├── 35328-35583.pbf │ │ │ ├── 35584-35839.pbf │ │ │ ├── 3584-3839.pbf │ │ │ ├── 35840-36095.pbf │ │ │ ├── 36096-36351.pbf │ │ │ ├── 36352-36607.pbf │ │ │ ├── 36608-36863.pbf │ │ │ ├── 36864-37119.pbf │ │ │ ├── 37120-37375.pbf │ │ │ ├── 37376-37631.pbf │ │ │ ├── 37632-37887.pbf │ │ │ ├── 37888-38143.pbf │ │ │ ├── 38144-38399.pbf │ │ │ ├── 3840-4095.pbf │ │ │ ├── 38400-38655.pbf │ │ │ ├── 38656-38911.pbf │ │ │ ├── 38912-39167.pbf │ │ │ ├── 39168-39423.pbf │ │ │ ├── 39424-39679.pbf │ │ │ ├── 39680-39935.pbf │ │ │ ├── 39936-40191.pbf │ │ │ ├── 40192-40447.pbf │ │ │ ├── 40448-40703.pbf │ │ │ ├── 40704-40959.pbf │ │ │ ├── 4096-4351.pbf │ │ │ ├── 40960-41215.pbf │ │ │ ├── 41216-41471.pbf │ │ │ ├── 41472-41727.pbf │ │ │ ├── 41728-41983.pbf │ │ │ ├── 41984-42239.pbf │ │ │ ├── 42240-42495.pbf │ │ │ ├── 42496-42751.pbf │ │ │ ├── 42752-43007.pbf │ │ │ ├── 43008-43263.pbf │ │ │ ├── 43264-43519.pbf │ │ │ ├── 4352-4607.pbf │ │ │ ├── 43520-43775.pbf │ │ │ ├── 43776-44031.pbf │ │ │ ├── 44032-44287.pbf │ │ │ ├── 44288-44543.pbf │ │ │ ├── 44544-44799.pbf │ │ │ ├── 44800-45055.pbf │ │ │ ├── 45056-45311.pbf │ │ │ ├── 45312-45567.pbf │ │ │ ├── 45568-45823.pbf │ │ │ ├── 45824-46079.pbf │ │ │ ├── 4608-4863.pbf │ │ │ ├── 46080-46335.pbf │ │ │ ├── 46336-46591.pbf │ │ │ ├── 46592-46847.pbf │ │ │ ├── 46848-47103.pbf │ │ │ ├── 47104-47359.pbf │ │ │ ├── 47360-47615.pbf │ │ │ ├── 47616-47871.pbf │ │ │ ├── 47872-48127.pbf │ │ │ ├── 48128-48383.pbf │ │ │ ├── 48384-48639.pbf │ │ │ ├── 4864-5119.pbf │ │ │ ├── 48640-48895.pbf │ │ │ ├── 48896-49151.pbf │ │ │ ├── 49152-49407.pbf │ │ │ ├── 49408-49663.pbf │ │ │ ├── 49664-49919.pbf │ │ │ ├── 49920-50175.pbf │ │ │ ├── 50176-50431.pbf │ │ │ ├── 50432-50687.pbf │ │ │ ├── 50688-50943.pbf │ │ │ ├── 50944-51199.pbf │ │ │ ├── 512-767.pbf │ │ │ ├── 5120-5375.pbf │ │ │ ├── 51200-51455.pbf │ │ │ ├── 51456-51711.pbf │ │ │ ├── 51712-51967.pbf │ │ │ ├── 51968-52223.pbf │ │ │ ├── 52224-52479.pbf │ │ │ ├── 52480-52735.pbf │ │ │ ├── 52736-52991.pbf │ │ │ ├── 52992-53247.pbf │ │ │ ├── 53248-53503.pbf │ │ │ ├── 53504-53759.pbf │ │ │ ├── 5376-5631.pbf │ │ │ ├── 53760-54015.pbf │ │ │ ├── 54016-54271.pbf │ │ │ ├── 54272-54527.pbf │ │ │ ├── 54528-54783.pbf │ │ │ ├── 54784-55039.pbf │ │ │ ├── 55040-55295.pbf │ │ │ ├── 55296-55551.pbf │ │ │ ├── 55552-55807.pbf │ │ │ ├── 55808-56063.pbf │ │ │ ├── 56064-56319.pbf │ │ │ ├── 5632-5887.pbf │ │ │ ├── 56320-56575.pbf │ │ │ ├── 56576-56831.pbf │ │ │ ├── 56832-57087.pbf │ │ │ ├── 57088-57343.pbf │ │ │ ├── 57344-57599.pbf │ │ │ ├── 57600-57855.pbf │ │ │ ├── 57856-58111.pbf │ │ │ ├── 58112-58367.pbf │ │ │ ├── 58368-58623.pbf │ │ │ ├── 58624-58879.pbf │ │ │ ├── 5888-6143.pbf │ │ │ ├── 58880-59135.pbf │ │ │ ├── 59136-59391.pbf │ │ │ ├── 59392-59647.pbf │ │ │ ├── 59648-59903.pbf │ │ │ ├── 59904-60159.pbf │ │ │ ├── 60160-60415.pbf │ │ │ ├── 60416-60671.pbf │ │ │ ├── 60672-60927.pbf │ │ │ ├── 60928-61183.pbf │ │ │ ├── 61184-61439.pbf │ │ │ ├── 6144-6399.pbf │ │ │ ├── 61440-61695.pbf │ │ │ ├── 61696-61951.pbf │ │ │ ├── 61952-62207.pbf │ │ │ ├── 62208-62463.pbf │ │ │ ├── 62464-62719.pbf │ │ │ ├── 62720-62975.pbf │ │ │ ├── 62976-63231.pbf │ │ │ ├── 63232-63487.pbf │ │ │ ├── 63488-63743.pbf │ │ │ ├── 63744-63999.pbf │ │ │ ├── 6400-6655.pbf │ │ │ ├── 64000-64255.pbf │ │ │ ├── 64256-64511.pbf │ │ │ ├── 64512-64767.pbf │ │ │ ├── 64768-65023.pbf │ │ │ ├── 65024-65279.pbf │ │ │ ├── 65280-65535.pbf │ │ │ ├── 6656-6911.pbf │ │ │ ├── 6912-7167.pbf │ │ │ ├── 7168-7423.pbf │ │ │ ├── 7424-7679.pbf │ │ │ ├── 768-1023.pbf │ │ │ ├── 7680-7935.pbf │ │ │ ├── 7936-8191.pbf │ │ │ ├── 8192-8447.pbf │ │ │ ├── 8448-8703.pbf │ │ │ ├── 8704-8959.pbf │ │ │ ├── 8960-9215.pbf │ │ │ ├── 9216-9471.pbf │ │ │ ├── 9472-9727.pbf │ │ │ ├── 9728-9983.pbf │ │ │ └── 9984-10239.pbf │ │ ├── RobotoMediumRegular-NotoSansRegular │ │ │ ├── 0-255.pbf │ │ │ ├── 1024-1279.pbf │ │ │ ├── 10240-10495.pbf │ │ │ ├── 10496-10751.pbf │ │ │ ├── 10752-11007.pbf │ │ │ ├── 11008-11263.pbf │ │ │ ├── 11264-11519.pbf │ │ │ ├── 11520-11775.pbf │ │ │ ├── 11776-12031.pbf │ │ │ ├── 12032-12287.pbf │ │ │ ├── 12288-12543.pbf │ │ │ ├── 12544-12799.pbf │ │ │ ├── 1280-1535.pbf │ │ │ ├── 12800-13055.pbf │ │ │ ├── 13056-13311.pbf │ │ │ ├── 13312-13567.pbf │ │ │ ├── 13568-13823.pbf │ │ │ ├── 13824-14079.pbf │ │ │ ├── 14080-14335.pbf │ │ │ ├── 14336-14591.pbf │ │ │ ├── 14592-14847.pbf │ │ │ ├── 14848-15103.pbf │ │ │ ├── 15104-15359.pbf │ │ │ ├── 1536-1791.pbf │ │ │ ├── 15360-15615.pbf │ │ │ ├── 15616-15871.pbf │ │ │ ├── 15872-16127.pbf │ │ │ ├── 16128-16383.pbf │ │ │ ├── 16384-16639.pbf │ │ │ ├── 16640-16895.pbf │ │ │ ├── 16896-17151.pbf │ │ │ ├── 17152-17407.pbf │ │ │ ├── 17408-17663.pbf │ │ │ ├── 17664-17919.pbf │ │ │ ├── 1792-2047.pbf │ │ │ ├── 17920-18175.pbf │ │ │ ├── 18176-18431.pbf │ │ │ ├── 18432-18687.pbf │ │ │ ├── 18688-18943.pbf │ │ │ ├── 18944-19199.pbf │ │ │ ├── 19200-19455.pbf │ │ │ ├── 19456-19711.pbf │ │ │ ├── 19712-19967.pbf │ │ │ ├── 19968-20223.pbf │ │ │ ├── 20224-20479.pbf │ │ │ ├── 2048-2303.pbf │ │ │ ├── 20480-20735.pbf │ │ │ ├── 20736-20991.pbf │ │ │ ├── 20992-21247.pbf │ │ │ ├── 21248-21503.pbf │ │ │ ├── 21504-21759.pbf │ │ │ ├── 21760-22015.pbf │ │ │ ├── 22016-22271.pbf │ │ │ ├── 22272-22527.pbf │ │ │ ├── 22528-22783.pbf │ │ │ ├── 22784-23039.pbf │ │ │ ├── 2304-2559.pbf │ │ │ ├── 23040-23295.pbf │ │ │ ├── 23296-23551.pbf │ │ │ ├── 23552-23807.pbf │ │ │ ├── 23808-24063.pbf │ │ │ ├── 24064-24319.pbf │ │ │ ├── 24320-24575.pbf │ │ │ ├── 24576-24831.pbf │ │ │ ├── 24832-25087.pbf │ │ │ ├── 25088-25343.pbf │ │ │ ├── 25344-25599.pbf │ │ │ ├── 256-511.pbf │ │ │ ├── 2560-2815.pbf │ │ │ ├── 25600-25855.pbf │ │ │ ├── 25856-26111.pbf │ │ │ ├── 26112-26367.pbf │ │ │ ├── 26368-26623.pbf │ │ │ ├── 26624-26879.pbf │ │ │ ├── 26880-27135.pbf │ │ │ ├── 27136-27391.pbf │ │ │ ├── 27392-27647.pbf │ │ │ ├── 27648-27903.pbf │ │ │ ├── 27904-28159.pbf │ │ │ ├── 2816-3071.pbf │ │ │ ├── 28160-28415.pbf │ │ │ ├── 28416-28671.pbf │ │ │ ├── 28672-28927.pbf │ │ │ ├── 28928-29183.pbf │ │ │ ├── 29184-29439.pbf │ │ │ ├── 29440-29695.pbf │ │ │ ├── 29696-29951.pbf │ │ │ ├── 29952-30207.pbf │ │ │ ├── 30208-30463.pbf │ │ │ ├── 30464-30719.pbf │ │ │ ├── 3072-3327.pbf │ │ │ ├── 30720-30975.pbf │ │ │ ├── 30976-31231.pbf │ │ │ ├── 31232-31487.pbf │ │ │ ├── 31488-31743.pbf │ │ │ ├── 31744-31999.pbf │ │ │ ├── 32000-32255.pbf │ │ │ ├── 32256-32511.pbf │ │ │ ├── 32512-32767.pbf │ │ │ ├── 32768-33023.pbf │ │ │ ├── 33024-33279.pbf │ │ │ ├── 3328-3583.pbf │ │ │ ├── 33280-33535.pbf │ │ │ ├── 33536-33791.pbf │ │ │ ├── 33792-34047.pbf │ │ │ ├── 34048-34303.pbf │ │ │ ├── 34304-34559.pbf │ │ │ ├── 34560-34815.pbf │ │ │ ├── 34816-35071.pbf │ │ │ ├── 35072-35327.pbf │ │ │ ├── 35328-35583.pbf │ │ │ ├── 35584-35839.pbf │ │ │ ├── 3584-3839.pbf │ │ │ ├── 35840-36095.pbf │ │ │ ├── 36096-36351.pbf │ │ │ ├── 36352-36607.pbf │ │ │ ├── 36608-36863.pbf │ │ │ ├── 36864-37119.pbf │ │ │ ├── 37120-37375.pbf │ │ │ ├── 37376-37631.pbf │ │ │ ├── 37632-37887.pbf │ │ │ ├── 37888-38143.pbf │ │ │ ├── 38144-38399.pbf │ │ │ ├── 3840-4095.pbf │ │ │ ├── 38400-38655.pbf │ │ │ ├── 38656-38911.pbf │ │ │ ├── 38912-39167.pbf │ │ │ ├── 39168-39423.pbf │ │ │ ├── 39424-39679.pbf │ │ │ ├── 39680-39935.pbf │ │ │ ├── 39936-40191.pbf │ │ │ ├── 40192-40447.pbf │ │ │ ├── 40448-40703.pbf │ │ │ ├── 40704-40959.pbf │ │ │ ├── 4096-4351.pbf │ │ │ ├── 40960-41215.pbf │ │ │ ├── 41216-41471.pbf │ │ │ ├── 41472-41727.pbf │ │ │ ├── 41728-41983.pbf │ │ │ ├── 41984-42239.pbf │ │ │ ├── 42240-42495.pbf │ │ │ ├── 42496-42751.pbf │ │ │ ├── 42752-43007.pbf │ │ │ ├── 43008-43263.pbf │ │ │ ├── 43264-43519.pbf │ │ │ ├── 4352-4607.pbf │ │ │ ├── 43520-43775.pbf │ │ │ ├── 43776-44031.pbf │ │ │ ├── 44032-44287.pbf │ │ │ ├── 44288-44543.pbf │ │ │ ├── 44544-44799.pbf │ │ │ ├── 44800-45055.pbf │ │ │ ├── 45056-45311.pbf │ │ │ ├── 45312-45567.pbf │ │ │ ├── 45568-45823.pbf │ │ │ ├── 45824-46079.pbf │ │ │ ├── 4608-4863.pbf │ │ │ ├── 46080-46335.pbf │ │ │ ├── 46336-46591.pbf │ │ │ ├── 46592-46847.pbf │ │ │ ├── 46848-47103.pbf │ │ │ ├── 47104-47359.pbf │ │ │ ├── 47360-47615.pbf │ │ │ ├── 47616-47871.pbf │ │ │ ├── 47872-48127.pbf │ │ │ ├── 48128-48383.pbf │ │ │ ├── 48384-48639.pbf │ │ │ ├── 4864-5119.pbf │ │ │ ├── 48640-48895.pbf │ │ │ ├── 48896-49151.pbf │ │ │ ├── 49152-49407.pbf │ │ │ ├── 49408-49663.pbf │ │ │ ├── 49664-49919.pbf │ │ │ ├── 49920-50175.pbf │ │ │ ├── 50176-50431.pbf │ │ │ ├── 50432-50687.pbf │ │ │ ├── 50688-50943.pbf │ │ │ ├── 50944-51199.pbf │ │ │ ├── 512-767.pbf │ │ │ ├── 5120-5375.pbf │ │ │ ├── 51200-51455.pbf │ │ │ ├── 51456-51711.pbf │ │ │ ├── 51712-51967.pbf │ │ │ ├── 51968-52223.pbf │ │ │ ├── 52224-52479.pbf │ │ │ ├── 52480-52735.pbf │ │ │ ├── 52736-52991.pbf │ │ │ ├── 52992-53247.pbf │ │ │ ├── 53248-53503.pbf │ │ │ ├── 53504-53759.pbf │ │ │ ├── 5376-5631.pbf │ │ │ ├── 53760-54015.pbf │ │ │ ├── 54016-54271.pbf │ │ │ ├── 54272-54527.pbf │ │ │ ├── 54528-54783.pbf │ │ │ ├── 54784-55039.pbf │ │ │ ├── 55040-55295.pbf │ │ │ ├── 55296-55551.pbf │ │ │ ├── 55552-55807.pbf │ │ │ ├── 55808-56063.pbf │ │ │ ├── 56064-56319.pbf │ │ │ ├── 5632-5887.pbf │ │ │ ├── 56320-56575.pbf │ │ │ ├── 56576-56831.pbf │ │ │ ├── 56832-57087.pbf │ │ │ ├── 57088-57343.pbf │ │ │ ├── 57344-57599.pbf │ │ │ ├── 57600-57855.pbf │ │ │ ├── 57856-58111.pbf │ │ │ ├── 58112-58367.pbf │ │ │ ├── 58368-58623.pbf │ │ │ ├── 58624-58879.pbf │ │ │ ├── 5888-6143.pbf │ │ │ ├── 58880-59135.pbf │ │ │ ├── 59136-59391.pbf │ │ │ ├── 59392-59647.pbf │ │ │ ├── 59648-59903.pbf │ │ │ ├── 59904-60159.pbf │ │ │ ├── 60160-60415.pbf │ │ │ ├── 60416-60671.pbf │ │ │ ├── 60672-60927.pbf │ │ │ ├── 60928-61183.pbf │ │ │ ├── 61184-61439.pbf │ │ │ ├── 6144-6399.pbf │ │ │ ├── 61440-61695.pbf │ │ │ ├── 61696-61951.pbf │ │ │ ├── 61952-62207.pbf │ │ │ ├── 62208-62463.pbf │ │ │ ├── 62464-62719.pbf │ │ │ ├── 62720-62975.pbf │ │ │ ├── 62976-63231.pbf │ │ │ ├── 63232-63487.pbf │ │ │ ├── 63488-63743.pbf │ │ │ ├── 63744-63999.pbf │ │ │ ├── 6400-6655.pbf │ │ │ ├── 64000-64255.pbf │ │ │ ├── 64256-64511.pbf │ │ │ ├── 64512-64767.pbf │ │ │ ├── 64768-65023.pbf │ │ │ ├── 65024-65279.pbf │ │ │ ├── 65280-65535.pbf │ │ │ ├── 6656-6911.pbf │ │ │ ├── 6912-7167.pbf │ │ │ ├── 7168-7423.pbf │ │ │ ├── 7424-7679.pbf │ │ │ ├── 768-1023.pbf │ │ │ ├── 7680-7935.pbf │ │ │ ├── 7936-8191.pbf │ │ │ ├── 8192-8447.pbf │ │ │ ├── 8448-8703.pbf │ │ │ ├── 8704-8959.pbf │ │ │ ├── 8960-9215.pbf │ │ │ ├── 9216-9471.pbf │ │ │ ├── 9472-9727.pbf │ │ │ ├── 9728-9983.pbf │ │ │ └── 9984-10239.pbf │ │ └── RobotoRegular-NotoSansRegular │ │ │ ├── 0-255.pbf │ │ │ ├── 1024-1279.pbf │ │ │ ├── 10240-10495.pbf │ │ │ ├── 10496-10751.pbf │ │ │ ├── 10752-11007.pbf │ │ │ ├── 11008-11263.pbf │ │ │ ├── 11264-11519.pbf │ │ │ ├── 11520-11775.pbf │ │ │ ├── 11776-12031.pbf │ │ │ ├── 12032-12287.pbf │ │ │ ├── 12288-12543.pbf │ │ │ ├── 12544-12799.pbf │ │ │ ├── 1280-1535.pbf │ │ │ ├── 12800-13055.pbf │ │ │ ├── 13056-13311.pbf │ │ │ ├── 13312-13567.pbf │ │ │ ├── 13568-13823.pbf │ │ │ ├── 13824-14079.pbf │ │ │ ├── 14080-14335.pbf │ │ │ ├── 14336-14591.pbf │ │ │ ├── 14592-14847.pbf │ │ │ ├── 14848-15103.pbf │ │ │ ├── 15104-15359.pbf │ │ │ ├── 1536-1791.pbf │ │ │ ├── 15360-15615.pbf │ │ │ ├── 15616-15871.pbf │ │ │ ├── 15872-16127.pbf │ │ │ ├── 16128-16383.pbf │ │ │ ├── 16384-16639.pbf │ │ │ ├── 16640-16895.pbf │ │ │ ├── 16896-17151.pbf │ │ │ ├── 17152-17407.pbf │ │ │ ├── 17408-17663.pbf │ │ │ ├── 17664-17919.pbf │ │ │ ├── 1792-2047.pbf │ │ │ ├── 17920-18175.pbf │ │ │ ├── 18176-18431.pbf │ │ │ ├── 18432-18687.pbf │ │ │ ├── 18688-18943.pbf │ │ │ ├── 18944-19199.pbf │ │ │ ├── 19200-19455.pbf │ │ │ ├── 19456-19711.pbf │ │ │ ├── 19712-19967.pbf │ │ │ ├── 19968-20223.pbf │ │ │ ├── 20224-20479.pbf │ │ │ ├── 2048-2303.pbf │ │ │ ├── 20480-20735.pbf │ │ │ ├── 20736-20991.pbf │ │ │ ├── 20992-21247.pbf │ │ │ ├── 21248-21503.pbf │ │ │ ├── 21504-21759.pbf │ │ │ ├── 21760-22015.pbf │ │ │ ├── 22016-22271.pbf │ │ │ ├── 22272-22527.pbf │ │ │ ├── 22528-22783.pbf │ │ │ ├── 22784-23039.pbf │ │ │ ├── 2304-2559.pbf │ │ │ ├── 23040-23295.pbf │ │ │ ├── 23296-23551.pbf │ │ │ ├── 23552-23807.pbf │ │ │ ├── 23808-24063.pbf │ │ │ ├── 24064-24319.pbf │ │ │ ├── 24320-24575.pbf │ │ │ ├── 24576-24831.pbf │ │ │ ├── 24832-25087.pbf │ │ │ ├── 25088-25343.pbf │ │ │ ├── 25344-25599.pbf │ │ │ ├── 256-511.pbf │ │ │ ├── 2560-2815.pbf │ │ │ ├── 25600-25855.pbf │ │ │ ├── 25856-26111.pbf │ │ │ ├── 26112-26367.pbf │ │ │ ├── 26368-26623.pbf │ │ │ ├── 26624-26879.pbf │ │ │ ├── 26880-27135.pbf │ │ │ ├── 27136-27391.pbf │ │ │ ├── 27392-27647.pbf │ │ │ ├── 27648-27903.pbf │ │ │ ├── 27904-28159.pbf │ │ │ ├── 2816-3071.pbf │ │ │ ├── 28160-28415.pbf │ │ │ ├── 28416-28671.pbf │ │ │ ├── 28672-28927.pbf │ │ │ ├── 28928-29183.pbf │ │ │ ├── 29184-29439.pbf │ │ │ ├── 29440-29695.pbf │ │ │ ├── 29696-29951.pbf │ │ │ ├── 29952-30207.pbf │ │ │ ├── 30208-30463.pbf │ │ │ ├── 30464-30719.pbf │ │ │ ├── 3072-3327.pbf │ │ │ ├── 30720-30975.pbf │ │ │ ├── 30976-31231.pbf │ │ │ ├── 31232-31487.pbf │ │ │ ├── 31488-31743.pbf │ │ │ ├── 31744-31999.pbf │ │ │ ├── 32000-32255.pbf │ │ │ ├── 32256-32511.pbf │ │ │ ├── 32512-32767.pbf │ │ │ ├── 32768-33023.pbf │ │ │ ├── 33024-33279.pbf │ │ │ ├── 3328-3583.pbf │ │ │ ├── 33280-33535.pbf │ │ │ ├── 33536-33791.pbf │ │ │ ├── 33792-34047.pbf │ │ │ ├── 34048-34303.pbf │ │ │ ├── 34304-34559.pbf │ │ │ ├── 34560-34815.pbf │ │ │ ├── 34816-35071.pbf │ │ │ ├── 35072-35327.pbf │ │ │ ├── 35328-35583.pbf │ │ │ ├── 35584-35839.pbf │ │ │ ├── 3584-3839.pbf │ │ │ ├── 35840-36095.pbf │ │ │ ├── 36096-36351.pbf │ │ │ ├── 36352-36607.pbf │ │ │ ├── 36608-36863.pbf │ │ │ ├── 36864-37119.pbf │ │ │ ├── 37120-37375.pbf │ │ │ ├── 37376-37631.pbf │ │ │ ├── 37632-37887.pbf │ │ │ ├── 37888-38143.pbf │ │ │ ├── 38144-38399.pbf │ │ │ ├── 3840-4095.pbf │ │ │ ├── 38400-38655.pbf │ │ │ ├── 38656-38911.pbf │ │ │ ├── 38912-39167.pbf │ │ │ ├── 39168-39423.pbf │ │ │ ├── 39424-39679.pbf │ │ │ ├── 39680-39935.pbf │ │ │ ├── 39936-40191.pbf │ │ │ ├── 40192-40447.pbf │ │ │ ├── 40448-40703.pbf │ │ │ ├── 40704-40959.pbf │ │ │ ├── 4096-4351.pbf │ │ │ ├── 40960-41215.pbf │ │ │ ├── 41216-41471.pbf │ │ │ ├── 41472-41727.pbf │ │ │ ├── 41728-41983.pbf │ │ │ ├── 41984-42239.pbf │ │ │ ├── 42240-42495.pbf │ │ │ ├── 42496-42751.pbf │ │ │ ├── 42752-43007.pbf │ │ │ ├── 43008-43263.pbf │ │ │ ├── 43264-43519.pbf │ │ │ ├── 4352-4607.pbf │ │ │ ├── 43520-43775.pbf │ │ │ ├── 43776-44031.pbf │ │ │ ├── 44032-44287.pbf │ │ │ ├── 44288-44543.pbf │ │ │ ├── 44544-44799.pbf │ │ │ ├── 44800-45055.pbf │ │ │ ├── 45056-45311.pbf │ │ │ ├── 45312-45567.pbf │ │ │ ├── 45568-45823.pbf │ │ │ ├── 45824-46079.pbf │ │ │ ├── 4608-4863.pbf │ │ │ ├── 46080-46335.pbf │ │ │ ├── 46336-46591.pbf │ │ │ ├── 46592-46847.pbf │ │ │ ├── 46848-47103.pbf │ │ │ ├── 47104-47359.pbf │ │ │ ├── 47360-47615.pbf │ │ │ ├── 47616-47871.pbf │ │ │ ├── 47872-48127.pbf │ │ │ ├── 48128-48383.pbf │ │ │ ├── 48384-48639.pbf │ │ │ ├── 4864-5119.pbf │ │ │ ├── 48640-48895.pbf │ │ │ ├── 48896-49151.pbf │ │ │ ├── 49152-49407.pbf │ │ │ ├── 49408-49663.pbf │ │ │ ├── 49664-49919.pbf │ │ │ ├── 49920-50175.pbf │ │ │ ├── 50176-50431.pbf │ │ │ ├── 50432-50687.pbf │ │ │ ├── 50688-50943.pbf │ │ │ ├── 50944-51199.pbf │ │ │ ├── 512-767.pbf │ │ │ ├── 5120-5375.pbf │ │ │ ├── 51200-51455.pbf │ │ │ ├── 51456-51711.pbf │ │ │ ├── 51712-51967.pbf │ │ │ ├── 51968-52223.pbf │ │ │ ├── 52224-52479.pbf │ │ │ ├── 52480-52735.pbf │ │ │ ├── 52736-52991.pbf │ │ │ ├── 52992-53247.pbf │ │ │ ├── 53248-53503.pbf │ │ │ ├── 53504-53759.pbf │ │ │ ├── 5376-5631.pbf │ │ │ ├── 53760-54015.pbf │ │ │ ├── 54016-54271.pbf │ │ │ ├── 54272-54527.pbf │ │ │ ├── 54528-54783.pbf │ │ │ ├── 54784-55039.pbf │ │ │ ├── 55040-55295.pbf │ │ │ ├── 55296-55551.pbf │ │ │ ├── 55552-55807.pbf │ │ │ ├── 55808-56063.pbf │ │ │ ├── 56064-56319.pbf │ │ │ ├── 5632-5887.pbf │ │ │ ├── 56320-56575.pbf │ │ │ ├── 56576-56831.pbf │ │ │ ├── 56832-57087.pbf │ │ │ ├── 57088-57343.pbf │ │ │ ├── 57344-57599.pbf │ │ │ ├── 57600-57855.pbf │ │ │ ├── 57856-58111.pbf │ │ │ ├── 58112-58367.pbf │ │ │ ├── 58368-58623.pbf │ │ │ ├── 58624-58879.pbf │ │ │ ├── 5888-6143.pbf │ │ │ ├── 58880-59135.pbf │ │ │ ├── 59136-59391.pbf │ │ │ ├── 59392-59647.pbf │ │ │ ├── 59648-59903.pbf │ │ │ ├── 59904-60159.pbf │ │ │ ├── 60160-60415.pbf │ │ │ ├── 60416-60671.pbf │ │ │ ├── 60672-60927.pbf │ │ │ ├── 60928-61183.pbf │ │ │ ├── 61184-61439.pbf │ │ │ ├── 6144-6399.pbf │ │ │ ├── 61440-61695.pbf │ │ │ ├── 61696-61951.pbf │ │ │ ├── 61952-62207.pbf │ │ │ ├── 62208-62463.pbf │ │ │ ├── 62464-62719.pbf │ │ │ ├── 62720-62975.pbf │ │ │ ├── 62976-63231.pbf │ │ │ ├── 63232-63487.pbf │ │ │ ├── 63488-63743.pbf │ │ │ ├── 63744-63999.pbf │ │ │ ├── 6400-6655.pbf │ │ │ ├── 64000-64255.pbf │ │ │ ├── 64256-64511.pbf │ │ │ ├── 64512-64767.pbf │ │ │ ├── 64768-65023.pbf │ │ │ ├── 65024-65279.pbf │ │ │ ├── 65280-65535.pbf │ │ │ ├── 6656-6911.pbf │ │ │ ├── 6912-7167.pbf │ │ │ ├── 7168-7423.pbf │ │ │ ├── 7424-7679.pbf │ │ │ ├── 768-1023.pbf │ │ │ ├── 7680-7935.pbf │ │ │ ├── 7936-8191.pbf │ │ │ ├── 8192-8447.pbf │ │ │ ├── 8448-8703.pbf │ │ │ ├── 8704-8959.pbf │ │ │ ├── 8960-9215.pbf │ │ │ ├── 9216-9471.pbf │ │ │ ├── 9472-9727.pbf │ │ │ ├── 9728-9983.pbf │ │ │ └── 9984-10239.pbf │ ├── roboto-latin-400-italic.ttf │ ├── roboto-latin-400-normal.ttf │ └── roboto-latin-500-normal.ttf ├── forward-10.svg ├── frise.svg ├── fullscreen.svg ├── gare.svg ├── gares.json ├── geolocate.svg ├── github-issues.json ├── hexagone-contour.svg ├── icon-192.png ├── icons │ ├── README.md │ ├── archaeological.svg │ ├── arrow-up.svg │ ├── art_gallery.svg │ ├── artwork.svg │ ├── athletics.svg │ ├── attraction.svg │ ├── baby.svg │ ├── bakery.svg │ ├── bank.svg │ ├── bar.svg │ ├── basketball.svg │ ├── beach.svg │ ├── beer.svg │ ├── bicycle-parking-secured.svg │ ├── bicycle.svg │ ├── bicycle_parking.svg │ ├── bicycle_repair_station.svg │ ├── blood-bank.svg │ ├── bollard.svg │ ├── book.svg │ ├── bottle.svg │ ├── boules.svg │ ├── bow_and_arrow.svg │ ├── bowling-alley.svg │ ├── bread.svg │ ├── bubbletea.svg │ ├── building.svg │ ├── bus.svg │ ├── cafe.svg │ ├── camping.svg │ ├── candy.svg │ ├── canoe.svg │ ├── car.svg │ ├── car_pooling.svg │ ├── casino.svg │ ├── castle.svg │ ├── cat.svg │ ├── caterer.svg │ ├── cemetery.svg │ ├── charging_station.svg │ ├── cheese.svg │ ├── chocolate.svg │ ├── cigarette.svg │ ├── cinema.svg │ ├── city_wall.svg │ ├── classical-building.svg │ ├── clinic.svg │ ├── clothes.svg │ ├── college.svg │ ├── compressed_air.svg │ ├── convenience.svg │ ├── coworking.svg │ ├── cycle_barrier.svg │ ├── dance_floor.svg │ ├── decoration.svg │ ├── defibrillator.svg │ ├── doctors.svg │ ├── dog_no.svg │ ├── dog_park.svg │ ├── farm.svg │ ├── fast_food.svg │ ├── ferry.svg │ ├── fire.svg │ ├── fish.svg │ ├── fitness_centre.svg │ ├── fitness_station.svg │ ├── florist.svg │ ├── fuel.svg │ ├── funiculaire.svg │ ├── furniture.svg │ ├── gaming.svg │ ├── garden-centre.svg │ ├── gate.svg │ ├── golf.svg │ ├── grapes.svg │ ├── grocery.svg │ ├── gymnasium.svg │ ├── hairdresser.svg │ ├── handball.svg │ ├── hardware.svg │ ├── hermine.svg │ ├── hillclimbing.svg │ ├── historic.svg │ ├── horse_riding.svg │ ├── hospital.svg │ ├── ice_cream.svg │ ├── iceskating.svg │ ├── indoorequal-entrance.svg │ ├── information.svg │ ├── insurance.svg │ ├── jewelry-store.svg │ ├── judo.svg │ ├── kitchen.svg │ ├── laboratory.svg │ ├── laundry.svg │ ├── lawyer.svg │ ├── lift-gate.svg │ ├── locksmith.svg │ ├── lodging.svg │ ├── logos │ │ ├── bluesky.svg │ │ ├── facebook.svg │ │ ├── instagram.svg │ │ ├── linkedin.svg │ │ ├── mail.svg │ │ ├── mastodon.svg │ │ ├── whatsapp.svg │ │ └── youtube.svg │ ├── lounging.svg │ ├── maternelle.svg │ ├── meat.svg │ ├── metro.svg │ ├── mobile-phone.svg │ ├── monument.svg │ ├── more.svg │ ├── museum.svg │ ├── music.svg │ ├── mx_amenity_car_rental.svg │ ├── newspaper.svg │ ├── nurse.svg │ ├── optician.svg │ ├── palette.svg │ ├── parcel_locker.svg │ ├── parking.svg │ ├── pet_grooming.svg │ ├── pet_store.svg │ ├── pharmacy.svg │ ├── photo.svg │ ├── photo_booth.svg │ ├── physiotherapist.svg │ ├── picnic.svg │ ├── pins.svg │ ├── pitch.svg │ ├── place_of_worship.svg │ ├── playground.svg │ ├── police.svg │ ├── post.svg │ ├── public_bookcase.svg │ ├── railway.svg │ ├── real_estate_agency.svg │ ├── recycling.svg │ ├── restaurant-pizza.svg │ ├── restaurant.svg │ ├── rugby_union.svg │ ├── school.svg │ ├── search-result.svg │ ├── shelter.svg │ ├── shoes.svg │ ├── shop.svg │ ├── skateboard.svg │ ├── snow.svg │ ├── soccer.svg │ ├── stadium.svg │ ├── surf.svg │ ├── sushi.svg │ ├── swimming_outdoor.svg │ ├── table_tennis.svg │ ├── tea.svg │ ├── teapot.svg │ ├── tennis.svg │ ├── theatre.svg │ ├── toilets.svg │ ├── tooth.svg │ ├── train.svg │ ├── tram.svg │ ├── tree.svg │ ├── trolleybus.svg │ ├── téléphérique.svg │ ├── veg.svg │ ├── vending_condoms.svg │ ├── vending_excrement_bags.svg │ ├── vending_machine.svg │ ├── veterinary.svg │ ├── viewpoint.svg │ ├── waste_basket.svg │ ├── water.svg │ ├── waterfall.svg │ ├── wheelchair.svg │ ├── wine.svg │ └── zoo.svg ├── ign.png ├── indoorequal.svg ├── information.svg ├── invertIcon.svg ├── itinerary-circle-plain.svg ├── itinerary-old.svg ├── itinerary.svg ├── language.svg ├── logo-512.png ├── logo-mono.svg ├── logo.svg ├── longuevue.svg ├── loupe.svg ├── map.svg ├── mappemonde-moderne.png ├── mappemonde-moderne.xcf ├── menu-restaurant.svg ├── meteo-france.svg ├── mode-auto.svg ├── modes-icon.svg ├── no-transports.svg ├── node-gtfs.svg ├── open-left-panel.svg ├── openstreetmap.svg ├── panoramax-marker.png ├── panoramax-marker.svg ├── panoramax-simple-choisi.svg ├── panoramax-simple.svg ├── panoramax.svg ├── phone.svg ├── photon.png ├── pin.svg ├── plus.svg ├── position-arrow.png ├── position-arrow.svg ├── pub-gmaps-conduite.jpeg ├── reduce-left-panel.svg ├── relief-choisi.svg ├── relief.svg ├── remove-circle-plain.svg ├── remove-circle-stroke.svg ├── resultats-1er-tour-legislatives-2024.png ├── safe-cycling.svg ├── screenshots │ ├── bus.png │ ├── cordée.png │ └── trépassés.png ├── share.svg ├── sotm │ ├── Low-hanging-fruit.webp │ ├── amaryllis-annuaire.png │ ├── amaryllis-apple-maps.png │ ├── amaryllis-cartes.png │ ├── apple-business-connect.png │ ├── arte-xd-prospere.png │ ├── bazar-ispahan.png │ ├── bingo │ │ ├── Logo_Bibus_2012.png │ │ ├── aleop.jpg │ │ ├── bingo.png │ │ ├── bingo.svg │ │ ├── blague.svg │ │ ├── breizhgo.png │ │ ├── coralie.jpg │ │ ├── korrigo.png │ │ ├── lineotim.svg │ │ ├── naolib.jpg │ │ ├── star.svg │ │ ├── surf.png │ │ ├── tan.png │ │ ├── tilt.png │ │ ├── tub.svg │ │ └── tudbus.jpg │ ├── cartes-elections.gif │ ├── cartes-ign-inter.png │ ├── cartes-meteofrance-ign.gif │ ├── cartes-photos.jpg │ ├── cartes-sur-le-web.png │ ├── cathédrale.png │ ├── climat-voiture.png │ ├── demo-velo.gif │ ├── domaine-cartes-fr.png │ ├── domaine-map-app.png │ ├── ernee-fougeres.gif │ ├── fraicheur.jpeg │ ├── gilets-jaunes.png │ ├── gmaps-2009.png │ ├── gmaps-masseuse.mp4 │ ├── google-maps-404.png │ ├── immersive-google-maps.png │ ├── invalides-cartes.jpeg │ ├── invalides-gmaps.jpeg │ ├── korrigo-google.jpeg │ ├── laem.png │ ├── latitude-cartagene.png │ ├── manufacture-gmaps.png │ ├── manufacture-osm.png │ ├── objectifs-climat.png │ ├── osm.png │ ├── plomberie.svg │ ├── rennes-gmaps.png │ ├── rennes-indoorequal.png │ ├── rn-voiture.jpeg │ ├── secheresse.png │ ├── trajet-lycee.png │ ├── trajet-primaire-gmaps.png │ ├── trajet-primaire.png │ ├── tweet-plan-SNCF.png │ └── voit-rn.jpeg ├── sprite │ ├── sprite.json │ ├── sprite.png │ ├── sprite@2x.json │ └── sprite@2x.png ├── star-fill-gradient.svg ├── star-full-gold.svg ├── star-full.svg ├── star.svg ├── start-point.svg ├── start.svg ├── styles │ ├── base.png │ ├── cassini.png │ ├── cycling.png │ ├── default.png │ ├── elections.png │ ├── france.png │ ├── ign-clair.png │ ├── ign-simple.png │ ├── ign.png │ ├── nature.png │ ├── osm.png │ ├── rail.png │ ├── rando.png │ ├── satellite.png │ ├── satelliteHybrid.png │ ├── street-complete.png │ ├── transports.png │ └── winter.png ├── three-dots.svg ├── tortoise.svg ├── transit.svg ├── transit │ ├── blablabus.svg │ ├── blablacar.svg │ ├── flixbus.svg │ ├── ouigo.svg │ ├── sncf.svg │ ├── ter.svg │ └── tgv.svg ├── transport.data.gouv.fr.svg ├── transports.svg ├── trash.svg ├── trends-maps.png ├── triangle.svg ├── valhalla.png ├── vignette.png ├── voyage-vignette.png ├── voyagevoyage.png ├── walk-or-cycle.svg ├── walking.svg ├── web.svg ├── wheelchair.svg ├── wikidata.svg ├── wikimedia-commones-logo.svg └── wikipedia.svg ├── sentry.client.config.ts ├── sentry.edge.config.ts ├── sentry.server.config.ts ├── temp-local-bug └── tsconfig.json /.env.development: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_NODE_ENV=development 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- 1 | # Required because some file names use UTF-8 characters 2 | [core] 3 | quotepath = false 4 | -------------------------------------------------------------------------------- /.placeMapImages/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/.placeMapImages/.gitkeep -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .eslintrc.js 2 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | bracketSpacing: true 2 | semi: false 3 | singleQuote: true 4 | -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- 1 | @types/react-native 2 | -------------------------------------------------------------------------------- /app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/app/apple-icon.png -------------------------------------------------------------------------------- /app/bikeRouteProfiles.yaml: -------------------------------------------------------------------------------- 1 | - key: safety 2 | name: Sécurisé 3 | - key: trekking 4 | name: Court 5 | -------------------------------------------------------------------------------- /app/osm/getUrl.ts: -------------------------------------------------------------------------------- 1 | export default function getUrl(tags) { 2 | return tags.website || tags['contact:website'] 3 | } 4 | -------------------------------------------------------------------------------- /app/presentation/state-of-the-map-2024/presentation-notes.mdx: -------------------------------------------------------------------------------- 1 | Tech trop dispersée 2 | -------------------------------------------------------------------------------- /app/trouver-adresse-annonce/dpe/README.md: -------------------------------------------------------------------------------- 1 | Code taken from betagouv/reno 2 | -------------------------------------------------------------------------------- /components/utils/embeddedContext.js: -------------------------------------------------------------------------------- 1 | import { createContext } from 'react' 2 | export const IsEmbeddedContext = createContext(false) 3 | -------------------------------------------------------------------------------- /components/utils/embeddedContext.ts: -------------------------------------------------------------------------------- 1 | import { createContext } from 'react' 2 | export const IsEmbeddedContext = createContext(false) 3 | -------------------------------------------------------------------------------- /lib/downloadGithubIssues.ts: -------------------------------------------------------------------------------- 1 | import { downloadIssues } from './githubIssues' 2 | 3 | downloadIssues() 4 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | // postcss.config.js 2 | module.exports = { 3 | plugins: { 4 | 'postcss-nested': {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/399f403c66e9492fbd19e508e56323b7.txt: -------------------------------------------------------------------------------- 1 | 399f403c66e9492fbd19e508e56323b7 2 | -------------------------------------------------------------------------------- /public/brouter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/brouter.png -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/10240-10495.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 10240-10495 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/10496-10751.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 10496-10751 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/10752-11007.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 10752-11007 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/11008-11263.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 11008-11263 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/11520-11775.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 11520-11775 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/12032-12287.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 12032-12287 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/12288-12543.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 12288-12543 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/12544-12799.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 12544-12799 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/12800-13055.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 12800-13055 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/13056-13311.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 13056-13311 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/13312-13567.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 13312-13567 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/13568-13823.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 13568-13823 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/13824-14079.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 13824-14079 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/14080-14335.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 14080-14335 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/14336-14591.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 14336-14591 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/14592-14847.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 14592-14847 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/14848-15103.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 14848-15103 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/15104-15359.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 15104-15359 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/1536-1791.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 1536-1791 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/15360-15615.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 15360-15615 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/15616-15871.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 15616-15871 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/15872-16127.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 15872-16127 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/16128-16383.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 16128-16383 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/16384-16639.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 16384-16639 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/16640-16895.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 16640-16895 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/16896-17151.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 16896-17151 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/17152-17407.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 17152-17407 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/17408-17663.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 17408-17663 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/17664-17919.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 17664-17919 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/1792-2047.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 1792-2047 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/17920-18175.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 17920-18175 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/18176-18431.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 18176-18431 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/18432-18687.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 18432-18687 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/18688-18943.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 18688-18943 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/18944-19199.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 18944-19199 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/19200-19455.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 19200-19455 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/19456-19711.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 19456-19711 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/19712-19967.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 19712-19967 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/19968-20223.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 19968-20223 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/20224-20479.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 20224-20479 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/2048-2303.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 2048-2303 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/20480-20735.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 20480-20735 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/20736-20991.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 20736-20991 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/20992-21247.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 20992-21247 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/21248-21503.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 21248-21503 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/21504-21759.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 21504-21759 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/21760-22015.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 21760-22015 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/22016-22271.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 22016-22271 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/22272-22527.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 22272-22527 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/22528-22783.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 22528-22783 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/22784-23039.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 22784-23039 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/23040-23295.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 23040-23295 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/23296-23551.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 23296-23551 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/23552-23807.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 23552-23807 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/23808-24063.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 23808-24063 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/24064-24319.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 24064-24319 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/24320-24575.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 24320-24575 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/24576-24831.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 24576-24831 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/24832-25087.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 24832-25087 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/25088-25343.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 25088-25343 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/25344-25599.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 25344-25599 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/2560-2815.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 2560-2815 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/25600-25855.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 25600-25855 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/25856-26111.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 25856-26111 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/26112-26367.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 26112-26367 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/26368-26623.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 26368-26623 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/26624-26879.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 26624-26879 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/26880-27135.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 26880-27135 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/27136-27391.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 27136-27391 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/27392-27647.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 27392-27647 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/27648-27903.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 27648-27903 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/27904-28159.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 27904-28159 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/2816-3071.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 2816-3071 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/28160-28415.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 28160-28415 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/28416-28671.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 28416-28671 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/28672-28927.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 28672-28927 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/28928-29183.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 28928-29183 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/29184-29439.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 29184-29439 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/29440-29695.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 29440-29695 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/29696-29951.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 29696-29951 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/29952-30207.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 29952-30207 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/30208-30463.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 30208-30463 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/30464-30719.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 30464-30719 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/3072-3327.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 3072-3327 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/30720-30975.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 30720-30975 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/30976-31231.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 30976-31231 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/31232-31487.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 31232-31487 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/31488-31743.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 31488-31743 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/31744-31999.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 31744-31999 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/32000-32255.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 32000-32255 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/32256-32511.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 32256-32511 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/32512-32767.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 32512-32767 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/32768-33023.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 32768-33023 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/33024-33279.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 33024-33279 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/3328-3583.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 3328-3583 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/33280-33535.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 33280-33535 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/33536-33791.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 33536-33791 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/33792-34047.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 33792-34047 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/34048-34303.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 34048-34303 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/34304-34559.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 34304-34559 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/34560-34815.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 34560-34815 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/34816-35071.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 34816-35071 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/35072-35327.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 35072-35327 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/35328-35583.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 35328-35583 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/35584-35839.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 35584-35839 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/3584-3839.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 3584-3839 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/35840-36095.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 35840-36095 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/36096-36351.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 36096-36351 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/36352-36607.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 36352-36607 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/36608-36863.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 36608-36863 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/36864-37119.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 36864-37119 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/37120-37375.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 37120-37375 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/37376-37631.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 37376-37631 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/37632-37887.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 37632-37887 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/37888-38143.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 37888-38143 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/38144-38399.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 38144-38399 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/3840-4095.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 3840-4095 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/38400-38655.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 38400-38655 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/38656-38911.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 38656-38911 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/38912-39167.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 38912-39167 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/39168-39423.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 39168-39423 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/39424-39679.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 39424-39679 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/39680-39935.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 39680-39935 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/39936-40191.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 39936-40191 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/40192-40447.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 40192-40447 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/40448-40703.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 40448-40703 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/40704-40959.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 40704-40959 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/4096-4351.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 4096-4351 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/40960-41215.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 40960-41215 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/41216-41471.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 41216-41471 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/41472-41727.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 41472-41727 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/41728-41983.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 41728-41983 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/41984-42239.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 41984-42239 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/42240-42495.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 42240-42495 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/42496-42751.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 42496-42751 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/43008-43263.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 43008-43263 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/43264-43519.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 43264-43519 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/4352-4607.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 4352-4607 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/43520-43775.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 43520-43775 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/43776-44031.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 43776-44031 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/44032-44287.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 44032-44287 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/44288-44543.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 44288-44543 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/44544-44799.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 44544-44799 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/44800-45055.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 44800-45055 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/45056-45311.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 45056-45311 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/45312-45567.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 45312-45567 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/45568-45823.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 45568-45823 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/45824-46079.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 45824-46079 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/4608-4863.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 4608-4863 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/46080-46335.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 46080-46335 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/46336-46591.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 46336-46591 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/46592-46847.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 46592-46847 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/46848-47103.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 46848-47103 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/47104-47359.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 47104-47359 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/47360-47615.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 47360-47615 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/47616-47871.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 47616-47871 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/47872-48127.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 47872-48127 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/48128-48383.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 48128-48383 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/48384-48639.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 48384-48639 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/4864-5119.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 4864-5119 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/48640-48895.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 48640-48895 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/48896-49151.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 48896-49151 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/49152-49407.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 49152-49407 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/49408-49663.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 49408-49663 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/49664-49919.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 49664-49919 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/49920-50175.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 49920-50175 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/50176-50431.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 50176-50431 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/50432-50687.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 50432-50687 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/50688-50943.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 50688-50943 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/50944-51199.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 50944-51199 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/5120-5375.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 5120-5375 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/51200-51455.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 51200-51455 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/51456-51711.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 51456-51711 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/51712-51967.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 51712-51967 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/51968-52223.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 51968-52223 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/52224-52479.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 52224-52479 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/52480-52735.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 52480-52735 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/52736-52991.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 52736-52991 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/52992-53247.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 52992-53247 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/53248-53503.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 53248-53503 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/53504-53759.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 53504-53759 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/5376-5631.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 5376-5631 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/53760-54015.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 53760-54015 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/54016-54271.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 54016-54271 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/54272-54527.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 54272-54527 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/54528-54783.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 54528-54783 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/54784-55039.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 54784-55039 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/55040-55295.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 55040-55295 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/55296-55551.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 55296-55551 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/55552-55807.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 55552-55807 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/55808-56063.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 55808-56063 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/56064-56319.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 56064-56319 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/5632-5887.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 5632-5887 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/56320-56575.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 56320-56575 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/56576-56831.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 56576-56831 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/56832-57087.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 56832-57087 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/57088-57343.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 57088-57343 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/57344-57599.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 57344-57599 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/57600-57855.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 57600-57855 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/57856-58111.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 57856-58111 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/58112-58367.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 58112-58367 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/58368-58623.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 58368-58623 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/58624-58879.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 58624-58879 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/5888-6143.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 5888-6143 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/58880-59135.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 58880-59135 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/59136-59391.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 59136-59391 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/59392-59647.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 59392-59647 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/59648-59903.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 59648-59903 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/59904-60159.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 59904-60159 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/60160-60415.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 60160-60415 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/60416-60671.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 60416-60671 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/60672-60927.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 60672-60927 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/61184-61439.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 61184-61439 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/6144-6399.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 6144-6399 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/61440-61695.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 61440-61695 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/61696-61951.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 61696-61951 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/61952-62207.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 61952-62207 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/62208-62463.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 62208-62463 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/62464-62719.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 62464-62719 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/62720-62975.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 62720-62975 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/63232-63487.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 63232-63487 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/63488-63743.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 63488-63743 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/63744-63999.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 63744-63999 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/6400-6655.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 6400-6655 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/64000-64255.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 64000-64255 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/64512-64767.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 64512-64767 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/64768-65023.pbf: -------------------------------------------------------------------------------- 1 | 2 | ) 3 | Roboto Bold,Noto Sans Bold 64768-65023 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/6656-6911.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 6656-6911 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/6912-7167.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 6912-7167 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/7168-7423.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 7168-7423 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/9216-9471.pbf: -------------------------------------------------------------------------------- 1 | 2 | ' 3 | Roboto Bold,Noto Sans Bold 9216-9471 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoBold-NotoSansBold/9984-10239.pbf: -------------------------------------------------------------------------------- 1 | 2 | ( 3 | Roboto Bold,Noto Sans Bold 4 | 9984-10239 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/10240-10495.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 10240-10495 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/10496-10751.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 10496-10751 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/10752-11007.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 10752-11007 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/11008-11263.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 11008-11263 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/12032-12287.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 12032-12287 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/12288-12543.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 12288-12543 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/12544-12799.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 12544-12799 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/12800-13055.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 12800-13055 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/13056-13311.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 13056-13311 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/13312-13567.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 13312-13567 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/13568-13823.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 13568-13823 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/13824-14079.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 13824-14079 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/14080-14335.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 14080-14335 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/14336-14591.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 14336-14591 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/14592-14847.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 14592-14847 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/14848-15103.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 14848-15103 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/15104-15359.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 15104-15359 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/1536-1791.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 1536-1791 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/15360-15615.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 15360-15615 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/15616-15871.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 15616-15871 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/15872-16127.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 15872-16127 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/16128-16383.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 16128-16383 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/16384-16639.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 16384-16639 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/16640-16895.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 16640-16895 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/16896-17151.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 16896-17151 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/17152-17407.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 17152-17407 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/17408-17663.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 17408-17663 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/17664-17919.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 17664-17919 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/1792-2047.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 1792-2047 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/17920-18175.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 17920-18175 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/18176-18431.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 18176-18431 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/18432-18687.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 18432-18687 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/18688-18943.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 18688-18943 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/18944-19199.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 18944-19199 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/19200-19455.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 19200-19455 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/19456-19711.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 19456-19711 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/19712-19967.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 19712-19967 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/19968-20223.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 19968-20223 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/20224-20479.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 20224-20479 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/2048-2303.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 2048-2303 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/20480-20735.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 20480-20735 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/20736-20991.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 20736-20991 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/20992-21247.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 20992-21247 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/21248-21503.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 21248-21503 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/21504-21759.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 21504-21759 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/21760-22015.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 21760-22015 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/22016-22271.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 22016-22271 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/22272-22527.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 22272-22527 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/22528-22783.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 22528-22783 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/22784-23039.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 22784-23039 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/2304-2559.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 2304-2559 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/23040-23295.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 23040-23295 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/23296-23551.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 23296-23551 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/23552-23807.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 23552-23807 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/23808-24063.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 23808-24063 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/24064-24319.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 24064-24319 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/24320-24575.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 24320-24575 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/24576-24831.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 24576-24831 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/24832-25087.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 24832-25087 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/25088-25343.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 25088-25343 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/25344-25599.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 25344-25599 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/2560-2815.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 2560-2815 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/25600-25855.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 25600-25855 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/25856-26111.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 25856-26111 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/26112-26367.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 26112-26367 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/26368-26623.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 26368-26623 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/26624-26879.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 26624-26879 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/26880-27135.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 26880-27135 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/27136-27391.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 27136-27391 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/27392-27647.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 27392-27647 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/27648-27903.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 27648-27903 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/27904-28159.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 27904-28159 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/2816-3071.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 2816-3071 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/28160-28415.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 28160-28415 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/28416-28671.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 28416-28671 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/28672-28927.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 28672-28927 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/28928-29183.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 28928-29183 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/29184-29439.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 29184-29439 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/29440-29695.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 29440-29695 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/29696-29951.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 29696-29951 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/29952-30207.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 29952-30207 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/30208-30463.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 30208-30463 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/30464-30719.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 30464-30719 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/3072-3327.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 3072-3327 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/30720-30975.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 30720-30975 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/30976-31231.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 30976-31231 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/31232-31487.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 31232-31487 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/31488-31743.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 31488-31743 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/31744-31999.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 31744-31999 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/32000-32255.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 32000-32255 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/32256-32511.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 32256-32511 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/32512-32767.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 32512-32767 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/32768-33023.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 32768-33023 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/33024-33279.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 33024-33279 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/3328-3583.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 3328-3583 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/33280-33535.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 33280-33535 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/33536-33791.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 33536-33791 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/33792-34047.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 33792-34047 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/34048-34303.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 34048-34303 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/34304-34559.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 34304-34559 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/34560-34815.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 34560-34815 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/34816-35071.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 34816-35071 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/35072-35327.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 35072-35327 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/35328-35583.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 35328-35583 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/35584-35839.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 35584-35839 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/3584-3839.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 3584-3839 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/35840-36095.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 35840-36095 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/36096-36351.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 36096-36351 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/36352-36607.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 36352-36607 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/36608-36863.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 36608-36863 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/36864-37119.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 36864-37119 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/37120-37375.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 37120-37375 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/37376-37631.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 37376-37631 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/37632-37887.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 37632-37887 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/37888-38143.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 37888-38143 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/38144-38399.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 38144-38399 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/3840-4095.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 3840-4095 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/38400-38655.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 38400-38655 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/38656-38911.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 38656-38911 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/38912-39167.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 38912-39167 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/39168-39423.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 39168-39423 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/39424-39679.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 39424-39679 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/39680-39935.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 39680-39935 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/39936-40191.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 39936-40191 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/40192-40447.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 40192-40447 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/40448-40703.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 40448-40703 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/40704-40959.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 40704-40959 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/4096-4351.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 4096-4351 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/40960-41215.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 40960-41215 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/41216-41471.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 41216-41471 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/41472-41727.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 41472-41727 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/41728-41983.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 41728-41983 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/41984-42239.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 41984-42239 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/42240-42495.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 42240-42495 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/43008-43263.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 43008-43263 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/4352-4607.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 4352-4607 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/43520-43775.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 43520-43775 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/44032-44287.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 44032-44287 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/44288-44543.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 44288-44543 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/44544-44799.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 44544-44799 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/44800-45055.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 44800-45055 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/45056-45311.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 45056-45311 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/45312-45567.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 45312-45567 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/45568-45823.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 45568-45823 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/45824-46079.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 45824-46079 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/4608-4863.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 4608-4863 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/46080-46335.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 46080-46335 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/46336-46591.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 46336-46591 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/46592-46847.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 46592-46847 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/46848-47103.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 46848-47103 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/47104-47359.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 47104-47359 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/47360-47615.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 47360-47615 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/47616-47871.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 47616-47871 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/47872-48127.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 47872-48127 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/48128-48383.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 48128-48383 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/48384-48639.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 48384-48639 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/4864-5119.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 4864-5119 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/48640-48895.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 48640-48895 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/48896-49151.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 48896-49151 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/49152-49407.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 49152-49407 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/49408-49663.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 49408-49663 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/49664-49919.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 49664-49919 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/49920-50175.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 49920-50175 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/50176-50431.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 50176-50431 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/50432-50687.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 50432-50687 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/50688-50943.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 50688-50943 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/50944-51199.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 50944-51199 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/5120-5375.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 5120-5375 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/51200-51455.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 51200-51455 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/51456-51711.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 51456-51711 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/51712-51967.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 51712-51967 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/51968-52223.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 51968-52223 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/52224-52479.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 52224-52479 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/52480-52735.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 52480-52735 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/52736-52991.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 52736-52991 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/52992-53247.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 52992-53247 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/53248-53503.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 53248-53503 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/53504-53759.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 53504-53759 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/5376-5631.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 5376-5631 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/53760-54015.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 53760-54015 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/54016-54271.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 54016-54271 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/54272-54527.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 54272-54527 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/54528-54783.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 54528-54783 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/54784-55039.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 54784-55039 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/55040-55295.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 55040-55295 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/55296-55551.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 55296-55551 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/55552-55807.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 55552-55807 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/55808-56063.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 55808-56063 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/56064-56319.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 56064-56319 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/5632-5887.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 5632-5887 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/56320-56575.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 56320-56575 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/56576-56831.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 56576-56831 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/56832-57087.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 56832-57087 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/57088-57343.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 57088-57343 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/57344-57599.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 57344-57599 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/57600-57855.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 57600-57855 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/57856-58111.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 57856-58111 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/58112-58367.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 58112-58367 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/58368-58623.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 58368-58623 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/58624-58879.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 58624-58879 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/5888-6143.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 5888-6143 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/58880-59135.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 58880-59135 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/59136-59391.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 59136-59391 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/59392-59647.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 59392-59647 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/59648-59903.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 59648-59903 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/59904-60159.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 59904-60159 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/60160-60415.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 60160-60415 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/60416-60671.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 60416-60671 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/60672-60927.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 60672-60927 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/60928-61183.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 60928-61183 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/61184-61439.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 61184-61439 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/6144-6399.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 6144-6399 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/61440-61695.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 61440-61695 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/61696-61951.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 61696-61951 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/61952-62207.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 61952-62207 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/62208-62463.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 62208-62463 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/62464-62719.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 62464-62719 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/62720-62975.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 62720-62975 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/62976-63231.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 62976-63231 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/63232-63487.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 63232-63487 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/63488-63743.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 63488-63743 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/63744-63999.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 63744-63999 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/6400-6655.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 6400-6655 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/64000-64255.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 64000-64255 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/64512-64767.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 64512-64767 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/64768-65023.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Italic,Noto Sans Italic 64768-65023 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/6912-7167.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 6912-7167 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/8960-9215.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 8960-9215 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/9216-9471.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 9216-9471 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/9472-9727.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 9472-9727 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/9728-9983.pbf: -------------------------------------------------------------------------------- 1 | 2 | + 3 | Roboto Italic,Noto Sans Italic 9728-9983 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoItalic-NotoSansItalic/9984-10239.pbf: -------------------------------------------------------------------------------- 1 | 2 | , 3 | Roboto Italic,Noto Sans Italic 4 | 9984-10239 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/10240-10495.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 10240-10495 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/10496-10751.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 10496-10751 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/10752-11007.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 10752-11007 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/11008-11263.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 11008-11263 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/12032-12287.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 12032-12287 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/12288-12543.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 12288-12543 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/12544-12799.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 12544-12799 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/12800-13055.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 12800-13055 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/13056-13311.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 13056-13311 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/13312-13567.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 13312-13567 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/13568-13823.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 13568-13823 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/13824-14079.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 13824-14079 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/14080-14335.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 14080-14335 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/14336-14591.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 14336-14591 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/14592-14847.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 14592-14847 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/14848-15103.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 14848-15103 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/15104-15359.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 15104-15359 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/1536-1791.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 1536-1791 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/15360-15615.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 15360-15615 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/15616-15871.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 15616-15871 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/15872-16127.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 15872-16127 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/16128-16383.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 16128-16383 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/16384-16639.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 16384-16639 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/16640-16895.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 16640-16895 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/16896-17151.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 16896-17151 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/17152-17407.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 17152-17407 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/17408-17663.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 17408-17663 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/17664-17919.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 17664-17919 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/1792-2047.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 1792-2047 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/17920-18175.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 17920-18175 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/18176-18431.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 18176-18431 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/18432-18687.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 18432-18687 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/18688-18943.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 18688-18943 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/18944-19199.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 18944-19199 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/19200-19455.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 19200-19455 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/19456-19711.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 19456-19711 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/19712-19967.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 19712-19967 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/19968-20223.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 19968-20223 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/20224-20479.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 20224-20479 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/2048-2303.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 2048-2303 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/20480-20735.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 20480-20735 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/20736-20991.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 20736-20991 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/20992-21247.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 20992-21247 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/21248-21503.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 21248-21503 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/21504-21759.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 21504-21759 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/21760-22015.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 21760-22015 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/22016-22271.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 22016-22271 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/22272-22527.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 22272-22527 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/22528-22783.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 22528-22783 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/22784-23039.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 22784-23039 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/2304-2559.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 2304-2559 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/23040-23295.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 23040-23295 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/23296-23551.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 23296-23551 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/23552-23807.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 23552-23807 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/23808-24063.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 23808-24063 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/24064-24319.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 24064-24319 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/24320-24575.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 24320-24575 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/24576-24831.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 24576-24831 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/24832-25087.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 24832-25087 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/25088-25343.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 25088-25343 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/25344-25599.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 25344-25599 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/2560-2815.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 2560-2815 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/25600-25855.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 25600-25855 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/25856-26111.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 25856-26111 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/26112-26367.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 26112-26367 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/26368-26623.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 26368-26623 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/26624-26879.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 26624-26879 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/26880-27135.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 26880-27135 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/27136-27391.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 27136-27391 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/27392-27647.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 27392-27647 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/27648-27903.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 27648-27903 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/27904-28159.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 27904-28159 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/2816-3071.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 2816-3071 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/28160-28415.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 28160-28415 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/28416-28671.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 28416-28671 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/28672-28927.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 28672-28927 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/28928-29183.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 28928-29183 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/29184-29439.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 29184-29439 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/29440-29695.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 29440-29695 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/29696-29951.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 29696-29951 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/29952-30207.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 29952-30207 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/30208-30463.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 30208-30463 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/30464-30719.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 30464-30719 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/3072-3327.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 3072-3327 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/30720-30975.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 30720-30975 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/30976-31231.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 30976-31231 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/31232-31487.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 31232-31487 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/31488-31743.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 31488-31743 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/31744-31999.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 31744-31999 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/32000-32255.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 32000-32255 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/32256-32511.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 32256-32511 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/32512-32767.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 32512-32767 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/32768-33023.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 32768-33023 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/33024-33279.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 33024-33279 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/3328-3583.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 3328-3583 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/33280-33535.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 33280-33535 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/33536-33791.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 33536-33791 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/33792-34047.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 33792-34047 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/34048-34303.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 34048-34303 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/34304-34559.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 34304-34559 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/34560-34815.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 34560-34815 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/34816-35071.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 34816-35071 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/35072-35327.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 35072-35327 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/35328-35583.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 35328-35583 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/35584-35839.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 35584-35839 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/3584-3839.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 3584-3839 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/35840-36095.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 35840-36095 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/36096-36351.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 36096-36351 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/36352-36607.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 36352-36607 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/36608-36863.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 36608-36863 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/36864-37119.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 36864-37119 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/37120-37375.pbf: -------------------------------------------------------------------------------- 1 | 2 | 6 3 | 'Roboto Medium Regular,Noto Sans Regular 37120-37375 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/3840-4095.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 3840-4095 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/4096-4351.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 4096-4351 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/4352-4607.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 4352-4607 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/4608-4863.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 4608-4863 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/4864-5119.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 4864-5119 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/5120-5375.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 5120-5375 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/5376-5631.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 5376-5631 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/5632-5887.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 5632-5887 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/5888-6143.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 5888-6143 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/6144-6399.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 6144-6399 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/6400-6655.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 6400-6655 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/6912-7167.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 6912-7167 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/8960-9215.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 8960-9215 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/9216-9471.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 9216-9471 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/9472-9727.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 9472-9727 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoMediumRegular-NotoSansRegular/9728-9983.pbf: -------------------------------------------------------------------------------- 1 | 2 | 4 3 | 'Roboto Medium Regular,Noto Sans Regular 9728-9983 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/10240-10495.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 10240-10495 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/10496-10751.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 10496-10751 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/10752-11007.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 10752-11007 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/11008-11263.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 11008-11263 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/12032-12287.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 12032-12287 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/12288-12543.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 12288-12543 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/12544-12799.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 12544-12799 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/12800-13055.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 12800-13055 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/13056-13311.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 13056-13311 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/13312-13567.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 13312-13567 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/13568-13823.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 13568-13823 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/13824-14079.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 13824-14079 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/14080-14335.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 14080-14335 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/14336-14591.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 14336-14591 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/14592-14847.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 14592-14847 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/14848-15103.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 14848-15103 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/15104-15359.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 15104-15359 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/1536-1791.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 1536-1791 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/15360-15615.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 15360-15615 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/15616-15871.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 15616-15871 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/15872-16127.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 15872-16127 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/16128-16383.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 16128-16383 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/16384-16639.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 16384-16639 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/16640-16895.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 16640-16895 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/16896-17151.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 16896-17151 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/17152-17407.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 17152-17407 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/17408-17663.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 17408-17663 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/17664-17919.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 17664-17919 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/1792-2047.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 1792-2047 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/17920-18175.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 17920-18175 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/18176-18431.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 18176-18431 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/18432-18687.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 18432-18687 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/18688-18943.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 18688-18943 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/18944-19199.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 18944-19199 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/19200-19455.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 19200-19455 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/19456-19711.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 19456-19711 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/19712-19967.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 19712-19967 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/19968-20223.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 19968-20223 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/20224-20479.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 20224-20479 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/2048-2303.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 2048-2303 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/20480-20735.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 20480-20735 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/20736-20991.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 20736-20991 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/20992-21247.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 20992-21247 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/21248-21503.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 21248-21503 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/21504-21759.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 21504-21759 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/21760-22015.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 21760-22015 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/22016-22271.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 22016-22271 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/22272-22527.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 22272-22527 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/22528-22783.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 22528-22783 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/22784-23039.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 22784-23039 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/2304-2559.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 2304-2559 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/23040-23295.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 23040-23295 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/23296-23551.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 23296-23551 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/23552-23807.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 23552-23807 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/23808-24063.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 23808-24063 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/24064-24319.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 24064-24319 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/24320-24575.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 24320-24575 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/24576-24831.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 24576-24831 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/24832-25087.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 24832-25087 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/25088-25343.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 25088-25343 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/25344-25599.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 25344-25599 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/2560-2815.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 2560-2815 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/25600-25855.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 25600-25855 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/25856-26111.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 25856-26111 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/26112-26367.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 26112-26367 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/26368-26623.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 26368-26623 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/26624-26879.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 26624-26879 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/26880-27135.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 26880-27135 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/27136-27391.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 27136-27391 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/27392-27647.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 27392-27647 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/27648-27903.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 27648-27903 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/27904-28159.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 27904-28159 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/2816-3071.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 2816-3071 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/28160-28415.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 28160-28415 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/28416-28671.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 28416-28671 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/28672-28927.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 28672-28927 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/28928-29183.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 28928-29183 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/29184-29439.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 29184-29439 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/29440-29695.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 29440-29695 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/29696-29951.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 29696-29951 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/29952-30207.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 29952-30207 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/30208-30463.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 30208-30463 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/30464-30719.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 30464-30719 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/3072-3327.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 3072-3327 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/30720-30975.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 30720-30975 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/30976-31231.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 30976-31231 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/31232-31487.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 31232-31487 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/31488-31743.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 31488-31743 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/31744-31999.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 31744-31999 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/32000-32255.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 32000-32255 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/32256-32511.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 32256-32511 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/32512-32767.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 32512-32767 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/32768-33023.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 32768-33023 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/33024-33279.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 33024-33279 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/3328-3583.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 3328-3583 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/33280-33535.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 33280-33535 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/33536-33791.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 33536-33791 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/33792-34047.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 33792-34047 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/34048-34303.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 34048-34303 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/34304-34559.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 34304-34559 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/34560-34815.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 34560-34815 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/34816-35071.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 34816-35071 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/35072-35327.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 35072-35327 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/35328-35583.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 35328-35583 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/35584-35839.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 35584-35839 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/3584-3839.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 3584-3839 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/35840-36095.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 35840-36095 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/36096-36351.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 36096-36351 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/36352-36607.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 36352-36607 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/36608-36863.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 36608-36863 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/36864-37119.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 36864-37119 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/37120-37375.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 37120-37375 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/37376-37631.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 37376-37631 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/37632-37887.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 37632-37887 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/37888-38143.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 37888-38143 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/38144-38399.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 38144-38399 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/3840-4095.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 3840-4095 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/38400-38655.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 38400-38655 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/38656-38911.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 38656-38911 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/38912-39167.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 38912-39167 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/39168-39423.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 39168-39423 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/39424-39679.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 39424-39679 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/39680-39935.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 39680-39935 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/39936-40191.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 39936-40191 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/40192-40447.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 40192-40447 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/40448-40703.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 40448-40703 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/40704-40959.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 40704-40959 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/4096-4351.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 4096-4351 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/40960-41215.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 40960-41215 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/41216-41471.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 41216-41471 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/41472-41727.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 41472-41727 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/41728-41983.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 41728-41983 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/41984-42239.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 41984-42239 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/42240-42495.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 42240-42495 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/43008-43263.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 43008-43263 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/4352-4607.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 4352-4607 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/43520-43775.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 43520-43775 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/44032-44287.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 44032-44287 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/44288-44543.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 44288-44543 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/44544-44799.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 44544-44799 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/44800-45055.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 44800-45055 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/45056-45311.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 45056-45311 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/45312-45567.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 45312-45567 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/45568-45823.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 45568-45823 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/45824-46079.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 45824-46079 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/4608-4863.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 4608-4863 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/46080-46335.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 46080-46335 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/46336-46591.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 46336-46591 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/46592-46847.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 46592-46847 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/46848-47103.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 46848-47103 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/47104-47359.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 47104-47359 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/47360-47615.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 47360-47615 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/47616-47871.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 47616-47871 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/47872-48127.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 47872-48127 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/48128-48383.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 48128-48383 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/48384-48639.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 48384-48639 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/4864-5119.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 4864-5119 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/48640-48895.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 48640-48895 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/48896-49151.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 48896-49151 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/49152-49407.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 49152-49407 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/49408-49663.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 49408-49663 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/49664-49919.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 49664-49919 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/49920-50175.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 49920-50175 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/50176-50431.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 50176-50431 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/50432-50687.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 50432-50687 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/50688-50943.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 50688-50943 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/50944-51199.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 50944-51199 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/5120-5375.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 5120-5375 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/51200-51455.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 51200-51455 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/51456-51711.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 51456-51711 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/51712-51967.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 51712-51967 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/51968-52223.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 51968-52223 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/52224-52479.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 52224-52479 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/52480-52735.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 52480-52735 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/52736-52991.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 52736-52991 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/52992-53247.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 52992-53247 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/53248-53503.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 53248-53503 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/53504-53759.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 53504-53759 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/5376-5631.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 5376-5631 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/53760-54015.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 53760-54015 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/54016-54271.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 54016-54271 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/54272-54527.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 54272-54527 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/54528-54783.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 54528-54783 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/54784-55039.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 54784-55039 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/55040-55295.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 55040-55295 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/55296-55551.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 55296-55551 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/55552-55807.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 55552-55807 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/55808-56063.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 55808-56063 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/56064-56319.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 56064-56319 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/5632-5887.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 5632-5887 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/56320-56575.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 56320-56575 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/56576-56831.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 56576-56831 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/56832-57087.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 56832-57087 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/57088-57343.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 57088-57343 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/57344-57599.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 57344-57599 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/57600-57855.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 57600-57855 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/57856-58111.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 57856-58111 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/58112-58367.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 58112-58367 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/58368-58623.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 58368-58623 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/58624-58879.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 58624-58879 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/5888-6143.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 5888-6143 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/58880-59135.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 58880-59135 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/59136-59391.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 59136-59391 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/59392-59647.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 59392-59647 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/59648-59903.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 59648-59903 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/59904-60159.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 59904-60159 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/60160-60415.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 60160-60415 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/60416-60671.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 60416-60671 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/60672-60927.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 60672-60927 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/60928-61183.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 60928-61183 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/61184-61439.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 61184-61439 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/6144-6399.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 6144-6399 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/61440-61695.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 61440-61695 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/61696-61951.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 61696-61951 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/61952-62207.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 61952-62207 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/62208-62463.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 62208-62463 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/62464-62719.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 62464-62719 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/62720-62975.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 62720-62975 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/62976-63231.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 62976-63231 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/63232-63487.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 63232-63487 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/63488-63743.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 63488-63743 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/63744-63999.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 63744-63999 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/6400-6655.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 6400-6655 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/64000-64255.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 64000-64255 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/64512-64767.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 64512-64767 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/64768-65023.pbf: -------------------------------------------------------------------------------- 1 | 2 | / 3 | Roboto Regular,Noto Sans Regular 64768-65023 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/6912-7167.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 6912-7167 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/8960-9215.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 8960-9215 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/9216-9471.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 9216-9471 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/9472-9727.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 9472-9727 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/9728-9983.pbf: -------------------------------------------------------------------------------- 1 | 2 | - 3 | Roboto Regular,Noto Sans Regular 9728-9983 -------------------------------------------------------------------------------- /public/fonts/glyphs/RobotoRegular-NotoSansRegular/9984-10239.pbf: -------------------------------------------------------------------------------- 1 | 2 | . 3 | Roboto Regular,Noto Sans Regular 4 | 9984-10239 -------------------------------------------------------------------------------- /public/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/icon-192.png -------------------------------------------------------------------------------- /public/ign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/ign.png -------------------------------------------------------------------------------- /public/logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/logo-512.png -------------------------------------------------------------------------------- /public/photon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/photon.png -------------------------------------------------------------------------------- /public/sotm/laem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/sotm/laem.png -------------------------------------------------------------------------------- /public/sotm/osm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/sotm/osm.png -------------------------------------------------------------------------------- /public/styles/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/styles/base.png -------------------------------------------------------------------------------- /public/styles/ign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/styles/ign.png -------------------------------------------------------------------------------- /public/styles/osm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/styles/osm.png -------------------------------------------------------------------------------- /public/styles/rail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/styles/rail.png -------------------------------------------------------------------------------- /public/trends-maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/trends-maps.png -------------------------------------------------------------------------------- /public/valhalla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/valhalla.png -------------------------------------------------------------------------------- /public/vignette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartesapp/cartes/d50c930f384a56e43b4533493255ae884851acb9/public/vignette.png --------------------------------------------------------------------------------