├── .editorconfig ├── .eslintrc.js ├── .git-blame-ignore-revs ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── sbt-dependency-graph.yaml │ ├── stale.yml │ ├── typescript.yml │ └── validate.yml ├── .gitignore ├── .nvmrc ├── .prout.json ├── .scalafmt.conf ├── .stylelintrc.json ├── .tool-versions ├── .vscode └── extensions.json ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── __mocks__ ├── svgMock.js └── templateMock.js ├── admin ├── app │ ├── AppLoader.scala │ ├── conf │ │ └── AdminConfiguration.scala │ ├── controllers │ │ ├── AdminControllers.scala │ │ ├── AppConfigController.scala │ │ ├── FrontPressController.scala │ │ ├── HealthCheck.scala │ │ ├── admin │ │ │ ├── AnalyticsController.scala │ │ │ ├── CommercialController.scala │ │ │ ├── IndexController.scala │ │ │ ├── InteractiveLibrarianController.scala │ │ │ ├── R2PressController.scala │ │ │ ├── RedirectController.scala │ │ │ ├── SportTroubleshooterController.scala │ │ │ ├── SwitchboardController.scala │ │ │ ├── TroubleshooterController.scala │ │ │ ├── UncachedAssets.scala │ │ │ └── commercial │ │ │ │ ├── AdsDotTextEditController.scala │ │ │ │ └── KeyValueRevenueRow.scala │ │ ├── cache │ │ │ ├── ImageDecacheController.scala │ │ │ ├── ImageServices.scala │ │ │ └── PageDecacheController.scala │ │ └── metrics │ │ │ └── MetricsController.scala │ ├── dfp │ │ ├── DfpDataExtractor.scala │ │ └── package.scala │ ├── football │ │ ├── controllers │ │ │ ├── FrontsController.scala │ │ │ ├── PaBrowserController.scala │ │ │ ├── PlayerController.scala │ │ │ ├── SiteController.scala │ │ │ └── TablesController.scala │ │ ├── formats │ │ │ └── PaPlayer.scala │ │ ├── model │ │ │ ├── PA.scala │ │ │ ├── PrevResult.scala │ │ │ └── SnapFields.scala │ │ └── services │ │ │ └── Client.scala │ ├── http │ │ └── AdminHttpErrorHandler.scala │ ├── indexes │ │ ├── ContentApiTagsEnumerator.scala │ │ ├── TagPages.scala │ │ └── package.scala │ ├── jobs │ │ ├── ExpiringSwitchesEmailJob.scala │ │ ├── R2PagePressJob.scala │ │ ├── RebuildIndexJob.scala │ │ └── RefreshFrontsJob.scala │ ├── model │ │ ├── AdminLifecycle.scala │ │ └── AdminPage.scala │ ├── purge │ │ └── CdnPurge.scala │ ├── services │ │ ├── EmailService.scala │ │ ├── ParameterStoreService.scala │ │ ├── R2PagePressNotifier.scala │ │ └── R2PressedPageTakedownNotifier.scala │ ├── tools │ │ ├── CloudWatch.scala │ │ ├── DfpLink.scala │ │ ├── LoadBalancer.scala │ │ ├── Store.scala │ │ ├── charts │ │ │ └── charts.scala │ │ └── errors.scala │ └── views │ │ ├── abTests.scala.html │ │ ├── admin.scala.html │ │ ├── admin_embed.scala.html │ │ ├── admin_head.scala.html │ │ ├── admin_main.scala.html │ │ ├── appConfig.scala.html │ │ ├── cache │ │ ├── ajaxDecache.scala.html │ │ ├── imageDecache.scala.html │ │ └── pageDecache.scala.html │ │ ├── commercial │ │ ├── LineItemSupport.scala │ │ ├── adTests.scala.html │ │ ├── adsDotText.scala.html │ │ ├── commercialMenu.scala.html │ │ ├── customFields.scala.html │ │ ├── customTargetingKeyValues.scala.html │ │ ├── fragments │ │ │ └── slot.scala.html │ │ ├── invalidLineItems.scala.html │ │ ├── liveBlogTopSponsorships.scala.html │ │ ├── pageskins.scala.html │ │ ├── revenueDashboard.scala.html │ │ ├── specialAdUnits.scala.html │ │ ├── surgingpages.scala.html │ │ └── surveySponsorships.scala.html │ │ ├── contentGallery.scala.html │ │ ├── cricketTroubleshooter.scala.html │ │ ├── email │ │ └── expiringSwitches.scala.html │ │ ├── errorPage.scala.html │ │ ├── football │ │ ├── browse.scala.html │ │ ├── error.scala.html │ │ ├── fragments │ │ │ ├── chooseGroup.scala.html │ │ │ ├── chooseLeague.scala.html │ │ │ ├── choosePlayer.scala.html │ │ │ ├── chooseTeam.scala.html │ │ │ └── prevResults.scala.html │ │ ├── fronts │ │ │ ├── failedEmbed.scala.html │ │ │ ├── index.scala.html │ │ │ ├── matchesList.scala.html │ │ │ └── viewEmbed.scala.html │ │ ├── index.scala.html │ │ ├── leagueTables │ │ │ ├── leagueTable.scala.html │ │ │ └── tablesIndex.scala.html │ │ ├── main.scala.html │ │ ├── player │ │ │ ├── cards │ │ │ │ ├── assist.scala.html │ │ │ │ ├── attack.scala.html │ │ │ │ ├── defence.scala.html │ │ │ │ ├── discipline.scala.html │ │ │ │ └── goalkeeper.scala.html │ │ │ ├── playerHead2Head.scala.html │ │ │ └── playerIndex.scala.html │ │ └── team │ │ │ ├── squadImages.scala.html │ │ │ ├── teamHead2head.scala.html │ │ │ └── teamIndex.scala.html │ │ ├── footballTroubleshooter.scala.html │ │ ├── fragments │ │ ├── abTestReport.scala.html │ │ ├── abTestReportItem.scala.html │ │ ├── audience.scala.html │ │ ├── audienceItem.scala.html │ │ ├── dateLineChart.scala.html │ │ ├── formattedChart.scala.html │ │ ├── lineChart.scala.html │ │ ├── participation.scala.html │ │ ├── participationItem.scala.html │ │ └── serverBasedExperiments.scala.html │ │ ├── legacyAbTests.scala.html │ │ ├── lineCharts.scala.html │ │ ├── press.scala.html │ │ ├── pressContent.scala.html │ │ ├── pressR2.scala.html │ │ ├── redirects.scala.html │ │ ├── switchboard.scala.html │ │ ├── troubleshooter.scala.html │ │ └── troubleshooterResults.scala.html ├── conf │ ├── application.conf │ ├── logback.xml │ ├── resources │ │ └── r2 │ │ │ └── interactiveSwfScript.js │ └── routes ├── public │ ├── css │ │ ├── abtests.css │ │ ├── admin.css │ │ ├── browsers.css │ │ ├── commercial.css │ │ ├── football.css │ │ ├── radiator.css │ │ ├── reader-revenue.css │ │ └── switchboard.css │ ├── football │ │ ├── css │ │ │ ├── football-main.css │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── images │ │ │ └── favicon.ico │ │ └── javascripts │ │ │ ├── browser.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-ui-1.10.4.custom.js │ │ │ └── jquery-ui-1.10.4.custom.min.js │ └── images │ │ ├── 114x114.png │ │ ├── 144x144.png │ │ ├── 57x57.png │ │ ├── 72x72.png │ │ ├── ajax-failed.png │ │ ├── ajax-loader.gif │ │ ├── favicon-dev.ico │ │ ├── favicon.ico │ │ └── windows_tile_144_b.png └── test │ ├── TestAppLoader.scala │ ├── football │ ├── PlayerControllerTest.scala │ ├── SiteControllerTest.scala │ ├── TablesControllerTest.scala │ └── testdata │ │ ├── __competition__leagueTable__KEY__100__TODAY.xml │ │ ├── __competitions__competitions__KEY.xml │ │ ├── __player__appearances__KEY__237670__20140101__TODAY__19.xml │ │ ├── __player__appearances__KEY__237670__20160609__TODAY__19__100.xml │ │ ├── __player__appearances__KEY__237670__20180601__TODAY__19__100.xml │ │ ├── __player__profile__KEY__237670.xml │ │ ├── __player__stats__summary__KEY__237670__20140101__TODAY__19.xml │ │ ├── __player__stats__summary__KEY__237670__20160609__TODAY__19__100.xml │ │ ├── __player__stats__summary__KEY__237670__20180601__TODAY__19__100.xml │ │ └── __team__squad__KEY__19.xml │ ├── indexes │ └── TagPagesTest.scala │ ├── package.scala │ ├── pagepresser │ ├── HtmlCleanerTest.scala │ └── InteractiveHtmlCleanerTest.scala │ ├── resources │ └── pagepresser │ │ └── r2 │ │ ├── interactivePageWithJQuery.html │ │ ├── interactivePageWithScriptsRemovedAndJQueryRetained.html │ │ ├── pageWithAdSlots.html │ │ ├── pageWithAdSlotsRemoved.html │ │ ├── pageWithRelatedComponent.html │ │ └── pageWithRelatedComponentRemoved.html │ └── services │ └── ParameterStoreServiceTest.scala ├── applications ├── app │ ├── AppLoader.scala │ ├── controllers │ │ ├── AllIndexController.scala │ │ ├── ApplicationsControllers.scala │ │ ├── AtomPageController.scala │ │ ├── CrosswordsController.scala │ │ ├── DCARAssetsController.scala │ │ ├── DiagnosticsController.scala │ │ ├── EmbedController.scala │ │ ├── FakeGeolocationController.scala │ │ ├── GalleryController.scala │ │ ├── HealthCheck.scala │ │ ├── ImageContentController.scala │ │ ├── IndexController.scala │ │ ├── InteractiveController.scala │ │ ├── LatestIndexController.scala │ │ ├── MediaController.scala │ │ ├── NewspaperController.scala │ │ ├── Nx1ConfigController.scala │ │ ├── OptInController.scala │ │ ├── PreferencesController.scala │ │ ├── QuizController.scala │ │ ├── ShortUrlsController.scala │ │ ├── SignupPageController.scala │ │ ├── SiteMapController.scala │ │ ├── SiteVerificationController.scala │ │ ├── SurveyPageController.scala │ │ ├── TagIndexController.scala │ │ └── YoutubeController.scala │ ├── jobs │ │ └── SitemapLifecycle.scala │ ├── model │ │ ├── DiagnosticsPageMetadata.scala │ │ ├── TagIndexListingMetaData.scala │ │ ├── TagIndexPageMetadata.scala │ │ └── preferencesMetadata.scala │ ├── pages │ │ ├── ContentHtmlPage.scala │ │ ├── CrosswordHtmlPage.scala │ │ ├── GalleryHtmlPage.scala │ │ ├── IndexHtmlPage.scala │ │ ├── InteractiveHtmlPage.scala │ │ ├── NewsletterHtmlPage.scala │ │ └── TagIndexHtmlPage.scala │ ├── services │ │ ├── ImageQuery.scala │ │ ├── NewsSiteMap.scala │ │ ├── NewspaperQuery.scala │ │ ├── TagPagePicker.scala │ │ ├── USElection2020AmpPages.scala │ │ ├── VideoSiteMap.scala │ │ └── dotcomrendering │ │ │ ├── CrosswordsPicker.scala │ │ │ ├── GalleryPicker.scala │ │ │ ├── ImageContentPicker.scala │ │ │ ├── InteractivePicker.scala │ │ │ ├── MediaPicker.scala │ │ │ └── RenderType.scala │ └── views │ │ ├── all.scala.html │ │ ├── atomEmbed.scala.html │ │ ├── browserDiagnostics │ │ └── diagnosticsPage.scala.html │ │ ├── fragments │ │ ├── atomJSBlocking.scala.html │ │ ├── atomJSNonBlocking.scala.html │ │ ├── atomPageFoot.scala.html │ │ ├── atomPageHead.scala.html │ │ ├── audioBody.scala.html │ │ ├── audioSeriesHead.scala.html │ │ ├── crosswords │ │ │ ├── accessibleCrosswordContent.scala.html │ │ │ ├── accessibleCrosswordEntries.scala.html │ │ │ ├── accessibleCrosswordGridData.scala.html │ │ │ ├── crosswordContent.scala.html │ │ │ ├── crosswordEntries.scala.html │ │ │ ├── crosswordFooter.scala.html │ │ │ ├── crosswordMeta.scala.html │ │ │ ├── crosswordMetaHeader.scala.html │ │ │ ├── crosswordNoResult.scala.html │ │ │ ├── crosswordSearch.scala.html │ │ │ ├── crosswordSearchForm.scala.html │ │ │ ├── printableCrosswordBody.scala.html │ │ │ └── printableCrosswordClue.scala.html │ │ ├── galleryBody.scala.html │ │ ├── galleryHeader.scala.html │ │ ├── gallerySlot.scala.html │ │ ├── galleryTop.scala.html │ │ ├── imageContentBody.scala.html │ │ ├── indexBody.scala.html │ │ ├── indexHead.scala.html │ │ ├── interactiveBody.scala.html │ │ ├── mediaBody.scala.html │ │ ├── tagIndexBody.scala.html │ │ └── tagIndexListingBody.scala.html │ │ ├── newspaperContent.scala.html │ │ ├── package.scala │ │ ├── preferences │ │ └── index.scala.html │ │ ├── quizAnswerContent.scala.html │ │ ├── signup │ │ └── newsletterContent.scala.html │ │ ├── survey │ │ ├── formstackSurvey.scala.html │ │ ├── quickSurvey.scala.html │ │ ├── surveyMain.scala.html │ │ └── thankyou.scala.html │ │ ├── videoEmbed.scala.html │ │ └── videoEmbedMissing.scala.html ├── conf │ ├── application.conf │ ├── logback.xml │ └── routes └── test │ ├── AllIndexControllerTest.scala │ ├── AllIndexTemplateTest.scala │ ├── CrosswordDataTest.scala │ ├── CrosswordPageMetaDataTest.scala │ ├── GalleryControllerTest.scala │ ├── GalleryTemplateTest.scala │ ├── ImageContentControllerTest.scala │ ├── ImageContentTemplateTest.scala │ ├── IndexControllerTest.scala │ ├── IndexFeatureTest.scala │ ├── IndexMetaDataTest.scala │ ├── InteractiveControllerTest.scala │ ├── InteractiveTemplateTest.scala │ ├── LatestIndexControllerTest.scala │ ├── MediaControllerTest.scala │ ├── MediaFeatureTest.scala │ ├── NewspaperControllerTest.scala │ ├── ShareLinksTest.scala │ ├── TagTemplateTest.scala │ ├── TestAppLoader.scala │ ├── common │ ├── CombinerControllerTest.scala │ └── CombinerFeatureTest.scala │ ├── package.scala │ └── services │ ├── IndexPageGroupingTest.scala │ ├── InteractivePickerTest.scala │ └── NewspaperQueryTest.scala ├── archive ├── app │ ├── AppLoader.scala │ ├── controllers │ │ ├── ArchiveController.scala │ │ └── HealthCheck.scala │ └── views │ │ ├── archive.scala.html │ │ └── notFound.scala.html ├── conf │ ├── application.conf │ ├── logback.xml │ └── routes ├── readme.txt └── test │ ├── ArchiveControllerTest.scala │ └── package.scala ├── article ├── app │ ├── AppLoader.scala │ ├── controllers │ │ ├── ArticleController.scala │ │ ├── ArticleControllers.scala │ │ ├── HealthCheck.scala │ │ ├── LiveBlogController.scala │ │ └── PublicationController.scala │ ├── jobs │ │ └── StoreNavigationLifecycleComponent.scala │ ├── model │ │ ├── ContentFields.scala │ │ ├── KeyEventData.scala │ │ ├── LiveBlogHelpers.scala │ │ ├── ParseBlockId.scala │ │ └── structuredData │ │ │ ├── BlogPosting.scala │ │ │ ├── Image.scala │ │ │ ├── LiveBlogPosting.scala │ │ │ ├── MainMedia.scala │ │ │ ├── Organisation.scala │ │ │ └── Video.scala │ ├── pages │ │ ├── ArticleEmailHtmlPage.scala │ │ ├── ArticleHtmlPage.scala │ │ ├── LiveBlogHtmlPage.scala │ │ ├── MinuteHtmlPage.scala │ │ └── StoryHtmlPage.scala │ ├── services │ │ ├── NewspaperBooksAndSectionsAutoRefresh.scala │ │ └── dotcomrendering │ │ │ ├── ArticlePicker.scala │ │ │ └── RenderType.scala │ └── views │ │ ├── fragments │ │ ├── articleAsideSlot.scala.html │ │ ├── articleBody.scala.html │ │ ├── articleBodyGarnett.scala.html │ │ ├── articleHeaderColumn.scala.html │ │ ├── articleHeaderCommentGarnett.scala.html │ │ ├── articleHeaderGarnett.scala.html │ │ ├── articleHeaderPaidGarnett.scala.html │ │ ├── email │ │ │ ├── emailArticleBody.scala.html │ │ │ └── emailArticleCss.scala.html │ │ ├── emailMainMedia.scala.html │ │ ├── headerImmersive.scala.html │ │ ├── immersiveGarnettBody.scala.html │ │ ├── immersiveGarnettHeader.scala.html │ │ ├── immersiveGarnettHeadline.scala.html │ │ ├── liveBlogHead.scala.html │ │ ├── liveBlogNavigation.scala.html │ │ ├── logo.scala.html │ │ ├── mainMedia.scala.html │ │ ├── minuteBody.scala.html │ │ ├── photoEssayBody.scala.html │ │ └── photoEssayHeader.scala.html │ │ ├── liveblog │ │ ├── dateBlock.scala.html │ │ ├── filterButton.scala.html │ │ ├── keyEvents.scala.html │ │ ├── liveBlogBlock.scala.html │ │ ├── liveBlogBlocks.scala.html │ │ ├── liveBlogBody.scala.html │ │ ├── liveBlogBodyContent.scala.html │ │ └── pinnedBlock.scala.html │ │ └── package.scala ├── conf │ ├── application.conf │ ├── logback.xml │ └── routes └── test │ ├── ArticleControllerTest.scala │ ├── CdnHealthCheckTest.scala │ ├── DCRFake.scala │ ├── LiveBlogControllerTest.scala │ ├── MainMediaWidthsTest.scala │ ├── PublicationControllerTest.scala │ ├── TestAppLoader.scala │ ├── model │ ├── KeyEventDataTest.scala │ ├── LiveBlogCurrentPageTest.scala │ └── ParseBlockIdTest.scala │ ├── package.scala │ └── services │ └── dotcomrendering │ └── ArticlePickerTest.scala ├── babel.config.js ├── bin └── sbt-launch.jar ├── cla-corporate.txt ├── cla-individual.txt ├── commercial ├── app │ ├── AppLoader.scala │ ├── agents │ │ └── AdmiralAgent.scala │ ├── controllers │ │ ├── AdmiralController.scala │ │ ├── AdsDotTextViewController.scala │ │ ├── AmpIframeHtmlController.scala │ │ ├── CommercialControllers.scala │ │ ├── ContentApiOffersController.scala │ │ ├── HealthCheck.scala │ │ ├── HostedContentController.scala │ │ ├── PassbackController.scala │ │ ├── PiggybackPixelController.scala │ │ ├── TemporaryAdLiteController.scala │ │ ├── nonRefreshableLineItemsController.scala │ │ └── package.scala │ ├── jobs │ │ └── AdmiralLifecycle.scala │ ├── model │ │ ├── DotcomRenderingHostedContentModel.scala │ │ ├── capi │ │ │ ├── CapiAgent.scala │ │ │ ├── CapiImages.scala │ │ │ ├── CapiMultiple.scala │ │ │ ├── CapiSingle.scala │ │ │ ├── Keyword.scala │ │ │ └── Lookup.scala │ │ ├── hosted │ │ │ ├── HostedAmp.scala │ │ │ ├── HostedArticleQuotes.scala │ │ │ └── HostedTrails.scala │ │ └── package.scala │ ├── services │ │ └── dotcomrendering │ │ │ ├── HostedContentPicker.scala │ │ │ └── RenderType.scala │ ├── templates │ │ └── piggybackResize.scala.js │ └── views │ │ ├── CommercialBodyCleaner.scala │ │ ├── contentapi │ │ ├── item.scala.html │ │ └── items.scala.html │ │ ├── debugger │ │ └── allcreatives.scala.html │ │ ├── fragments │ │ ├── amp │ │ │ ├── customStyles.scala.html │ │ │ └── stylesheets │ │ │ │ ├── glabs.scala.html │ │ │ │ └── hosted.scala.html │ │ └── hostedContentsAMPMetaData.scala.html │ │ ├── hosted │ │ ├── guardianAmpHostedArticle.scala.html │ │ ├── guardianAmpHostedGallery.scala.html │ │ ├── guardianAmpHostedGalleryImage.scala.html │ │ ├── guardianAmpHostedVideo.scala.html │ │ ├── guardianHostedArticle.scala.html │ │ ├── guardianHostedControlButtons.scala.html │ │ ├── guardianHostedCta.scala.html │ │ ├── guardianHostedGallery.scala.html │ │ ├── guardianHostedGalleryCta.scala.html │ │ ├── guardianHostedGalleryImage.scala.html │ │ ├── guardianHostedGalleryOj.scala.html │ │ ├── guardianHostedHeader.scala.html │ │ ├── guardianHostedShareButtons.scala.html │ │ ├── guardianHostedVideo.scala.html │ │ ├── hostedExplainer.scala.html │ │ ├── hostedGalleryOnward.scala.html │ │ ├── hostedGalleryOnwardAmp.scala.html │ │ ├── hostedLogo.scala.html │ │ ├── hostedOnwardAmp.scala.html │ │ ├── hostedOnwardJourney.scala.html │ │ ├── hostedVideoAutoplay.scala.html │ │ ├── hostedVideoAutoplayWrapper.scala.html │ │ ├── singaporeF1Offtrack.scala.html │ │ ├── singaporeF1Overview.scala.html │ │ └── singaporeF1Packages.scala.html │ │ └── passback.scala.html ├── conf │ ├── application.conf │ ├── logback.xml │ └── routes └── test │ ├── model │ ├── CapiAgentTest.scala │ └── LookupTest.scala │ ├── services │ └── dotcomrendering │ │ └── HostedContentPickerTest.scala │ └── test │ └── CommercialTestSuite.scala ├── common ├── app │ ├── ab │ │ └── ABTests.scala │ ├── agents │ │ └── DeeplyReadAgent.scala │ ├── app │ │ ├── FrontendApplicationLoader.scala │ │ └── FrontendBuildInfo.scala │ ├── bindables │ │ ├── LocalDateBindable.scala │ │ └── package.scala │ ├── commercial │ │ ├── campaigns │ │ │ └── ShortCampaignCodes.scala │ │ └── targeting │ │ │ ├── CampaignAgent.scala │ │ │ └── TargetingLifecycle.scala │ ├── common │ │ ├── Assets │ │ │ └── assets.scala │ │ ├── AutoRefresh.scala │ │ ├── Box.scala │ │ ├── CSV.scala │ │ ├── Chronos.scala │ │ ├── CommercialBundle.scala │ │ ├── Crypto.scala │ │ ├── Edition.scala │ │ ├── ExternalLinks.scala │ │ ├── GuLogging.scala │ │ ├── HTML.scala │ │ ├── HttpStatusException.scala │ │ ├── ImplicitControllerExecutionContext.scala │ │ ├── InlineStyles.scala │ │ ├── InternalCode.scala │ │ ├── JodaTime.scala │ │ ├── JsMinifier.scala │ │ ├── JsonComponent.scala │ │ ├── Lazy.scala │ │ ├── LinkTo.scala │ │ ├── Localisation.scala │ │ ├── Maps.scala │ │ ├── ModelOrResult.scala │ │ ├── PagePaths.scala │ │ ├── Pagination.scala │ │ ├── Preload.scala │ │ ├── PreloadAsset.scala │ │ ├── Properties.scala │ │ ├── QueryParams.scala │ │ ├── RelativePathEscaper.scala │ │ ├── RequestLogger.scala │ │ ├── ResourcesHelper.scala │ │ ├── Retry.scala │ │ ├── SNSNotification.scala │ │ ├── SQSQueues.scala │ │ ├── Seqs.scala │ │ ├── ShowcaseRSSModules.scala │ │ ├── StopWatch.scala │ │ ├── StringEncodings.scala │ │ ├── Strings.scala │ │ ├── TrailsToRss.scala │ │ ├── TrailsToShowcase.scala │ │ ├── akka.scala │ │ ├── commercial │ │ │ ├── AdUnitMaker.scala │ │ │ ├── ClientSideLogging.scala │ │ │ ├── CommercialProperties.scala │ │ │ ├── ContainerModel.scala │ │ │ ├── EditionAdTargeting.scala │ │ │ ├── EditionBranding.scala │ │ │ ├── PrebidIndexSite.scala │ │ │ └── hosted │ │ │ │ ├── Colour.scala │ │ │ │ ├── ContentUtils.scala │ │ │ │ ├── HostedArticlePage.scala │ │ │ │ ├── HostedCallToAction.scala │ │ │ │ ├── HostedGalleryPage.scala │ │ │ │ ├── HostedMetadata.scala │ │ │ │ ├── HostedPage.scala │ │ │ │ ├── HostedVideoPage.scala │ │ │ │ └── LoggingUtils.scala │ │ ├── configuration.scala │ │ ├── dfp │ │ │ ├── AdSize.scala │ │ │ ├── DfpAgent.scala │ │ │ ├── DfpAgentLifecycle.scala │ │ │ ├── DfpData.scala │ │ │ ├── LiveBlogTopSponsorshipAgent.scala │ │ │ ├── LiveblogTopSponsorship.scala │ │ │ ├── PageSkinSponsorship.scala │ │ │ ├── PageskinAdAgent.scala │ │ │ ├── SurveySponsorship.scala │ │ │ └── SurveySponsorshipAgent.scala │ │ ├── editions │ │ │ ├── Au.scala │ │ │ ├── Europe.scala │ │ │ ├── International.scala │ │ │ ├── Uk.scala │ │ │ └── Us.scala │ │ ├── jobs.scala │ │ ├── management.scala │ │ ├── metrics.scala │ │ └── package.scala │ ├── concurrent │ │ ├── BlockingOperations.scala │ │ ├── CircuitBreakerRegistry.scala │ │ └── FutureOpt.scala │ ├── conf │ │ ├── AudioFlagship.scala │ │ ├── HealthCheck.scala │ │ ├── application.scala │ │ ├── audio │ │ │ ├── FlagshipContainer.scala │ │ │ ├── FlagshipEmailContainer.scala │ │ │ └── FlagshipFrontContainer.scala │ │ ├── cricketPa │ │ │ └── CricketTeams.scala │ │ └── switches │ │ │ ├── ABTestSwitches.scala │ │ │ ├── CommercialSwitches.scala │ │ │ ├── DiscussionSwitches.scala │ │ │ ├── FaciaSwitches.scala │ │ │ ├── FeatureSwitches.scala │ │ │ ├── IdentitySwitches.scala │ │ │ ├── JournalismSwitches.scala │ │ │ ├── MonitoringSwitches.scala │ │ │ ├── NewslettersSwitches.scala │ │ │ ├── PerformanceSwitches.scala │ │ │ ├── PrivacySwitches.scala │ │ │ ├── ServerSideExperimentSwitches.scala │ │ │ ├── SwitchboardLifecycle.scala │ │ │ ├── Switches.scala │ │ │ └── TXSwitches.scala │ ├── contentapi │ │ ├── ContentApiClient.scala │ │ ├── FixtureTemplates.scala │ │ ├── Paths.scala │ │ ├── SectionTagLookUp.scala │ │ ├── SectionsLookUp.scala │ │ ├── SectionsLookUpLifecycle.scala │ │ └── http.scala │ ├── controllers │ │ ├── EmailSignupController.scala │ │ ├── IndexControllerCommon.scala │ │ ├── Paging.scala │ │ ├── PreferenceController.scala │ │ ├── PublicAssets.scala │ │ └── RendersItemResponse.scala │ ├── crosswords │ │ ├── AccessibleCrosswordRows.scala │ │ ├── CrosswordPage.scala │ │ ├── CrosswordSvg.scala │ │ ├── CrosswordTreat.scala │ │ └── package.scala │ ├── dev │ │ ├── DevAssetsController.scala │ │ └── DevParametersHttpRequestHandler.scala │ ├── experiments │ │ ├── Experiment.scala │ │ ├── Experiments.scala │ │ ├── ExperimentsDefinition.scala │ │ ├── LookedAtExperiments.scala │ │ └── ParticipationGroups.scala │ ├── feed │ │ └── MostViewed.scala │ ├── html │ │ ├── BrazeEmailFormatter.scala │ │ ├── HtmlPage.scala │ │ ├── HtmlTextExtractor.scala │ │ └── Styles.scala │ ├── http │ │ ├── AmpFilter.scala │ │ ├── CorsHttpErrorHandler.scala │ │ ├── CustomPanDomainAuth.scala │ │ ├── Filters.scala │ │ ├── GuardianAuthWithExemptions.scala │ │ ├── H2PreloadFilter.scala │ │ ├── RequestIdFilter.scala │ │ ├── RequestLoggingFilter.scala │ │ └── ResultWithPreconnectPreload.scala │ ├── implicits │ │ ├── AutomaticResourceManagement.scala │ │ ├── Booleans.scala │ │ ├── Dates.scala │ │ ├── FaciaContentFrontendHelpers.scala │ │ ├── ItemKickerImplicits.scala │ │ ├── ItemResponses.scala │ │ ├── Numbers.scala │ │ ├── R2PressNotification.scala │ │ ├── Requests.scala │ │ ├── Responses.scala │ │ ├── Strings.scala │ │ └── WSRequests.scala │ ├── json │ │ └── ObjectDeduplication.scala │ ├── layout │ │ ├── Breakpoint.scala │ │ ├── BreakpointWidth.scala │ │ ├── BrowserWidth.scala │ │ ├── Byline.scala │ │ ├── CollectionEmail.scala │ │ ├── CollectionEssentials.scala │ │ ├── Column.scala │ │ ├── ColumnAndCards.scala │ │ ├── ContainerCommercialOptions.scala │ │ ├── ContainerDisplayConfig.scala │ │ ├── ContainerLayout.scala │ │ ├── ContainerLayoutContext.scala │ │ ├── ContentWidths.scala │ │ ├── DateHeadline.scala │ │ ├── DiscussionSettings.scala │ │ ├── DisplaySettings.scala │ │ ├── EditionalisedLink.scala │ │ ├── FaciaCard.scala │ │ ├── FaciaCardAndIndex.scala │ │ ├── FaciaCardHeader.scala │ │ ├── FaciaCardTimestamp.scala │ │ ├── FaciaContainer.scala │ │ ├── FaciaContainerHeader.scala │ │ ├── FaciaHeaderImageType.scala │ │ ├── FaciaWidths.scala │ │ ├── Front.scala │ │ ├── HtmlAndClasses.scala │ │ ├── InclusiveRange.scala │ │ ├── IndexedTrail.scala │ │ ├── ItemClasses.scala │ │ ├── SliceLayout.scala │ │ ├── SliceWithCards.scala │ │ ├── SlowOrFastByTrails.scala │ │ ├── SnapStuff.scala │ │ ├── SnapType.scala │ │ ├── Sublink.scala │ │ ├── Sublinks.scala │ │ ├── TagHistogram.scala │ │ ├── WidthsByBreakpoint.scala │ │ ├── cards │ │ │ └── CardType.scala │ │ └── slices │ │ │ ├── Container.scala │ │ │ ├── ContainerDefinition.scala │ │ │ ├── ContainerJsonConfig.scala │ │ │ ├── DynamicContainer.scala │ │ │ ├── DynamicContainers.scala │ │ │ ├── DynamicFast.scala │ │ │ ├── DynamicPackage.scala │ │ │ ├── DynamicSlow.scala │ │ │ ├── EmailCardStyle.scala │ │ │ ├── EmailLayout.scala │ │ │ ├── FixedContainers.scala │ │ │ ├── FlexibleContainer.scala │ │ │ ├── FlexibleGeneral.scala │ │ │ ├── FlexibleSpecial.scala │ │ │ ├── MobileShowMore.scala │ │ │ ├── Pascal Scala Playground.sc │ │ │ ├── ScrollableContainers.scala │ │ │ ├── Slice.scala │ │ │ ├── Story.scala │ │ │ └── TagContainers.scala │ ├── metrics │ │ └── FrontendMetrics.scala │ ├── model │ │ ├── AdSuffixHandlingForFronts.scala │ │ ├── ApplicationContext.scala │ │ ├── ApplicationIdentity.scala │ │ ├── ArticleBlocks.scala │ │ ├── ArticlePage.scala │ │ ├── Asset.scala │ │ ├── AtomPage.scala │ │ ├── AudioPlayer.scala │ │ ├── Badges.scala │ │ ├── Cached.scala │ │ ├── CardStyle.scala │ │ ├── CardStylePicker.scala │ │ ├── CollectionConfig.scala │ │ ├── ContentDesignType.scala │ │ ├── Cors.scala │ │ ├── CrosswordData.scala │ │ ├── CrosswordGridModel.scala │ │ ├── DatesAndTimes.scala │ │ ├── DisplayHints.scala │ │ ├── DotcomContentType.scala │ │ ├── Element.scala │ │ ├── EmailAddons.scala │ │ ├── EmailSubscription.scala │ │ ├── Encoding.scala │ │ ├── EnrichedContent.scala │ │ ├── FaciaDisplayElement.scala │ │ ├── FaciaSignpostingOverrides.scala │ │ ├── FootballNavigation.scala │ │ ├── Formats.scala │ │ ├── Image.scala │ │ ├── ImageContentPage.scala │ │ ├── ImageElement.scala │ │ ├── ImageOverride.scala │ │ ├── IndexNav.scala │ │ ├── InteractivePage.scala │ │ ├── IpsosTags.scala │ │ ├── ItemKicker.scala │ │ ├── KickerProperties.scala │ │ ├── Link.scala │ │ ├── LiveBlogCurrentPage.scala │ │ ├── LiveBlogPage.scala │ │ ├── MediaPage.scala │ │ ├── MediaType.scala │ │ ├── MostPopular.scala │ │ ├── PageWithStoryPackage.scala │ │ ├── Pillar.scala │ │ ├── PressedCard.scala │ │ ├── PressedCardHeader.scala │ │ ├── PressedDiscussionSettings.scala │ │ ├── PressedDisplaySettings.scala │ │ ├── PressedElements.scala │ │ ├── PressedFields.scala │ │ ├── PressedMetadata.scala │ │ ├── PressedPage.scala │ │ ├── PressedProperties.scala │ │ ├── PressedStory.scala │ │ ├── PressedTrail.scala │ │ ├── R2PressMessage.scala │ │ ├── RelatedContent.scala │ │ ├── RugbyContent.scala │ │ ├── Section.scala │ │ ├── Series.scala │ │ ├── ShareLinks.scala │ │ ├── SupportedUrl.scala │ │ ├── Tag.scala │ │ ├── TagIndexPage.scala │ │ ├── TinyResponse.scala │ │ ├── VideoPlayer.scala │ │ ├── content.scala │ │ ├── content │ │ │ ├── Atom.scala │ │ │ ├── Atoms.scala │ │ │ └── MediaWrapper.scala │ │ ├── diagnostics │ │ │ └── CloudWatch.scala │ │ ├── dotcomrendering │ │ │ ├── Contributor.scala │ │ │ ├── DotcomBlocksRenderingDataModel.scala │ │ │ ├── DotcomFrontsRenderingDataModel.scala │ │ │ ├── DotcomNewslettersPageRenderingDataModel.scala │ │ │ ├── DotcomRenderingDataModel.scala │ │ │ ├── DotcomRenderingSupportTypes.scala │ │ │ ├── DotcomRenderingUtils.scala │ │ │ ├── DotcomTagPagesRenderingDataModel.scala │ │ │ ├── ElementsEnhancer.scala │ │ │ ├── InteractiveSwitchOver.scala │ │ │ ├── LinkedData.scala │ │ │ ├── MostPopular.scala │ │ │ ├── PageElement-Identifiers.md │ │ │ ├── PageType.scala │ │ │ ├── Trail.scala │ │ │ └── pageElements │ │ │ │ ├── CalloutExtraction.scala │ │ │ │ ├── CartoonExtraction.scala │ │ │ │ ├── CommentCleaner.scala │ │ │ │ ├── EditionsCrosswordRenderingDataModel.scala │ │ │ │ ├── PageElement.scala │ │ │ │ ├── Role.scala │ │ │ │ └── TextCleaner.scala │ │ ├── facia.scala │ │ ├── facia │ │ │ └── PressedCollection.scala │ │ ├── liveblog │ │ │ ├── BlockElement.scala │ │ │ └── BodyBlock.scala │ │ ├── meta.scala │ │ ├── meta │ │ │ └── LinkedData.scala │ │ ├── package.scala │ │ ├── pressedContent.scala │ │ └── trails.scala │ ├── navigation │ │ ├── AuthenticationComponentEvent.scala │ │ ├── DCRNavigation.scala │ │ ├── FooterLinks.scala │ │ ├── GuardianFoundationHelper.scala │ │ ├── NavLinks.scala │ │ ├── Navigation.scala │ │ ├── ReaderRevenueSite.scala │ │ └── helpers │ │ │ └── UrlHelpers.scala │ ├── pagepresser │ │ ├── HtmlCleaner.scala │ │ ├── InteractiveHtmlCleaner.scala │ │ ├── InteractiveImmersiveHtmlCleaner.scala │ │ ├── NextGenInteractiveHtmlCleaner.scala │ │ ├── PollsHtmlCleaner.scala │ │ └── SimpleHtmlCleaner.scala │ ├── quiz │ │ ├── form │ │ │ └── package.scala │ │ └── package.scala │ ├── renderers │ │ └── DotcomRenderingService.scala │ ├── services │ │ ├── CAPILookup.scala │ │ ├── ConciergeRepository.scala │ │ ├── ConfigAgentTrait.scala │ │ ├── DynamoDB.scala │ │ ├── FaciaContentConvert.scala │ │ ├── IndexPage.scala │ │ ├── IndexPageGrouping.scala │ │ ├── NewsletterService.scala │ │ ├── Notification.scala │ │ ├── OphanApi.scala │ │ ├── ParameterStore.scala │ │ ├── RedirectService.scala │ │ ├── S3.scala │ │ ├── SkimLinksCache.scala │ │ ├── TagIndexesS3.scala │ │ ├── dotcomrendering │ │ │ ├── DotcomFrontsLogger.scala │ │ │ ├── InteractiveLibrarian.scala │ │ │ ├── PressedContent.scala │ │ │ └── RenderType.scala │ │ ├── fronts │ │ │ ├── FrontJsonFapi.scala │ │ │ └── FrontsApi.scala │ │ ├── indexAutoRefreshes.scala │ │ ├── newsletters │ │ │ ├── GoogleRecaptchaValidationApi.scala │ │ │ ├── NewsletterApi.scala │ │ │ ├── NewsletterSignupAgent.scala │ │ │ ├── NewsletterSignupLifecycle.scala │ │ │ └── model │ │ │ │ ├── EmailEmbed.scala │ │ │ │ ├── NewsletterIllustration.scala │ │ │ │ └── NewsletterResponse.scala │ │ ├── ophan │ │ │ └── SurgingContentAgent.scala │ │ └── repositories.scala │ ├── staticpages │ │ └── StaticPages.scala │ ├── templates │ │ ├── inlineJS │ │ │ ├── blocking │ │ │ │ ├── applyRenderConditions.scala.js │ │ │ │ ├── config.scala.js │ │ │ │ ├── enableStylesheets.scala.js │ │ │ │ ├── loadApp.scala.js │ │ │ │ ├── polyfills │ │ │ │ │ ├── details.scala.js │ │ │ │ │ ├── raf.scala.js │ │ │ │ │ └── setTimeout.scala.js │ │ │ │ └── shouldEnhance.scala.js │ │ │ └── nonBlocking │ │ │ │ ├── emailIframeTracking.scala.js │ │ │ │ ├── getUserData.scala.js │ │ │ │ ├── interactiveFonts.scala.js │ │ │ │ ├── interactiveResize.scala.js │ │ │ │ ├── ophanConfig.scala.js │ │ │ │ ├── showUserName.scala.js │ │ │ │ ├── signUpIframeCaptcha.scala.js │ │ │ │ └── signUpIframeWithoutCaptcha.scala.js │ │ └── javaScriptConfig.scala.js │ ├── utils │ │ ├── AWSv2.scala │ │ ├── DotcomponentsLogger.scala │ │ ├── RemoteAddress.scala │ │ └── ShortUrls.scala │ └── views │ │ ├── commercialExpired.scala.html │ │ ├── emailEmbed.scala.html │ │ ├── emailFragment.scala.html │ │ ├── emailFragmentFooter.scala.html │ │ ├── emailFragmentThrasher.scala.html │ │ ├── emailSubscriptionNonsuccessResult.scala.html │ │ ├── emailSubscriptionResultFooter.scala.html │ │ ├── emailSubscriptionSuccessResult.scala.html │ │ ├── fragments │ │ ├── affiliateLinksDisclaimer.scala.html │ │ ├── analytics │ │ │ └── base.scala.html │ │ ├── atoms │ │ │ ├── atom.scala.html │ │ │ ├── chart.scala.html │ │ │ ├── genericMedia.scala.html │ │ │ ├── interactive.scala.html │ │ │ ├── media.scala.html │ │ │ ├── mediaAtomCaption.scala.html │ │ │ ├── posterImage.scala.html │ │ │ ├── quiz.scala.html │ │ │ ├── snippet.scala.html │ │ │ ├── snippets │ │ │ │ ├── guide.scala.html │ │ │ │ ├── profile.scala.html │ │ │ │ ├── qanda.scala.html │ │ │ │ └── timeline.scala.html │ │ │ ├── structureddata │ │ │ │ ├── contributor.scala.html │ │ │ │ ├── filmReview.scala.html │ │ │ │ ├── gameReview.scala.html │ │ │ │ ├── person.scala.html │ │ │ │ └── restaurant │ │ │ │ │ ├── address.scala.html │ │ │ │ │ ├── geo.scala.html │ │ │ │ │ └── restaurantReview.scala.html │ │ │ └── youtube.scala.html │ │ ├── audio │ │ │ └── containers │ │ │ │ └── flagshipContainer.scala.html │ │ ├── collections │ │ │ └── popular.scala.html │ │ ├── commentBox.scala.html │ │ ├── commercial │ │ │ ├── adSlot.scala.html │ │ │ ├── badge.scala.html │ │ │ ├── cardLogo.scala.html │ │ │ ├── cards │ │ │ │ ├── itemCard.scala.html │ │ │ │ ├── itemLargeCard.scala.html │ │ │ │ └── itemSmallCard.scala.html │ │ │ ├── commercialComponent.scala.html │ │ │ ├── commercialComponentHigh.scala.html │ │ │ ├── containerLogo.scala.html │ │ │ ├── containerWrapper.scala.html │ │ │ ├── containers │ │ │ │ ├── fixedLargeSlowXIV.scala.html │ │ │ │ ├── fixedMediumFastXI.scala.html │ │ │ │ ├── fixedMediumFastXII.scala.html │ │ │ │ ├── fixedMediumSlowVI.scala.html │ │ │ │ ├── fixedMediumSlowVII.scala.html │ │ │ │ ├── fixedSmallFastVIII.scala.html │ │ │ │ ├── fixedSmallSlowI.scala.html │ │ │ │ ├── fixedSmallSlowIII.scala.html │ │ │ │ ├── fixedSmallSlowIV.scala.html │ │ │ │ ├── fixedSmallSlowVHalf.scala.html │ │ │ │ ├── fixedSmallSlowVThird.scala.html │ │ │ │ └── paidContainer.scala.html │ │ │ ├── logo.scala.html │ │ │ ├── pageLogo.scala.html │ │ │ ├── pageSkin.scala.html │ │ │ ├── paidForMeta.scala.html │ │ │ ├── standardAd.scala.html │ │ │ ├── survey.scala.html │ │ │ └── topBanner.scala.html │ │ ├── containers │ │ │ ├── facia_cards │ │ │ │ ├── auTerritorySelector.scala.html │ │ │ │ ├── audioFlagshipContainer.scala.html │ │ │ │ ├── audioFlagshipSlice.scala.html │ │ │ │ ├── container.scala.html │ │ │ │ ├── containerHeader.scala.html │ │ │ │ ├── containerMetaData.scala.html │ │ │ │ ├── containerScaffold.scala.html │ │ │ │ ├── cpScottHeader.scala.html │ │ │ │ ├── date.scala.html │ │ │ │ ├── dateHeadline.scala.html │ │ │ │ ├── descriptionHeadline.scala.html │ │ │ │ ├── latestUpdate.scala.html │ │ │ │ ├── mostPopularContainer.scala.html │ │ │ │ ├── navListContainer.scala.html │ │ │ │ ├── navMediaListContainer.scala.html │ │ │ │ ├── showMore.scala.html │ │ │ │ ├── showMoreButton.scala.html │ │ │ │ ├── slice.scala.html │ │ │ │ ├── standardContainer.scala.html │ │ │ │ └── standardHeaderMeta.scala.html │ │ │ └── index.scala.html │ │ ├── contentAgeNotice.scala.html │ │ ├── contentFooter.scala.html │ │ ├── contentMeta.scala.html │ │ ├── discussionFooter.scala.html │ │ ├── dropdown.scala.html │ │ ├── email │ │ │ ├── brazePlaceholder.scala.html │ │ │ ├── containerBranding.scala.html │ │ │ ├── containerTitle.scala.html │ │ │ ├── faciaCard.scala.html │ │ │ ├── footer.scala.html │ │ │ ├── fullRow.scala.html │ │ │ ├── row.scala.html │ │ │ └── signup │ │ │ │ ├── emailFooterLink.scala.html │ │ │ │ ├── footer │ │ │ │ ├── emailSignUpFooter.scala.html │ │ │ │ └── subscriptionResultFooter.scala.html │ │ │ │ ├── privacyNoticeContent.scala.html │ │ │ │ ├── recaptchaContainer.scala.html │ │ │ │ ├── recaptchaTerms.scala.html │ │ │ │ ├── result │ │ │ │ ├── emailNonsuccess.scala.html │ │ │ │ └── emailSuccess.scala.html │ │ │ │ └── subscription │ │ │ │ ├── emailSignUp.scala.html │ │ │ │ └── thrasherEmailSignUp.scala.html │ │ ├── fontFaces.scala.html │ │ ├── footer.scala.html │ │ ├── guBand.scala.html │ │ ├── head.scala.html │ │ ├── headDefault.scala.html │ │ ├── headTonal.scala.html │ │ ├── header.scala.html │ │ ├── headerTopNav.scala.html │ │ ├── image.scala.html │ │ ├── imageFigure.scala.html │ │ ├── immersiveGalleryMainMedia.scala.html │ │ ├── immersiveGarnettMainMedia.scala.html │ │ ├── immersiveMainMedia.scala.html │ │ ├── immersiveVideo.scala.html │ │ ├── inlineJSBlocking.scala.html │ │ ├── inlineJSNonBlocking.scala.html │ │ ├── inlineSvg.scala.html │ │ ├── items │ │ │ ├── elements │ │ │ │ ├── facia_cards │ │ │ │ │ ├── captionedImage.scala.html │ │ │ │ │ ├── image.scala.html │ │ │ │ │ ├── itemHeader.scala.html │ │ │ │ │ ├── itemImage.scala.html │ │ │ │ │ ├── kicker.scala.html │ │ │ │ │ ├── sublink.scala.html │ │ │ │ │ ├── sublinks.scala.html │ │ │ │ │ └── title.scala.html │ │ │ │ └── starRating.scala.html │ │ │ └── facia_cards │ │ │ │ ├── audioFlagshipCard.scala.html │ │ │ │ ├── contentCard.scala.html │ │ │ │ ├── dynamoContentCard.scala.html │ │ │ │ ├── item.scala.html │ │ │ │ ├── meta.scala.html │ │ │ │ ├── paidContentCard.scala.html │ │ │ │ ├── simpleContentCard.scala.html │ │ │ │ └── sliceSlot.scala.html │ │ ├── keywordList.scala.html │ │ ├── langAttributes.scala.html │ │ ├── linkText.scala.html │ │ ├── media │ │ │ ├── audio.scala.html │ │ │ └── video.scala.html │ │ ├── message.scala.html │ │ ├── meta │ │ │ ├── byline.scala.html │ │ │ ├── bylineImage.scala.html │ │ │ ├── bylineLiveBlockImage.scala.html │ │ │ ├── contactAuthor.scala.html │ │ │ ├── dateline.scala.html │ │ │ └── metaInline.scala.html │ │ ├── metaData.scala.html │ │ ├── mostPopularPlaceholder.scala.html │ │ ├── nav │ │ │ ├── editionPicker.scala.html │ │ │ ├── editionPickerDropdown.scala.html │ │ │ ├── headerMenu.scala.html │ │ │ ├── subNav.scala.html │ │ │ ├── treats.scala.html │ │ │ └── userAccountDropdown.scala.html │ │ ├── onwardPlaceholder.scala.html │ │ ├── page │ │ │ ├── body │ │ │ │ ├── bannerAndHeaderDiv.scala.html │ │ │ │ ├── bodyTag.scala.html │ │ │ │ ├── mainContent.scala.html │ │ │ │ ├── skipToMainContent.scala.html │ │ │ │ └── twentyFourSevenTraining.scala.html │ │ │ ├── devTakeShot.scala.html │ │ │ ├── email │ │ │ │ ├── body.scala.html │ │ │ │ ├── head.scala.html │ │ │ │ └── htmlTag.scala.html │ │ │ ├── head │ │ │ │ ├── checkModuleSupport.scala.html │ │ │ │ ├── fixIEReferenceErrors.scala.html │ │ │ │ ├── headTag.scala.html │ │ │ │ ├── stylesheets │ │ │ │ │ ├── criticalStyleInline.scala.html │ │ │ │ │ ├── criticalStyleLink.scala.html │ │ │ │ │ └── styles.scala.html │ │ │ │ ├── titleTag.scala.html │ │ │ │ └── weAreHiring.scala.html │ │ │ └── htmlTag.scala.html │ │ ├── pagination.scala.html │ │ ├── photoEssay.scala.html │ │ ├── referredContentPlaceholder.scala.html │ │ ├── relativeDate.scala.html │ │ ├── richLinkDefault.scala.html │ │ ├── share │ │ │ └── blockLevelSharing.scala.html │ │ ├── social.scala.html │ │ ├── standfirst.scala.html │ │ ├── storyPackagePlaceholder.scala.html │ │ ├── stylesheetLink.scala.html │ │ ├── stylesheets.scala.html │ │ ├── submeta.scala.html │ │ ├── syndication.scala.html │ │ ├── trailblocks │ │ │ ├── headline.scala.html │ │ │ └── link.scala.html │ │ ├── trails │ │ │ ├── headline.scala.html │ │ │ └── link.scala.html │ │ └── trendingTopics.scala.html │ │ ├── gone.scala.html │ │ ├── linkToEmailSignupPage.scala.html │ │ ├── main.scala.html │ │ ├── mainLegacy.scala.html │ │ ├── stacked.scala.html │ │ └── support │ │ ├── CamelCase.scala │ │ ├── Commercial.scala │ │ ├── ContentFooterContainersLayout.scala │ │ ├── ContentLayout.scala │ │ ├── ContentOldAgeDescriber.scala │ │ ├── CutOut.scala │ │ ├── DropdownMenus.scala │ │ ├── EmailHelpers.scala │ │ ├── FaciaToMicroFormat2Helpers.scala │ │ ├── GetClasses.scala │ │ ├── HtmlCleaner.scala │ │ ├── ImageProfile.scala │ │ ├── ImageUrlSigner.scala │ │ ├── ImmersiveMainCleaner.scala │ │ ├── JavaScriptPage.scala │ │ ├── KickerHtml.scala │ │ ├── MaybeLink.scala.html │ │ ├── MinuteCleaner.scala │ │ ├── MostPopular.scala │ │ ├── MostPopularTags.scala │ │ ├── ShowMoreColumns.scala │ │ ├── Title.scala │ │ ├── TrailCssClasses.scala │ │ ├── Treats.scala │ │ ├── URLEncode.scala │ │ ├── WitnessCleaner.scala │ │ ├── cleaner │ │ ├── AttributeCleaner.scala │ │ ├── CmpParamCleaner.scala │ │ ├── SoundcloudHelper.scala │ │ └── VideoEmbedCleaner.scala │ │ └── package.scala ├── conf │ ├── application.conf │ ├── env │ │ └── DEVINFRA.properties │ └── test.conf └── test │ ├── CommonTestSuite.scala │ ├── ab │ └── ABTestsTest.scala │ ├── agents │ └── DeeplyReadAgentTest.scala │ ├── assets │ ├── testassets.map │ └── testclass-map.json │ ├── common │ ├── Assets │ │ └── AssetsTest.scala │ ├── BoxTest.scala │ ├── CommonPackageTest.scala │ ├── CryptoTest.scala │ ├── EditionTest.scala │ ├── ExperimentsTest.scala │ ├── ExternalLinksTest.scala │ ├── HtmlCleanerTest.scala │ ├── InlineStylesTest.scala │ ├── IsoDateTest.scala │ ├── JsonComponentTest.scala │ ├── LinkToTest.scala │ ├── MapsTest.scala │ ├── ModelOrResultTest.scala │ ├── PaginationTest.scala │ ├── RelativePathEscaperTest.scala │ ├── RequestLoggerTest.scala │ ├── Retry.scala │ ├── SeqsTest.scala │ ├── StringsTest.scala │ ├── StripHtmlTagsAndUnescapeEntitiesTest.scala │ ├── TagLinkerTest.scala │ ├── TrailsToRssTest.scala │ ├── TrailsToShowcaseTest.scala │ ├── WitnessCleanerTest.scala │ ├── commercial │ │ ├── ContainerModelTest.scala │ │ └── hosted │ │ │ └── ColourTest.scala │ ├── dfp │ │ ├── LiveBlogTopSponsorshipTest.scala │ │ ├── PageSkinTest.scala │ │ └── PageskinAdAgentTest.scala │ └── facia │ │ ├── FixtureBuilder.scala │ │ ├── PressedCollectionBuilder.scala │ │ └── PressedCollectionTest.scala │ ├── concurrent │ └── BlockingOperationsTest.scala │ ├── conf │ ├── CachedHealthCheckTest.scala │ ├── audio │ │ └── FlagshipFrontContainerSpec.scala │ └── switches │ │ └── SwitchesTest.scala │ ├── helpers │ └── FaciaTestData.scala │ ├── html │ ├── BrazeEmailFormatterTest.scala │ └── HtmlTextExtractorTest.scala │ ├── implicits │ └── FakeRequests.scala │ ├── layout │ ├── CollectionEmailTest.scala │ ├── DayHeadlineTest.scala │ ├── FrontTest.scala │ ├── PaidCardTest.scala │ ├── SliceWithCardsTest.scala │ ├── TagHistogramTest.scala │ ├── WidthsByBreakpointTest.scala │ ├── package.scala │ └── slices │ │ ├── ArbitraryStories.scala │ │ ├── DynamicContainerTest.scala │ │ ├── DynamicFastTest.scala │ │ ├── DynamicSlowTest.scala │ │ └── StoryTest.scala │ ├── metadata │ └── MetaDataMatcher.scala │ ├── metrics │ └── DurationMetricTest.scala │ ├── model │ ├── AdSuffixHandlingForFrontsTest.scala │ ├── CachedTest.scala │ ├── CardStylePickerTest.scala │ ├── ContentTest.scala │ ├── CorsTest.scala │ ├── DateTimeTest.scala │ ├── ElementsTest.scala │ ├── MetaDataTest.scala │ ├── SeoDataTest.scala │ ├── TagIndexPageTest.scala │ ├── UrlsTest.scala │ └── dotcomrendering │ │ ├── DotcomRenderingUtilsTest.scala │ │ ├── ElementEnhancerTest.scala │ │ ├── LinkedDataTest.scala │ │ └── pageElements │ │ ├── CalloutExtractionTest.scala │ │ ├── CartoonExtractionTest.scala │ │ ├── PageElementTest.scala │ │ └── TextCleanerTest.scala │ ├── navigation │ ├── AuthenticationComponentEventTest.scala │ ├── NavigationDataTest.scala │ ├── NavigationTest.scala │ └── helpers │ │ └── UrlHelpersTest.scala │ ├── package.scala │ ├── recorder │ ├── ContentApiHttpRecorder.scala │ └── HttpRecorder.scala │ ├── renderers │ └── DotcomRenderingServiceTest.scala │ ├── resources │ ├── c.json │ ├── liveblog-body.html │ ├── liveblog-standfirst.html │ ├── logback.xml │ ├── reference-navigation.json │ └── rome.properties │ ├── services │ ├── ConfigAgentTest.scala │ ├── IndexPageTest.scala │ └── ShouldServeFrontTest.scala │ ├── test-env │ ├── DEV.properties │ ├── DEVINFRA.properties │ └── GUDEV.properties │ └── views │ ├── fragments │ └── atoms │ │ └── YoutubeSpec.scala │ └── support │ ├── CamelCaseTest.scala │ ├── CommercialTest.scala │ ├── ContentFooterContainersLayoutTest.scala │ ├── GUDateTimeFormatNewTest.scala │ ├── ImgSrcTest.scala │ ├── TemplatesTest.scala │ ├── TitleTest.scala │ ├── TrackingCodeBuilderTest.scala │ └── cleaner │ ├── AffiliateLinksCleanerTest.scala │ ├── AtomCleanerTest.scala │ ├── CmpParamCleanerTest.scala │ ├── CommercialMPUForFrontsTest.scala │ ├── StringCleaner.scala │ ├── StyleCleanerTest.scala │ ├── VideoEmbedCleanerTest.scala │ └── fixtures │ └── CommercialMPUForFronts.html ├── data ├── database │ ├── 001a0c4f565e77f19af147b2a6d66f6429fbf9bcc3bc6d589771e81e28f3c09f │ ├── 001b3d30bbe4676ceebfa2c6c10ccfe8c5254bd1cfae3519f56a64db83a67cf7 │ ├── 0027afa5861a3f8ce48c9e2b41c02bc85168dcaf2b23fcbe9190d093f67f8818 │ ├── 003a15e0aaaa628a82231427d71729d01d1b9fcc02891cdcffdc2b27e1cd1dfa │ ├── 007b4d21fdd5dd9f72d7e2e26d0c3dc0356c251bf04cae5dadc59722a14f221d │ ├── 00aeddd66ec535d4591853243613b00d38ec8d4820ee1288f6bf43251cda66a7 │ ├── 00e0f14d4f7288696ab2fd85450ef69549be16ea9a3dfd1989c47c45caa98c99 │ ├── 0109b14d1935fce839a424a7205cce84537d370f896b2f32889f7ef697af0988 │ ├── 010c9ee470ffe16cc3b04a2a049f68eb7949da3d3330687f41f3a9323207ba40 │ ├── 0111fbce11af39a0ed472edb3ba0db11a1fa27b9bf041991e430f09878b17031 │ ├── 0117b99b44fc8a1f89a3f30d5430dfd174c338d638ee2a7627d9b876a052265b │ ├── 012acfeb7cbd67e40f276b57d90d034c50181e4b05fc97b13b6ceb5b45bd2943 │ ├── 01329eace31dec442658729fd8764de0a2039b398565e2160ebca4a8852b741b │ ├── 01346c3cd65c82e2a8e146f7408a5414791a0120e407b6b945cc912726659b88 │ ├── 014bde8a447bfeb8243be90a0b04a8a705fa143f2b4936e99a354254b795503d │ ├── 014c60fd6f5bccef0980f53de9079296522d06ce401407a2500836cd43cdd987 │ ├── 0169371beab40562566c85c8dad87ffbb7f8a0cda062e51c1f458b782bf68bea │ ├── 0180ed8aca38f6ba95dbaac122602c70325fefed6ba786cbe75249341e610161 │ ├── 01bd1ce819fe441826f299c1742c3aa8e27adbb844796a89ab389dcca324c6ee │ ├── 01faa4032b06ad09a948bcac0ac98b8decabfbf2591b755e9f5b6bcb646b8460 │ ├── 02011a3787a7da59dcf04f722c018df0cd65fc12b17c77dc011e81f4f7f4477b │ ├── 023570b211b2e9346d5924fc19541b01aec4a93507f2f4ee377409bf14a0f01e │ ├── 02588ecdaf480e465934c96ff99fe480bf187f1eb9805891892f4c8a1a788b54 │ ├── 02a25e134c29dbfa29f80085d891cc8595b611fcfc73193e6d3c7cd52fe15ca5 │ ├── 02b71474786404f3b663c87b29946129ddc1dd003902076df6bd8b9b7ec2f086 │ ├── 02b779fb2d6e204561beba483c8332a47b58bb265d1bbe0da16eea90885fc1d6 │ ├── 02b8583ea7b26c444dfc677a5dc4a1026185dea4af39596fb79585e3ddef2230 │ ├── 02c5a4e6725ff7fa7d6d6f10508ef170b6f68f7019a322c987ee69d751dbe25b │ ├── 02d3de8f25cb4a7c7b17ac64e4c9bd0288c1f3e1bdcb30986553465e67b28616 │ ├── 02d61c212ea63357d0d0b55b95a53b71c60d8dc4b30161cece8dc3012021d325 │ ├── 0387454ae5ffd6822a74dc8a5d35afa6dbff9d5ba49ccd6cc3b2690fbf64971a │ ├── 0393e964d273c9539627788eefe9f7d10cb7baa241081f28a64e600e0c6a182c │ ├── 03c46cb04e5c5600ef91b3d629527cbc586693a0af70b7050437f037adbff2a8 │ ├── 04031875b726a9dd3435259b70681dcbebf39ab7e44198a8f6a2e1c17a944202 │ ├── 04034ef549acba70e466af07cebf1d3b3135890816572cefa9dd56805ec437c4 │ ├── 0410434864cdf746927cce885f76055f2905ed72f14a966ee01380fc4f0b48be │ ├── 044850cfec0f4ebac40d7a85959400367c66c72e8b69f5f86c5cff8f1cf23f80 │ ├── 04dcbd543250eb0ac89a175352b348c5f3fccac088db76ee1b47ec108c28a8ef │ ├── 04f3b0bf26c9dd934d0736c63bb1fa30e318812bda43ddd91f9175131a20c2f1 │ ├── 051380aad15597c38bab4c7f91518cb95b65895410fe754db5ed404c98301664 │ ├── 05218729491a66df6254c229bf71e76d43c08afae440fb2523a6ce7d50bf9712 │ ├── 0535eabf6e2d58eccac37b055cdb0c62a95f66bc5b684de88c096acc03c4da94 │ ├── 055aa80557c4e651dd9ed7d716f8458dd56421b2dac49b0d6696009ff3e475d3 │ ├── 0586c16c1941ef2dba00e0b6cff41100b7d9c0ca19c6fb93398aa385b243d56f │ ├── 05bd2453c44d02c4c4a5d8bb0f4e1cc65522bf9f25148433dc9e1eb553c9f397 │ ├── 05be4339295c18f04a4bd0e73280466eec2534d47d48a790f6bcc589d1be3cb9 │ ├── 05c5c0bad082081e9c2fa838149bceb585e771d103992cf73ad662dc8211fae3 │ ├── 05c85b75721ea284889d086f1a24e0008532797e76c15564395df0d23cb931b0 │ ├── 05f0da9c5b957b15c0817eef45b64effd5ca621cffd3a9335e9e2303cd22bd9b │ ├── 061e6be0fffd6e6de397f8b088e8a7fd4dd75ac388e3990345930a4f769a9380 │ ├── 0627f522918596fffda4d064b77709c9c00b4a7dc5010851e7906c639a37cf87 │ ├── 0668c7277544c6bb3ec5c4e6d1bb38c304cc7659fa4253352ff10a720f2d0778 │ ├── 067d8e84e860b710ebac79bb1c2def20ad9e06d80340d01357f1aec112c28e68 │ ├── 06b0b1c84852995fbd717490cd02a2ac36e96fc2e025799a9f4e28087e40f0ab │ ├── 06ef0381d05193c55f797def214eb28f2e999c4f465d534cfb17118103608522 │ ├── 06fb1c0eb7cb0c4cafec6804d2b53d5ca838b85c98c7598e1b7391f6508a79e5 │ ├── 073d58ee7e4c1b2998b5c942e24e42bf987cb5f0856a92fde82cc0e92db83ee1 │ ├── 079889d66e91aa30c3ae234ec454c4aa3b617b238e3b74bd2bee6bca8e3b25c7 │ ├── 08350bed341c421edd5cea41ad49911cdfa7aa801758b50b65b1a4980f50466f │ ├── 0893be9ed70a0b295452ff57af3a8a7b92f2134893bf92a394e6052d012803aa │ ├── 08961426ad494f71584bf48bf445a4c548e0a662cc061b125aecde61c782ed61 │ ├── 08f0460b8bc9fb7ec144c9c837ef85028d98f9c45b83adf49352f42a56797c56 │ ├── 08f10e8f02b310bc639a3d527f4e11730af2e1ba074c5672ef7195d6fd089732 │ ├── 092ce6304e6a14d6ee989fd8c395713dfbed4736bf1b992545e2795454cf0b46 │ ├── 09322517e7c981f9d664a705d16f43074f4bae05debf7c5b4410a2af42594c99 │ ├── 096776a4b724036860cefd712ef7101bd7ae60ac203265ed3204b823969aac30 │ ├── 09bba3be58c408faf385487ca77417e18f19d9b60c3f43493e2231a5c2d6d25c │ ├── 09e1a10903e85359193d6ede7ab32f1999f3813601a24a46c6ad1c17f11703e1 │ ├── 09f8107d3f959ad7e0a17dea2762246b04691094f3a98dbd62c64f842dd34891 │ ├── 0a1b751cf5393d8ab66c39a24708dee93abb242d3ad3ce181568e61f74d6c45d │ ├── 0a28fe7d0930f7be1efdfc6e07a9b7d5c1d6fe43873c4f98e0e7b93ce6b3cf39 │ ├── 0a3f048657ad13834f8359b6065c1cca8ad70ddd24e1deaeab06fcb97dfd0425 │ ├── 0a46c8e322203cef5ba9e25754a77fc14fbe69e55709f06b65d1aec1fe31b25b │ ├── 0a4b26d36d3e35145585edcd60282c9ef0dacc51dfc1de9328df70f7c1084b0a │ ├── 0a567c70aaf93f611581d041ebdafbf602ae27f631add1c86e87474d4d3a9849 │ ├── 0aa6c324c1b7a29a38f026cf4a3c283560134c62cd9bc8e8fe1826507f219bc3 │ ├── 0aefd30904b59aa1661f55458299eeb1fea3f4c691334a9e47cd4a5f5e24679d │ ├── 0b05b2a0e7e00a60aaa4571f11f63bac24f152dd2a4d6e9d01a43b79eb865db5 │ ├── 0b520bb670da21c3471d756e4a0949d870bddc8dbf806ec4901bd74b82551f33 │ ├── 0b55b75dba5965e70320969bc3b165906c5049b5c18957771ac222191590579e │ ├── 0b78d2f492cd342ad7e7198c25d0df15cfd5b778d6629704b65870efccc845fa │ ├── 0bb32b53beea550ce8f93b777cfaf7387250bd3322e74a583983d6e31b5585e9 │ ├── 0bd9a53f0eb685cdfcb3bcd55f5ab47df1dbbcfd861fb6febc70c988a2a33616 │ ├── 0c60f59d776e71568efbb36b6e1a37fc71de1a0b3f4b40e2acab579ba327cef8 │ ├── 0c6c41709659de5f21e9f3a217783edeb5ffa421f6d182120b6bfea4079a9d52 │ ├── 0c784b07ae4022537cd3622bfb8224fddf7f0f13f62eb8501b7ea358e8fcf602 │ ├── 0cc7239b31445a0f90079488b033a1536291f43a9d3cd09e26ef1865501e252f │ ├── 0cde2d5530b28ca79e14bc9bca4a572bbc06fab64ed29310055aa5f32b14e65c │ ├── 0d11db409b7765a1034c9fbe4e2892944009571855f7579b82dbf0a293e70cab │ ├── 0d14cdfdab77c76ffb7fa36a23c12f59180c0993ff9fd921e232aed748fa44ee │ ├── 0d282f3d722a25555001e3ae9db60c1c04928574377dd0c3b5e02532bd9efb20 │ ├── 0d546f04b802674fe632168e34311b147a5bc093864ae2d0ec063ab091d96269 │ ├── 0d78876327e89559f381238a70e79d7bec81626e599ad309a3135fe2e7f1b55c │ ├── 0da9be26dea06be3560c3c6ba12d1c2df2be192d48d2031ff12c41fcb4e90400 │ ├── 0e58b71892a79e8ba669028097ef6044697b755f9314d0dc1775b5e20475dfbd │ ├── 0e7675966890ce6f8e0cf1844b3633a926d6da18f7ea632459b5d29031bb3c22 │ ├── 0e79d0f7dfcd237b6b81a2efd8c49a2d6f29cb67bf0d5b0d0459495cf6d333ae │ ├── 0eb9b7cd5824cf9e13180835e356e4e183da9a21a7178583efc480716363821d │ ├── 0ec8b4981694ca03c3f6a1f91d2a3d11a77974d60666561d78c430bc9d1fb01b │ ├── 0ed01a07b4631fe4b0019f02a2c4aec5da0428fd119649e95a21ccb73dd1e1b6 │ ├── 0ed42853c1fddf8505efa5934233ec29536189a08a5f52412fdb48b82343c078 │ ├── 0ef3848798a6b96ccc58e292ff1b2b1cdb1dfdf61e4c20cd2bb5eb03d7a9edbc │ ├── 0eff700f5c0a5650ab57ca01f1b41c97f55d5df5d62202b1119895cd2b3febfa │ ├── 0f0fa4c7eecbe1ea12feaf9493302f6246212b5facce8ada6e473c80dce9e97c │ ├── 0f3b63b28ca942396380b5bd73ca36f7cf0b185528d505c1fbc6093b2fab33eb │ ├── 0f6e5630503df430b4264dad4771e984806e862c64892a417c73c2d3ffa103af │ ├── 0f96eeded9dbfa2441b0b9f63b5e89ab038a390bd1a362d5369472551899f7c6 │ ├── 0fe640995bac023d65c14a4a7a914c597536c6608b42bcb0e2fb1044e9fd5454 │ ├── 1014846eabd825a97dc69672906c9ff3d90814be39246351b82942f8661f0b7d │ ├── 10211c51580543c357e80fc6bbd286cd392d0d20cf74e81b3b0334e2e45d02d2 │ ├── 10384fe88614106f8ef855ca8fe38dc227bd3b5e5907130504c6dfc3da6efa1c │ ├── 106a819870fa25a6eaada48667f40617857e37db52c836f6e921e89ada97fbd1 │ ├── 10744d83871e30522e789faabbef7a2ca6ac3dbb10655505588437948a26b542 │ ├── 1078e003804b8e262997ae0e4c7382cf0e92e5067bc65256351d328835a9c7b6 │ ├── 109d44c4e80ec55e2bf0015937e561cc85062ad2d954e61c66e7a864efec9e99 │ ├── 10d91f1fcaf4283136313604da607ac2a6dbf42665cb84a8bdf8bd9539ababa7 │ ├── 10fa916c772d186d7e2db676d84badf963a58aa73bffd54d573b163daf3d6fbd │ ├── 1100a2a357b7727c09aaab7053d08faedba6d80d0116964ea6a2328f95467277 │ ├── 11070780d8fde0c42f3533d7f17d4f7836801deb85cd360c35a30e0bcfca9810 │ ├── 115aeaa015e049c5a97f55337e21bd070eea47a72dadebf1a7c99edabab61964 │ ├── 11c14f079acd61d0800f4cdfb6a17ded35af3aa79cbd7ed2370810cb923a6c0b │ ├── 120b60ca845a216274a8e420f74e84323281bdcadbd790df08d7640c95bc2fd8 │ ├── 122874702b428605f724d281540472d5c0972bd1f2760a3a0d2ceaceca92b737 │ ├── 12406658d2f4671de055ca0389bb140be3e16fd10c1331290f457c9e922feb77 │ ├── 12885bf48b7f33394ba12c2d3665340957e43af2db7f68a3c8121d07a6aefa5d │ ├── 129f730941dedcb3e6be977a586829f63182d86e82601dceee9b17c1b52f2381 │ ├── 12b4c398ef18011bcd5c4ee21fba75d4f7054994977b79c0a0c452e915841d69 │ ├── 12e4cd803c0bcda3f96e805f4a431279bbb0d958ce0023d66d2797285162e01f │ ├── 12ef7f948889f47f58dc70e224e464eff579034673dc50d014bd071f9cd32224 │ ├── 12fa113be2fd870e25f8f78be6b45bd54d913cfc2be9b50c441df7b523064fbe │ ├── 13027251621dda763afcacf61ab758b58013072bbbdfd63b7753b1899a5a1538 │ ├── 13257d8ed5f551a56b87b31944a9c64e43b14caa17ca4ba59c89ec1bf667e80f │ ├── 13598d32bb37f10d54ecc11257106d67063e1dda868ca95dbbe2c234051a0a99 │ ├── 1365cc87ccf240273011ad401e740071e4eaa6fea0a09366e809b92c22c0e392 │ ├── 137af90fe6446f03392d7bc406fcc7a51ab5203d823864f077d40b2162895b58 │ ├── 13b6b6fbe9a20a2df773368e9c936f9a127b41c7088a3cb09c0c79a3e5e29a1e │ ├── 13cfeae9232fa1d73d9cf5e02dbbf7ae0ce0469bd59c716e445c3ffab3c549e4 │ ├── 13d14a4da4788a485ff3a031ce24c4c9cda73b50e16ab2968ed4980061b35f3f │ ├── 13d3d2233245fbdc3c28fdf1b6f1c4d485dac87ad5fcbf031cc9a3034e3bed32 │ ├── 140c1f2c166e074ddd704aafce454c3365b483e0c97d9c02b5d9a168eaed06b3 │ ├── 148f3495b1cac405b463a5d8736c061f2aec8d5bf7a8eeea8cbafbe68b136e29 │ ├── 1560219dfa42b5ef03186b75a05310c231a850ec430a42e45c7e75ef8e60933f │ ├── 15776ef6d54ea4e2d39d12e7a6a6d2439a61315ba396d57576f735cf3d43c9cb │ ├── 1578fa84abef7ed1d6b4e768503513f4b597d0c1df41a3441ea176e546a9977b │ ├── 1579df781c01259970e5db96b5736942756135106fbbca69251265553223a0ac │ ├── 158e19f55ab99d2e262e4f8156f9e812ffcdddc11115089df3a06eb649237d16 │ ├── 15b52d742a1fce0a891cb8988c027712f0e1ea9eb50c9b0a7f4493632f4d83d9 │ ├── 15ba8ede860459c461cb8a721bb554d14269d474e6263e51e5556b038886fd65 │ ├── 15e2bacb5461e0d3e66a767966a6d092d7b0349573433646c33d686264e7e836 │ ├── 15f5585f8ebb7ca3bda4e426a54537ad7fda1618811d29a6940ddfde71305d64 │ ├── 15f6cbce239846721f3f8f5c8069c47769ad29d731f556d726fafa007a519a95 │ ├── 162f7322c72cfadaa471aa4ec402ac9d46e0f5190c0120e220eecb8499b82fbc │ ├── 1672ce1c059ed81c0a623a1aeed6a633debfb317462ed484aec85085d4040aa1 │ ├── 16928fdee33bf08e28700b68cb9aee19d32e836b43d2625da89c1eaed7b6ff02 │ ├── 16acd574f9333a3dcac6d6675f37575224bcc69cfd88e89a18c0130a4c11fb74 │ ├── 16b53d1452b43127ac8a27b7e906adcc36c0bce1c1bd3f072b15ee2c77b9e5ba │ ├── 1704d93a18159317866a160f41a123f644bf0a6944bc238e002a0a04be41c1c4 │ ├── 172200df1706666faecc9efd31433ba467a8f3b19655760edbd6f6cb68b2c282 │ ├── 1756d09ff62b7784290b0116e30400203f5a1efb1bd77c5ed28734bca784f1f4 │ ├── 17e90950c9115fd5b4e7b705f429dd56b7298a1f5501b84124a1747ff9f32f80 │ ├── 18014f814d7fdf2325ee7c66816f54ec4a65a9c6531704493be1115186f93764 │ ├── 181c8b0250cbe9fdd409157b7231d7d77e2c56b18db19011f1f3663517306d71 │ ├── 186b8a2929ea70708cc78eb23291d43b0fc4e761dca194c4864d5d618a1ce441 │ ├── 1871c38026342d4ce38abdc9d1d7fba072a144ac55e04997979075ecb2aa4c10 │ ├── 189c69525946cc2aee37b32d5f881b2ce6ae917a4854f38776205440a89fce00 │ ├── 18a0dd2301a1466a3620e771ae811ebca2ac092e9dadbdb4685845e04d7f7a0c │ ├── 18be550eac9ff0dda4894d97bfa87363bc4a0a9e8ef230cf9e20e08cfb0659c1 │ ├── 18c6b753fca59b672885fce107c5a412719e6300db978e744bad691c629177cf │ ├── 18f1351cc1ae209acbcfca12bf4593ec93e13d34390857fcfbe22168c68cb899 │ ├── 18ff19a9a0d739cfaa6a743cf3f92e7498fd75c51013f09fffd7120414010a0c │ ├── 190850dae982382a97f8c92818e01db501e697c0b7a1fbf0419a12232cf394b9 │ ├── 191823aae20eba71fb47ca8b04c5e618e510e8ab1136ae70c53cd817f5632275 │ ├── 191af4bc5b48c6f6d34d6c459815a3f7f4bfe4f2e7f3c233e7228233b2beb2ab │ ├── 192836ef2a30936574fba553a7031c0bc8f037ee20dbcc30615516e62732a5aa │ ├── 192a4283d350c09f36b39b68f177c2356e148b4d4eb57fb13e12b85875c39444 │ ├── 1955454c6f7a50e4970b628bb189221bed2b30756a9f93ce3d95b917b0c4297a │ ├── 1975035ea53d55f41b7a06f2ad9ee3f092791694391775da1f6cfaa567be2aaa │ ├── 1981a87e8196e3d9d359fda7581d215e83e482f5b49e1648cfb9a96985d26a5b │ ├── 1984e45870794f482d569bfed30b0ee0c9c7d26451363b61d344109880b68100 │ ├── 1a045a75102adc5373d4ae94caf95b350c4941edcce3aad600611f8b8b835301 │ ├── 1a2d6154ab40614a5dd57a30ca86710700214f827f21cca891d1f38f84de1e34 │ ├── 1a6a3455c30bc6690da718a0b8b5340e2fca05a6e50641531891bf8ae88c1881 │ ├── 1a8894a387333beaeffb3d62e4da4ce08a6505a115eaa4678cfad2910dbcee2f │ ├── 1a8c24c69f6bd1b69596c3861a6f87454893ab113e71a54df056a350ca4f1c67 │ ├── 1a8d808a8a0acb054ab9e5d469bcf3a1370c1f5195db142fb94dfa041c4d6887 │ ├── 1ab38436ab8f983c7a98045e96910074f7ccfcc91e5d7a446efaacfe3920feb5 │ ├── 1b02f35eca560740712f85f7fefdda056de6835d13368dd170a00f05d46420a1 │ ├── 1b1e4609376b2b6ba9d31ea563b88bdfc55fb45d0f766b6bbd525399c70bec67 │ ├── 1b3c777fb5c3dac4b7d40ec9c469061fd4e21ebf1b78828f42702b486354e6b4 │ ├── 1b6183985dc2a183cbb5b3b1cf63303f39395864caa65b91b719b89318b74f1b │ ├── 1bab4aea3f8b7847a0688abe2cf9ba037e0b20a4d98103483dd2c8be1ee8a78d │ ├── 1bc75495e7c942c9ca4bc7b686d52a2223ff62071ab01c57117189352e603feb │ ├── 1befafc70a1e90db96767706e3385450cad660f8536998787541b4425313a74b │ ├── 1bf0ca5fca56e80561a64916e28535ecafb86fc1055d7aef961652f0fb547056 │ ├── 1bf0d7e4006a816764044bf082f10c74ee4e3ccc7579422f56ea8f33d1a6d4c9 │ ├── 1bf4a69c638e21e50a9a03ac3e100ecae5089c39aaede4c4270af9bb149c6a81 │ ├── 1c2e86cd52b49bf24e4cecf128385ad721240ce734a2e18c50e6bf6971aaca5c │ ├── 1c2ffcdb63d7c3cc87560cc4028bab7638aa7a3e0682df17b0b83daee706b581 │ ├── 1c7202cd51a15009bbc291f9f9d4bb110cd678ff220349c69ff206c516785f12 │ ├── 1c986307dc7933d0708eb4f2f3d562199f6bea350f120b1321efbf221d853b32 │ ├── 1ca5bc2e259ef8ec6a46e1d3545f7f95f5d92a3112854ad8d512af2eed481fa8 │ ├── 1caf4ed02b8cc221790e2207c40c34f5abed88dc2949322b52789d9c0ce9dcd5 │ ├── 1cb8bf0b80307d02c33edc9cfcca9d1b664bde0cc707c92b9d9bebb3167d2441 │ ├── 1cd31f9fe4e0721baf68a3806cd08874969037e27369cea36cdf28a81f150062 │ ├── 1cd6cae2331452670182e22ce56cf20171aa818fa8b644938e8830336f195f63 │ ├── 1d04e01ec03a98320bdf5e3b66a51eeea319bdd9c1c43e81bdc8fe910aa53ff8 │ ├── 1d150f1739060f688df7d937326b697c4db5497c7ebde57b3ceb76ff950448e9 │ ├── 1d3db226d95533faa9bebdaf382db1295126e97c33e3ebfdd2c054d14bc62959 │ ├── 1d8fc114f4eafde33dbf0fbaf09e6650ec09c6422896992300d1e62488f2e763 │ ├── 1db3980f2df2b6d62578b1578e95e40be48f362b667ba6ff6f0fa39819e2515d │ ├── 1dc5d59472a4453b232923ab7484fb958ede1e41719250f47c170fc30b98ac62 │ ├── 1e45b05fe2c4afc9337797b87614c842203af8f97d3272a4cf03c474692ee1f4 │ ├── 1e7f69abb661e94e53960f21a7e6ee61a75669e7f5be3a0f894d73c8bc96bd66 │ ├── 1e808f09420704ff01c229d4982a8e42f8809e14983c0e04a556736a0330ee51 │ ├── 1ea716e2279d68699bee3b512bdb91a0f13c09cea24cc424d18f9056235bf84f │ ├── 1eab54f0cdf3340b1b1b5ec113f185227784f125bdf30d990fb1b198dcb8d721 │ ├── 1f0f34e8f786a175ab19ba079804fa50b319ab6bb1a963f26627bb17af9facc1 │ ├── 1f4f01ab1382c30df918360be165bdaa8e37f553de09b0f394153590db9b43ae │ ├── 1f72742ff5464c3462f608c278da357737528b144aae9e9d891ae9e7bcae6e50 │ ├── 1f8386118a4d1f2b12f978e483dc5ad818c981d049f8af36359be43dfec30e2d │ ├── 1f9d811bd3d90d0ba1c8274ab38723388dde5e6fcb4007d608e81b39f5d9d2e2 │ ├── 1fe9f6d6f410f20921fa1db42e735f60de824d15216ff4394df263f67ca86741 │ ├── 2001c9ea3e44f872a33befdc0b7da63347db96f967586830a3bd7350e28286b5 │ ├── 200fb2f0df32db9fc93569c97c71edcde660a19c1a963f8c6361008922e1564d │ ├── 2041f869e34dd1ed0788733233db19bd10b39a84304ca29fbb334ed43a92bffd │ ├── 205b67872fce5e38996e0fd41907972416d098b264ba0a045b9443e20a261541 │ ├── 20676b32dcca522cfcd93886f29c33dd6d08c524e49f0115f403f5dbe2694e29 │ ├── 20c0a2a3ea862cc42ec16eff951aa112edc002538f90f9ba9e6f110e2b97b094 │ ├── 20d3a6b5662b65b42623eda1ac36d9a27bbfda0d13e3798ce680a4a9d646f258 │ ├── 2105e49ff40282d305a7fac942e6cceac8e4bd95f309efed6132aa846d98df1c │ ├── 211a9929288a1a3a39e07e32bc2ba50f6c04c99a4165859ad60f114e43c57aa9 │ ├── 214450afb0d79e49a3ae5990b4254786fa68072d9198dfe2328a70c15c9f45fc │ ├── 2173d68778482a74f3e3e76dfa08169702c1d216c1c1a40b864925a240a4f649 │ ├── 217e0a8faf9370be5dbbd3024aa5673a0e07d55ff7353b979e918f1c0d90696a │ ├── 218d48164ced88f38a51c07ffd9664837eb28b4c0c5d2b095b329e7789e49431 │ ├── 21a753b792ce271447fdbc82dfe70b5ea3045b649a31707807e7be95f6c33486 │ ├── 21ac8fc47fb73b7c2b569505ce7d6f4fc42d59734513133d0d44a2ce89631685 │ ├── 21ba5cd442f3283a41d647a40ed6eb3a6c7667d4446db47827961959d3b63988 │ ├── 2204eb87a21791438af9eb07ec89ceef650658fbd5305a3a13633485c5c7137a │ ├── 2208434b8c0a1207b5fccf145303bbfc6fc7139a2dc6425058cec9d75e7545f0 │ ├── 220f677bf2be5df76d2c686a171a492615a102bdcc6a694cb597584e371990d8 │ ├── 2219fea5ef37b29fe3365e625d6476207ad38b68146f9982990ff134a76b7cdd │ ├── 223e56ec466346cc4f8b73c149bf4a67b76c56f5545c2f96f9700c179d660775 │ ├── 2241fd3c25482ed91133695312826f969bf7d2935c2d6692d2395ab6a83b5ce3 │ ├── 2268449a711b40b6ef437de69d0e789f359f8f54e6b3e262c4a14ee3c0c24137 │ ├── 2270415a6e72a7a08398c43d956e0fe255a99011301ccdf0c81983664cd08477 │ ├── 2327f94b2e0a3efff1c89aa256ee211e19b9738cbcfc62d96206ffab767f4d2d │ ├── 234b6001ffebf904374614a82889da22dc98891a8c3130eed53d260db4305faa │ ├── 235979040f657207ce23faed0824240886ceb1001af71931d9e08959116e3eee │ ├── 239e2a133672f6b96feff5ff6804a26944a0cc92566c385a774a4fe7687ee991 │ ├── 23c4ca7bbbb02e97aa59e78a68c16e2fe5cfc164062df5ca69053d0b607653ed │ ├── 23c8c688e2d4c1adcb182c6a59f576fc5867db24edf30fc16c744855417702c2 │ ├── 23df579ac1e8017ead96d8de5ff7f0446315fa8bb8428d7e9061c1050e3d1ab0 │ ├── 23ecd0a977e5acc433f7737947c3517728742e87c442162ca9c0ee6e7da6f0ff │ ├── 23ef90e62b8bfc1a0cb4298d5aad250b80714f83d21392bf40b043d9baf4ee2b │ ├── 2400b827e877d8257d4e0726faa27a64808c580e38e347f74be6919ed6aa835c │ ├── 24261d072ab7dfa00642d4dac0742f80cfe82da5aefeee6cc0472ce7247cf33e │ ├── 24410f682cee9cc95f6fdad46fb7feb90075f2f57fc9ec9272c85e5c9c3db91f │ ├── 24577a88c3f1537d2f4eecaa17dd4e39e194f160ef8dc6142d6662da9fce04ad │ ├── 248bf789d67884890047070c62b1f6865885b0f1dbbfc528f165e8a9a9be05e7 │ ├── 24bb49e2830d43baa8184742576dda165fec2d8e94d2d6a9d83127025cb0bca7 │ ├── 24f3f656534d5f8f44996b1569f82e11429df5af1f2b168ebce14843363406ff │ ├── 25260f507607c239892a9d74b78d744472c01ba89a0586c566d274513e36ccdc │ ├── 253a3481b2bbd2ae1583ea27423632c4b3255276562a19d0109c59df514a49b7 │ ├── 253b221ce865822b393b39238b75e32433216e85028bc2b9f2df3484421dd270 │ ├── 254248855d873150586d31ada782f4536116e1515647af8951b8f31712d4f9d8 │ ├── 2557cab3284e9dbb26925cb9a40bd7b81eb9d18a55e831e3674264209732e824 │ ├── 258004f8cf746fae0e9f560903aaa9a6094538061140d797b07367e18d0e8b71 │ ├── 258b9b6c75fa024dee899537b49371bca00b0fc6ec234f631d2f554b643e882a │ ├── 25b5a5c0c73a26ff88f55cf74290a876aba187736ddbc6d9499845699e0c0631 │ ├── 25c90565cfd65b92020c657036acf7ab9116c71554c28532bf744e08450e2a5d │ ├── 25fe9228471809b4294ed4f75e20c787e4d89d45a5e2ec0d9bb2c1c61f95cb23 │ ├── 261e0d3404246d1cc04a65a4e6fb4b22a4846d8dcd34a6096ed863ac4f2f4eaa │ ├── 262941904c72cad3a0e75fb0234b9fb2d027d10baf47f69c41624470e666f6f1 │ ├── 267c7c2186152a250a10e3377c46f410e2176ec0b416181f931bf8cb991d57a7 │ ├── 26879d18bfa7260432654394e2fdb3c418ef15dfc213579d583a510dc6a58e30 │ ├── 26adc57d947ab4c73af5b53a098dd76f1ad45c3a6d8f2ff73ad122eea518cfa6 │ ├── 26c8ee1ebf741a0e01cc276878dba6cd124b064c712a091b8be2218edf25272b │ ├── 27284a3d7893a251472f83a2513e6b5f6ef5ae8f7288c85510d1634631b5a412 │ ├── 273cbf61e08c8d4b7fba021ee6c482ee678fc59a29fcac2201eea8766416a89d │ ├── 274bb980a8390a140d0cc64893b50f3a36a89d125fa43d8ae4f524b390aeaffa │ ├── 27a3964d68da0b5742b0e311ac5969255711089215d8c8ee32e6054589891dc0 │ ├── 27be086acf4521e788103d4d121160e660bb14a3d705209b9a800b183204e0e6 │ ├── 27cbeb072982fd577f5db5f060602952a5a49861a4ffb8bf275b07a1005e3d34 │ ├── 282426917b0bb5c4a3dc97271b9d8025b3ca146a5cccae01352ff532fcdc3b5c │ ├── 2825ac18dfbfe28e4865b2dcbb771304eb0ba40f336d63ff0b9f14d42f86a3d2 │ ├── 283b8f95937f3c6abf6d0840fb74509f58723a4d29922c07c8220784598c1fe5 │ ├── 2872dfdfe69dd1c65118adaac722b53e12bbf2485a31a434a99d189399e21f8a │ ├── 2875a93f0b284e3caf03ad63db5f2f44798419c25fa4c29c19f4d596bad74393 │ ├── 287d81e7ed4350992a6cd8c47c8d3810b4ad2f65d9489ca915d7e800c25a695f │ ├── 287e33f44f0bd06a63eb4854ac9f604a87969db2e46ef0cf6ad0f4db3f654894 │ ├── 289524537c505555f5be97ae9472f29e8f50a79417c67ddf9b8b5aadef7f19db │ ├── 28b31d33f2826fbc4a547c7653f649cb429a6bd98a5a8f0963060613e943de48 │ ├── 2910ef16353abd3c54f5de5e7449ca2299772796f1052bcfe6849f599784f57d │ ├── 291e6e302721bc621a36796657ebf6f35d0cad846c2bd9510cb98b0f8803731b │ ├── 292908029a993215c1061e6146a5d84b04cdccbe71e8b87183db8a7f34e995f4 │ ├── 294ef0a316f7d8cfe524deda30ba47eac2a3ed0d852cfd5cf49302683bc22c36 │ ├── 296e63ea524cfda878bfc8b8ccc0fb72eca907b98096f1873fe8fc313a845e99 │ ├── 29847aeb16c5305d5c0e7e711f7ef4ab30634349f7a780e3cf853f1ab85c8f67 │ ├── 2a045f5a6d39995423be83fe3954e8b35bfd9c1e8a657d3db1064a07add2f225 │ ├── 2a236b13e1641b853be260377425aa3f6d3bb68b596d6ebe4fcd2fbc528ab01c │ ├── 2a2eda7469ecc801adb04e2ee5dcd238453137eb3f3bb3e4ede91146b0b658e5 │ ├── 2ac15ee06ed596624f0a312b91e16605decb757a3e476b61b7162f55ff016758 │ ├── 2ac3ae477853198e531d4c6bdfb02540adff7769c8bbad05d6a3125f1d00dc8e │ ├── 2b26a03282dbbcd2477b4e703883fbb7f94b06cd0a8c2d1b91f0179f383d949d │ ├── 2b2c0f21f0334f8332b05c83da332664ea054070b3dca859ea47bec916cf338e │ ├── 2b2f21011c866a5e57b929850a27098c6eb15b636a296e9a896f8a99d9c44854 │ ├── 2b3883a7e03b73c81a3371652ee3840ca64785164dcb98103118bcda5ac9487a │ ├── 2b3bf91c9085c7ee0cce28bbbfbf05318952be6299a312682cc8284cfc5836cf │ ├── 2b7f2780e2d95da0fde562c59f6cb6e0a93e90077574d775f434dbb8e2b0ebf9 │ ├── 2b892226ea042042d5912c0ad69cc98dbd2ac305da19dcc4f5db70b87b375b7e │ ├── 2bdf8a4e4df498e2fb9fb567697e2d39f67596bc806296180fd7c49b327d1539 │ ├── 2c0720086493fa4f6a2b47fca3a2b0efe33b96f11033d284232ae4bf9ef45121 │ ├── 2c0f9dc362b986290615dc8f5dadce2e5d9f7a495c4a2d465e70c0133d7863c7 │ ├── 2c968229be85d483306e7676468d8dfd2a889ffbe07a116b0219f5f07553eb70 │ ├── 2cd05d635259dad2fb46c6d895982d3db0dde2f48d7699f9fa16622fae6e1567 │ ├── 2cd749ea10cb06f92b6ad2b32d54d1a56f56fa9f6b192bed0123af8a37b7ff75 │ ├── 2ce4eedce956c5f7283dff89b993b1743c7ad33bd1e810a75b079476343644f3 │ ├── 2d22e607f988dba4a3f2bb433c13ee8657aa71a9854d8f65a18daa3d87252b97 │ ├── 2d80d631c887b8ea3f7e44670de254a039d25f5aff028784f5837d1a78bd2950 │ ├── 2d9ee8942be221b3a432e87dc0b67855fb2db9e879fa4d556f7bbd6dadfbe19c │ ├── 2dab2eb3cc573867d1e3ffb021d8dbb29ab048944d24b847bd07e99a1a7451f8 │ ├── 2dbd75fcaa9574197073d91b489eaf6c06e33ba2605f8e3e1c231962403edaf3 │ ├── 2df97248fbbe9b5936cd4e9a54f6f80c7d681bcd1cdea70ea1346a0a12a87d97 │ ├── 2e0dfff64875e31990ccc54e19ffbb69888635eaa184f5fa2b7ea4abe3e37106 │ ├── 2e3dd8436ad5d49428d72281a3705afc3cba9b1862883f02c0842031b63e31dd │ ├── 2e562262bbbe0a8bdd234916f14f9298a1933de6421d9ad6153ddf62374808f6 │ ├── 2e570e498d7c3c6e424f4d8c15b365084f035a03afd74f07ea5bd912b170eeac │ ├── 2eb98cb191cbe9d9b9de28692dc7abbd15b5880067d14c60d530a66b880a0d51 │ ├── 2eca43d53a3fb089f872ff14b229613e25835d01d82fc3e9de2c54800f72cded │ ├── 2f45323438ac85bd97a47e4c651ac06c31052b72f8a6735e848df6d159ccab62 │ ├── 2f555fe24ee180c197f8e6739db3976f0ee879584cac35f80c4df80193e66cb7 │ ├── 2f5bd4b0152e4efee873ab2cef1c009a9df5237b5bb16ff7983b513aef237207 │ ├── 2fb22a14eb2d3699696091c520e765a4547a766f925d62d317df0ce51468d1a5 │ ├── 2fc64ece605e1f851f92e2efa6f91da9879324f24385a1ead58144bd22a461dc │ ├── 2fc89091d8ea0eef713221f2543ace352a9dff2b69abc1fe2eafc4cf3537ac54 │ ├── 2ff452ffe0c9f1644b0bb04c5e9c314f922f35ef7846fea0393a6faca90d0d89 │ ├── 3022382d5f38575cdbcb957fb10bf6bc2f28f91399e041bfe2064c0e842cbc4c │ ├── 30264ee27dfefa3d317f76fc3ac99d94627ed911a9b81cf457e9a9df9beb718d │ ├── 30437325473a53ab9ed1b091bf4ccf76a831902ce01d23b94cdfdf7a8ee1c24f │ ├── 308974c7055f93c7d8c9edfc4ec04e67544b3296c1f0db9e0d77ab0c659bc3a4 │ ├── 3096acf3ce7911ab755fa2f637506a6822587c9e2f32b43ec24374933a23d652 │ ├── 309fe020e52eb7e65dc4b18aaec953519a4383ba008f0a7f04402a52f6b871c4 │ ├── 30e5b33dccb3b59c31fc47893629d642ef89194016970477c44e7053052788d7 │ ├── 30fe528ff8020100c83128e5996b78d09b78f95918664597f76e4e29ea37568f │ ├── 31041441d8000236a4e9e9f1b43b516f1c464f81a5170dc9f9aaf9ce6ce747fa │ ├── 3111988632cb84c515c9dde3f815e997888ba615b7bf928396289c44d98c8721 │ ├── 31204244d79d473deccc6955b7b61a7d7cc315db12da4f644a79a869421a32b7 │ ├── 3129f6ccd2961357f6e243a79c88556af045a7484efc03dfa40caabeb9f25e52 │ ├── 3131076c176957b23a97bae0e0907f0982fcea4a2128e0d6b27fc43f0bf3373f │ ├── 31339f41b4a83778494cd2bb2123731db14e960fc3e475653fb99d64456bca98 │ ├── 31377c1fdf69aaebf8e9983770037f9fb57e78f65d5e26fe365cd61cabe7de61 │ ├── 3151be12741e1ac4de15d9510f03facb9102d47ee9de60315c3a5101da93e550 │ ├── 31855c81f40d9abd033d087f62f2fd534d60a76991ae9c902217a7a19dd3d6bf │ ├── 3250d18e9215f0ea2d6ea6c6e646092bb7f2a104beab62c0790105db1e9ab690 │ ├── 3271bd5ba7d189ddf23ebbc98553a09d268a4f6b79a038333b285b3b527a2345 │ ├── 328653e55ddf02df865c51354a09433452fd81d2a05d27aae8e3623e400f6625 │ ├── 329aa35ecc566b39e344e603cf740adacf4d40f81f0dce9faba60b958785a5de │ ├── 32a856829a854a652cba8b2f6cdb815cdaceff0da7443180874075f5e7379172 │ ├── 32de7246c71cfcccbc36d8ba3d396bb435ab5a39403be70a0b12a2cc9b9d234b │ ├── 32e253a1912f191abf88feaffc2c6165bdaa923aad1d89b88c9abbe3f26e5793 │ ├── 3328beea7d22fd4c8c04acab7dfcffcb0a8424702eb434744424c18a959da3db │ ├── 332f3aa6e84b03d50449620c89c9041e2a0c332479fe0ed84b67b4ac980299a0 │ ├── 335806581b1f88fe4b01be691d36cbac48e282db29695181f9596d61895bc0d4 │ ├── 335fc1565bf8ab4888c7ea9c554c859812d7c403b2e6fabc14fda8163d732b71 │ ├── 33d91adbe9871fec8fff487d9d4302f5c228a8b2683cdfdc6ec46547e8ee482c │ ├── 33d945f932ae294eae02ab4c7fb62d1e30cd90128dca855a0921c841b1837c05 │ ├── 3455a04874179622d61ac2457e906803a8579570b5eab11f1edd4a11eb8959b9 │ ├── 346f499f7e3c3a75c9aa7e82b397b79bbb5b884682a8fda2ccea5f1e85c2ef49 │ ├── 34e3aa4e605483894039f09e3ab7ee04a6767d1cff597a5ebe7cb6e06f7eb5f3 │ ├── 34f9c713af87489e3e7a15d21aeed233a7ae07819190aaa4c4d1aeb2dc1a7565 │ ├── 352b1887b06a14ee5492441840d356f2cb2b8ec36bbd4575d8241d090b1a7bb9 │ ├── 352d30b0ef7349b15da522fc5d0c61e6b5e73eab08b37b1beeed736a394764f6 │ ├── 356c5aae494c603e92cb2be3c70d06b1cce92f1ef82f8c905805fde7b95c373d │ ├── 3594b649823577c35bdfcfc2423afee75821d62c0e218949f7679f0e8e117819 │ ├── 35974227c15360e85ade4968967159d6d0022d1018a7050e7d851069d11a53bd │ ├── 35b3285a2464b1ee2f2a4ccc7734d66866878a911a86e31ff0453a397f5ef396 │ ├── 35b7a9154b076650135a0e8a6bbd8b7e226693ed28cbc71f537fc0c0f0ff6ada │ ├── 35f52af9a1358a1d185dba2a3f9dc7e18cb53970bb191aabcf8ccfd1695d3013 │ ├── 35f71f5dfe23f5eb7fc069f73262cd7ec722c701ff0a0a91e74d01ea50bb571c │ ├── 35fb3d5414ae5cf831d2501af55c9575bcf54f9b4c69bd3294c26e7d765426e7 │ ├── 364159e1919ccd45b8b242d8a0e33a26173a48bce8b21ec1c2dde40a058c5645 │ ├── 36624a84c4b462e3a36506e4a30374695f437f616c2260ae79e8c5c26ba83700 │ ├── 36a02251b82a1a4487024e63d7267e7c0a4f81092415c77687318f9c0a71ad6e │ ├── 36c6f2f3c02440672314da23aa22f886aac93ffd53606e0f39bca7a39445bf50 │ ├── 36da31631fd3379b552f8e9fa3ecc878ab3f034a2e316efa34461956f360d766 │ ├── 3711fc0d2ed74151ecc9028312829bb8d6b796880f6e98a8033cc88f9faac9be │ ├── 374e07d7ce70df19ca6ab71728b9e5c299c95c6a49104df1678022e8fa032801 │ ├── 375f7067fbe76277a863c5d6cab847291bf1599a9cfd5308d1610ce58b57f67e │ ├── 3761d4ab3a13f9ba5a4637237adabea1cac6a07e2344ef161f5aa631e096912b │ ├── 376a91be24a109bbca0013a4c9139fff031bf2f417e4441a1de04c0f29c88cb8 │ ├── 377991ecdc8c4586d685b47bb35deb4db4a96054c1dcc718bb1ba32d4b8d9bef │ ├── 3786957aa36c2726ecb94e3539b6d5e72ac6e3c9649910ae131b966e2d720f10 │ ├── 37ba5e0a6ae86bdab3952eec48d01c67a5e2f7b60e8bebf18ead1e5de20ae6af │ ├── 37c4103da9212f4f9d44066ef83b008fbf3c7a516623a26f8c1a23fd7b9aa73e │ ├── 3815cebf5faa486e1251cfe6a48d1e3edf6f04da01df64ceb90418c61374b08d │ ├── 381f6736e940b0a7083a7c38aa307ad59f96b71eabad8ee5cf59a8b954945d20 │ ├── 382fb8bf5415a2ca3e4e1b3f07d68cd158f714084ef301a54215c8eb5ed2e2df │ ├── 384591cc899dda172619efec0daab0a64cc4a50cb105babd95d19a8825acff8f │ ├── 3858842cfe3b9f3d72ba2e430d88bcd76dc24ed6636e64ec30772218953a2fc2 │ ├── 389d6a3200566a9792ade0180709dcf3f1ff69ebe8b905aca4aea3fb8a8cf31f │ ├── 38d1ae49e25977525fa396f393a504bfe2d7b85f1fa696ddd5b72c4316d03299 │ ├── 38d21f4cd64def6e4e40a7d4852a33aa361965dd25749df9f7c3ba952ddf46cc │ ├── 38e2dbd489630465a26dc0423b813c0a3f355c27e80d77ebafe4a8763e226e7d │ ├── 3911ccfdc0f59cbd3c2732ecb60175e5c1fe03710b8c89df946e0d514bdaa2f1 │ ├── 39267216c075029601e8f7e81ce466cfd8909f0b3178f80b83a8675a968c9bdd │ ├── 397fda816e937c40d7db7a27527d811ac7232a42c31f485acabf3a2c5d6d46c6 │ ├── 39a3a273f7c1fa82c993516466c6555b4a52a0e9f2507067c5414e612f8c5fdb │ ├── 3a095a0c8260d7fd1107b5e9e56bb8b05bb87fb1ee3ea180a96b84166c877aae │ ├── 3a10b499b4a5eefa4839b40c6732f88e1d090e7fac78308d6daa5f5005c5a232 │ ├── 3a2c776caf32122ae329705557de7e1c7270a5d97d3b42c5e06202f7f9b72eb3 │ ├── 3a5000d69dd2da8bc1eed5b20585f40b94e754157de825c69ddda2b39818970e │ ├── 3a9677ac9b3086b11ddb10a918657374961bdeb3960aa07bacec16f1203d54f1 │ ├── 3ad839136045c1fca3ae7ae0e113719002b49decac5ab5c13753ca7f5e30d7ea │ ├── 3af3bb7b53ca66b5d499f81051084176dbece5cc0f4815c24f2813f38c231812 │ ├── 3b10f145d88aad4505bd8812820bc48ecf40e9cfb695799e521398a2b456a23b │ ├── 3b1b5334c751a4c387c8709d6ec77cfb5e4928d302f48453f427932f6d3d303c │ ├── 3b2a393608a07350918d19043d791fa7ae207e0d577583b55a03ec433361daab │ ├── 3b429b0fd2b797f9e81faac5f0b32b0f9068ef2cf8edb0197ccae8721abc0746 │ ├── 3b42ea778c77f8d4a0fa328b2c8f0ebacfd1c1ad67f56b917cc70dcfcd74bd35 │ ├── 3b4f49491b572cfceb123f8636456527d80c524fb9dde9d37bb448e3dcf30878 │ ├── 3b6668a2965fdf11bdae5c6072109bc603b34505d1b066b9d54307061ff3e15e │ ├── 3b9385adbfa8ba957cf9241b38916604dac467d835ff4542a43ddb3c5a84ba1f │ ├── 3bb79bac287605e449b955f1c96c284858abeeddb2d936820d68e17989e06fd4 │ ├── 3bc7aa170dfd3b95fb1523f26601ae93e31880d64fcfb93726b50fbb4becfd11 │ ├── 3be0017e2583908789173a1fc7ee4697defe378eb18397690e2d48c288b0b294 │ ├── 3c043a895808389e037ba6c2e271f9560df564aeecd7ee869f1d77c77fc5a014 │ ├── 3c07cef78a139c4a8afddeb6e2ebde5376e19679b6de1ad556ccd8531fef13c8 │ ├── 3c31e94e2e52ab7795699a445c06b222a662d162d5231ff061612e7de66bb3a9 │ ├── 3c46edb0cedada92e65d6865c6ca4d21a70fc32f819bad921ab3bbda25077cfb │ ├── 3c8759a1f018bdfd05d94b9b756cc15dd93f66e30ed981be7c18b6e6efcae03f │ ├── 3ca271697b345f7f9d19fea632b1929723122f32bb619a2e28e5159c2c6098c7 │ ├── 3cbdb4adc4c7bf3aca48711d5fcb989fc05201b53a685b46b363a101c324efb5 │ ├── 3ce216fe2df2c9aa59557e0900aa7b772247b7a00b2b6c1f3584f251cb9a66cd │ ├── 3ce3ab9ec24712fe641f84e4554e33e1ccc4f7d288e2ef4970c89802aeb029a9 │ ├── 3ce585386ed5f1b57dc073da7a8f5d33d15607d4b265c321215e96e5ba430dfa │ ├── 3d0f8756eabb7f5b091a2e5d3a10a7881d4ed24437dcf36d7b03acf79aa52303 │ ├── 3d26f53fa60ee9de57f4bf022841061812715a5c7febf427d0f985a5f92f02a2 │ ├── 3d27b038c5d102cba1cf005bbd8887e2220f9846d1e28f452aebe7589b3b5e09 │ ├── 3d626e7f01a034d6d27cea706e76c73816627b768cf55b8f4d99bee3670cb3b0 │ ├── 3d6549d4352166fc7367f56dd69f3a706e83bf454fd3af22af611ccdb623d9cf │ ├── 3d7a7f1073f1950253064753f9e8708028a7fb14557648f8b8035139fa69782f │ ├── 3dca52a987d3feb7bccaa42ff129e256bf0ebd62c0a3e0ed3b55990046dd2a35 │ ├── 3dd1a39161bc5c58965d66c9a649bb3f43d2da80ae80b74f766474eba32da40b │ ├── 3e2aa43b9c1e5975def052a948899e44baf660fcbbc397586538ded42971c181 │ ├── 3e44d887693411faca0e8c811a9577487ee9bc7785707b5ea8db6e75c2d842f8 │ ├── 3e9e6654f02f9ee35c2271ddfd1f7710e32454da5bad216aa54f41fc5989f37e │ ├── 3ed675bd203249afc275db7f7800f77e20e3860e84b48119a3bce783834c9d82 │ ├── 3ee4aade08e719619a45efc525f298aa8f4f2dc7a78565c7fff70a80088288f2 │ ├── 3ee8378031c484c1424421f6764f24945f524ceeaa47af3a597cc489e1f30598 │ ├── 3ef645a5455bb664debd2f96b97d04b9527f444084279c73b8fd2c42f1c39021 │ ├── 3f12c193df85537953bd6c70ed88a9decbcab3230bac9bff346b04dab2730d5a │ ├── 3f1a9d1ceaf2ab268ff27ac8a61cb1ae49f9b3b7666c20ddca229b4de5c5cd71 │ ├── 3f4dd91b505214f3468943a61643aca25fd6212047b073216d7b9c9ef68d47fa │ ├── 3f62d857ae181a2436f5babad63a696fd8fd0c3c890b87b38486bdfc2efec1ce │ ├── 3fb306107f8c807a7a34d190752a1529c30834957250335374c95f76ad56a361 │ ├── 3fbe4de92b998ee5f5add473842766bff746f2d6fbaad21fb61718c0c687eb45 │ ├── 3fcb6fdd0be68f8afcd41b58dc8d40126a21c2a52d4e39e42a80240bbd2928a3 │ ├── 3fd80c683e46925b2b69eb85db1750f35962881ef331ca3f8aa15d4133974690 │ ├── 3ffde0226d46246176caedf21e0b47ec9c2e17952c30aa6ff560f0d2c630c8b2 │ ├── 40072292ecd45e3cba6d32650aafff82f30c89f020b3d62d2014716061235989 │ ├── 4017197757ea3b1a410b434ed12bf006bffa5e8b23273ba93bb7999c47ab387b │ ├── 401a4b153799ed6c1eadfca447a0fa07678440fd8a53cfa7878b9b04835a9174 │ ├── 403cf0b31ab9a2e8bd4a721f47dfa0aad3018de708aa904c1a3d16d3b3f05eaf │ ├── 403df2eb57898b3e079d270d9c4167faa22d6316a4a3c697fd36df13882a0489 │ ├── 405fbb147f5c8018a37fe008367ea87d02472643f890af6ea387383e2c77e6dd │ ├── 4081d0fd67726b2742c22f37d8f657aac91c49001cdf552f3fbb669e0340be9e │ ├── 409ce9c7d4809167258ca455646fa6b1a6c1f31a370fa8bec42d5d62fb91b5e9 │ ├── 40c3c160a0d5b762a1262db3ab4d4ec4302ecc7063d803745fcbf271f2a1f596 │ ├── 40c56e27dc093b13687529de2896dc79343ac324d988f0895456534f9231fab5 │ ├── 40d6065098d7b2014cd75d46d4d22c66b220fbd589579dbf3730981c87fe543e │ ├── 40e1f9c76e9d1012a868a8d1c9cedbc6d2ca51d8cbf6a579f22a1610c4c8c3fc │ ├── 40ed26a34dbc6ce0fdaa8fe0f226e2decdc13b0edfea00620879645521ee5df7 │ ├── 4126e46ca8bc6cc56c356961aa4036c350637f04e7726d730be87e11a1f87e05 │ ├── 41ac4708d44a6a56f085e7d448caec309e039be015cf87be198990459e1cd060 │ ├── 41aec3fc1ef3c9aeef3e9db9ae4cffc46bfa1c6d3879ea1c8744036482136d57 │ ├── 41e9f424b9f71af7dc5d87252715511ab094ae503f90877fe541eb4a7c465465 │ ├── 4213a5e512aa12d2e4b4f8f72794c7998284bfbbc473087d1d74169c06b690ad │ ├── 42308eacadc1be512c56a19b78f3461f9cdf7c785df14c5888443938001e987e │ ├── 424133f222e1e5e7e64ae1930bd3297b1897d578e7628352b51e387b3dc40cc2 │ ├── 4251f0cef85246d85c170f082966579ae137ab810d6e9fdbedb44c1cf5ce57c3 │ ├── 4259e398232ae57e8ba904ab4c19b3482b0962fe1c236bf718dd1c3c8f513644 │ ├── 427b4dea6c253151b737f91de92f5b408a773772f761a0f522b35cde66d512bc │ ├── 42ab7dab26f2e088e962daa77f09836a1d2ef20c0744c186718e7cd60f433e1e │ ├── 42c3c3fa0459ddaf7a700d63135d6b10fc38ebd2ea881357ab40b8ecd7cd5a03 │ ├── 42e244a630149afa440a6da00599af973ec2c51b25f21f11fd089825d8d8c092 │ ├── 42eaf4f33cbbbe9889bc0688d775b122e095594c2828e961c21bc60f03b91ce9 │ ├── 4329902ddb30c700bd60eba0ed6e7ebe3fd4a7653b4c8fb6465c346b596675ff │ ├── 434041e406175f97e77b695845c9f6102188fe26fbb2033744401f35be0192f8 │ ├── 4344a89256eeb13ff189557aa614f90ea7aebd9942187cad19acedad960a93d0 │ ├── 4373eec7a6ae1158a18dc5e8c824e9b361c9148a56db3f612b4b5c5877aea455 │ ├── 438ed635987d3c2d31c461d4f68c022ee08e29dd713d0490beb0c96e3eb7b995 │ ├── 439e8e3f6a52f3d8a7bf9b0b1d04ae7c1da5e7e1de80af78bc96173cc51f109e │ ├── 43d5a291caa9dc3ae59229028142a91f7197f89e6e215d778150ec60eeafbfaf │ ├── 43de24af373c552bea5b089318b60722590480a35e37e3f978545a2f4f169e96 │ ├── 43ecb935b72551cbdc7bf4c792e89bf4c678faf6b791edb0294c2afbe421c370 │ ├── 43f959b0642c1e678d382d61c5b997e418397715713f186bb1654a24afe6b53d │ ├── 446173bb820f3167ed13eaf0cb8c70519118d2fd0beb95a6b700e3f879271d58 │ ├── 44634bb353b0dba06c322dc0ff009bcb13987bde3cb5f47da5b5e6c9476c73f7 │ ├── 448170de3c460bea346889a725a5c09ed6c484b6bc5910b88cc906f746ae6194 │ ├── 448e35c3b13e8c8b5643a24080384ef657f5fb48d3472dd97ce9f6babc690cd6 │ ├── 448f91b8be396547379975c4f8793cb14abf46542834878155f3fad44dfed132 │ ├── 449bd317487bb82840f99668f8bf1866551b80c0eaf38f1a1e04203a86a5cdd2 │ ├── 44ce4fe90eee2d58ce4c3859e06664c3f4c1edae9c700f92fcc7f45cf07f05fa │ ├── 44d116e96e422acd90de5655539e41b2d4de0a1970ffe91b54954f5fd2fabf8a │ ├── 44df5aadcd0390d67320dc590d04aceced6ac167f380f3a11a2d6aed10aa404f │ ├── 44e2090e0b262d2eaadbe1e3e9f1f71db3070e46720435c7b59218b676c9e586 │ ├── 44ee66b67c323bc22e706ca18577b5d8f965ffde28dc8a17cafdaa17e522a421 │ ├── 453215d119b96b3f0c60faf804f2bdba0fd8b47faf2b49d955ff6534d2b89b05 │ ├── 456249a19cd4278c9b728c8389e19ac168bdc6e703ad09f14ab7484e440571f5 │ ├── 45b32dc8ec2c81218f8724ea7a887aa21371425ae27cdbf4a6d766005f737ae8 │ ├── 45d0efda927d56e07ba7f22f762788fae4adf7df2a677e866de27692d0d81fbb │ ├── 45d349c4a04308218a74cf8bdbb2a477323e938aa4b0d413b0264555f1333dce │ ├── 45e431a6a4abbd52800fd470521152fd45e620bf2c8871d8b3e0012f5ad76f23 │ ├── 45e4e61bb58c2bba6aca34f457e9613bee1a659c52b42af552711cd1e9c15e81 │ ├── 460a0ec8d42f24acf914fe8b3549bd399cce5882a3298ccad04ef93b6112b252 │ ├── 461be0186f50b83a719603af945432fc5db1383d95d8a1de8c79edae7b5968f8 │ ├── 46630b89ea03620fd83c36343d6d92d70a77dde67a3afea6ac2ea58779f9ca53 │ ├── 46688564f4f3763924986f058d25c79ba6263e3bf844fc0efcb5cf7c0c383c68 │ ├── 466c9fe808d34f1f005111a0724d5af690f6d7f8fb5edf5869dbfae0f80bb58a │ ├── 467fbe3b39666a5c8abe5521aee929f0676dee4e6109fe0a1a40d2901173f0aa │ ├── 469de04479d45c2ec8f41b61f3548f50d04260849c53b6651bd1d06e93cee4d5 │ ├── 46a51e2a284a40e264317d56554108154ffdca3c2e268a60aae017906c15b34a │ ├── 46a9fe0abf86f754e23d9f9a794fa95478e7f3a6810c73de24c6e582e3e10222 │ ├── 46fe912d66e65669ec04b50bf5608f49e8b9942f72643c0b123bcd3940a8ba3e │ ├── 472f0e38931c2013909309d17347ec7fb7b9c7f7c58b288248f17c1cccdf3d12 │ ├── 475bc6b81bed9a120c7bc647b0652b3e5ac6da91980899e838c7be43acda33d6 │ ├── 476788bd366bc52fda64913e4f318389c1f97e720ae6cb3a34d6b6a77a87be1c │ ├── 476dec8eeb2c7e13643708e9978e6961c257d3c51d3142541a4103ad29921e14 │ ├── 47a2cc4e9c4d931f5f002f2b309482e2c1e8d07449bdf43b25cb20b1a9ea8874 │ ├── 47a3c29d61c0627f4a45496276fe6caacdaa15be81debd68ed5b77db60d44497 │ ├── 47ea11f277659bae7e85f8a6874446e0a07f5129ba10a2304295155c49f0412e │ ├── 48944056855d0268374befd09c9a76d4f4abeb85871ecb78c769cfc687705463 │ ├── 48982043d1d0b98da016e1a0b6e1b75670eb87851a6658270983fbe167bbca3b │ ├── 4899a93f78d3aa5480708f576df24fe951893f84989bdbf299f20fbb9d285dff │ ├── 489ddd8fdfbbee9b39cfb1fc475473bcba06272266e02fd8f9a84ee9e3b7b677 │ ├── 48d399c50758a61cca9868d8a71bc35da636c79ad041b2e0e57a6fd86787e99d │ ├── 49192ef5d3a5ee2621b72abb0f21ab20cff5f63c18a2f79e3c633eb9efb83459 │ ├── 492a6fa219d8c89ddc00f653ffbc5b4db76f2dd4424676f4512c6b2dc6a767fd │ ├── 493143c663e141931874a9cfc3741f133092bf17402aea7b02cdb2f51b3557d6 │ ├── 4934b6331c8496eb4be5f9ccdf631b6d6fd563a0af0b683a1ac626a002898fde │ ├── 4946b8dacf1b7032d288e4793a41aad5d5d426103b3dd3b74f050665da824ecb │ ├── 49b44b3d5763007a03c3bd18eb4beca9c2c34e514e6a6249ea74ccc281a283ea │ ├── 49e0da55f9c416e8069db24c99fab6d9a0174c8c2582b624059a38c293efa159 │ ├── 4a3b0a119b22ec274f73c61af240aed29dac9402ef248088ea19c462d493895d │ ├── 4a525f81b224e0f9ceb7e9c20724685083486aefdbbfca6b31ee8ae907ee5a38 │ ├── 4a889af706066ebf841ce29167908657abf84c302a913072be48d9656a72cc82 │ ├── 4ab2171e22c312f54247256caa646b2dec3112836f945d0c65c84aae3ac61ecf │ ├── 4ab6031c5da5041305f5387b63d3dfdf3dfbc662882a8d42909bcc7450b7ae5c │ ├── 4b0e4e85010b0cb68099729511674c36e8b6aa1638ab80f54911ca71aa355fde │ ├── 4b2b9b088de08753339a7ea2af48d2259f700c16215ad2559a9888fc93baa89e │ ├── 4b2d2027d5edc49ee51a40062364ab1eb97ace8bffbe2f2220c2de5fd9d77573 │ ├── 4b40167670909f0a20324b35646ad6241a2be814da31278ed6d3b94910ef0461 │ ├── 4b4557bff6909ed311163eb20dc01cf71e8643709356227a720e669412de41f0 │ ├── 4b5681387706a39b8c968c6c1a104ea61ec1fa963f63528a0fd499e56035c3fb │ ├── 4b6ae6346eaa62e48786c3019cee36e05f8256c60001be0ea450a296df95c327 │ ├── 4b805b48d45d8e51d84436f0fee2488377c6d8e8ef2ac9e902237ac2e819e8c7 │ ├── 4baf87be9fba6035af7156b862145067cfa850b82fb007e254e43d7f8c7a7a00 │ ├── 4bafc6c59a9051c0fadc61e191b2819fa735d3e31c50f7e408d01c4da9a5fb15 │ ├── 4c041fdee0579bb0c5ca82c148f47c0ad58724906381db5aab958ad4dd591478 │ ├── 4c13bad19558d697469065b0227f2351a1aaa029194f76b08e67367e2884c47c │ ├── 4c1dafe2b754c9618862862d5595686c92a5e27dff3ded39fabbc2007f9f3e99 │ ├── 4cc5c571e82b0fe3913c1d1bcfb4002bff69e0729cb3817ae1de880341ad85c9 │ ├── 4ce5098769518fb905829aa69166f5bed6da820861b1367c0df2205427810502 │ ├── 4d2b26b45ace60db1cd82f546d7038b6c570e87b12654a335baa54848cdd7a2c │ ├── 4d677c59100eefdcbfb89207d81db33f5bf46b5799027ed9acd1214c753d527a │ ├── 4d745c5b31a887c7adbead8af5dd37019599f98f378762192bbfe6507af8496c │ ├── 4d76aa8cc6b918c9c8a541f758ef06a796b2e162cdd55eceb8ee83357e5146e1 │ ├── 4d8eb5e07fee01c85e2973f66aa3784fe10a48285a844764b95ce78792a2d0f8 │ ├── 4da2cbec08e3bfc1217134452a04383dc90a36bee6dfa27877f0bd2920b02156 │ ├── 4dcad6de02004d923b6928190c12fdef6a5dcba9bf430d952ceb3bb9fe2b4a28 │ ├── 4dd05110aeb0ffb998c2b16469ad8c2977cb73b0b59fddbcb9e973c8afbb03cc │ ├── 4df320cc151f2db18dc5be3037373e9457cae50aa7a2e1cb4117e5c7c6e7a351 │ ├── 4e1f8495126a4addcf153612cd1614789288b02962520baa7092b6896fffe4bb │ ├── 4e2dc28d294b6f666e24c693c03e4bd919808451feb7355cab87ded606efaf58 │ ├── 4e3b2e35e861d24130756fec0dd6d283b6cfe730aae4ea615f607c8adfe9f5cc │ ├── 4e48bca8fec781075e27b249ca4bb14c5bb385fefd12ffb81643380d74f1eed3 │ ├── 4ec7d378c4b9a7c39d7578a7c58e23bad3480edfec01feb9677e7971968b0d30 │ ├── 4ede90a04ac0b1fba54a28a797e5100f459eef3ff42a9b46744729c9756a134f │ ├── 4ef851ecaf5c662e7508e693dca4589af875f31b133596ba7216cb07fbedba9d │ ├── 4f63b1e7af96eca9a9ebfa9b757ee37cb6294359aaec38dc325faab767c94524 │ ├── 4f74a89d80f8e75df53bab132ffbbe77d75eca2659bda0be0e064ffc7537a4ca │ ├── 4fa2cbcce1e97e4d8ce0de7e979ca2e66a67c3353ba4bfe97ae1c37ed7d47c2a │ ├── 4fd20d3e7042cb30df47cbf8d9930581ad69f41d0a509961481b3a6834e4d9d1 │ ├── 4ff3c8e7dba4c8b9e3b00cf403672a600753a067392df59c817bda9fc1e30055 │ ├── 4ff61c8449ea71a829371c3303b74462d65f3e477b9f9604aa23a52679209938 │ ├── 500343dd8b848de7eac34fde539f204bf86e4521d7160a63827ab72fed12c092 │ ├── 5026b64b4b72531844140ca1b166bd6bf5ed4180b6c00ba62b25b1e8f2e79cf8 │ ├── 504e719e3fc80a86a29ff3f8d9ddff9f14ff1680d11e7e364175842b5464de89 │ ├── 50521a0d87e2ba0648a75c35757aa1df299eb8cb893b3d7587431c46c06990c8 │ ├── 5058afd4e2ff908854f0797f8806f6a085bad7c42f9a8b2bccaf1cadceb7fc8e │ ├── 506236a5bfcd62896c1e8995bbe66297fdb7f0719b7d98b2c008785806829b11 │ ├── 508b1c5fa3e5184ebb5767cdd731d7fa380922e196cd93c659da649c5576f978 │ ├── 50a51d4ad1f6801c96beb69465ab7760a1690184484df264876c27caf3c34f14 │ ├── 50e4b06808e7b048f40d1681d43e209a198299559670c8fdedd974f70ab407c0 │ ├── 50e5692c057e85c6dad0fbe1e6f65388ab10ae5389b6b9ed0f8b64d2ea047997 │ ├── 50eb9417bfd97771fbd5609fe96f72822aa4dd789f57effdbd4c80bede4d79c8 │ ├── 50ec5e6d0279cabe3f87724709c67355303a187f71817b5f75554668dc798e98 │ ├── 51003016e2e52a25d3a45610bbc5f0a775a43920571259a81b3f81912f0ea574 │ ├── 510062e20733010db60423c62db3c76029d2163e8f66949f232e6a21f0556c8f │ ├── 5158dcb07fdb28923968e5d2706272d3263d929b96bbd8a52fe316eec58c1be2 │ ├── 5189f4b2f3172ea2dfe7fa9ce6899c7df56982317639d9a52fa8fce1efe6df43 │ ├── 519d04706e23ae32966be41ee453bab710346dc671ce2c8ce446d2cb290243e2 │ ├── 51ead3f2135ae17e27de86555098b708d1bea12ee0bb8b7bde8a4ed6f9f7e205 │ ├── 520755b204bcced6c43af5f92deb65cbbf51d0daf2cfc186cd338a5b277e1d35 │ ├── 527fa73a0f286c3b414a80b3a96923072df0e1ce22912b1ec2d9e526346a02fc │ ├── 528e1423c20328741d6ea8d102b3c18151c02adfc45a523bdf6ea9e4880ad256 │ ├── 52cd54561b7e2bd376e84306b43f0aeaa76d7730abc23520450bf7b447c92ec4 │ ├── 52cd82b186b7845493f585208c80be4718aeb2cfdbe41500839ac0f58d017a5b │ ├── 52d045c3eae828f5a05dcdc5092b65cdfc91a9c1693345d64864e1eaf38db5bb │ ├── 52eebdd28e80d0755aa5deffd8b83e43890cdea15c9b0db1b76ec38047879d79 │ ├── 532fb89673147d9fdaf76683b7cf68eebb505a7f641146b06ae3a60c01721029 │ ├── 533250060b8309801ea2f6c40708b556e8889845a22c24dd46a95eeb875ba637 │ ├── 5345932d44e8854dfc215bd13d7c6436904b199af6a4156cdac52cea5a84cb04 │ ├── 54305be7a26e61bf18791ad9cade9ffdd20efd5e494671a522c17e542e166bf7 │ ├── 54672b7468aa15303bdf784136811c0f422218183a0585693338357f43421efa │ ├── 5480f6d63351f96919b1f829ae50a89a1dcf7390ae1a85194cabc441674ca9c5 │ ├── 548ad89f85aa6a7b477e3b36cd60943022a410ee207237a90a41091e18319c35 │ ├── 548edee0c92a05310f90db87e89a493b0379ba368f31ce81009125c0ffadd2ae │ ├── 54c7623116294ee8040c86f2ee6fa93ccaa3770ec035885140864d136bdc8416 │ ├── 54ed50d65466dca7448a94ec66aa85d4bc7325210f81499e8810ac163a6e43fd │ ├── 54f9e56d9dfccec55c1ff44ce4685e7cf7e22c852e1c8b0e8972c29d07178c57 │ ├── 55285ef72f7f7fbba48c6dabc6eaf6d6ba4cb59ca6d0509bc03a45a4251cc5b1 │ ├── 554147a62943152faf055abfe550f0c30ec9e5997db256da4852bb5c58a7a7f5 │ ├── 555cc2eca298bbe745d4ed90bf0351d98348e26a8d5e6920a8cdaefcfe39bd89 │ ├── 556c6a8a3fd268b4f38c1061fda4a506a8590bcaedceab41c81824759bca5781 │ ├── 556cdbbc198a456dd6cabd6f69b9d7c848a55218c2d413448c13789c1ce8c787 │ ├── 5598ff9b77afd323c15219a9044ea2ed205d49d9990cb2094bba41833f4dbf8f │ ├── 55b6c4a09e0194605704f2ed86b02c0518133860d97a9a82edef5c38b887c4d3 │ ├── 55b8a207c6e3e8c492316f92e33aabc3a3a0f07227bee7fd2953b5e50e32690e │ ├── 55ed2412b01b22f65b24a410a20396142c7d969bd7c9d46236fa71cd32718be5 │ ├── 55f935e00a7b1153d08aef6d5c51f46ad4352ac81efbc895d5aa31718bb28343 │ ├── 5605e8dd1034d95aea4a18fb10c38ecfc8bd1fe1916c55e90e78ec4dd95a4f74 │ ├── 5618b87c4e71d30d5157f5a3b40a958e2de2644656b8817ccf60fc3f400c470d │ ├── 5634f70aca4a772fbd830f3de7adbee544e56f47a78c656454024269f1bb25cb │ ├── 566b2277cc2ff46708220592940a1af8c879f864702e6896a5183a5cfa5f9b60 │ ├── 566fc40e501cc66058845266783385a80f4bcfbbcc5d8f2ac9c9af49e4a0ddc5 │ ├── 5674b7b623f53cc2d82327cf4f7a26de419421f12495223ff790e2f871c22569 │ ├── 569e5eed1e52518d7294c8ab12452513dba4a134c4de5958cea473977a4e0516 │ ├── 5701e9f860aea933bc312b60fdc9b4d5f41f3e473cbde45fe00777df36a16fe8 │ ├── 572c31d3b34eea3ec304c5005629f2367bb82b360f26484d2682eaca25ba39eb │ ├── 573eaec8a73733a2cf8e3c235cfe70d12d11656ee21a66a463fc5c13bbb2b109 │ ├── 5758c18cb454097f0927cda7ee862833ada10db4fd74b0efabfcec5f84b81d24 │ ├── 57ccca41663db93792d72ebd53b5a8b856615345cddf1fb07534a007c543a675 │ ├── 57e2ff8af72496bdc626a9ce49f25d8869f31b04ff73e4df3c094bee80fe9a01 │ ├── 5822c1f1834adf8afa7cc911d0c085d721459de6701adb5c9d2f5e35cf0e2d2d │ ├── 58298b14e3823b232ebd8b9c54e337e96f557e35127d53497232c9f4dae03b56 │ ├── 584f29a5becfb5c2deb285797299133879b9dd9ca01f44339c960ab0f8d7b970 │ ├── 5859427d7a6b5031a0ab32e09e186918075815e872660dc41b352112d6d020d2 │ ├── 586d6525875a890679c89feea5897a501b9245f593e1e5dc2ca3521673e87ba0 │ ├── 588f633e01a010e64fdcf20ddb50677617222b82c332b8c1e0174877c591bf96 │ ├── 589652eb26c76b74f0b1dca6c05b84e65a6f53d3faea0f60d8a5b441e4d04880 │ ├── 58aef1a60eed0183af7b5023779a11331256a35953cdf316fe8aa9e9f6b049ca │ ├── 58f472b9205ded03095959031994f0d0dd7c1aaca7a31ff64f75aa7dcb2b66e3 │ ├── 58fa523a02a675850e8ba7e61ab3407f8d496c2af16d69b548ddabac2a01bd6c │ ├── 590edfd3d40d1cd4abe4ec12e77189218cb79b3aa06802da70cfaa52274486ad │ ├── 5931975d584b0d42b5e31d452aeff51abe1257d4ccab0eba2a5002f21d30145e │ ├── 593b6b78e3fa6fda1798ab9c89dd52dbf72041157d0ca08f2e6e00f48549ef87 │ ├── 593f301a7f536f312061275be9e3ef00b3d178ae011978efca93037c9145e5a7 │ ├── 59664a6df812c583f07c6745c758380cf1a82966586d5929e62d8fd919591d04 │ ├── 598c31876f514a1d527587bdbe7ca03d98245595db5bb7793a57254ff2f9889a │ ├── 599727da0a34291dc1ddf3cbcc950c9f274897f749b0633b71c471676cc26944 │ ├── 599e40eea8337f21852d1b06ca572b4eced2548e950e09ff73f74f4537d152b8 │ ├── 59ab5e0ed7262a2b3ec0cf3ec87620c7c97b2cef57e10534ba7584b378906633 │ ├── 59ba5de757036c9da8eedc418b9a0f0a2c5cbdcf69e832a9e9c5d74ee7d7fda0 │ ├── 59e9705d16426f569d214df8a18140e36ba78b08e20f32bd8c6f858e42f13703 │ ├── 5a3468438bb02ded9dcd57c3ddedffd23b77089742c166464c5cd0b1ef319e40 │ ├── 5a3e6b1f8c8e925af0b99ed04211e6360750ee0d5de7e2719a18f3148950c55d │ ├── 5a4c477b01723d0e2996b6161ce59d9eaf762d953c631299aeea8f4f77bc68a8 │ ├── 5a5ad5ce09f1c9f552beadcab118bd7e515203febfd6ed96acb0d5f1b701ec4a │ ├── 5a5e843b76cad5be6186aa93623617305987ad6815de9c1172edcfd104249827 │ ├── 5a6b021cf8a5b0055e5d6e62247e707350e09a844e75730ea184ddf1c39dd67a │ ├── 5abdd66d5a64fd2bcb06a4d39644fdd9b46995d62198ef8f65747338e7ec127d │ ├── 5acea6ac561e6969dc32487c36b545546d4c68e4df8f4d31abc78312753ebf16 │ ├── 5ae04ce4306701f3553b500032a48a695b84c63b8b273151deadf025cd083ac0 │ ├── 5aec94f6234f49003c7b187129fd3cafc865da646914e127d8146f575e076a80 │ ├── 5af526d3a66574c75b48d6c484e882faffc0540cdaf50a1f513bf9270d18a718 │ ├── 5b0e94f8faa858cb2ce4fdbd551206a957284db8081373777f6db4e34c11d046 │ ├── 5b4a15043d37e6062c0ab47735b2fc69d6fed75d2b2c703db13185200bc0da04 │ ├── 5b4c74666d5168cb15bd9f194f03ac5b40c5cd71fa7b33c1d26b70e4818e28a2 │ ├── 5b686590f497927e463e0df5e0448d7f8345c2cff07adce7e95d73fce875ec63 │ ├── 5b76ed2bb26b334a12bf988b57266aabc9fc0bfa9bfcbd11dcb741d89a605eb9 │ ├── 5b803db4bb6fbc6d3450aee26bbe9cecf69510f6dd2352e26ff773e05add4c53 │ ├── 5b86d58081400aedb5dce1b280b3d4ee781c0d894408353d6ba32283094ddbee │ ├── 5b91f452321f7d55d85adb2a78812bd0291dfa13cbb94916c6c6b8ecbdb59974 │ ├── 5b9d79dc84bd24b99ca34e2ffd95ecffac47bc974febcf533e461941a64e3884 │ ├── 5be83931184e88c4fb40324c9cbe0a60ee89c6db6f64d3329e4b71c74dd52d8f │ ├── 5c04dfe8ad9f6a4e7254703a00a9f9737b623d456791de819c2d44ba127925c4 │ ├── 5c24aa79ac5b5955ae9a37c784b9357a61d0f1f3ccc18176637879a98129f6e8 │ ├── 5c26e9508b76eb9ab11a4a325f13de8d27d4a341143b2336fbd2620ddd7bf8dc │ ├── 5c2ee59ae981f71fb8e2d03cd3ca4d2fe09158ae15b48dc0f3b0f7e8f6aafa3a │ ├── 5c76f320fa9585c440ba637e49a56068059101e8a01a7dba3c915c116729a122 │ ├── 5c800f1a761fe75ae27c159993563372da8e15a254c6a62f4c771277a2ce25d2 │ ├── 5c83f7f403fca0e90a5f5f45057d43712a6456cd44fbbc0d66fd0d9bfd955e27 │ ├── 5cb5af466004549ade6dab4865c7ab4c00185347635e400ecc82a092b2a4bf24 │ ├── 5cce4b61fa42a89ad01dc32c08ad0a84303c94a94ed9b4ad7b48fee1269307d5 │ ├── 5cde7ecfd69775bcc9404a769754d6af13a278b4b6dc7d3f501f821d62823572 │ ├── 5ce8fa686eb01277142f2aade7b8a2d48d1486e72a830f89f8c7f3e63041ecc2 │ ├── 5cf1b38f4b1fb934585268905f755321e5d50edadd7a5a346dde745bd371bf92 │ ├── 5d2cf1c53cc3ab5f02bf77a3b5d341505490b7e7dd3bd5f6cd9d96ab2d4bc341 │ ├── 5d42406493a325d60199d2ab8256920577489f8357fd2d36cb0e30f795cf8536 │ ├── 5d61c8118c3c6e67bd4971dac1c5b9bdba9565307a4eaa36d7bbe100ffdb0fe2 │ ├── 5d70b4a792063999ce22d98faf79f09d8df553f8c0a5a29a8f24a2e63c84264f │ ├── 5d9c606227b0e8847c019a78cbc400907adf6b97043749a17ff8ecf212e39fcb │ ├── 5debd1bb6593509c136aa0c7a4796b11eee952cc0cb360b2af98a7a2c811bcdc │ ├── 5e7e5541656e98f785085202e825b65fcc2af38ae7f21d4baaee75bf39252d6d │ ├── 5e7eea2045af29b480014b60e65622e4b79f0e5648f3c4bf8587a88d3b32fddf │ ├── 5e91d1cb69ee2c0589c135eddd5e83f2b87ce320086aef6cdfdf4df6009d5545 │ ├── 5eb125d6c5a9ed7311d9de65720d4840d63471ef21e09e6f999607bfcf108602 │ ├── 5ed082eebb83dabde6d354eab254322cdb836f3e4ce7f2bac34fd35df3889abc │ ├── 5f06561e2a07f852e776d05c57d54d051838910adc9eceecef82a41ff3476517 │ ├── 5f35858655e9339df8858a494a6c5af84c9e4426a050ea9d0cb93a37872dd087 │ ├── 5f66b8dcb4a98adf4057817e268f490785ae5af35533f04044168af37e2b16d1 │ ├── 5f6a3e1dc6dad04842a274a11759038f48741e7eb6e5dcdb733bed05cf26ebcc │ ├── 6002c9b34f32948b86649e266489c3049c6238493bf7879a29238fc678b0993b │ ├── 609f9ee05f51e51c6c9d1533262dc7904de3648f71aba0728bdf2c4d62e6e8c9 │ ├── 60ea29565b67f3f727b03677741409b0da03be22ad3d66d0790ab64ebdad8057 │ ├── 60f8584cef421f7d4d875a4fed6a8ad6ed45cf79e469bd1eda1bb3ca8eca21fb │ ├── 61016cfec948c3fb70b4f1b2cd968799f35d9a406a9d55403de6c6275391187c │ ├── 6104583b0ed4deefc605959997567e49a72b7db611956188d83fccb942b52e21 │ ├── 6129c851c87f4846c9cf850eb1e74cc902ca4180778c15b0809ec499dbcbe3ae │ ├── 61621d64f03987e976900dfaba9540afaaac21afa3f3d8ffc348af7d24a34471 │ ├── 61b536eec24a51a1c69c9160348dc43a12beaed906d75e73f5938d0693b92208 │ ├── 61ebe2fa13d3686c1d73a9c1b7522a6d3be41e06c709b23522c1d8f0c4d96677 │ ├── 620d3dbd089966dae28327ce915b3d56f9f568ff797f1a442a97d3aefcd25856 │ ├── 621c3645c29bf93d70bbcb7df465f54924caf25a9c5ae515d3d47da51863ebe5 │ ├── 621f35c63fe082a79490d49d260b60bd9a54e1d7a017d68c2f8c3077e0c8117c │ ├── 6248a880915dfb6b2c4d638b43fed33e9c3cfcb1505fab4221c06fbe6cda9796 │ ├── 6289387ef46089a46b0c11b63640b16bbc5e7eddc64fe97c06303e7888457b89 │ ├── 628d4bde88a55f5da1845ce934dca17abca1fcc08dcb83a4aa9512b42fae7fcb │ ├── 62a4a96c52b2bc63610baa0ef934ffd3f32c629235d11e5ff791a38cbacfea2b │ ├── 62bf9dead392de55b88dd0867c450a1d5021ccb74df543e313d713a6d15241f7 │ ├── 630791bd6cc33013c2a98d55aad0714ec2eaeee93e184eb604c35fd863da8ac6 │ ├── 63181770bebfc441b27ae2fa7d3b33f6041b38e8fc2217ecfc73c9b28a35d5db │ ├── 632053d99a76f34f7e0cfb9dd7301fc643dc6dd3791dfc85c8bb21a36612fe46 │ ├── 6330877936855d2df1913eddcd325e64ccdaa5b01badf75acef974efb8dba8e8 │ ├── 6346ed6536b7be3fd32ffaccbf29ccd94e0c1725c22b7b00ae6c9e9ef454146c │ ├── 6383af219ed1347d5f6b9d1935b44d55d263b99d0ef14168c50725e080831fb0 │ ├── 6384119213d51e15a23ebc69d2703ee6dd3087608109ca2defbc661fdaccb6e5 │ ├── 63a78745e592e90cf72e8d4b3de5abee9e4a95969559edaa5f59a13b1db3f9ff │ ├── 63cbc7084aa450791ed96babbfa2d5e729b57f015e08186b0c720e10acd5846b │ ├── 63d878d2fbf86fdaca24ee013b9095add472944c3f027e73a5e97a25a73998f3 │ ├── 63dc1e8ce64ec90b10b0b8bcd078aa516a26d91b2fbca524395d2eb9e23af4d4 │ ├── 63efde73aae4b77e07e2bf3f3f24c332af3b6014e4b925eac5d15ffafb3dcd9f │ ├── 641b24eaed80fda18557174d691d38ff5fa8a0284b17d2d894cb5e1500426f28 │ ├── 643de49a1eab63bca7e2d541e6fd953fc14c58e00bfd2598bfd121583c1f94b6 │ ├── 6461d3519bea2b0bf0136ce62db5f87bbb8f949200713cefc7d9cdd682889b62 │ ├── 6466d8fc030c7343a8493a9acad9b3ad1efa90b6d11adbcbde35e92d5d949d8e │ ├── 64984b380e839747123bccbb5d9825341e78f7c5f6c0f222480080074e982974 │ ├── 64c10fa87453c5ebcb1fe7227e4f09fdae529e65eeb1e775e939e20fff7403d7 │ ├── 64cd745cf52552f944c9ff21c554ff4aae9dee3ca5db0afe2db8cc5c8f3486ae │ ├── 64da19c89d3ae7e554dd423997902735db0cd3391cb413a34b5d37c671ef2e56 │ ├── 64da591f9789bf497cefdd50f6d3fcaf7bd2714cd4199bfa74dc6a4f6832f7b0 │ ├── 64e20bef1bf81294e7b4ded34cfebaecaef9f66d76c3ac96057f2ae31f073219 │ ├── 64fec42066dc2880081f8b906487ba4170fd63ca3414ae4c2d3e88c6e33de6bc │ ├── 650137770a41e1a72039dae8b7c488bd66eea3e47e39ce9e1c7aa165a4d95af5 │ ├── 653627eeec56e13be963834883dacebbeac20843c16bc119f3693fba3616cf27 │ ├── 6543dbb2deb15dac480f03e8b084a5e333e5121126348c08459c89bc68229677 │ ├── 65564bf01491951118741f1a27ae6a3ba1f7ce0a0f4aad5bc4d3dd433e7d1710 │ ├── 656828ec6b152e586fc334f85933cef0c7c973ebf3bb90f153a8827820c0d344 │ ├── 658730524d6ed5d30afe7d01218e5bac2a27eaf85dac2b9e11cefc05d298a48e │ ├── 6593327df5437657c538c4841b31c9bffc8d2b879b41994a45a1fd819a28f7cf │ ├── 65a7ab6d18897041692d30109f07f512620a38ba2dd4e2a8e816c518cec516a7 │ ├── 65b2d693c4376f5f76834a01a47ba4ac1f731d59270fd9ea3d15e99c5eae5fc4 │ ├── 65b9361aee07b48a23073627bc9e40df7f8a3af6ac0365ccb47ea2ba51ec4d05 │ ├── 65d981689dd8161adc852fdf0a98190717add0698b61a961505f7b4785d9dc2a │ ├── 65feb67d4adbc89ad69c0090c4d3a41293aed926195c015391161db393e54a6c │ ├── 6643639d1bfad7728907ff0458918086ddc77df93c6460eba0eff0fdffa30dfb │ ├── 66655f94ff22b60c4c469dccd3ae8d8c9f9aa024dc45cef03d1a93369ca53655 │ ├── 6679bdadc47b3260ccf8ad59447af80f32b58ed23d8984fc939371309bfaf151 │ ├── 66b9f3b790bef115ee9e15adbafd360ee7427273fd2285c18b6769068e3ccaa1 │ ├── 66eb36200a2e515eb4c9c450a072279a74960fea179a7e1ae5cfd19f9af27164 │ ├── 6718788e142bfde2c62db015643e2c516524369e75c5b29449b96fcba6faa1f3 │ ├── 67199a4ba7ac9674bb230fcc35e5ad761f8bc216918c88a9b24629cec259f5c6 │ ├── 673ad6b7428ffd8cbbb39920c7ee5efec16053a0c490237ee3811a0354e92f2a │ ├── 67767fec1b7757cf0e0aab16526a7b7a5e1957ac6a10e5299707432e3ca05c9f │ ├── 677f64b314f0119e2596a16d9c556c15cb653d0938f5a33417f3520e17a34159 │ ├── 678dc0f5464c12305a2de366b326b763a2dc4c4eb537430fdb4d8325380aa087 │ ├── 67b9a645296a88d6fec917384b70fd789aa7bdc181bdc275d61fa8dd926a1973 │ ├── 67e33ebf1e9d6a4d3b05139f6abc6c4aa1963fbbe045dd14e0c06556f42b5e7c │ ├── 680afb8652b5c7fc8a12e7d0835c6ea13c7e72de698735ce4407f308406e0177 │ ├── 6820e6702d679d34053045ffe7ef75321fa735c45fccc3907d1b6cab40822eaf │ ├── 686be05df16f4ed68493f832095925fd2985ba2aa16bf6f94546c236e146271b │ ├── 686e8fbb2f80dbc5a68a6d36bcbf4484a3471307c43f1d7c7f30f67a91f7a046 │ ├── 6880f2cad1efab19ecdd3990410bb434c1baea4f09f287c344acae57db9ea81e │ ├── 68a9d2dcbb41e6c4c55ff3066d5365ff049cfdd9c82c4b43bf2e1e39535990bc │ ├── 68d6459aa8b83067c789f2aaab686986d90a9196ab4550d193618fd3bae81809 │ ├── 69290adc2b2bfa3e7010b9a69374b80a6b374387db75e6694b13952f5d001f77 │ ├── 692c527cc29feb99ad0fbe680a0053eae0b1c72be5c7299ffe45483c22f0a0af │ ├── 694548bd84184969336b61201db396c36a3d12ff7949b175ee5a93019701082f │ ├── 6955e5285304fc6497525051d29260e3a16998ae8db7ed4b811b42592d80a067 │ ├── 6957482a1f48d0ffde32ccaa77e34b043a705bd932b6f228b15195e99e1fe2f9 │ ├── 696c3ddc0db9241a7f4d5d97a042e55d8ef6194502134d9d9623f78c7e34a6d9 │ ├── 69740d5762d26bb7dd9124803baf14da7967bcd2e1a52dfd2f7d100b49a73e3f │ ├── 697ecaea91dc3805aa6913a3491da322922a731b658bdbcaf0d5a27079b4eac3 │ ├── 69ba3d11356f479f49cf3800c9a9051564231a31a324fb3fea386e3f82d76141 │ ├── 69fe6d41d092a48245b6f92e77921b43e8a1276b13e27aaee9975c80885b717f │ ├── 6a0bd50226325b17c7ccce6f9791bcd1f921c02de999fabdc7af3cd001f53d0d │ ├── 6a21df068cf0db2d504c53277a9b05fecbd989993d13e48d4c195625355dcd58 │ ├── 6a3024de6d631814c9b0a0c275116efaae9e66977d280c6c7486f9fe5a8092bd │ ├── 6a3da8ceac6f7ee7c2af6bffd27586190cb9b511ce167667052d6bd6c1eaed2c │ ├── 6a8087bb11de986de899f1accd8596ecf4ab63de608b6dc88905aa9b56b26120 │ ├── 6a91090516cef7159281a233177ef096b9a258648aec66c8216588c600aae6bf │ ├── 6aad6462144c056bcdfa49f18307d7ad1ff979cdcd58660d6afa5ab9703d8b9d │ ├── 6ad39476a1fd564673d981b0ac838f716aaaf52c858755c7257bb5d0c6cd0e25 │ ├── 6ad4b30b53c209b10dec865e4d0a0b973e1ab82a47b6f996574a6c619eea577c │ ├── 6ae7de4e88dfe59c406b68502a568ace86124a89125d47c01546c063864486b7 │ ├── 6aedc56a1316150737e9e4d311ddeb27afddea3d12f927b92ca75205df8a5d2f │ ├── 6af4caaae5ec2eda20bf49e35d31359b02dc82bf0f982c57330c82eb2c86eff4 │ ├── 6b4cf162186b813647cc05203c234fbf8f0e35a84e65b01c6ea4ef31466ea356 │ ├── 6b5f663c6be8b536a4ea84ecb4024eecb696405c6b61c8076a6887fe3af54fc8 │ ├── 6bb664471cef90d283ec25250cbc70202e398d0b39e60c70f34fe31e907efaf2 │ ├── 6bbba86ebe806295a861a94e67f5f9b7f2c74cd58b81320a88ef6ccba3509260 │ ├── 6bf1b06246ad089ef4a0f247b3c6fb1e511827d9da3b9adbe688e8824d27cd0c │ ├── 6bf5e5172dff89f78eb4bf95b5aeb6355a9cbfb2e8afa1c13c6688ccdefb8402 │ ├── 6bfcb82abe51b8f346f238d9dd685bc7d3c480d0ec5e19ad403ec5caa4793324 │ ├── 6c28331bd848413b59ca18c742208f9386f3cb6d3c00c5a3bfb6a4cca869867d │ ├── 6c3c5f799204171a5402424b29724c9562fc4e07ad4390418f28039a8e3b599a │ ├── 6c54d6ba02adb21d626629dc1518fbf551215b53f045c01b826daa0f7469c07c │ ├── 6c5e29185a62d2c3a865ec62e9a6a0b4a5098bde3d4aeeef519fc8dc7bb8aef6 │ ├── 6c6836d58d70fb4371f463a3ad9fdd4b172268a6508d25a789e74b10ce83493e │ ├── 6c7114167290de36f6f3506010a985ccd85799172b0dd9de1c90d9aecc486dcf │ ├── 6cc8bf514ec5f6423c972e49f8968acce6a1341f9527a096f11ac438f9b6f090 │ ├── 6ce6d81bc9655c8b5a3c4ee157c1c1c7a0b8833ff4713718c52707c27b3322b4 │ ├── 6d1d0af7369ebaf7d4a79ea331312b5f97993b92b620c0222d68e11ae2d388df │ ├── 6d4934c890a1dad16ae6b12c764c92b69fccb238e44bb07fa32a3d9b062fb667 │ ├── 6d63794fa2a8ee7529469d1f84f79d450406adcf00edfb1a558de7101c3dd219 │ ├── 6d9a25b387fcb2b801665adcdf2628bc7446a9804477d93fa8aeacd660485049 │ ├── 6df66fa8c1c840af65f1dde29bab08eebd8db962860d8002a0f01e8813420b02 │ ├── 6e246871420d10edaa5a33f9ee8772421f9201b242ece6599adc20be7f22f3a4 │ ├── 6e368ce3512ea7f55fa872060b6199a9fba6dc534b56c278bb5dfd3fb56c67b4 │ ├── 6e642c2bb5740206cae79de54e11382bbe98f96006f846bbc13f97af8df28c12 │ ├── 6e984c9578a2f5b35182332178ebe9aaadf5f151759ea837b94f317941b7415f │ ├── 6ea7a92e153a575e09e8b728b8f718511bf1bb04257504818da1ff44837029c0 │ ├── 6eac89c335f4ba9f8dd18d436b4cfa3c18c079e2806258eacd71b4652ef4bb35 │ ├── 6efe7479f6ef18fcf7fac56778937820ecd19d60d6042ae61d73d9e3781ef23a │ ├── 6f0f7d559ec7f3963961a98e3e13ac62b84d39d5ec0548435a99e47ff30e4c39 │ ├── 6f18bb1fcb7ebd59bce6b8a715228cb5c9821801d3c52349e45c07898821d623 │ ├── 6f3b7a5524ab27fe706292198d83741d322272c24e103cf9ec7abe3d70e58f0d │ ├── 6f693e458c1ae63f0d588dc1265e5c7b87f02273e3d970e1d34a0c6d0a300f3b │ ├── 6fc4d79c4d0a0a9edc358948b6f566ea5f672390260fffd7a439384638a60932 │ ├── 6fd467e3b1f0fccffa697c9bf6a3e49f2dfa75bd06b569f4f24390fea619094e │ ├── 6fdd03cb99ecd40ba2786b2612ecf75bf556baa478dd1a9bcb0d72526e894edb │ ├── 6fe7b72370eb6ee4a68dd65e4da4f622138f3dda14f4d5bdbe9285f4d676b19c │ ├── 6ffa9ad7b8d8ea25dfeebdff90187431fa807019e5beff83c5d9eede9da8a8db │ ├── 7005e2d1825293e2bb2edcb6c0a5066d147de154b3e3c9fc09d1f8699345ab5d │ ├── 701e334fd7ac3cf8e4c370bc4322eaaa5161b5f554e5e83d5eb32781c738afd2 │ ├── 702ccd5283f4896bd1e4ee0a2eb902d71c010aa29dcc8bcd60eaaf1abbea3593 │ ├── 703e9278cd0f480ff5b10a8f6569c22859bd59b558b8b4a020ce9eb2326eb8bf │ ├── 704550ac0e2fd07597a094770b1b5607da2807eace271ab9024bab928dd24e8c │ ├── 704fd2e8059bcd578c88b077a961d67ca48655095699680b5f1cd2e96f468a78 │ ├── 7068aa08881b66a14479e62c6dfcf7785acbb05ceaf519d33baf85de6f71e17e │ ├── 7071ee20a9d0335b06c1ad55c34aef450bbd79398239c94893a1e9b1ab0a3076 │ ├── 708dca9ceb04778106348ded934425ced3a66c1c0517caadbbf4196378fbd2a8 │ ├── 709c3b572f12635263d8115ec9db08620501e5df61f39d12115eeac024ea497d │ ├── 70a625f75af105a89e2ad00ef3dc03d6ce8023d607ad7b70270489d9d3997939 │ ├── 70c41b846145ff481d9c7156e900bcf1a7a5dd0c853837f6a6d1ac54c2a8829e │ ├── 70cf2a89c8c495e294be7819498378c145cf8bc1d0cc77881c4a108a14f3a10a │ ├── 70d5e4dad2af6db6c2b3148cc9458eb79e570ecf01339fe8b06d736a5fec36c1 │ ├── 70d7004679bd42461be9a64f6a0b10aaa3559e9c4fd70411d140dcb6d46e8a47 │ ├── 70e7b51c3218a3e46ca93461ee92e1a210e3df03017b356a766079f6b7af6005 │ ├── 70ebf9e1306c7b2a2279107fdbdb4d621ac357d474ce015c1f0701eb6a6e2495 │ ├── 70ef0b23ceae68de4d5042aa845404ac1e7ba692c403e2736739828615d78266 │ ├── 712b3b9b8ffbfa6ca952cfbf4b3904cdca219b575ff4c660066a30984c620388 │ ├── 71347009fdd7cfbff619d15b78083d4c5c8869f6c85953fb51ce680e43a5ce64 │ ├── 715c6f50fef91193af967a65b468ca969e4663950527e31a8e53e44baa05d091 │ ├── 7177dff2011f02f1a411feeed50467e712588ceec08d5a8a333236050ee5f2e1 │ ├── 718dd84f1e4623c39cc31c7bcd06043e741ed58e823e53ee2e7251553a8cad08 │ ├── 71d5924ac0855f0b737aef1949771af9402ec7c583bbc62dc9d3b6a06e35f4f4 │ ├── 720aba7c37164def4cc85bf99d5784ca4b3a709e604294c65a60512d379e8e82 │ ├── 722f66e16dae6190a4850902f89e30edc69f633bb742100bc07826aa14d491fa │ ├── 7248425a9f3959e00da855c73c9fef197d0f7d9d733f523bc555986dde764284 │ ├── 724d3c6936f612e2f0b36afa95125238c55176f0a7d0d3e56ee91ac491c1255f │ ├── 7250d29876927975aad6d6911bdb17407e2ae89135a45c22438b874cc178d4ac │ ├── 7259dcecdf97aa55df81850813644f08db519e31079e3c804cc0a7fe6ddc2b7f │ ├── 726ad32559191fa116e07dc84dceb58ebe73bb43d61a177e727dadd18424b76a │ ├── 726e63e30858eaaa35b3385763317044228bee3dd674b235eb19fd3104243a3e │ ├── 72793b81cacfd1faa2eb9464139eac723f4d07239a08570fd5e6a42ef8933db1 │ ├── 7279ba45725af003a0efdaff43630200fbdbcb1166ec2d6f2e08888d5ba62464 │ ├── 729a0a77c6a4897daee1c41403dc62c26aee02be8d296b3715e0708562e1b770 │ ├── 72c3eab8f14c4126bca9be31ebc9170ed02fa2246224e8d78e1fa9454f859165 │ ├── 72e7914959ec7b68421b8de1a42e982f74a977b2105fa1a83f162c3632d9d87b │ ├── 7303063bd89789d8ac8eed76c6348acd20e0730f3f83039ac7fcee7138eab1ce │ ├── 730398f829040712743f09e973a13db3a3960b3c7862011750abd3785e20e433 │ ├── 730cd7e1575dcc1358085823882d65fcf030c607c5d2d333fa98704597c7b522 │ ├── 732ba676bb09333d75fb3a80d708e8a553680c87c24faa1823963f46e2db46ca │ ├── 736ff3c02e5595ff2df74fd7781a4d5a5e71424a6cea6851677663047e2ec3b3 │ ├── 738042cc32a3009efadc9a8cbc4383eef6ee42f123520ce87fb64a84d2f5039d │ ├── 7382c62d43134f5c1ea3abbf543da581936b4b3d2d1b960eaf019da9d5c416ec │ ├── 73b4fa9f5efca875a10a1b2923d428c850e231b731d6d1e6316c2aec22a6fda6 │ ├── 73b6cb539259cf2068be18bc672d180445aee71a2edfe0404504545145f28c54 │ ├── 73f2b59f51543cc743f8590c6d18156e3608da3b188c85ec086a7773123f071a │ ├── 740628282a61f997baa6db341186dc98fa425a7fe733f124864d4ac8eb20c4e8 │ ├── 7423b062ff85142f440e07ff7e5b669496ec360175e2ff42f7c733ad208e94a0 │ ├── 7448777e22d5c9e5a8ce76eae6d9357a21c883c3464b21960b947c50df7ee134 │ ├── 7451d6cda90010cdf8e2ecbeff3cfea4ab8d51f62c91c9031e8993d9746061e3 │ ├── 747803d57e33e81ef66b23ec188adf1d900ddf273e6a0204a01ce5713a1ce462 │ ├── 749ceea3102b8f035274d7975a9eb0382640824e9fa28e6cb53b878672be1ed6 │ ├── 74bf70fff1eba2b95a4255b6c981c6ef729a6fbb7adf70f334e59eb31022d552 │ ├── 7512ae98b721e0d08f916c9309a76491df1f6bf643756fe7f23d1bd2c724b7ad │ ├── 755446f001790e6fa5e5510bb4e6c7606c6b6f15550bf1b61ccc1c8edaa7cae2 │ ├── 7556fc2b3ef06467bd356baf08e5115b7d31c8ffeaba87f7a5487b40fc88b13d │ ├── 756339d6bf0e7d32955edad671475e54b069d4b7700d59c0bacbb4a9baee761b │ ├── 757eb6f308228e3de61494308e55602d0b5a935ed383b6d3a3b4650e00a0723b │ ├── 7589575b070a0faa6cabb40cbf23fd483f0c40899af08ca44970ad58252c1b0c │ ├── 759439d4780a4905dac537eb14fbda60b642506c14b9d32ff2b58bc70403c693 │ ├── 75a30702f33a15e275a04f807d2d87dbbe72804f89878942dbf29b8bd8847476 │ ├── 76435fd942f8c0be1a22fe0e5a2268ac37a76429ed0f9832d9b36f57c311c09b │ ├── 7655383ada42265a6e76223babf5537e162701e721e4a3b17fa3e0ea1a7894d1 │ ├── 765e084881a09811022a57ef249895949442bc5ebdbcb255ceae468d04f66c25 │ ├── 76636d8b8a4f686aeddd1baa7019a55dac6c03c38a43f3f10d7d0a316a4fd6a2 │ ├── 76769b83132a8fb2f5daed6687ff9352891da35c6a09e392d8683a39792031f3 │ ├── 76e96ef2fdd03b6215b97f9fe82f0c25183a744f2d94615e1940f79726ecae03 │ ├── 76f3d132015d434eba5b71398c8f449bf96a2b94d24f2302e16de06fb911d741 │ ├── 770d70681f1f9aab3ba825a74b46981377ec59a1e70d3bb4cf3c69504d15a189 │ ├── 7720dfe63b72a19db5c58d4faedde902c6232be7d0cfb24930ee109e3e99edd6 │ ├── 775cbd22493b6db1d69def29364ffc193d6b898b077429b7af2f98c09c58c761 │ ├── 7790026a663abfbb7368abe06a0b3105933ebe5ef70525f866d22b39aa78995b │ ├── 7790ee6bca1cd10d1811c03ad911cdc6a4e4f195d35c46435e6f554e696a2d81 │ ├── 77ad5228a30982814e024ec04c22e581dcf4d2dfd4ecd3d0787533680553b8d2 │ ├── 77f290a48d13f7644d8c7a99794d8729a9f8d0084bb6fc7fadf3d887acfb4300 │ ├── 7805d3698300f6b3d07a642d074a166f4db2ca6fd8eebe03df3933f1906a1539 │ ├── 7805f6bb9f792725da4504d048260cc623d91429787f4663f05caa6afc1329c3 │ ├── 78071ffcfbf2c41d6a716a4580c0b4ea38c0d53b6348973d326be2fa8084c570 │ ├── 78401fe95ac022a8b022f7d0c8cb3ab61c2e213540507f0a7add5118508405eb │ ├── 7853a59be835372fb257fbc913e3bbe76fef35e2458023650e2d7e74d5546ec7 │ ├── 7867ba584d5a2351b2fbef49d2c8d46895654d5bc67ad6288d5f27a2933afb08 │ ├── 78a2a6ebac6dbd87506ac2e9abf063fe8543909f0e8087a33a710cd4e9c4fd8a │ ├── 78c38000b3358483f4821a0f64e4ef51e29deb5623f565237bc71d26783a56d0 │ ├── 790787ee46ca82f1b197ecf495664c72c1494d7a315f605d5883dd462acaf3ce │ ├── 791a11a6fd3f0dab4aa7dbc323c325e90a600d63ece929321c92486c08188562 │ ├── 7965dd70fe2266f2e3109603cecbf72284b0b781538e470ce4151033b1587500 │ ├── 798af4c3a8c389dcc572f824834e5d1203a59ff66eabfe0ca843fdb0025ce62c │ ├── 7995d375a662095c1b23bac61b736b9a6427e6342c72204b652c562f9b84742b │ ├── 79a3e90040d477dd3f88ff2641d1b3739a477e1f46b580bcb47813505dc50f30 │ ├── 79b23a3f166078ad558650cc19edae1488daa980e956022f9c4a8f922282d411 │ ├── 79bcc9d2bb3d53fadf09cf787c2d693d777800d51ada94eaa5de97ae28318572 │ ├── 79c4c1440f9d705ec3b56c3ec8c788ccd2f64baedacdeb746c88a0086cb43ef7 │ ├── 79d4ef40d780918e2791813aad0afa9476f7e1956b327e4cc8c6ddf865e63320 │ ├── 79e639996e6da73ae3716ae6007b63f6f8b9a0bb1e1fcec5df20b886e8c883a6 │ ├── 79ebf046c940878927d04aad355d75d27cf1c6f413c5a72b488b550bd09be26c │ ├── 79f32bcc91d224b81f09dcad8d7b256b60ce7a593c9a5c402d48825115fd9804 │ ├── 7a0e5fe83d19502f8c5e6dcc7295a32b008105f089453dd6a72c0bbc099dc332 │ ├── 7a15ea22d8db70ee2b0eed0df90a11ac97a2ed8d66eac7a636697b74fb37972c │ ├── 7a5bdb108c7b6d55eab2995884493eba89efe1846b3e07b86cb3f670c3d5f8a5 │ ├── 7a7095c1f48622c2190a093a9aef2190182041ce25581362d81e473283f40d0e │ ├── 7aeffe75b088f51f6ad2e965df30b45b318b8662dd6ae6186b4a4ba7a924be19 │ ├── 7aff29e4fe17fe6927f0cde281702e02c7d84ea9cac2aebd5616caae2a85986b │ ├── 7b5407dd330efd1e2165b4c2850d4194b9d596a0331f66eed35ea110720dd929 │ ├── 7b72cedaf85f3d60cdd417e092390f4d8fc4b58dc6dd48cf78d87415b6fe4d43 │ ├── 7b86ed10cfb99af746aaa1373144adb28d835960ed30297b9619d97e5b46610c │ ├── 7b896122a9279480331ff2143623b95c2cf4b41c44348dc31ac17d94af29c9c9 │ ├── 7b8ba5b0c23bc32baa7ab0422dbf42e37cbc3ce661ce45bb0dbca48e0a0fc2db │ ├── 7b8db4a8f22ed81e712ca7f0b9bc1f210956d6f76265eebe3fb08d71754e2b1e │ ├── 7bb80d213c546ae5673dd8b2b98634a6cd58ba3a6d7a42e7a47a63ebf52645df │ ├── 7bc98a2155fda7a3aeefd7c97e75da8689ea80d7c097f8f98cffd11510553870 │ ├── 7bddd46b4adec83e0bd44c72c059e9efde71210b8074a156c3d7de93c3f2aaf0 │ ├── 7be68c433ae8c2ca9b373598f1fe29494ef99615a371f74ebb4906430c8c0a77 │ ├── 7c3b4351c0172de68df8ac28efff8d1915e394a695fdd361b6538296ec7e8cc1 │ ├── 7c3bd48b3cf391db19fb917efdd22a3a53b9632437c4daee1c3f1df7e7da8d83 │ ├── 7c6b37a7a7a9dcf4a172c1c4af60c61fd4c04f91805cbbe0fc69057cf97ec31e │ ├── 7c8016680a5df0866c10c0e65b28e6aa069240b7540344fd4dc240434619e74d │ ├── 7c9bccd968f632ee8d1ef6025cfbc6f5ffbb852922937ba167706f893da703c0 │ ├── 7cf282a63423fbc14db6285beaf7eb56d8e60734b78ee7838d116822a6b2726a │ ├── 7cf46c8f584c43ce5f5f107ea96dad83774e8f2af0be99220f2ac81a8dbf34cc │ ├── 7d08944696858d7029370e71ee63d5ba209d64cf9a84fc87d88efed2d36f50b5 │ ├── 7d3118be016504d8af0ecd85245be5a3dd29322c3075618018967f6ced6429ce │ ├── 7d320c446f74dfba424f76918220decb2344c18e104ff33564f9849d8b3972a6 │ ├── 7df058401958448df3ea34c3cbc12d2adc22828f37c12c9c79ce62ab4d3c968e │ ├── 7e0b40c6749c04e42b3f871a4868a76898da126bbf0b94a74228388abcd38e9b │ ├── 7e14f1a2a334834244459fc541cb515e59cb49094d26543d5cff01a0c29438bf │ ├── 7e169d9b08a5bec434ad43c2baf11559385bd28df673d6600b34926f884bb51f │ ├── 7e203c8ff514259ea90e30cd45bab4e00c95baac754fbfeac635c47d2bf3512f │ ├── 7e2aaebc3bd420bc1bcc4365279daa5cb2426a33c29bb4967f1e18afd1a296cf │ ├── 7e439ee701d5aeb69b49c008e39bc17766be19a7a3e2066469ce22fa61f0a6d3 │ ├── 7e5062419c7353cd3a5ce682bd070797f40975781fd17aec35c3d49cebab6380 │ ├── 7e786e1a1342099870ea102cd73052d34fc2ad44b612dd0bae71629f5dd52227 │ ├── 7ea24c41df9d17fedc0f0ce27595bc3d8f7c9492e751715978f2502eae3ba9af │ ├── 7ec9579c727545fc4a68113d97837cd5eb4e08a9f1c8725956cffe9b8f527007 │ ├── 7f3b1c2a95d0e5f1a613a39c701d690ccae5afd31125cbfc333e2ee3fa714e7c │ ├── 7f42f8806018371b746f420bdbfc9c6c90ac767c5039bcc9924ade7d92025e27 │ ├── 7f6346dbd3adf48a45f4cea353a097c1f623a5910b47fb4d1772f7696e176cb1 │ ├── 7f76d63c423d230265fa87352fbff888ce6d93dda707fdd549281df0e94f4344 │ ├── 7f90516ffaf1fbe98cf64ad4d9c4607faf4c34922bc145732a1ffc1c03d984e8 │ ├── 7fb57cdbb0993b7ef6cfd74474820a52c0532f7823a563a4f478df74418443af │ ├── 7fc023c16234b32ad68868d4a223be155d87f0774b79175a39eaac50521b81bd │ ├── 7fe14a1b9f976b71cb8675cd56adc7163c69bad5a8170e494d635e0f90ba5ac2 │ ├── 7ffd5385b36b24897fbd9f4622295e1f9ba1b5ac52c27179aa8cdb4047555cd8 │ ├── 801dc3eb3c72fe3c0c5f457e993796378cc0eba84fd41711ef24ffe09396a7a8 │ ├── 808326419712a7aeb54635d68c226ee293975b8a62a1c593b52b2605ac4aebbf │ ├── 808ea2262df7ec013ead0563763278b8a957ccf46c0334223e4634eb98483f81 │ ├── 80a30989400b21d4b3c5cf8144dc635efcfb5b9c9322c34047ade92ab103aa39 │ ├── 80a8849569a5ac89c1b335b646f03b6654256ad469e5954e6ec4a3857dc92faf │ ├── 80b0be087f35b97847cda34ea48e3a4ab5ce11a77bf8cd5024925d1e3feea2a8 │ ├── 80c58f64a45458b9389359d17c3531e10684aca555ff534c7a0edc735cc955ea │ ├── 80d130dca35d9b6495d550bc993a7d98f909b30a36e4756633a3d183164c27e3 │ ├── 80d8685918d68b89c1cda51bc106e01706e1c38728c742bafc54f7d68c29468e │ ├── 810293ec9439b896a881863e1f3587a5cbf411c005c36f17f586da92a6b12ef4 │ ├── 8109532a2d9a2ba7f82f3ee88bf0f12b2448df8cb3d97b19677e8132d6a3d810 │ ├── 813d0e61f5db52cbab4b9773dfe1c5418e0df523045fa77c94ed0290771d8c08 │ ├── 8140e821e768ab9a1b10d97b0e2a9e8b41adea01a67a4b7e105281bb463af19a │ ├── 8168939cfd11dda7f1c08467cf88671e9a6043778b5ace22c06828d190da8a96 │ ├── 817150f2c48492412e90146b48ac88344ab8196607ffe785ebb80f33b6348768 │ ├── 818840c5273fe629e352bb651a696325885b9ac9cbe4a1443cc3c20769317687 │ ├── 8194596ee511290529276ca283ab3669e031eac68ea2c714354d090b15d6a415 │ ├── 81b49ec78c96402524355fbdc4d8aef2278883df66c79cac40f79e8c113f1912 │ ├── 81b756923148e65855050e8e6f4fe697fcdbcd951a9311cdce1dc7bdb0a85901 │ ├── 81ba2c2469749bbd5a5778e3fa63b5c4aa3d66dbfa7f3d34093b270eb80d10fd │ ├── 81be37c6d8deaa369ecac213bca4474ee72b97f2572a997f9a358d32c42af310 │ ├── 81f2a469af32124f167cef4bc05e93ab0063efdc3a757d67391c0a96ded44e75 │ ├── 821e3a729cb8d0d463682f87cab2d60ec04430872f4b418379443f3a68ef3254 │ ├── 822890fffd93d8f322bd57c7cf7640e2261d3e8774d86b8130b5557f1d6bade6 │ ├── 8235fb0bc1cd33d4b8c16d0b744ee02888369f56af60122ff4afb2484a732feb │ ├── 8240bfdf9cdb6e4a9438763623f33dba1903cb92c7d73bfa1dd5b6e0af6deec4 │ ├── 8246bbb12a00c9375f9f4c7417051b1ee5b31cc0af81500d5897a61985d56d8c │ ├── 82726785651bc62075f2e513e0a692452e490ebc8df54341462bf022c0b57b4f │ ├── 82960acebd505385bd33604be60979d3fab917e8823470666881e3e85ab44f0b │ ├── 82d353de690a59743a2cdc8e0e019d3a32db1415ff3a0e4299ce8f04efcf7354 │ ├── 82e438e354154ed818acaa143c00ee0ffd67ba9bbe659a99dda3b44630638cba │ ├── 82ed101285f9aa9b0ea31502cabfd7658c80ba7a6e26008640f3b6e7978b064f │ ├── 8355b2a0ed1c1dc5a011b1eadd325a1f36455943fd56af98d9fbab3a4da2d436 │ ├── 8361cb152c60b3add00cd0807a9c7136f52dc74df7495f1836ae7e57ea32cbb1 │ ├── 83628e4fecd29ce50c354644de5be678a76f5f69fc66fcaa5ef2fb02c91bf6c7 │ ├── 83685d199a340f520b3047df2226a49dc2beea5cbd7027a5bb1f6ebfef29ebf9 │ ├── 836d6e74e7853021adfd54cb1982ae9ee2b0e6e2153136e1f51a1870b2380201 │ ├── 838ed87bc0c338df2c1680b4f413c749e3e555fed72028cb1e60365ae222e05d │ ├── 83e57f8c28a42666d1edebbccbe3f46b5f8f03dd2a25e0fca2f1ec812c85a8f2 │ ├── 840639e3dd580039a78c43d5d702feaec9e0053ede6dafcfb22e44cddda8991a │ ├── 841422ab25ec0652bd604a12ba9f480fd149b90d7a3712f97aa5b1cb7d82aa1a │ ├── 8419fcb9f73e37c638d4167fdfbbe3e9b44475c557d7377be1622f03fad8af96 │ ├── 8426add9a36c0e20165097cd71828e5e762ad9431a743d63ca90283fb2183dcb │ ├── 844e895f38acc52c67bb7c046a2dda720356e2e10187c00520d3ea005b11847b │ ├── 8451807f29838ffcd8ec9af4de9dc3f931460fd5764c7313ff0b469768556bbf │ ├── 8474eacac30bfff5e4d6295e89896b3ead260043429a860739fac8dae018b6d7 │ ├── 84920144f2cb6368cb7a920ab2aa17f3813f068642b0cf809b177aa11702fa55 │ ├── 84bce85072e21376e8ea514beedbadb13addbf60643a05a49ce159546c20a72b │ ├── 84ee25bff47ef754305ae548a39ba13e391bd98894c1b722ddeea8b8e1dc4d80 │ ├── 8535ef8c0301dd73d94577eb694265881b092ec6a28d7e5e9b72c2e00505726f │ ├── 8590f288cc6ca279344d2011564512003760ccca0811dc80d35b69f1699e7637 │ ├── 85d9c81beda5e10695d7c06b76f051bb10b4b44bdb9389ed99da5ea48f26c2e9 │ ├── 85f058cbe84f27ff5ef7f4acad28d48e89a0b34b8d3416521c82eb403084595c │ ├── 86601eacd8af94d03bb70bf97d357e9af34ae2740f10ef7f31cb793bd6eeee31 │ ├── 866d3a809a44da82d3a9164aa21045d5a6dcde8dddd67362a9612cd1c7b5214d │ ├── 8686144af14182559377e9f83a3bb8548a2e115f7f6bee1adbeb6dfadbbd0810 │ ├── 869a7956df5674510c01567636259ef4db95c495af3a7132fe1012c5f5622c62 │ ├── 86a66efab1d8865d57e529fa57d4ffd9a9e4868990551ce0283ee3d41af2e7f2 │ ├── 86c6dc0050fe9f4f226bafa95b880871cdbdfe134de13cd93f6b72eb168a6f22 │ ├── 86f29d4f885e69a18ba755ba36feec907a0c9def064e43524c5060d241f98951 │ ├── 86ff5ce7dbb212f42dc3cca57d0a00731286862dda4199b61e6b218dc152add4 │ ├── 874eeded80352eab858dcae06fabae5fc8f00c5fb898a98f7f17eeb34d0db12d │ ├── 87707abf4c2d5c4b0293ee22792212d5e1674f3022297c6a1fc1ac18a22586bf │ ├── 87b424d3f645e935580e4583e6f2d38faba3e9ab6953c63cca9afa219b3a8460 │ ├── 87b488f629bab35a5fba997f221dee3e1dea17e83eb83e915ddba47c71b6b8d1 │ ├── 87ed66734cbdb7b98b8c0392aa636ddd2e9d9f602dd244930706fd48e91a3fee │ ├── 88180d22f2248b395e8b662e801678c14ed214e2c78ff8049875224fdc30be32 │ ├── 88511e9eb50bb3529bf83889ce7ef6560e3998be07f1de6dcb00265e65b6b616 │ ├── 88acd3c5e8aa71eb122b5c7d6404eb2b7a0204db126c95a54eaf1ff081c22d55 │ ├── 8901bd618adb193a2135b865374cdae0903c87e1553c7723a0aa875f0f735612 │ ├── 891390a286ffab25d71eddf3bc83cc65239a1bfe6e036bef0b72bda97adbed21 │ ├── 8941a43cbbe242aeeae35baa29fcdd53e4ed3064ff1cd769ca1e5e040ef76ab0 │ ├── 8963b2743ca48d6f7674a8963548db8594aeb5ca22291ae4f2f9b162b583ef19 │ ├── 89745335894662e17410ae644576c36a4a003d3464a9dbe9afbacf929a7e7edf │ ├── 8981b2e498d3ae4a5546cd8ddc98ca8d880fa9cc3f5c9e811e8ba3bb275503f0 │ ├── 8983d358fea392ec3c52d03dddcb48e7f59e5f0a5b6b53c8aa6e63e72011861a │ ├── 89b2c8543aa1d68f6da21b744ec8ee23bf326ecbc24445407ba80a58fac2d210 │ ├── 89b6e4e92f65e7188d5bd2207bd96efbddc225bca1a930027a23558f072523cd │ ├── 89ba1508d5f0218779a697306315cc7a26d486eb75cf97f4bde37f1276ad9083 │ ├── 89bb4573e8d69e7cb7e8b53e59bd172e00759ec75a62b5e0b3aa4b0745cf3b6d │ ├── 89f9e25ffb9be247157bb3dd837b38c074d8726844a2767fa7870fbbdc5b2369 │ ├── 8a14f71478864e63a354e9eeb9c54023d8678697ecf0e09e1f0c493f3fa514f7 │ ├── 8a40f3dd901f9a99b5b6c7d1f5488906c4ae74ed876b3d5b01d8f9631ff98f20 │ ├── 8a419ad611d26eb45da7cc136c39e5daac2752c2b414f702a6993e5220070bed │ ├── 8aa32d9cc08202b64b8c2d2a5c1777d431c56cc136864cf81f58a8df0ff3f82b │ ├── 8ab5c0a63efa38c2877708604c16a97d5367bd552bcf9055053802d73309ddaf │ ├── 8ac5965735782c310cc8b306504a1e3cc65ef5fe5696ff66e0f2b31f2b456161 │ ├── 8ac5a6ffe42b1242ccbb7c448e48c995da05b8deeaf2f5402338aafa54539838 │ ├── 8ad27f152378450458119e16f6d3aae36a8f5457904217d41f03f6d055229cb6 │ ├── 8afdbeb7f952bc6701ef2b953b32715cee73cc9717af0fe9b1bb4a8164132e34 │ ├── 8b5fdd8183cd4a6175f63d294e455a1bc05cba0b98a6986b0c212983ca1507da │ ├── 8b6046b8c932a6b403e6959cb43f23d170c894562070f6a7c804725f2a04fd32 │ ├── 8b618be6bd77d40cf45e124363ba55dfa17337fb75b50742c300b3b3378f0d98 │ ├── 8b6ec8f49c8d67c5c3188ba9f728cdab5453dcd613ab85ec66e3a640cc31a09b │ ├── 8b767ddd254bb11f42a2ccf04e79885cba0c0c1358bd705d1027ead89fcc4a86 │ ├── 8b8f4242dbaf1751768955003bfc77303676dc212793b6edfffd61c9282d04a6 │ ├── 8ba88222977fc18510a0b0b8003c753f61962a6ce1bf82ee6dfddc8b467a10bb │ ├── 8bcf5dc61e41c102e116edacc0d226f9e034de2d4c4fa6afca66f7364b3e7e8a │ ├── 8c160a0c936851d9f427185da72a129b031f9ee7410f14620cf0da9cc42ee2ce │ ├── 8c254796b7b1067705bae2af1cd000fea918a270f0cbd07072d3358b98531920 │ ├── 8c4b8c1db5fa28ec98263314a77146141413ab7c27d7498ea4094324eec93835 │ ├── 8c7ce41b7386b3cd1a3684608f6188b9286033a8375489e9adf57906eecdf4ba │ ├── 8c7fc7f8344ed7f0d9bd4cd36ae689ee189c8528da4d06ac91b62d4087666b8e │ ├── 8c8b2d26617d9d65163d203d499131f76e0296fce49f43b99e6b2f0d34babe7e │ ├── 8c9bc784cfa8b4abba21b6268925762bf68f8ca2604e4dd110f1e09439208b97 │ ├── 8ca6e651db2aaa4f6ad98825aaf98ad15dc5c5f569a39e605959c0fe42a0a7e1 │ ├── 8cdce1a74b2d145e1d62c3cb0a4183766347b93071468821fb970686e68a73c9 │ ├── 8d143bc719bcfc97263eedcc1c6787e4f8a1fb67f9d75c62ea0e5d2426d4ede3 │ ├── 8d2ccdc4dbedc32e778a6bd854ba7bb88387a2e1f74622d2f459cbd3dad5228b │ ├── 8d4a731b3f146923aa311b0175d6030538452880e7febacdf5e45dbda7e8da86 │ ├── 8d750f452dac730191748c7a50f98b5249e1b0e9ff28f3b879eabb2fa8a2b6ee │ ├── 8df9fae29f150de1bb1d7f13276d035f732ef8a1f6089452d47ec2359c1cbc54 │ ├── 8e2c517ed383a2421ac17331956ec971efc7eb3bce9646aaf2d4ebf9494015af │ ├── 8e3ab8d371358808edf18c210bf5084da22044174ba41ae78efca09d80864bfc │ ├── 8ec1c453c3a7640b14eb00031305947ad215231e2a7b0b54dad3605767c496d4 │ ├── 8f088eb85e0db4c202e46ec17b7923842414508949f1ebf5c6f81cc97087994d │ ├── 8f0ad8caff68712086806d42072a37148f305259c8c8883f695d1fef742d2ad5 │ ├── 8f0d838eb426d90dec93ff31bb22dc7d82d0ce84057dc7f730db1158c29208c9 │ ├── 8f253a2a057308448a4d8828269e09c1b43c1f1011cafb310b925686d95035d0 │ ├── 8f7ccf3bd4fdbe6c182ee9fcec18a37d707716d5f5212b3fba2d1785989a9d01 │ ├── 8f90838b9c6676db19d3223cb2c63e03f7bf447a62d4ef230686e9fac03a0919 │ ├── 8f93283018a27a8f6024253ae2aa96db167efeea3fc84ae508a317f867a710da │ ├── 8fc4f61616e246987e3a3ca2145e728d9ebd0dc1b9e682da8e0688ef1e205d79 │ ├── 8fc73cd1cbe3e4b86dc7a918266d049dcd6b873fe3667083bd58772c47314cdd │ ├── 90103910e19b58280657c8a26ae6ddb85a840194af810e7a57057b3e6a30900b │ ├── 9013bbc6bfad6d049743297e3c87074fa4b200eede4d967529a125dc0bdd2c41 │ ├── 906124459fafe40e848c8b3e9f368623f4669cde61811042fc22e520b8dbe6f1 │ ├── 908663fd4ca4a8b1551218e8eba15cbd70fce778fead4ff97f2ab0217dced274 │ ├── 90b201a70ab69fde9ce0529f462822338ac0789a328cad515c5fbb33e4588a84 │ ├── 90b2e9f319cca63fe51f68f92ebbf712ee5824b57972fdd16e3398e88b8b3b99 │ ├── 90baf30cce0974ef0a195f041a6e719cc0060971ae8c6866b2ae27a0eeb5a8eb │ ├── 90d7c62ec1387a2aec8e739786f5174e2fc9c114b68b006fac41b4c5b0a4b3fe │ ├── 91099da7eecf9d08f5e6b8eac5d5c9fd1bc372d81bdacbffd17a006e5a2415fa │ ├── 914789663704e511772a6d77eaae41665798cf90cba68f31835a2b062d53d103 │ ├── 9149df44e63e8ab7efc549cf0871a3a51d07814e386f19a51f21cf1a29707828 │ ├── 915763d499c7c6d609ee0fc2b443d46c6cf27d08200d4aaca0d17f9e06fded2d │ ├── 9159a1e74ea3256436f179e8e4a5a4dad498c61aaca581751be9215844fcbbdf │ ├── 918c5ad65d88ea054daabffe0c919cbee293f1918f776d0c1eb60e7d9d3a5993 │ ├── 918f2b8ca7442cc546e8519f1bb5d6aa10cfafc8eaed0846546c51eb046d2583 │ ├── 91ce86b9e239d10cf16b48d3abceee25300ad7920e99e21360829e467cd0a1a3 │ ├── 91d341de3c3d57d64194e7b5f9df071a999201d01f5e4f88077e214f78ce5157 │ ├── 91d81ff676c3f9e768c379b8d74dcc669128f95b608710efd838bc37fc171510 │ ├── 91ffeb20487ae73c1158bb8d403e967c168c71b0b89072ef97a5678f776d777e │ ├── 925a269906eff0bc232d314fbe7d6a4ba4aa5ca928f32f164095cae2655f45d7 │ ├── 9275abcbe082e1c9add4eb7f94f7a2f59fcf7d85e67ab51bb7f23cc39fbd57cf │ ├── 92a8271288fc275e7f2e85448ae8aa61b54aa479e72f33c5fe8f61ed29d7be72 │ ├── 92c153704631b3f6d1b35b404ae66c81ae65f60f9ede8b82467c242e3a5df67a │ ├── 933082652d0f9ba51e6e4d88e3ba535f336c2869ef5863eb891fd2cf8832a209 │ ├── 9332cd98b74f9dd374601ae0b2936fda8ef34ddda2f9bec8c290af80ba58f58c │ ├── 9372071a6cd638e559710d299ccf1fde273eda67d19c05fcb863acbd5f9900a0 │ ├── 9380eed086c1334aa30e1880bbd4a7294251fdf79341a1870871ac3d32e9b515 │ ├── 938bdaea500e613b7ae2991c1f333741836155f6b76e276d789aaff52ee9c32f │ ├── 93958e6f92c127e4ae2ee0b1c3a18c9a9e959e8007c592af3b6fea868ea4a6e4 │ ├── 93d726d0c157875eecdb2f531f70c145c668e0f7f2738ab3b458896e38e1800e │ ├── 93f6910a1f6aa8643bf30a9b55eebd2221421af1ad3b7feba64503ca52e5d29c │ ├── 94149553a70f52b83d682b450e549aa59a2aadb57a75df1a3e6634595c07381a │ ├── 941fd405a9b94b797ef131f91d1420066fa020eca1d6ceba28209a6006708394 │ ├── 944d28a599a7fc10c3f05984458d5cafa30d1cd469370a39246721d4f27eb4bb │ ├── 94615bd9b28acdfbf61f912737fc56fcbe97d65259b40813b2868ac1f671a0ea │ ├── 9477e5e70338a21195be8bd0dde03b7ec55d043ef135ca25bb11fa2c469483a5 │ ├── 94a01d64b9ce63f0f810eeec74ecc249dd2c9d4616bdc2c56468ba77e23dd5b7 │ ├── 94a324df37cc3819957871b27ccd2e0fb9635ea0e988423ff78c4bcbaf31c978 │ ├── 94a8b37f706cb5e51d51aa8e29a617f6fa387ff0071918483cb694c67dc08832 │ ├── 94af633921b68c8b727442bb79732d653933635a0d042d7b822570962421a92f │ ├── 94b8c79558152cb9e4d8af8aa104360092169dfe7f1eb3941bc9d1175a2e3ab1 │ ├── 94e687d255581e8aa126ebbfbe4197c6663cf6a458927e25a7b3a5f71de52924 │ ├── 94e8cb0fd352989193af9ca74ac7539c957df3c893f2fe80cfc7eef3a2750815 │ ├── 95008b40e541cc24eae7909454e901828d7f2d6a93f0c08bffee3c55b5c6cde6 │ ├── 9576c41ea7facc1323facc57d8a0855f3f5d3a289a11cd034098fcd9a7847f55 │ ├── 95f0a99651d9d1ee022c07954247999b00c386fd6271198efef1c2ff77180989 │ ├── 95f4a53c6f180d2eb2bdf0acac2ae89c66fba5898dcabb9d7381548813bce373 │ ├── 962be6a9ad78a06ba359df3b5dd871a3ff49635db61d045b8a7deaf5dd840721 │ ├── 9644175766832239520ca89ed88c38a87944b8b3432f11214e6c6a7ced37c9d4 │ ├── 965745a665edaefa18e478f07331481ce759eaf2afaa34f26c0d1d1d8ada99fc │ ├── 967699dafb75cdd1dd53637015d432fcec871d6ff5059b4bd31a9602a2ee30df │ ├── 969b7808c9db7e67c6c17d0e55bc52d97381b73eefb8b060f75582e65aca6a8a │ ├── 96a9ec798297843283925e48729abaf588ac7de2570af0164eff86ed1cfbd56f │ ├── 96bc1e3ddbcb87d3d5467596e4e8317c89da298f82df5baea0da62e93fd21d07 │ ├── 96eae33f34ffbddcdb66aec49be0fe6fdefb3fbd91c9bb594446e69215d958af │ ├── 970478130e6d9cebd0cb5fc14d69e95ffe565a22216cc394dadec50b441d5dc3 │ ├── 970fc22c3839396f1da939bf30ca87467ce7991eb5096696235de7dedf99221b │ ├── 9714db378465f0c69ae01cc9f0634bd6cabb435bba553dcf69ac857354397bac │ ├── 9780db0e421a96f69579a2c92004bc72e78c2ae8aa392cc5d71399bc6bf90a08 │ ├── 978a6ee8e064ef156718bfed1b022cadc13c08c09d04b42efd516abee99b3360 │ ├── 9798f65bba8864fea7b55b0c90203a9178e41dcdcc6aea6123cee4d88da30cf6 │ ├── 97f50e5b354c107b345c5e199b3d18673b5e2070b468b7f4582c733ccc123fff │ ├── 98037eef9a6a9e1177cbfa85dd86b3f5c5eeafa0c0b6eb1b42eedf60a763f1ce │ ├── 981e8add055e6e7502892ad1f4e6df26381b5691cb23d150655e62de41358904 │ ├── 982a046baf8c53b1d5d0177da8a090edaa863b5b8de1b54cedf615c016e8b70a │ ├── 9839c5cc8744f36fe25abc12e7cce50d245f19e9ee230d53c0e6ece0dc8eb89f │ ├── 9841185f472e34a453fa5395f36a7942a8730b8efef275d43ecb893749faaba5 │ ├── 98526d384ede494009911997921031ecc567a961c47bc9537ad26e1248d2186f │ ├── 989bbd8a7e5c2afb148cb9f83f754db20e9099c9b775619fb8a787789ba255cb │ ├── 98c9e8d3df8fe4cf3679e4ef362dd4ad7bf803992774321fb164e889d2301a90 │ ├── 98f407e0688c347f8fe79ae333ec50c33c20fd0dc2f8fdad3ef5f895c12041c0 │ ├── 99064df320b1d52e8bcfd89fc9931a893c5b97cae8862e986e20d042ab69e35c │ ├── 991b5b9a0a5e2f7a10f04bfbf37a2f6148e253070d291df604d45cdee3714d42 │ ├── 993089d84c2335247edbfc23a38b992b492ee31d166b2e9563aa0f82e8f16623 │ ├── 9958061edef2548dd729849bb2df472d8a631d95fd82cb1cb6475b24a0d801fd │ ├── 9989b7180d9056252ce37e1b5518d5ca05bfbdb51a9197fd9eeb3ac7369c8035 │ ├── 9992fe2b468a8f948725ba16d92cb9465ecd392bc2582cd9434d406f9ea1bd29 │ ├── 99b4947dd166af78d49ea67ebeec525eac486433c98e566fd91ec275991adfb0 │ ├── 99b98357fb1afc047eed1d50a011f02b50efcc757890cb13e93df5d4d43ddb83 │ ├── 99c15dfa829604793bc9579e60f24119045885a68038c598bf3c452a6c3231fe │ ├── 99c85a6240561ed41164ef1ebe503dc97cc61562b045c52fc3308fffc72338fc │ ├── 99d85c96db64c6697f1b0a652adf003e896ca8f62c2138923de8cf9182f5aa2b │ ├── 99dbd48506d9e47fc82722121b73fe14ba4a554b20e420a503ba634efaaa63b6 │ ├── 99dcf68b7d542a42fc942963647491c24f7b881ad44f6203fdff0723b5004de8 │ ├── 99f900ddb8b97647bf8dec5de6d2eb32571b8e819f885f8598c93085b5645612 │ ├── 9a0c4b11970bf551b85864c94f5ed054423a198e3c188c034801114f9f49b13e │ ├── 9a0fa0fff2ace768563e7d75aa945ac485a28d3a23f2484c754b84989722380c │ ├── 9a441d7530bc329514458b2d04ba94d6b906031f4dc2b210dfc1226f88926d7b │ ├── 9a46887fca28d98a13a0ac21c63dd853c97a0dad7e0643b5e0017c8e8e4b8f9c │ ├── 9a47800b82d284125df2a284fc0f3836305aa77d5ba50f6fd474d77090fc637c │ ├── 9a72149a3f94536cb42c438a7fec2565f63cc4353c2494a50d1390e79c7f463d │ ├── 9a808d52525fee326cbb9bfa4bb212e47709da39f78cd48daa9e2a0d3b36f46c │ ├── 9a9cd17a5dd49ad09c10e4dee5738fa5be7c8e0153a79aab3c47b88508deb82a │ ├── 9aaa72960796ed905cc18e6e92e7d5e806394c99af566965ba5c9c24f065443e │ ├── 9aabbea63bd27295d3a73677c7e3263782d6ef070c27fb99c2e5478fa390f5f3 │ ├── 9aac2fc0e7efeff1174b739d399a54edd63c0f313447ef9280ecef00104ffcdb │ ├── 9ae941d68f35e97b5d5a7307c3452bdfff10c3df01c12df97416e562ce7a7f3f │ ├── 9b2ab1bd5c61eb3807ac20231a98b9fe1a414b166e359f4ab3cef05008387e1f │ ├── 9b58a33b2de113c359cd8c2423c52f99ffaca0974dcf6b6550a23f2607912f62 │ ├── 9be694ae0da5a0518d0a677ca007ea47056cbfa2399e7918f62028f730a3242f │ ├── 9bf50f05edb22caab5dcb4a5e3c68584801653b193853da554052588cbf4cd54 │ ├── 9c068ab65c4d4494abac378b4be5f3f358b0c96dfa60cdf2c0f5df90dbf36b89 │ ├── 9c23a077df634d7666c101aeacf87242d74633cd55805f17e0faf32ab3120ef8 │ ├── 9c50c510833be70e7d8aeabe3be97dcfb7669ac0ba2ca4726b54c2cea9e1864b │ ├── 9c60cc1f63193dcb159af829fab16f7abca3251e69a5073366b0f684b8dc76c1 │ ├── 9c9d870d030f20c7c0a83100ab6312233c523664661f786e325a3e4754edbec0 │ ├── 9cbf738630e931302c09c08f5ceea4e99667b5553be3d448a6e7c575f59652cd │ ├── 9ccf29b2568987676711c6a162d04d900f8fbe988ef9736deecb484095be8483 │ ├── 9cef766979630132103968857e1bbdec96ae399f7212c4e03dcb9f28303971b6 │ ├── 9cf7188e021577b5ab356efd5473686b460a7c1d73b8906d61cd9c8097cc7b38 │ ├── 9cf8335a83106c8a924a333ca9df29f8c29cc5e1ba9a5dc47ecbd3afe8915da9 │ ├── 9cf953e856d4a8656a83cecf6c04d160b1293202b29432656182200f39aae7c1 │ ├── 9d57e2e7b41101b21cc1e1442b0b53bd8a70bfcce638cb21b902a973f1f2d118 │ ├── 9d6db53faa84e4e4976a6915bfcb50dddfbd8ce766b30849a6c1a7ef821a489a │ ├── 9d7cf993dd0b63e1e4f86b5b7ec9e9fa8fdfa3abc93b6bc02712aa5b9ae1eb55 │ ├── 9dc2afbe606a4cd73a05a57c04bfcb1e887f5951fd03e14a393f7291b689effa │ ├── 9e65feefb64da50277877bde08ceee41c052538358c34263446d1bca2a8f1897 │ ├── 9e82dbc4d10dcd32947347083f612482deeb0ba195b9b1bccf618cc72b7566d8 │ ├── 9e869c486ce605fba3d8b285d74b73c48b53e6128f625bd54fcb34d97b04c936 │ ├── 9ea9dac4870290be4e05a6b9b8741948a809373eb9c1a04a35474d975c42c127 │ ├── 9ee2ff7f1e5fc37bfdd2d9ff1112e413a7e2b6e7a8033ef0a201ba23bea69bf0 │ ├── 9ef3a64a680862a4aacbc4eabfc0e1acfbadadcecfe431846085986c09cc8944 │ ├── 9f0babb033adc3145ac899a505da56c8d22980c6106bc5d851be660993ee7679 │ ├── 9f2a9499bbbf8e113981d8cfce1d0a1d4533b32a96f8058c417d3bce96f15e9f │ ├── 9f4c32ed7c213166b5cc97b6a1cb763abfbe87c12515be566d73f4bd2d438197 │ ├── 9fb4d3995b995eca0b98b9cb97dcbb4929e1ca9e2590373c6b7efba80e6a34b8 │ ├── 9fb58ac3c8289971e5b50ca793db2107040c68b15bebfe4387f6d031cbaeb5c9 │ ├── 9fd16541602f510078ccdb128e3bf449275f6dd2a76953e84c207de6636d03ef │ ├── 9fde211b37d40416efa8fe66682e332164d460527547cc094f1936e4cfb24c89 │ ├── a01c84b44ccb1a09679a5dd48dea85240cdb8bce1eeee2604c611b813bafab83 │ ├── a0665ab1a8a1def3967b22cc273094e8b2c47beb9752f4464913b35a7412912d │ ├── a0eb188ac3fa1744cdd10e9fa01b72ab7a8f0e12d89a506ed0ce6f4bda96c650 │ ├── a10adc9bb83d99db063af6d77356c1f283dfeb1baf5cefc6af6d03f8130d1868 │ ├── a123b7750dbe99f4057920c9abf0a38c9ea5bc64f565be4296fd1f523f877696 │ ├── a16a1fc1e807a773e6fd3cec21d4911769ddb114ea0c711c092e685d38211e8f │ ├── a1fb557708a31de512f822f0af497ca7719b54f9860b0389064c38191980937d │ ├── a207cae053d3ce88925a25d0f3303d835d18bf31229fea3765dfef427a976350 │ ├── a214e859ab3f0cb6da16bd0d5de60bed326d9142f1696b20ee21ecd3c36bdcdd │ ├── a2589613fe2efb12948d9288341e6d6fbad28e11d8ba38a5cadaa007578ee245 │ ├── a28280f6f126f565abd1e2d3ac4611da4fae3290624587441dd4aa7327a6228b │ ├── a2ad173ef8051bc0314032f5178fab650eee0048fef57c9d7d0467772cb49b06 │ ├── a2c0a3989f0bf79bc8879bb277b021987bbadf24f720a093146748e95199d4cf │ ├── a2cb1ab5f229019b96119a96cea039a4c03b943a06295cfc079308c84b07bfdd │ ├── a3323b21326dc78730febf26ef1d4cb22fb94fdff047c15c8cafc450bbc0f49b │ ├── a334bff87be13fb361ef1f127247b509348471365bcdd4fccd297220dd4c4ef2 │ ├── a339b28e196ae6332dd671c6e5317e1a4be28f821a004549e7b8fb3b4cc6c10b │ ├── a33cb8ffa94101060142ac64e68fa4c4355ebceedaab0fad78d58ebf97c60179 │ ├── a3586df7960727f7e398534d9a245739d4358c9229b2abc9ff1fcb0dc96d9fae │ ├── a35b03da3f0eba6f8d42b9fa197d1c3da0dfbfecc97d3d35354cb913876fea0d │ ├── a3810341fd45bbbc36abd02fbcc2bf5989a40a01d13a71e18d7909d7f261bb3c │ ├── a3ccc5ee90a44a8f5cd5f40b88586463bf50deac630e5b7d1d1a4a31d0f04026 │ ├── a3e5f848b7e04c6cd94159058e8fc53a2ee485e6cb10277b1ed3f8d7128881fa │ ├── a418ad89a733aba6582a30ac8d6a557eaaffc110202f6754e3ab354dd8d3147b │ ├── a45f26ffa446458eb041314e57f2b7a1ebf2edbab5e932b8479977b3d2033dd7 │ ├── a4bde0cb9fb3465a6501a0cbd14749ab9010437cbdfbfac64e555e0a21e3a719 │ ├── a4eac12c86de47a7b3af5dbb7c0f22ba80f8256028e0725ddb48d7d08c546268 │ ├── a502e763d219490260ea38260575d96c59d72ae24ad5e28706c99ab931954eee │ ├── a53f5ead22311155f6a6fe12a1e62db5ad4d826d4bf5dcccba2b919017b8cb05 │ ├── a5535b17d38bcef516534e3f5e32993a698cd9010b29e32984ec7bb22c61e3f6 │ ├── a5a0137e08b875c699c824a46cbaed9c16a36a31e72eeb902bc81c32914b56be │ ├── a5b2834225e76f40c7607ad971cbd67b8d2fd3aa0c5acd37a36c1f3d4f77fe3d │ ├── a5c06d2517cc0ec52f5503f3505ba78f25b426594f5b45a4871b9266b71f1011 │ ├── a5e4880276e67bcd5e56e00c29059f6ec786813038d243b9c54e9c8d66824342 │ ├── a606db32018a9bbc7b7cb7a62360bbd04d0cafcba6f1d65a4fe681ffb6d0688d │ ├── a6082f757a34de24c3675628e5c1438709d7e374dd58f8b55e85ee152f6dd6ef │ ├── a62f3426e2b21ab5c15f3f8f00abb5b9b9302d8e1ffcce098e1f96d855cb2af2 │ ├── a64e807f4afb6318db24af672581f7ad0680707741bc568d4dcde08e669ec21d │ ├── a6978797c70eb6f9cab5e641d68a2f7e07baf1cefbded2abf290df8244cae2f6 │ ├── a6a04dbddb94a90e00d3abd74c638d2a2c4e61349572b52036a95904f23886c3 │ ├── a6c5de936086482e1aa1abc932ef9744f8745f0cf1149439f525abaead4c8442 │ ├── a6cd02730e34cfc04e6d938791823f0b842111326d84ffd2a573e1dd58e5c8a8 │ ├── a6f16a24445a3cd1508aa6d41e2e1ae92f27dd9281f5332216d93c85cb2ac5a8 │ ├── a70356b01250f2616c631ae7583cb4dc3e7d41ddafc59c506274c511d3c5693e │ ├── a7245c68309fd25e4f25aa0cee3bdd0edefc2bf1c5aca6c23a1319a7cc4e8ab6 │ ├── a72851f87f5466fe3744798e8c6209f7a9bccee8d556fd6bc3d9a5993f03fd75 │ ├── a72ee2c5a8c18078766ddcab959ff2e832ec8949eba73826500fd5809067bda0 │ ├── a78251c8c7a759200bb0e0264d74fdf79523ccd2afb210174a0f8013f75d291b │ ├── a78b2f635054fc297e205cf110b859196cf912e610d46b15a62a4df6ce3612aa │ ├── a7ad0b8a74c327bb2096e9892ab9fc9ffd28b80dfe749ec8a240903503ed77c4 │ ├── a7c47b0fe6a88ad33cfc3e3f63068db07d7e0962732dae5521bc3e9a7b682d22 │ ├── a80bd28d463549f71300c32660488858f4119d532208ec8717b79aaf6b4ed446 │ ├── a80c99080901b879ac06577f356001d12d16aeb11d4abfa8890955da16f07b8e │ ├── a81fde70f1e68cdabdbb0176a0e38756258fd768c37ce36ad8268ff0f017866c │ ├── a82465b004b053a85ce69ecf887ceaa28ea339a39757423cc44ba5472ba24c1e │ ├── a82a4766998c2fde58515e15b7e93e8660efd37f6edb82e8b5a24cc14c7c3727 │ ├── a857cc910997ca2477602c506294ba1d0f41580c17698215eda76073d3fe197f │ ├── a85a6fa6ddbc5f56a95ac34ea4e8b825074ddb08069283881588eed2d70fcf44 │ ├── a888623da80e22db06463f430522462b40c1072b456724daf89aa8528e12b3cd │ ├── a8a9acecc7543d3bd85765497ade27023ca0b31ef282193912524d18521dd4c8 │ ├── a8d16f5146f92e914fa7ebb49dfe680898e9bd5ea9b1b3627806ba44da103fa9 │ ├── a8e815839854afaba273f82543e222e7bbcb04bdf10353d9bbd9ddb6337e53c6 │ ├── a8fcee147fdc6c37a5c419c5875684bb87238ab0be89a552ef8a04048eb2283a │ ├── a96596f2c82fd721b7687943a55be2ec24aa2206ed1ffe9d1552f07bd4c03723 │ ├── a9a4496ed099280adef510d39954e4523b2e72a267944ddf24b26c59019095db │ ├── aa2dc6b6bb3936cff3019aef826b6fe8af1b1ae0defb1e4ce67d343d98d058c4 │ ├── aa56ba0eef6066c027d4fb7d3b6f9b44f6ce14af4b33dd0baa57d07c188bcb99 │ ├── aa73d0211e1aedd86ca963b3b7ecd141d6b36a0b3319faaa8ef693a752fa9acc │ ├── aa8840c6386071b72a7dbd507c857ceedb6f1d619f5a421e2bdda0ac3f8c6df6 │ ├── aa890fd142f406519332bfda10146b027fb8e46e0624904908e741ef631bd368 │ ├── aab1e9c26e87470fc9ba55f6c529eff3a479da787c6ee6969530aaf8b0dc4d44 │ ├── aabe0a71b1e0fb8f2a0d1f103a7c6f025f21abe85b3acd8bb43a4e24c382750f │ ├── aae3ab52d51f8469e794b14346f46542c058478fd548fee57073d4e8182f02bd │ ├── aafd4adcfe652c5b52953fec948b79627edcc16e22d07d5710a8602581a826bb │ ├── ab0b123e71b9eb53858560670f195395fd890881dd626f3f0c9a5d2d317b63e9 │ ├── ab17b4653fcd5be14548874b1532e9ed23cc0e5d0d2e785ce39f2f007091e511 │ ├── ab3e7db1d57ca47d91490925057f728d22383f71007035e1731b77f287a362f6 │ ├── ab44f2272290258092d8c1e5d17bb798c951201374c2a8b5498e027363f5bf7a │ ├── ab4eb06f2b8e1f6cdfb64010660cb91809100f3e0b6ed943ef121da3a2a9ef2f │ ├── ab6381452a00dbb77f771bb28afa7c61e0af180a4bfb5d1e55d2316b4ae08ba0 │ ├── ab88effbcb4972bc542662eaf74204ff6517ffd4f2d66d08e63ae0712f7e23c6 │ ├── aba16618339933b51e05fdce03d8aac12e17c248c245a7a5d1da69b340b99625 │ ├── abd22d17e0160e0acde83ec58173e0c5af9823823beaf849e24ef3e451cb1102 │ ├── abe501cc641cd78545a876391586bb129db7354eb4d5506b8e10e1ec92163328 │ ├── abf52dfafbea484679966715103c7be5719c81ac1ba1701fa5d4a487d6377b46 │ ├── ac1f532303e29ef2e9c4cd5fd89d460f657eb50a6341e87a7af450656069d6b2 │ ├── ac2c4f0c12e71b9e258b351db0ec0c8bb2e24645bd13b479d39b35bd99fa9604 │ ├── ac3a5b1507d61c82e86ec91c6101eece5d7868825e5ecd5b38929c2617976c20 │ ├── ac51e441e1a9abea4f9673316603d5c478376d81fb7f70c351136ebf6f853f04 │ ├── ac565b619bb91045bc8359ac8057113caff34c92da466debb283f409b471030b │ ├── ac5cf38688d93955d9123c5d6477e9d756fa7db1109f7cb9770e26334161187a │ ├── ac6996d6406e87d10702f55c5de8106e4e03804f12ba211cdad9fd904822d7c4 │ ├── ac6aa48c94e44559da0ec04af2a93dc402281c346f3fddcba20fece7ba5c110c │ ├── ac7df684e7b818caf314a3eb2948840f16b65017d6d1efb3256e2a04b487246c │ ├── aca81d0cb1552a9c96931aa81c37d62cca0d7f7b7a2ce8743ad2a075fa3a795d │ ├── acb2933838c12a46f15547a0075dd914f7ce3f0789bbaef345ff7f31d6dc73b9 │ ├── acd3b17ae1ff1aa06b3220c537cbdb0fd3c35f306ae757fa6cbe15b96a0ff32a │ ├── acf1807f614df100b22216ec8b08812721902a22c7e11862f6172d6226455726 │ ├── ad05c6edb9c9df745ce0a93c9d2e57f09632255fafc7de1b9ad2dd6fe2fd5743 │ ├── ad0634c584f7909b421703b2cded7537c6cce71c12e0ac42115be99858a87afd │ ├── ad683bd8555491562e18b959ee7d6b6bea80f6ebacefc0bb5a7ae96b3e7fe1de │ ├── ad773f76a654d3327d8bb94bcb2a39e6ca8368d98b9111f190bc096142b5ed8f │ ├── ad8ecc99ea4a080fa93a2f3b1c378407487f1ced9e28cb3f37d3436f4c6accc3 │ ├── ada158b2262276370dc9e41c0d01a32c62e7c37fe7b94a71fd259b6ffbcf7ea9 │ ├── adbbf0c41f812a5b7a4134d0ab3a1e7176abdfd3ee2ad751a8f781640653e1db │ ├── adc873302ba9163b4ff3ab288fdfcf46a74563f21880123b43047f679f1f3ff0 │ ├── ae7025f5115b4f02b145f067b44f33945056b50f84aca85471cf53b9b4c0de28 │ ├── ae83f5985cfd2791a94ab32e1688d96d27e56146c1c8e12dedea04d868227820 │ ├── ae9acc610c3deac027a6c6f112304f49f3b8c58b8e92304d7ff6a77b64a74fb6 │ ├── aef85d17f850150e99790401ead1a792125f361a4460b56539a78d18f8c61c04 │ ├── af1096f0857997c773994504d471fa3c9b9d3310ebb645092da3b224bb7c0e1f │ ├── af14d58a98f7a92579032dcb34219987bd0ed70fe3c3e159f7d0cf63bee9bcba │ ├── af308155fad88c7d9463d5c3576c9f2257cc855892f4d41ea7f4c04c82f90e31 │ ├── af99f5c2a4be8f7609db42b76d924ccd3a5324b7ed256bbf0709955be6fc4721 │ ├── afaa623ecff868c35bcbeb25a56b36a9b58487a5942dc0161376bb6f0b58fe2b │ ├── afb16334308300f63b4c236f566bfefbe5cc60059e900cabfb80308828c83507 │ ├── b00e3d3135dbb9eb100f99b239059b2c0ce24033dc1fd4cfc0f2ea52537052bc │ ├── b015e48fc78747ed5ca95b15dea1ede2a7bd5b68ad7b4ebb1f32357ff4d255be │ ├── b07026f1d200901116dea8ff2daa883022858825038a4dfcf3f33b96df0e9795 │ ├── b11b59b0294ccb183c0ca1f0f41ab1b1a027195402b6a90ef1331190de25907a │ ├── b120d0b86f7a08597954b5da57e7e88315962e540d79e919036387768d4d3b30 │ ├── b158e3cf8b459fc24655e7dc050103b30d1a8677684ec1f7e9acad2fc3e6a05a │ ├── b165c85335b7141a9b61a0907377b25511abec172617c6e7fd17fbe7d65d2caa │ ├── b179a48b0c519eb02bb44187db826d64ba3b12c0d8d6aa3df36c05356b836882 │ ├── b1d1ae3cbdd6a23b35d0b39e42b08657f47edfb15027df429af05a4ec8dd847c │ ├── b1e97dd6a5b3b97d6d208aad83e6237d153b0c24830125b939e1da0c5b2dca9a │ ├── b21446bb10723e0fa804039b51318efcbb4aa047cc55be95de1fec15ad2c2f39 │ ├── b226dfca59b8ed3b28d21e8de80742821f3b3c60822c2c977708e41d4cae3262 │ ├── b284273c845a5af94d51508a18441346b800f1eccce3c36cb24cd706ae20726a │ ├── b298fc1b58969966e12f49995445a39f51241f2dae8e8c8af399c6f38e166be9 │ ├── b2a040aff849a037215f04462c1a31f81042386311983df5c18a1a4dd97c8453 │ ├── b2e42440b5537848ed30ad5f7aced4bcdc2fbd006f9fdc3fd694bfd9392926f5 │ ├── b2e456dd440eaeca81574062d55eb30987292172b6de69d82dc33b5c187bde55 │ ├── b3125b040e7f9fa3023812332786c2992ebf35b0eb6cd165699dbf6fdb684c76 │ ├── b329895888ac029506a61ea04a584390f3e82dd50e086894a0763b2ed70cf7f2 │ ├── b3303bdefe8cb39dee5f912e39cbfdb0ed2ce2dbe53daf4de996b4c27554dba4 │ ├── b37699de1ced741bf815184ec4e23d3c6cbe13dfa89f457f880dbc6bbc4e6c45 │ ├── b394d88c21409e2731614d5307e54b3abc57c986fe52419f46bbfe98097d677a │ ├── b3973a985372e872edb1e44be7a963506cfb5fa1b6c118d8e6bd93eadc8be51e │ ├── b39a90ea13b8888956844c25d183a141b8ca3e168f8a64d94b4cfd74e4fbe1de │ ├── b3b5b8f9df7ced795350796c23fd94e3f18c107ebe398874c6fed828d8d80a2b │ ├── b3c9241cbed1645cdab0ab743b2ceba1cddaf97d3d89a81baf9a29d25aafaaa4 │ ├── b3f4acb30bdb46a2dc576576e79cf347c5d15cdf96fd2c41413303ba746a15c8 │ ├── b3fc885b4b955f732a1e66369a682caeee7574e958fd95ce766c89b1896cf883 │ ├── b427b4c5eea2592031b423408a88b896af4176bd4eccf9d76c52b53a4b4e58ca │ ├── b44e383306fac5c3677d453e4ecea63d7c450d2d95beaf4974e94c8bb01e48d9 │ ├── b451e76b9c2fc97f395717563198bbf6eb70c9eaa2a8d2e10833ccbe421c91ae │ ├── b4600c98b0d8bcad8eb0bd48c407bf04a721950c5da634d062e47c8367b37716 │ ├── b47297ee600671c910e91ef9e3dc8453c71ccaa6857228f25904e583230e6242 │ ├── b4e8d831d675026b024bf18b8989448082dd3a9e3a7133e795120c7ca4f6f8c0 │ ├── b4e8eb42feb7f782df964dc7261d428e3e79fd032db9c1bc4ce23b9189bf8019 │ ├── b4f13aeb96e17c5ffdf88315834c92dbbcf4bc1fc71acfe50142de4ba003b052 │ ├── b52a7faf3bb741532f7cbc19ee3a3285213f11cddd3d2461e9fa74fd9d224fe4 │ ├── b5474f26a5ae450af987bd41f297a5dc5ceae5403b358dc530e63978bec8981a │ ├── b5484716569c221e5e6d02eee6087e535a786abb2ed5755b50f8cd809a235329 │ ├── b57034ca7e1347563c3b6ad7401fe2e1f2508e9c0ac477290feb23dabbafb14c │ ├── b57b4117bdede9829b4701b8d292a1118a49a33b6c925642d6205a027b12f2e9 │ ├── b58285bd9e62695a5d757454e3aa8d673476f4073cd571b7243fec7a17546def │ ├── b592c06ec3bf9f1acc0c217050b3f4d7465e70af721baea497ce35e2c63179f5 │ ├── b5998938af03a3df131e9db89a8b923055344443dddeeaec04cf0f0fff12d791 │ ├── b5a732f43ec289a8fa2f51c30887aab33d7d5be21a2d21c66890555c37fb0a4c │ ├── b5ac70f46b556e26f683b365425f0e56270e5ac17c9c81818d2efcb7a5312b5d │ ├── b5ecf319330925fbab3c768211a5548f59315ff8d2fa0c1c23c6e89ce1462805 │ ├── b6a494f401c91be0b337ae58109a88c04b76959f7ee3bf2955f878c0bbe51fd3 │ ├── b6b9086b1ee2c3740a0bb39d492b3b45d19286d47a6d8dd8eb6ef6183a2f9838 │ ├── b6d695b82d808c478fcb6048cb19c395b1e11a282ae6944ad9caaee01add0556 │ ├── b727720c219cecb5d26c12ab199652e618eadb34861b7e535bdada6d0b790e50 │ ├── b77bc60460e2d64e4e4943a9b0247bce1db90fc2303ca5ec3a16908945b0782c │ ├── b7b643ef6d1949db09c0b563e810fa0fb50e83b7f303516e14c8ab2fff83c206 │ ├── b7cae7f7406b57b8cb8e60c6127158f6fd751ac3cfba1192f9547c4f50938f13 │ ├── b7cfdf2b68538d1d3501167d0fd261ffd0af7f692a85cc581c890820b0aee65a │ ├── b80f2491508a13e53b93260f181516c4687ab96fb8cf7552bf5d7eb1e3a05d57 │ ├── b8186785239c31a029693702bededbb93ca58ba6fc60fd5253b3038aab84d842 │ ├── b85074781668650999b536327ba8922f7a798cdbe2feeeaf5586a3c5e49f976b │ ├── b8a1c963a97516be68513c1ad4704015e04b77c81f3abaea00d1dc2e76e3e0b4 │ ├── b8c9971d4a0b0739176b86bda2fe1ac23a4b44d1043a92e909541292b138a3d6 │ ├── b8f82aa3206cc894625629f0836e7ca960dd7e3368be87b0e7a52887cd62afaa │ ├── b8fcdf24fc9200aec9e3dcb06d861d5a64834d50d3b6c6d0b8719e21351e2d47 │ ├── b9246bb8975b7a51267a21ab7dc98af672ee5f8743f320e39db11226a3e538e9 │ ├── b96117c0eabc11fca62c7bbdebd8dc32909825778f8e4dd145546dc88f0fceef │ ├── b9748e7988df0f2b492c169df37e61f8d31f47287d565770900d7a328156e880 │ ├── b993a1a93e201aace5fea39e14d1e3bd00e8732a43d5edd22172ba61d4f78129 │ ├── b9ae8e6118d52f11bb641759b0c8ea7fa7d76ac104ba16f151c97c6f1f36f8af │ ├── b9e15eb0c890ac485c1d6c2c420f54ca426edcfcbedd05dc5dbf80f7d486810f │ ├── b9ef3c4bedda6a32bb4aa04b955922b3a342aceb1acb7d8f82ca8b96920b8204 │ ├── ba16f3b623c06bdfd04be1fc099fad3be98d477e731816e682d66056da8cb89e │ ├── ba1cf12c7297098a830ec1305c88780f806f5585d771f86a10e89d6b66a267e7 │ ├── ba22a95198af26bcb1e7cad4e58db37c0f26741954f08a24038d4456c437ecc8 │ ├── ba27c29edf5d14fe0d4b312c609ded111c00036f4ff990b310ef34ad84d39a6e │ ├── ba2c882f4e66a3d4d4e967e5b80873bbdba63ff9f02ada251de60f297b8ba148 │ ├── ba75b72b22f93d4b269a819fd10a3771d41a882cf2f8ed8e01a92843ee8f4915 │ ├── ba90b82b17fe2503ffe8a949ef2e773f39de0d418382d901f33f6a8237b2ac27 │ ├── ba945000319ec8c9433a43a8a24a5d291ca31565ea9c2ac6efc93d56f0db6ca8 │ ├── bacabb94fedc28314b3af1a700d52eef3275d45dec0992e7f7c7f2b8c65379f9 │ ├── badc5a3740a358b3b00c6db7a93dc7e44148a9558696b8964b99225a437cc5e0 │ ├── bb1a291c14ab3fc2989ea8ba808d06bf9291675372fd3a239d7b5bc79e68caa2 │ ├── bb22b9ed4a3e7fba1e1b06b51aa9104e287d8cee92e472e87592c6a8426a3909 │ ├── bb2d712a981ba1928e841debfbf076904493256e7d5f526ca5c8194ad4a058ab │ ├── bb3f18749f727a3d13fca2a80e14dd6f2935e7b7e078ed45c0141e66d8a8445b │ ├── bb5ba886e2d3384ad3ab34514478a798eff3698e038392e4933d47ea1c31f6ec │ ├── bb5d63b89cfa7d8fcbfd2a0d8d81db2630335b9ae738b0480e66f7e728cd10f0 │ ├── bb834efda16086166cfd4424d4addaef8aea4bf122e5338c5c7b00ffae18ca5f │ ├── bb9c0393f0ed6c90ec153752ae7c9691f9e3b4e05bcda1601f3e7f1fe7d977a5 │ ├── bbc2b3ab3fc204d94edc4db9f724b8a89c1f7f4e02d5eacdb87b014ae7d96e64 │ ├── bbd2b0a9956ca14204abb71bb5fd66f863aeb516a3f060d35bf32a351631be93 │ ├── bc141caabd73440230b1b3e563a772c70e3ea0efdf8c087243e45825ea06a579 │ ├── bc47caf9b679f3cc02486b0a6e6deabbb8369c6322112ba20d00b9fa71a5ae13 │ ├── bc6411be30288f85621e39956c8faff3964d39e0141e86324e946ed7b6b3690e │ ├── bcc359fa1d9272220fadd3fcd163c1c937c474355aceb324e181b2d255906a87 │ ├── bcc8554937a3f3ffe715ae24c18208429431a34e3dc5f13ece83f1e4f22733a1 │ ├── bd07491b106ffa845a5bf9e350a08f0622303c884ff6c9ffe4783a6f6add7487 │ ├── bd126c1d2d1083e98ef8cd27a175e4c11d588f65bba759f61cc76bbc91dd3c0d │ ├── bd3ac939bf39cd5d27a14f4d3e7092178612449355d622273c0fd0d075e829dc │ ├── bd49248c79f2000d2b2a66d94339608e1061999df1d56fef97e4227fb7a5359c │ ├── bd8b5725e102cd5dd1bf9e32744b1b668fb37363ca0a3700387c09ba2bd304c0 │ ├── bd8cf88d059b5918f653c6da443a96e6e7f82b3083d85c96dfddf212d633d30a │ ├── bd95fb4442b8b62de827e5229e34495d7902e820591485cee186633cc4df1fcb │ ├── bd963d0cd1232844480024b9621fc7e2495119852bfa7c61791d9dba2a2334f1 │ ├── be166961bf5fef251865e2d395a902e312bdc0407b77b92bd1a50578bf01c52c │ ├── be1db953b670733303558da00fa2873e5e009146d1dd8ed45ce1aabdde2bf951 │ ├── be3c4deb97bfa39b02d582d53fcae3f403efed6e5c2de0bcb7c6156ae311c21c │ ├── be6263a6288effed423a147cb7f8a8bc95c948687d85a7d2b4b03110d403232b │ ├── bea11a48a36f388a0efa5f8ffaeb76814e16a1bd904bead59d9fa5b0f33d44ba │ ├── beb7634fe9647baafbcc1a7885afe90d19874a7c4346513ff06903ff6471d8d3 │ ├── beb7f2fc4231faeeba483dc4951732eb5e9ae9cf17cc8fcad6ac117e4ae98732 │ ├── bed30af93b14ce4d2eadfbea0967023d003bde45f823f96b8000b2f387c692d4 │ ├── bf1a740ca4d1160acb3c8df18a84fbf3ed4f0b034adbdaa8c844fc72fbb3fd29 │ ├── bf46604c7574b02b2e4a0d99c56140f3c6fb1bf3df8fc23cef5e7e5837a9c9fb │ ├── bf5dab439649e2c848b005463f32904f6817cad41921bb7d1f0d06ab79d4db9e │ ├── bf6bd19c7f4e22d3b39a76c1e59797465c69369b645ec9fc93fa06c078065cb0 │ ├── bf78cf669b5ec4b9696c2f5bdcd095a8240e3b631dc370ba15e93efd7fd4ede8 │ ├── bf853c3fe7791698f741349838be377f56a63f1ec7282fef903aada639d8a1de │ ├── bfdb3182d463505cfca33b36799e4c426890d78dd66bd874db0688b9519dec40 │ ├── c01250a0feaf3938704ab52f493e547877dfbff8f568d7982b7fc4573b0eaa61 │ ├── c01bf9d54307ac0546b0e5a3e963b8253dc7c536e2bc9e7fef6d6ce0326dd70d │ ├── c02e91303fbfd54c3ae57dc39ed2934310627175ea6c4b8743db741557430912 │ ├── c06a3c0820d72da8efba8666779274b1cdebc65c690ff5915d50482aec076efa │ ├── c06d34901d2386c76c51ee0c984204bbc8baeaabf405e3a3e23a90704d1166e3 │ ├── c0a575acb5c9c34a95f68fbcb9348a3e4211456acbccb50b3041d21d0124625f │ ├── c0bde6d327d1388793c49eaa26ca187a739f1d0061a0712dc6ac9c21eba126b0 │ ├── c0c5be07bde553056a58f793230f54a850531c577630db503c3b1566ea7a441b │ ├── c0c5e1ea99c07a78f3d20ccfa0e0930f908acc5192304acddf3a5febefd29757 │ ├── c0cbe303454679d1a75d9df98c17e2e32c460f5a960663b08e728d0488725c99 │ ├── c0ce2ed5e1a4d5e9524e8631cd0e6cafc663b8e56b308b0bffb39a219c6e49db │ ├── c0dca27c868e66468a0120da003ed1e447c5bda90490ee8dd05583aa883af577 │ ├── c15b08b1b00a9bdc4f3324eeaaca886cf3fbc6796df438d1236a5d309e567ac7 │ ├── c1979dceeafd868e4c843673f6dbc382d049400874c67b8522030eb5811bc7b9 │ ├── c1ac4cdcc1f9ce4ad6b7ba2fa4f23e165abe61bc2ead259c46d3a1a1691005ab │ ├── c1b170026fae084b80b1950c10204b4fac0504f2e810f4d39e586de830ad14f4 │ ├── c1c9c11bb9a89b21b2000700724e96e39a58d046c475e573e35213da0ee45e51 │ ├── c1dbde841df6f4e446f0e91b5bacbf1bdff575192d371b1af323aac134289c77 │ ├── c21a2442f0f523edd857cd061e98776bcc570ffee659d34d8b7f2fff405458b0 │ ├── c26d45b9abc9e1939348c1a651f33aac067312171ec6315a76a5db83d1113359 │ ├── c27e0939780e72f40483ce53f932f979870bb1a4321ae4335814fb44a0876b24 │ ├── c28272b2cf09c450fd8948203415af506e75707d3b12e4fd1adcced009918399 │ ├── c28f44a29bf9c8b8fc6d62a7de813da4c0be462ac36043b97f3d78940b1028db │ ├── c298b328d18dfc58f1accff4f7f6225c64b6c9c365428e44f1b7bb44c265eb3d │ ├── c2a8ff87b8f717ad283be8a69bb336e51923c7de8b65ab65bcee2ff6dfde6f94 │ ├── c2aceab9bfcfed1363b4218e2803c6def723ed0aa037bbce86288bb9093d434c │ ├── c2f0350530c2f02f7903da08ab43baeca3633ecd6ff7f740f2b1fde3866a5fe9 │ ├── c31b9858c8664f2005228f9538761831a2269927c435e9db4784e68039e09618 │ ├── c32a9fc4914c26f86d5738dbe316750ae4332a2eab477b1c43ecc25079c60a62 │ ├── c32f83802761110346003fd872f18f13ba1caf1df3f5f44c29757e8a5f60a25f │ ├── c336631d7bb5c2f5e57883794b107e39b6c5de98d0ec952e1d9e550abdc6abb1 │ ├── c34e985e7a540c2a7ac231b9d0d69d1410ae9825b5db48392bee628400f581ef │ ├── c351d78eefdeb1e0ad6833c2fb3bad91a8b35fcd25edf37ae90dffe7cbece100 │ ├── c35ff8bb53752bf04fd213ef44503304cabc80bed622ab50acea5c0202953b08 │ ├── c3a54176560709d226b7d3a49286242475b6b55f9dad0166efd8acdbbd102dd1 │ ├── c3a676906bec3d07c26cb590f7b9b393e89a318e1f21d5c29f7e1c2116550b85 │ ├── c3b5e73f8b843c49873394c194092818eff14aad234b20ebf0809ff93544a65c │ ├── c3e24d57079ea521f7cf9af83aab28ff837882ff9bb5fabc7abd6d60c5295c99 │ ├── c3e9b44a1caad1f641ef0238032c4fd57d596c42e342ca2dba48c327678f83d2 │ ├── c3ea6b33c65f8360f6ea80c35037afd8350076a09e3c9425561a460541692f61 │ ├── c405cc7019749b4e3d43f7e692c91c0e19e9bb250ef66935a8c80b0ae4e9fb0c │ ├── c41d69f935e9e9667e4c7af8fda28559798170eeec28d278cd7e1f9892c264e0 │ ├── c427d656b923d8835ebe566631697344fb781aacc207b54c49c6f1f26a044a31 │ ├── c482b6a112c8dbd8618e9ebde12b2dbf220f08b7d9cff2c08bbd7f2be91df934 │ ├── c4e396c73d85e791abfa729d8f84123a59c059e1bb16b5582c7212b0fd66da9c │ ├── c4e3cc84ff9f5898ecf1fd6e762b3e065f83d9b59860bd7d3facbe960825f062 │ ├── c4e6398a4c23585300ae916bb516d9824c43d6eed5e726c6acbf8b8285de161f │ ├── c4f961be42102ce5cf28f20102aa5efe43e9d6203e06065728da72e4eb941052 │ ├── c50a0639c6c0c0cfcc797271e37c0b90277a0e182b178e9ca6b58ac1c91b3aa6 │ ├── c5396a280eb4c52093de26817ca33298b3d20ab4031a9e65bccea79586c4bef3 │ ├── c53d720376e76c0d8db84d9bacf9a740847f398b00df2dda8813201e84cb231e │ ├── c540f805eaa9181d3463834d6268d5946aa290036746c73b1fa88fb429f15748 │ ├── c54329cbef70da55563d47a2bb11e38f9487de0652d6f16384de259e0a489bd5 │ ├── c583fef6277e1a2baadccbf8fb3185f7b20b468a6737aca6fc1d1ea3996a6df5 │ ├── c58c4dff5af63c80f68dbe131841abe21a16ec1ce8a53c4dad304d618c3a2b3b │ ├── c591eb7284d79cc684b17b093c1b57d89254de19fdf5b4f9deefa1ae0db6b904 │ ├── c59d8429fc97ee4a3c6802484bf242ae07e3c2bed56115b77d37b24ae5b5dc43 │ ├── c5b13cf46cdffcab6d6a782e7706bfbdda72ec73a601484d83fbd07c04282310 │ ├── c5c7edc268db7844b366bc4a56b6035d8695c4a3a0282d0f4440cebbaa94e09e │ ├── c5d4489a8f997d2fa67a9104ae975417810a5d0c74846567e1e3d1afd773606c │ ├── c5e8a7721611a8ead81b23c727126dfd459cb67362060dfb00054d8d2a85af7e │ ├── c60c9571394af4fe7e6a78b8847d3dcc830d9a71ec9af0fdb7dbfb2fe83df61e │ ├── c62e188d799c8832ffb486bf2ac1d3566973e42f868bc55aac8dbeb7329b4c20 │ ├── c6362b80217c3e2a556e183f43654aa64638117594594cc1b37b2a732daa56d0 │ ├── c640e4f6abb3dc7d68d37da8864863a39be514010e408c67c9bef1a81261a1c3 │ ├── c642904172f9bf5710e85944612792b20429d55567e3db67317f70fbea3076e9 │ ├── c648a698e3ffe0d96df3303b5848e54993f7f7b2fdf0d4582f317e68ef39e58f │ ├── c6874c6b76f53e0963ef99265aa292bd545e7da9788bbc19feff43a2db49279a │ ├── c6aac6decf2ebd7886005c408a05dc7391d8d67314d327c6c07ecfbbcb87c0e9 │ ├── c6c73cbafeb0b7f40e6b7eeffed412e0df0a5f88704f0070e19e2cb1b3f1b331 │ ├── c6da2aeccc9b59eb82ae5070b33a2c9b864c7362c5e26dbe0263a9cbaae7aa4e │ ├── c76834e0cf816deeb3063259c0f82ec6ee6f7e5eca681e0fd63421d1cab0192f │ ├── c77c60d0646caac70059154eeca9b768e230ece984792b5b3af01b0a1eedee04 │ ├── c7bbc7f0449aacff1312cd843cad51e1fe3e46ce1d1c27be50e7d32fb64f9d20 │ ├── c7da907bfadadddaa742be3277efb2d8632b5e789b0f78d129777438052d28d0 │ ├── c7e5667f0dd20819ef2c4b2f0d8b8c9d07d54233a500b8f751ce1e74ae8ff492 │ ├── c84b3a1a92d293a748b867b69ec7b270ddb3eb92f2dc5546ed9d54101d990454 │ ├── c888e44d1b347791fe5fb72d5978a16b59962f9dc61985d1d89831f4ecacb194 │ ├── c8a3f8bb9331765914110f8732698c2d687faea7baf9c766d0999971b0896e39 │ ├── c8a9c1ca0d0045a7409f48ff37bfc8452c9390337e77c48e92612584881c8f28 │ ├── c8ad49d10d67162f37bc528f765783062d75f4dea0328c5448e996155c493e8e │ ├── c8dc44f508cdbd0b996fc2d67bd627b84b66e8ff33006ac502b2855d66cd521d │ ├── c91fefb4cafbf834840efd5604261cb49099cc427f96c9001a9cff9e371a5b4d │ ├── c933d2e1efe388b3236b77ffa12da791b0864ba0ee88361b98ef5156d298bc8f │ ├── c9707a8260b3702347a97a3c9cd6e5ebe2267b12232bead947f0cc730d4d104e │ ├── c9cdb3ae24e8febdf92452a6730cbd304392f87061b32f22508652ff7a711942 │ ├── c9d3125f33a0dda23a9cfedd7b3fdceb5aedc203e1703a5615ded400aac4b8d3 │ ├── ca011d7f0706d5b2a61e88de7b642da7b6584dbc717fb5793f60b623ad2149bb │ ├── ca04230ecea7a487cb7c24410c22c43751238f61464e1d47763f9f7aa39b0c46 │ ├── ca17ebedcc7b2140f5785f86eb96b408ba1cdb1bb47ab83c00bb963c88b5be6c │ ├── ca3666eaa1757914de828ed1b05fcfe813f004a2e8f857e295adf8e10634998a │ ├── ca73e14da4a261bd1fd15c6e1b605e17154e1297e9aa516fb5c2066774fd8acd │ ├── ca9962ea35e2c965300115f260f39b6057e14af53796fc8ebf21e43586bbb52e │ ├── cae017afbc2b50d416e181d8e09b7763fd067549608c351a7db73ac406e6770e │ ├── cb0b5e0ea742023821a95a28ddbbc89f7850945d894d141f0053d0ed3cebca7f │ ├── cb44e7fe9c76348dae6bb2e8cf59b236f73645f9d29b6ec9e696a6d7e0c8ddc9 │ ├── cb6a6b53713bec5bad8f337e334f21f34a778b0820cee8dd769c100f3b59d3e8 │ ├── cba00a5d32c629ca3b3279f1d40ee694cf5978e8798e4f1486341aa87a7b6407 │ ├── cbbf418b6b4cee4e5ded6f304784b6cecce0e059a5bf4c7912fe5d22d8d7cf15 │ ├── cbc34da44db8e3d7533aef9e50fb294d3312bc20855ca263cdb4ef56996e6c18 │ ├── cc0e224e191ac2002bba5c8de9b5ffaa706994baa67f1c58a8eab3c96f7473bc │ ├── cc343d2bff44c1a93efdb15973485c670ae43bfdb58d7ac994e8ce843326fae1 │ ├── cc6ec06e6920fffeb349973882eb7ff732344ef513f05eaf991926e236d88772 │ ├── cc7b53bf6d9b207847a35d2d9b25d1309f161ddee677fc142726e311d34992c3 │ ├── cc7c9c35217506d79ad1a6bf4340840ceef245504cafa3fd1d697245b9133452 │ ├── cc865b1612ac17d47fb48636693b0449445ff988baa27a0fa48b940adea69f06 │ ├── ccbef68b935706b1bdfa31d8d2f91d453862e19c4de92d69e1f0e37d480a671a │ ├── cceafeb05585b878e57132acf91c8a73147dd9bd69124f1c79c598766a26a762 │ ├── cd19dcb2b8169fc7145e902361f18484af23aaf75e5b336dbcffb9b090d868e2 │ ├── cd1b26e696c9dc843888c0b0ff8cf2a2aa55e98853611aa32b2376aa80f9f4c3 │ ├── cd61e916355c6641e944725193e82efc674d4847d716362430c8b82cfcc85d1a │ ├── cdfa10f936cae26f3d85bd6792545737b6c0fa50c5f26b49c7da83e349bf5598 │ ├── cdff98b22ea2d79792679ca990050fd1da7bde62dabaad78c957ae39fc9042b7 │ ├── ce405bcc160dda2aa1a3170777f996501eba2355a948973416e7e51f12813ead │ ├── ce4dd1be6546dfe47fa60a7758953658067f04de549817bdda5e5c7310352f1c │ ├── ce553f97ccfb55ce2310fc85b6eaab46e7cd02a2403754d3fd225fa24058e238 │ ├── ce8b2e426db6ece15f3b07fb587bcba7c07fcbfa4537145da9089ff2150a48b6 │ ├── cea923e2149391006133b66d62ba10afdcfb9f6547a9f0339edcf03d36bedad1 │ ├── ceba1c316084cc7ad0bd051032ac2fd73ebe59c42528c597b937d082d12d8d26 │ ├── cebbd92bf9e9717d82852ecd760de8c4cec45ae50c8207b0702374ed31196779 │ ├── cec1915991a0923f5db902d3abb948a82e491918f3f7bd58699d9d09eab03035 │ ├── ceed738db4c527172ccf06be253c93ae2b1fb5d0dd6819a7e7f6f74654e8a4bd │ ├── cf0cffd5476e2c707e3856400a6a1ba7dab0f87831dc474d1e43c89ad99a1e10 │ ├── cf10f2f59783e79c1372dc2682363091c9c5946ec79e378f4d6eed4aec9a84c3 │ ├── cf2316e91faeba95e5910414f3fb31d0488ec9ae7e3ddad5bdd54bcd432ba246 │ ├── cf3090d7697674a842848bf11bbe3aacfb6dc47b0415417652fff51fc75c389b │ ├── cf325e17aea16f6628b03bf8b5ed7949645356e9271539872130d2514a154beb │ ├── cf3c9316ff8b06c5b53e567c1c0bcf45728df1fca79ba6ffbef85b599c222bab │ ├── cf561b0343bc00339a29b46ff9587b69ef673d074b81ab2a293badb6c7a8d635 │ ├── cf571227ba80035e5428187ec314b2a3e215fa14eee9220fcf7b3cf540b7d5a7 │ ├── cf67785cb6c508ae45a388dfe976db6e93526f0f0ba5a44810bd5bf6e0d754b1 │ ├── cf7f5986ccff3d3d450165ba59db6700743f1e88eb57d5e0d78cc5ac9551138d │ ├── cf84204c200dcbe26568681049c3bdabf8a0a9eb8a811f3df5362227c17823a1 │ ├── cf91188299a8ecbbe1f42591d660a7ff7bd2bb0e5df829f51cbf4effd2c578c5 │ ├── cfb40b0d5e289d875b366072b66a348b60a84bdfc236358e319e11c06f4648e9 │ ├── cfea73530c13a2f760df7142347de5bee2b173c31fe8d209ee84d7c4a5dedc22 │ ├── cff62e518347b15ff68282d9970d840e24dead0a1e2b0c73c378578e1f35c54b │ ├── d0369a2fe0a3b91c39db598e298454829deb143b72771d423f29828653a55849 │ ├── d075a1c120b2cbf2fa70a3e1c8c490d8f594b33343da6f89a127e1d32964f5aa │ ├── d0b4e8705e3f89259dea79d809bf0a4625b2a087fb4a1859273ac54734036262 │ ├── d0cc7a78beb4ebc21eea54b20c984ae806fd735f1152e633b483d978919ed04b │ ├── d0fad51cea5a7f1e896d9b5549b1ce0682c3daecec0c2b8ce49ff883b71def90 │ ├── d12d8b033e9ba96bbcb3f1006860129d057f71273c2b1d5b7876501562b98cdb │ ├── d159f87f678b0ba3889f6944c7ab82f2771a762333a4ff5bcb50924ac66ce55a │ ├── d188c3ef511dd54bf5c785a664ed8ffbc17c8808865a731d0fcd13b50f2eceb1 │ ├── d19c3d12fe0dfe62258cf25e2281a6df7591d784456e60f09cd88853714d8c00 │ ├── d1a03229d9b1bbe988d78a376c361ee73e343913005b107de6cc628bd027a8a9 │ ├── d1a2bf357752bd05b2fb80ae2a317abfaf4dafa4ecf1be8c2d0afd8c15622897 │ ├── d1e3c1a5d9abdfb11feec8966ebfae9cbc2ccd6bb51fb862f3c382528b9c9750 │ ├── d23e2e36770f73a90c9a1e8b9c78004081533e8fbd26f03d2d2922bc2786aa28 │ ├── d27f891079a91c8f6c6dbe26038e9cb6fc557517f771d0db1b714dbaf393844d │ ├── d28284917dd16db0ebbe06010865c59f29374dc21cd028d31a77a48930231a96 │ ├── d28eb4baf32d392905d89d0cc47cc67ea284dfea549f2129a9d9336ccd3c22f6 │ ├── d29000884ec57b080a764f7a9b97ac8ba5dfa1dd33752253ac4fea4b7f15f811 │ ├── d29a8ced15da83b7d8672502033158badfff03d8a35db55ca64034c8b562a0d5 │ ├── d2a256f80a4990c737d939102d0dd70ab43f388d7087f08d5be72e0f73a8d3b6 │ ├── d2bd9edb30065a1efc3025d6d7948ec4a4f162c10f54ae13700a6ad9c964fd7e │ ├── d2d1964c026b94c02e7c9a670c079605f2f82f03bad4112e414606b7535aa130 │ ├── d2e37207aa2b0ae9fae45223875ae813e2ce8018131b369e4910f395b680c48b │ ├── d2f55e71883683d43163ec82c6f2d938d5578e144e1ee7c75e1c38bcb45b5907 │ ├── d2fc1609ed70f154a39cda48dc9dba9e0e77546e027bf752c0d83b3308cfcc51 │ ├── d3070b39c1b2448850b5a99825040506a7a640802ef0d95ef1bf702269855c10 │ ├── d3155e80f754f0582b93af9324647325403b59aa5178b2e508b4e56027d92d3d │ ├── d336e24924cde5c1695b4eaa742c1f18e9a1f543119b4b74acb9583f760c0a3f │ ├── d3455e37813d104d3a473b7e8dbdfad295dd9668053bae58562e600d3d503518 │ ├── d374bd65edd690efc8d1fe0e74f67926bf3cbd939f86abf982b70b998a10ac30 │ ├── d38422ae733d266198e4e9397fb434f12faf7af9bae1a04048f199ab372cf7c4 │ ├── d39284fb1c5e47fcac67bb68393302873b20c8c6b37aa58cf9050bd7a1fbac4a │ ├── d399ffe3e81fd42a4e8af34344ec82fe89798ea01755cb3efcf8aae472f550bc │ ├── d3ab6ac9e5d00ee4b727c607d7620ef57d82819be4bed9cb20b459097f5b23dc │ ├── d3afd5b3a8e682649ccf671fad66b7a6cce583afba664091eadfb124b0f4662d │ ├── d3b300b03e14f0d9324e1bf1bcc258be3932d993926e1dcce13941862f66f63e │ ├── d3b641501b1d96e777e37815af694023c4b35d53c8f0343fb4f28e57a4f7239f │ ├── d3c2ee26166db04976ce18ebe6efca1874d5a4a84468750cc244484d30576f89 │ ├── d3d171bc0ffd74fa59440d7adf3a2b67a632582c8710a258ae2af6a96554db41 │ ├── d3d22d670280ba2d2e8c11edce60c72c52473f8de0d8385aff44069b75de647f │ ├── d3f9fc73ec50075755b90f17b9ffe089ea6c692c5372815c173e591819049c6d │ ├── d403f294d377381a18e6a6238c48e79ec56ac7c267b9ec218513b62c217e95a9 │ ├── d418de0b1dcd0cacb6cc413a4caeed6e35e8dd85c6e2ad75b9b04a34bca24d73 │ ├── d443928f9d6c3f38d03bf71e101193e3bd501847a9ef3c71237c9dd07689f68a │ ├── d4588d6d770d58c37c2096ef399da793d1a5c83d18ede04a0806007d23c42155 │ ├── d461a5bf02141548d4082cd5e148b0c99ae2fcc3852d62a8ccb21a73510e7a9a │ ├── d476ec2fc2e24a492e9b0bccdf080f22377da60787bfc2258daf6df383ed5997 │ ├── d4bb7d0e839020f57401b589cce9564c5c09f67394346a972cc27a8a7dea664d │ ├── d50da732c1b0b3eb15f17036ce8827da26c7ec8b8e0f4d886e589444019006ed │ ├── d5422a962e40b641361c00cfd6881392ff41b072f8c75db05a4d95edb4b4d8b4 │ ├── d55862c05a9af97c74de1f6f7fb0b6391371dbde1e3af29aa2b49b617ad8c0d4 │ ├── d5676b605c1e26c5d4e18b4a94851fd56272450b4867ffce3fe8078cba386763 │ ├── d5720088c56bd19bc50648c874938ccebad2cee4bd13126e5f649b586b2ce77b │ ├── d5b9a165c560a71b316f034e5cd0e9b3b98700e7d5d4a8ef9a42c6ae61e9faf4 │ ├── d5f58364f7677987e9be34702ebc08f54af82738645de03baf9894cc5ff00350 │ ├── d5fb648e0336dbed74e4ba358a820f6a2b88813a2c9f18c2b7a0df88c92978df │ ├── d5ff8381e111349f4dc100e89f01352507b6358124a38463e54e4d8144dcdca2 │ ├── d65321c13a4606adc3488012010c39faf57fe6cbde1652795ab505b9449197a2 │ ├── d657dcf21eea76683e284329d4f556647680015870afced2db181983865edf5d │ ├── d68925c658b5e0a20c125804aaac3083f82413b10024ad6bd6546e1991639afe │ ├── d6ac7ad1f9a9c05dbe0d068592214214d8a63382f32ee529fdf93f6ad3355007 │ ├── d6fefeceff2d11f25e01fd1f170f652c652ef894cb03ce921d3a8ea7bb23870d │ ├── d70528f4deeafa8e69548e59e371670cb674695334498a7e1de6aee83d32a6c8 │ ├── d7762e55a2c3a2102e5e45a90b75b5ae931a5bc76ca58fc1aebf5934d50f5793 │ ├── d780537d00c8a33a4a4e8b57c720a884dab259ebeedbd5b8a27e08b8783299b6 │ ├── d7931acd471cde0c59956dfea898e4cfb84d4e8930aa7d9c6d95e6f8f9dc62a7 │ ├── d7b20d784d221ff45de3480f7df4eb283d81b3fe719bfe187bf7e85f6b7a15a7 │ ├── d7c30f2f2299fa13e2d45173ce6752d225378ec51307eaeff69e94b5fa2ddafd │ ├── d7c8fdb77c7d05eacadfb5effd3403c59def6ffe58fa9f89301b4e4c4a2399f1 │ ├── d7d061d0ad1af38cba2a452c15d7c23f0cd396425a618c1c31402b0787103e50 │ ├── d7d0a57d130cb9c5f1a18fb6a8a7407091f72f1ec457ebcab8523ff503751e73 │ ├── d7eb5961e8bf96a158c48d55145129022f3b5d3afe742bb2ee2b9e19f7fc56f8 │ ├── d7fd546280c5098a3906e90eb7891160fa5be82d61c52a2267017dedc6dc1097 │ ├── d80bf13432199607be13470810b6978b60cc8ea052cf157748588e27da31a68d │ ├── d8325dec207079e24ea229fd5f95d5a672b84d920067985e935655410d41e3cf │ ├── d86981f8561805882520accea638e40895246b6d5c64b8a2685c98d2185fb10b │ ├── d884d10b8c9f0b05f3e59a509127f5180a61394a760294755bc06ff0c36e9f24 │ ├── d88eb0d60780e5a0eea1afe1f81be8fd7f3cd72ae846c63f2e920dc71448ddcd │ ├── d8921762392c458a4d7215a530691a1c1f9084402c0b86e266e56709d1b4d480 │ ├── d8a5d5f4b5ce4a367300a080c79905e2622eca8a102b69ba918951c32965cda9 │ ├── d8d54eac24149f2a861b379925ae2537c48b2fe908feb2ea858ea9e4775db906 │ ├── d91b012a8d73541346d4273b34bfab577caf97672778e0f5c2b04dbdeb85acc6 │ ├── d9281129b037fa0c5f6b08cb9c5c1b769ad9edfed0520efaa0f1479e13e29522 │ ├── d9333f00d8a081c8d12855f7e3c97105d81fc9c0d93187aaa7c972e4b2053b39 │ ├── d94f0ac3f5c4fd6cc894ca946413b5ef1111c840db3f846619b03f5d8eec03fe │ ├── d9530361cd421c53e7d634e245fa8a20a3ec743316e475eb2d9786b6266f7021 │ ├── d996a17f88b75168d1ec1b7d8fba01e99683c1e797adc71d46dc9164a6dfb30f │ ├── d9b08dfdee5e34fe77bd57be20694c365316cd7cfc7a8f87e31f4bdb4ef8434f │ ├── d9d0a67623870e5d77e2727c59c7a429b4c4bb63519c894e951eb3b053d12ecb │ ├── d9ebd860cbf67736e8d464854da8484ec6b173a5afa9a5f26b1ad231456fc997 │ ├── da29f5adf93ad68b8ce8d87968aec0612576488d8b481a3c586848914d6bcfd1 │ ├── da41ddef32e0cb942be3c675cc327d6608609f93ec8e0a93a4f056e662dc3d90 │ ├── da71be85fac29ff501ccfb5ded005de455fa717cbab4827766994eabb3676223 │ ├── da8b8a14e9b645d6b4ebca61a3bc9719949f592fa2eac1162666bb8ce26107cc │ ├── da8bd26e430abce4f578395144a1f399f45d68635329b22a1ac61aa76c89fc61 │ ├── daaa674df71b19802c07cd01d24582f12851bbe115ab782a71b41ed26e79502b │ ├── daae1959fcbcd245997ebb8fcf9ea19bf382bf52baed9864c76a1750ebe990fa │ ├── dae73fb5c293ca5996c1ae42a567ca109505fc5ee352d9aa336dd966347033e7 │ ├── daf9413b6cb9b364b62e7e1ea804b583eabb23422a0abb7689fd7afd986d9534 │ ├── dafead47520fef51f2e11b16c5a874c3220a2f7fdc0485d8170f82c386eb77d2 │ ├── db2278952bd5e687fe3b3d69561da97b33462488abddbd8715aed4960a9ec291 │ ├── db22fb82ec113f5bdc5a2841e45e72c4e0b8c55fc7bf6f79e0f3134417d5d8d9 │ ├── db2f06ca7c53a079c790826f277704227b48632b5105aabe8509c3ab858e53dd │ ├── db3759e04034224914f5be0038dd264ef66391f97cf939038a58e2745c8e531b │ ├── db747b0fc39306c063e3fe74eac0f320f85eb1d1fa5ef6e4db8ae16bdc57fed4 │ ├── dbb604b6ad2f2963c72137888e9d7cd11be1b1597c6c071380b0de8014eaf6d0 │ ├── dbd98dccdb0d445c332c23549ef15cfe07e6f00d65fb1af9c39a8ace13cd789a │ ├── dbe38089254a772c7a8f3a8ecf37bd41f17544c20289873d2ecd75720fe47902 │ ├── dbf05c90cd3d4b6b59869cacda3a3f45960d29c60331de9848af5f3cbfabaf57 │ ├── dc00a54d460981989fe5a6e8733f6bd0ac9f111906d91b4fc610f930372488b1 │ ├── dc01d8b61b5118a0a1c6901d4e297c35aef21657ec76d192a298390bcb347e5c │ ├── dc10df596013e3ec6dd599c08ef723aab54327bff886f18a3f70cf927b193180 │ ├── dc1a1d21d9bd45d044432135cda704f790737bec5d59fa39964b65a9d8e510b6 │ ├── dc1e2b492d19ab7bfe16ef54c28b87d204a0b8fcca4824907414367bedcba9ca │ ├── dc264990560b50b71ef5400cba19a169cc18653875b01834f1ad60b5bdd26cb9 │ ├── dc2e8c95a228d72f40e22bd84d93a05567a400df7a36089157e921725b9dbb54 │ ├── dc2efdd64f2f555f9b86586403ed41b25807e9bb0184435e1f05dd092dda3b8d │ ├── dc3efc5cf41c6405508d6c08fe81893261981e48bb44cf77ac739482cb4fd657 │ ├── dc798abaf2e1883a8ec653c437a0dea023b90f49b6e4f5c02d54f3f2772cb67c │ ├── dc7c40dc09e4ca62c502ad4afd80752e8552d8080b1237984cacf411e3f08fb3 │ ├── dc7f2e14a883790eae8572a05e3c122ba8984aa7fac443c24ef238d4b29a21ad │ ├── dce219e0f9b7a8d0502a3224bb26bdd4e5c875dbaffc0a4acca17071a29eecfc │ ├── dd3b7bd66f600c6ed4fe36d3177400400c63ac8e5a35de09179e569576d5b8c1 │ ├── dd480a5573d9484462d60fed5e0dd328d97184d051a421429141c54652709d64 │ ├── dd9a71bd708671991578978752ffe1d3c3ff061702602d8834cadd5bbc7e40d5 │ ├── ddb17e8d778754a94b663f2c34e845f80488deb5c1c639f1cd08b927efe7bc35 │ ├── ddc16c284035b67e41bca2eafacc6024c0fe9b49c40302808d5f3c15cf3a5001 │ ├── ddc19f121e040b032d2cabcd5359be376dc3689f2bd21549b349d8606bbe0ca1 │ ├── de41711bd5bfd5c1166b9e89fc0ca9f22c1b78be12d33895d51968a06bc09183 │ ├── de462a070f0b7d807f1cb537e0fc358506aa7e267a2b21bdbfd51076b8e0941e │ ├── de474cb50b101c3031554c11502fee858d064ed0ddb0f4cbbd51f373905590a3 │ ├── deaf51f5e790166f52bebbd141aa9245796ea808f25b6043510525ad28ca87c4 │ ├── deb31bcce812ce20e1741adb35afb15e7e08feafd324be1006984fffbb6dba85 │ ├── ded0cc922deaca76f3c4e4ea2a7d206342d784d6707b4dc2f406292a253cdb9c │ ├── ded2e1f27d4fc60221f45f6ab376a3e1c28be58fad8294750a4dd2dd84ee5068 │ ├── deeea024c076962deabceb09fe23e16516bc13cb9797e240f9d87f1ee1ab2f94 │ ├── def24c6ff65e408d185eb03ea8a518cd0114b06d19a84d2f0f88fb75b69178a6 │ ├── def255dba44daa90f3779765cb7c4adcecb1a214116f443b7798f06fcb9d2653 │ ├── def697e47520458709528886cc1ded7e3aebada785ed4f1a12b827b32104dcff │ ├── df0c42ecce03d4388ea2a548d84e62a09b18b8e074c1049f9fad26657e27577a │ ├── df4751c4bc478bd98e39800b3d78b78baaf0fa649ce13e22d187a216dd4d22be │ ├── df53ea9578fca0703b09a9e1ea32b011dbbb5e6465034c35684ee310cf956d3e │ ├── dfdf22be5ee17f079516f7a9324989d9ce8725218d9bc097b43664d1d44b97d3 │ ├── dfdf871c1e570461690de6f436eaa5bb6c635fcb4f06e217dcedf11fa3b7e1b9 │ ├── dfe8365dc54bb80f13a9fe2f90c4c62c2f2db75291c2f52ec03b38ca33a8a480 │ ├── dff0c3f9cfca497533932f41e6f2a59094b60cce96b04b05b0954edd08706f3c │ ├── e02a8b166d114b0a92d50b0540764391490cca36ba7d30f159e20d055fb862f0 │ ├── e03c991c3140d2a7128b2534ff5d9682ec4a066606e4232e9f91d7c19fd39831 │ ├── e05c8bd98741d6279841580ddc99c630e66ffe9163156187cebdd3daac3f750d │ ├── e06c7ef256798013b6f0cc6347bcaea9429d4b560f3a3686fd68fe76fd4fc908 │ ├── e070c4a7dbb65fd3120b5eb29fb68e44eadda494d456aeb50f7697534a4de1e3 │ ├── e07e02c36544c4331ec0cb4f8b6d0de1649a473aeff74ea0311942e2acc24a72 │ ├── e09f2d21c655a01f9fbc81f132d3301fe559c5361529d3ee7f7e0901c11eb19e │ ├── e0b68ffe7a8b174de5c9f0db5bdccd3606a77a8dd7bd33968cd159c50e0c89f4 │ ├── e0de81cb17252cfa217a459a5db906704ae6235abc4fd776e5773ca3a66ab0d3 │ ├── e0e0a7f96e182f2690fbdb438d5b8aefc549755f182f11f549b0e08132c72fbc │ ├── e0fef97cc2f511d1dc7f8a76ab5eed5428240f2700e31ddaca1923bcfca0317f │ ├── e10419bac1b20bbb9e653f3ea5a9d8ad626a73a05ccf092a095d4e5f7bdb46df │ ├── e12c34fa49c21f43c29860c249d2d4d86c6520e91cc53eef2ebb996004b57b61 │ ├── e16e4e63057bd1d832227d3f1a81e5e74a78f74e774a2d2d00ee55c38da3f5f6 │ ├── e19691fc53d06cabcbc32fb106e1dd4fa5b263674c90ffab3204906e7f04388b │ ├── e196d450a08a36798e045e78a640724752f1c6adc39efcdb7fb4e567b1b2da45 │ ├── e1a11776e9015f45a88d8b7f9a29686e8e5634375e1e46fbc68d257837d5209c │ ├── e1c63720e1370a3682f0fd0b85d37ae6cd1bb47c7dda88364f3ad0a54d3cec30 │ ├── e1d94e2e5b6f235789cc91353b0d7d26ca103cc65845d8eff89d8e8a56a16ebb │ ├── e1ed8322a436c4be5635161ef97b19aa5ddb756bed76767bbb7e35e8ec9c5214 │ ├── e1f242481956d13d81d6d11e5347d6a51ae0880582980248bc40f272878265a4 │ ├── e1f77a7e7df3a59b5e2d2522f92624106aed1ab617e043c0eb5c021895043144 │ ├── e1fc41b1719aeed5b9cd6888cb0af63c1f6b5701c2bc330f02dec56faa672149 │ ├── e211bca15f0d1ca034e2eb60079b8cce248811e50c967c6476821427efc17726 │ ├── e22ec9f524f3de5705d21ef5c6ca1905b0247c68f66a8998811df4094dedc88a │ ├── e276bf81ed8b67a6330ef8d4938bbe088d7c7e223dce9e1e0966770a0d8da435 │ ├── e2813a4c9cb2f93c67e06446ad4d8199b496c4a9c07e9ccbb5b431345babc763 │ ├── e2a1411ff2730d2fb41d1ba22ada5760182e71541369aa5c6c955d98eaa8cbde │ ├── e2a6cdf522c52ae39038e2a59bff945f1c2435fce8792716c7f4954859874514 │ ├── e2b6c38e8dbf33c3639ffa112e42c23b8bf457323ff7bde26b2240351b1a32b3 │ ├── e2f8e9aa9d59f76f482a2bae6157b31169f0c82ae1effc0ac067ac7256be5f3d │ ├── e2fa12caa56e20feca67f0e761b825576ec582597de9704d85c714ff9f735e62 │ ├── e316bf5b937e722595acc3c806dfb9690b78c8e95f5fd73a0bdd72f4bed55df6 │ ├── e31bea3265a587cc635352524ca6c2f2219032a8271c86b0452382620ad32363 │ ├── e3377e34687201417e8c591aa692464a580fcdf7db080a7647b1b7fc8a709d63 │ ├── e389fc65b3c6e29a8c770cc6a828206f30ce2c455bfd2efbcf5db80ea0142103 │ ├── e3c0364a85b0c18f2cc2471e759bc158b506c5c8a8d083b11c455328cf2b4d90 │ ├── e3d4b82201cd0710c7b89d0cf1100935f6db8c5e0cf970c139e903fbf9a52d74 │ ├── e3e04f2e8a1c6120c88c1ea2ba889b47693dd51638f5b2dea95b658084f872c1 │ ├── e3f1d27ac51e4ce731d9d88c4a5c13987ac1b502a2b58016f80d3bb391bf37f9 │ ├── e43c29d79ba7166b1ef31cd4f8f22463650c7afe6541f1b1af0ea94a0471e9e1 │ ├── e43dd53b93b40e2f2efd81296b6bb6e319b7b25c461adf5a459e7fe80b7abbd3 │ ├── e441446a99d1841100af57c38f57ec21fe9e58cedac624209cbdd33c32ccaa4e │ ├── e449c6f7963974d551c9c75ef72b72b13ca41a6721db4cda4c79558fe096906e │ ├── e44b87987bef3cc1c7bd4ce2c48b09fda1b85c4270910095a48d1340fc503639 │ ├── e4530af25d454c228a8964c7922741f0a56ca7214f45e63ca422e1cc0060e99a │ ├── e4a3cedb9b1a3f21ca023d8cf431b2217986bb25fd1629c8b47554911f7e37a0 │ ├── e4db6340acd11da30b66e4747b4133f4f35f6863d1d174e45dcb7904a8f861bc │ ├── e52542cb8439edee815d029ebed07e0b009fc71a96a454536a473b4df3297644 │ ├── e52f3cb334a6a3cb701e79a731b576e5e6f1582b5fb4dc45c7415fcd69f42634 │ ├── e582d58806bb011cc479e41016bc2f8a9994b68ed431bcfa168e31c0533b7f7c │ ├── e5c8ffd7a7cf1d7cfa9da1e1f42a66f26bf084a9fcf9841bf4bd352ac3944dff │ ├── e5d2928914e86e43d63fa8bfe638f04e2a63fa5b563f51a38d1f111a539115bf │ ├── e5d5dd6b46d6e9e65469df50b5246f4220b219148af7b1d80057feae85620e1b │ ├── e5f470efc02be1d6de098d8103c6160e2d21af146265e4ed69ea8237818ff391 │ ├── e618c7da313a1d7de4bdbb756c69754bf038e0dbf4a91543971b06ae025c1627 │ ├── e68898577db9b55fa6102ad375461b47ac5a656ee136c0b373441d8704f45aae │ ├── e6986a12efd34417fabc23849f0ed6151f380c81321e18a684e79098c4dcfe8c │ ├── e6efdee119404e3ed30e85b3416dc36ad0fe945ae5981cf4a3146df35faa186c │ ├── e6fe0d6a5ec45d027e27b3db5dc236f66507e26d10aa656025af261976f303b9 │ ├── e762920e872ee8f7db5df4509886c41b5ab95889b787d1509a734192b2351730 │ ├── e76ee61a87f1ceea0ef12a381c7dba0d287438af460303b48b28ffd9fd43a178 │ ├── e7738cb480cfad50feffd98823f1acd2a4f0d81a49ab3a2cd120eb4d5477e086 │ ├── e7837a91d94f8039f229f2caec555adbba1e3b300115677df3bdfbbb46d69b08 │ ├── e7a52e04b5ea480cc805e0c3d25a7a7b91b8625eb86d79719ec257281c1b7900 │ ├── e7b52628d492f14545b41deb51e42d1c277cb754746cdee7011f2a109d544781 │ ├── e7fed6c5bd8a98b32eeaa4866e8048e4c4a16103dfc921e6bd9955e946c2767b │ ├── e882a165e1ae46474e063d2e9521dc4889d7417472326e4972d98a34270a5b88 │ ├── e8b4c556437e13de378d89f098e83c43ce539e73e4e7d0eed1b5eab1f05aca96 │ ├── e8e2433d27baaf2419db2c9660733367cce40fc4fe8a17e65d9ebeb45cd8bfd9 │ ├── e9744c9e23d8b574f4225cc79f01dbc556bb80380adf21373b4973e37620f927 │ ├── e98f446dcd4a6b92c0b5bb39de060bb7a014b17d9e4b3a442e52adb7dc3046f7 │ ├── e99d1d28eaed403d05d431c8601da963594d0bd0abe94c71d655dd72f5c28085 │ ├── e9c12956f7739f16946801583f642a62afecdc6635196b1b49ecb8255c067e93 │ ├── e9e02e15528beadac7ee3090f7582f9c66e9dc41adcd03c2e1a65056d446a84b │ ├── e9fdbca96cea7ad32f49a1eb2c34dcfd40e00c28d7929ffd2e9da4279ebd8be0 │ ├── ea21ad99bb04170bac49513ab18730064dd0566c9a86ee359a2c346bdf523482 │ ├── ea4c0840407443b4674a0734c303af7c6b47d02a170601d8b94c8cfa1edc7082 │ ├── ea506b1bbe80d0d8c53583f78b89adbbbc4cf3138b2c8cb6647c0429c095729e │ ├── ea76d270af0028b1e916d83809f41eaa0d4f2c97d9da20c55a6b9516178e51aa │ ├── ea7a90fdf99b5ffe0d66cfd8357fac9eb19e142ddf8c1d547960bc1e73de79c2 │ ├── ea968bd383fcc0bbcc80a65b52bcdd269a2e62eb01bc2a1b3edb8fd257d0b1c9 │ ├── eaf01cf618a2caf4b6704a7e798eb301509be1846497542e55419b6ef9a9b02b │ ├── eb41b911e142e24723be328c8e86643fabf042c81691e30241ccd8204aff9e68 │ ├── eb78fd6975ed255120e0f9430e79f4b6cec87d50dd0f0944f30b1db364065396 │ ├── eb837c75189e1b34bddefd9f72ec3a4b9ad6b810971e15a581e1c0b53e7da519 │ ├── ebe4eb237778f5905caae7069fbe593d8581f73d82fa67f3de33703b9c489046 │ ├── ebe60cbc259430a4dfe0c0646601019747718b1f27cd93e83c0830432e38d31c │ ├── ebf5dd6ed63a678b032719fb983a201b8c8c180c2054cb7e9a63e356f11dd436 │ ├── ec595df1991eb52c2bb431ada7082cb4753dba3c822a6277dbf86c1b1b813db0 │ ├── ec64bec68be635fd39e3b71650315f066dc24314ce71d9688f81fef2ce9e3cd4 │ ├── ec65eb0ceb9acfe6b7a70268dbbcd8c302946eeb83cd4f1a9a69bb6b57935a74 │ ├── ec66ed532aba373707d19b7299f6b52d9c5ce404bb573f11d51c483534654caa │ ├── ec6fb922d39c26c825d482d33de5efb2f6d99c2d23f457a9a90c7dd029040d02 │ ├── ecd7af3a50d4120c0d35d0eda85bcd712b52de7a09d7c62dbb2b870fd571b050 │ ├── ed1a1334bc2165a825ac67802aaf51a2a9620ddc12cdd951a440064918d53763 │ ├── ed23ae9e86a9e20bbf37f040f36a9619a8dc242f25bfd68c37b7536d5a59ff0a │ ├── ed5e672565c23603ded5426f6742abc3fe7328c044776cd2f4cb979a32ca5922 │ ├── ed7afb78ca6e5ae466a41a6f2484cfcd0d0e9e4f4b0e152517ec92d0da816efb │ ├── ed7e7113f213e020f81f86d29828988087e901428bf281aaf4bfae646ec1e881 │ ├── ed9a62e5d4aa2c34535d6a207eccaf46ab93d6c3f5cd42e5cfe0553b89ed1cb4 │ ├── eda11e908e9fd5341e35c01384b35808a4fc806ee24e1a84d540480529f5d169 │ ├── edb6682f72c602418b696a0c425400aa67411e47e1e77b0e010256e82b53e021 │ ├── edc58f33f203c40fc843987475e4849d49d2be91ba87b6efef9094a608fbe7aa │ ├── edd2b3d6dfdb3866484e611db000833e50c100caeb47161607bcde2863b8c049 │ ├── edf135cfa2fb3f8ad9e62987e9efb61a55144353404423048ac1a2e670739e82 │ ├── ee4d9bb02a7d9e6a54fd0efc31f74f28215dc503db846725e5ea1117c82b8308 │ ├── ee506a5ee732d39b64fba163a1af35491cecd79911d99adacf5737b25ff56b63 │ ├── ee932d12443ee70faa13f49113722ecd871a033fdfef42e8cc630e662a12f737 │ ├── eea71abad972f01f1e70709f8af642414ab0e75c2e7a1c2111feab0072987866 │ ├── eeae110194df8f830f5fb4cbd5cc0ad658aa3d5811c2ef431f2b2d649ed8bcfd │ ├── eeb866cba19db550015b69ffd9ff82763054c0e203d57d6714b2f4195200c7de │ ├── eebdb4777a053e1628560137b77f3bbc9344590253f0f0000505342d2d14d487 │ ├── ef760188a03a31ee889583a87aefc2b033245ab8567f7af47e981e9045cf521a │ ├── ef8addae4ecaace952475210be13849fc866f250e9b17ea0ac6cfbaeb205b1b0 │ ├── ef9c2a9da5601e5d7c77336fd71222ece42aff1bb755a9d3226e932e74674b3c │ ├── ef9ca3b9e09025c290de88b2ac2afc56c164b45e433b84d8953069e2d738fea2 │ ├── efbc5b310f6a67d52fa43dfb324d2b5e09cfff191e8b06d785da5c28a7a64ee0 │ ├── efd78a3644b164b4c691967c47a79f6ffa551432ed36d4fab14df3af3a12c910 │ ├── efe292458c34427d140d35891c7a9e2cf7a8d0306cd94b00ce68f50dc6c5c20d │ ├── efe5492bebbe49268613aaffb44235ef5594061cbd890cc40ce8122004f4b6ea │ ├── effb6f1d81caeea60e342794559ed40084539f1f7b8a7148bb728bcb1d4fcad2 │ ├── f00559e5a65773d4190e8ce41253bd3191472ce7627f6b5c068713278d15bb4c │ ├── f00ca3636ea3591b08c6aa7efab201721e49f9847848e087245fb60882c01fa3 │ ├── f0352c3e6ccfa0fb31630a703d6b82e1dcfb5f1f085b573b99d488ece2be0090 │ ├── f042eebd7de43d1b261c468c9449fe6efbc4668c7887ebd13f0afdd1942e7fb3 │ ├── f04df0085082e8f5bd9e9db004211fb2bd95f44cd50d3f8f9eb15c10c0cb8113 │ ├── f056850fc23abccb6698bf9ae5552a45f00c2517b8a0a35715e7fe1df9684b57 │ ├── f058e4a3d85f77151ca1cea99a499516c477a5ad77d46a645766a63763972feb │ ├── f092640ac1cbc25194449393357d3d0d1734242779465ac636beec3e9d73382d │ ├── f0a491a7a880dc93620c1d7b84a0f2b3341b369a08340cbdecc52c3e1f208111 │ ├── f0a74171506560826f30f39f72b6d2ed9708cc44e1fe6d556f53647b5bd630bf │ ├── f122d2956c1d54be2de69b776eb08922d6e7796616180a07b32c42ce4052069b │ ├── f145e8c18d94e80ce5e0d1bde1cd2631759b874446d32178194e1f2bd1c37ca3 │ ├── f14ce9372946315213f527dbf7ed8f6bee2ec8d510fe8e8b24085521aedbf5ee │ ├── f15d2ef9a6c6782ef224e9a251072f14d1272a807b656069998caca6b15ff32c │ ├── f17a1b5f13c08a1aef5b4d4a3323ab1ea9c0cad1000eed478489657e86334c5e │ ├── f1eba222b164fb9e7b586f49347b2e0e66e9936c42b10df2ee85985fd8935238 │ ├── f1f9f37b2622bce2bf6ec9c5918ab36f4c226d57969fffb9acc8caa9e0761732 │ ├── f20722b46b70aefa68c4e8f3d4daaf7b4bfd977b0fd2bdea617b47c28de4546b │ ├── f21785a171e846c26049b2019d05386fd0b46037c7f69897030bed3130355694 │ ├── f2728a9dbbb6feda249a5796b5aae3a7283143f562a7433e69a186d374130288 │ ├── f27ca68a764e83217363ac27b0ede7fe068d68043002a547a7fba930497cedb8 │ ├── f29233e6f142dc25a7ef1a1c4c22354b5e184bc5af32158d6f49981ae95a0a60 │ ├── f2d96e24ab43e18762a394b326658a65c49772f710a9fe88b8d787a6645fb854 │ ├── f30b3060e7e8f0732c2505d5f56deef9b7928df0223e7001ab6ee92929327e5c │ ├── f325f1b0156808b08fea092082cfbaf7a268bac4c652e1449857dbc0a46119e2 │ ├── f33fb9163ec89b5061e2b632f79cf5939fad587885cb2a2e7d7ee1f5d0007c9d │ ├── f34cc3ffea16558ad51f51976b8e1d68d8b90125c5d34664dec4282a41e85e48 │ ├── f35e61e5af822e67fdda190d72f1f914bbe96eeebae55d4aca8f7c25b0466573 │ ├── f36e53309d778d29a9d399fba62aabe4d546069b94906088f3013fc37ddcdfb3 │ ├── f3a5d70dd2eabe03a76c979aea8a90fe919d7cf2c1366b197c45a3c06ce2f50e │ ├── f3e971e15cefc455faa44b2b4040cbbbbe8a6702777ed12bb9bbe426d84edd31 │ ├── f3ef3357f97a27c618e2700c4c725563f3d20d799c6e0abc7a4a7763663ce87d │ ├── f421d1e9e97efbf4da309081de609be055b1816f3e7ac0d1d68c4fffc9d2bfe1 │ ├── f447613deaeb0fc0092cffba23c35ad569b571c81dd5ce41638604e95dee3430 │ ├── f47764059e2b627b13dde2c04d74bf253085da80d19f1b035ea56c4b022671bd │ ├── f4942e866cdddffd22207a042b029a137c6cad3cd739ff50478509ffb37d0df0 │ ├── f49d134ee44161ec840bdbb1b5e30e23434cfb5bbb4232004337d04750eb814e │ ├── f4bbe0c15aec96cc251cb74988bb176e11f6190dd772286a2886acfb7407a6e0 │ ├── f4c1cfcf001878d7b7f08f1a159a7ee8697076e40b5a6f5da74ee2cfead03197 │ ├── f4e4148ff0bf2001eddec038ab339314904104eee22a03ecbd0cbd41111762b1 │ ├── f51b57b7c87c74c24c580672e48bb0365809388053afec9554cd7232f2eed21d │ ├── f530e1c507ae6bf5a5fba7ee973a3d40c22054b9ed58dd0bc8b2c69bdba8edc9 │ ├── f543aafe71324308b6c0a68cbca08ac3335529e3ae0a02c68731a6e7f71c62e4 │ ├── f571c383b35b15c76a40ec28a6660497d0ae7b5edc3508b4dfccdfe007d19c13 │ ├── f587984734022f9a5481be100876b95de7edfd01dc4a2306d00286ce8299786f │ ├── f5c5e466e4de4fa448845d0eac08bb6bd20e7daf4691be414e750dd1713db658 │ ├── f5cc1ee10b52bd7247b334ef27ba4605a5c275fe5f4af2885f1ad577e093b77d │ ├── f5df2f69383b3316627e5ca68047abd9046426c4cca3cbfdd420091fb5277f15 │ ├── f60730578137f74a8eaca9502b5731e5bc24ac01d478b743c5602a1c74a61890 │ ├── f618ddb3471205abaa90bf597960b4d5efa8514c7413da8be0cd3463c6413454 │ ├── f62fc2ab202b194274850db63abba9a54a6f5148f18b51528a1d29919122672c │ ├── f6a070507138e51cad90add44593fe80a7d28b80a683a8620cb60af83aad4913 │ ├── f6bc8bf635e9573478d3a371b3ca89ecf4a14dbc72a8249175bd75ed36f879a7 │ ├── f6d0872fad8404c9be8a5ebac1d1e10ae2dd836fec5b4b3fd2eb19ae1be7da86 │ ├── f6d24cc454fb7534b3ac4ec2722989a7c58c1dd8aeac15dcccdcf1378718974c │ ├── f6e18f67905b73cd2a34883ca4ce8fb4639f1796f7abed8c878216705e92ff1d │ ├── f6fdc99c162549d0c96dd58b11a273433c15a574bec03661f7e92596de94f7f8 │ ├── f765fcb47d62073c6ff4f5151b35de0bccce976275d78e0397d887cb65cddf32 │ ├── f78357655c4c98405569b6a7ec03786745d92fae218b815e5748675009ac1bca │ ├── f78942312cdfbe81edafa46edcec8472ff63397884ad7f4d00a4ab2f1eaa5443 │ ├── f7ac6a07eeade56b79ff9fc65f1ce9e2c27a74a3b2eb45ce487bcd86eb3c4f87 │ ├── f7b84cc9e40ca73c89c0c9002f3e90b2c92fcb2b66a0a2fe74dfa06f986fa3fb │ ├── f7ca2c54c0b82efe3ce85bccc24d5b6e5982d6c6b92b2e7dcb1cc5e54235bbd1 │ ├── f7e9e0f6ab8d76e8a5a081ae7e2d317779291d2636d227d86b77c963b859253e │ ├── f7f0855372bfc6fd5facfaf436c46b3e5717bf258804e25497c0cdc8246fd6e3 │ ├── f85bf3e9fd0084ac36328ca254968a52f10bffd141311b90fb66a945a632534f │ ├── f8678b1b21ded58121458d5c5b4c38b7de8ec74a8664d9d6853467ff7db40910 │ ├── f886f613ece3a52b4576b972b501284d107408c81b651ce65053f61403e48d15 │ ├── f8a9c98be7887ce3f08b3ab73cac12ad4d2c748a5609d4897ca3f336c0e0de0c │ ├── f8e48006121dc6b9ec767289bbb3a7aead43044285750a4a868db83a9a46ab86 │ ├── f8edb825907cd259d33bee967130d7a4300a83ce6721209a618a939e99c3e27c │ ├── f930b38853a809b99336302dde7aecc9c0d8c85245d4aa2406ffd614c6a6dadb │ ├── f93eae8e9d9565cf82f5f9244c7ee1b98511d3c2b8ce5133bd22f9bd2d2b5eaf │ ├── f9505f80bd721eafb9035cb901db1ddcc2e1a0fff302bf47a0f5ef872f6afa97 │ ├── f96a3619eb4cdc4b65e9c29144a770d2fa8be87c1a6410dd9a6978576d08fef8 │ ├── f9b1469bcf03129f862943323c665c5b1d0813646034c165a85e90e84908b6d2 │ ├── f9dff8d660de41d740d9815120dead3cb1275207bd69feee5eed2daf78c5b3d8 │ ├── fa11a20621aaea9bb612bfab0628ec6ae6219b34d89a5e97930f4279f3939107 │ ├── fa31e723ebf16366a5093a8835f9378098e8f426b7c5f2164b4ec6635c22a514 │ ├── fa3f5451344d734fd7a8f4a282329cd787a0a21da204dc05710f062d1a90265b │ ├── fa6c32f99f5ad754a840f258c55a4620a5e151d703f76e7fc2eaa09313744ad2 │ ├── fa75567b2257db9e48846676aa7b1eff429995bfb396ac5938dc848d023b0500 │ ├── fa98e00868ff60d21c5ce3894817ba4393737944aa21125915712bde0a1b0366 │ ├── fabc1229db983dcb3494efa2cd6f52a94aeecff72c7020c2534fa871c1b0fe6c │ ├── fabe0bceca49e89b490b9ba79cdb18838e439762f434d9ad8826a77922c1935b │ ├── faef8c656ca361f2559271eafb28b88bf12cfccf863447b6febb5773ba94f499 │ ├── fb2b1751cf096d61fb9c07a7b801d59a3c8ffa75baa3d933a577796ada3e3ea6 │ ├── fb33944a42bbec7a3d51d2b3ac418e06d8861c9b31d9675e491f24220d3be606 │ ├── fb48b4bb9f7a5a42edaae91d732a2298622bedd4fdd7fa450aed8b6faef1447c │ ├── fb4dfd5e4a61a49c42b8da24e85ea005da2e10cd051767e26492f6da065d9931 │ ├── fb7411641338c0858bde1053dd080c8d75597c200b1fd19a76647e02103600ec │ ├── fbe264d2a5a869c74dff55602ff80fc75925ebdd40811a7ee73b13e124733325 │ ├── fbe43af2c9a99f4cff6798fc95661846712c4c2cc5cabdf0b478f79c936bf8df │ ├── fc26281a2aae47a15b88d56e583b742d3477f093f109b53f1dab4af73cde4eba │ ├── fc359ce4250c912ddd8a0b9ca2ccfabc10b12d32486620da014a4e572331394d │ ├── fc3e6d5785b3e3b8e6a3d8d620eacd15fe80cdc898adb3989573498137277cd9 │ ├── fc3eb8b97676ae1f40fb43404767f2f4c2a93a0761dabef664ba10e0d9f3c5ec │ ├── fca1a22398cf769e183c6a08aae641a7c5239a796a88e2bc74d401298799b386 │ ├── fcd73a3d314bd16e00dddb5c114ec7ef160d13cd8c51835ca63c20732dcf9aaa │ ├── fcf6df0bd89fee47e64280dc2df4279fe5089d0905905a92e0f49a36250e497c │ ├── fd314b3f6818a8e0c142e8c3b368bb33b804e67d7c9011a96a5ef9e2577fc5bb │ ├── fd3ca32623baa2f952a490573851fa9f3a1aa2beda790ae056242ba8aa152268 │ ├── fd47e6f6dbc064a29dfc09e57dcc6c1e8295ab0b187ddb680bf768b47fa9ee0b │ ├── fd4bd2c83e14b25166e4fe37752c1c9a6508b7b5b9adeea0ece2bf11c1e3ab53 │ ├── fd5404c0e663807dbe98ac69fd581b381c8378e404a0c3aa7b524dfc86ba2dff │ ├── fd7e9b289f3886c6531872f983384608ae24294d6d40f24551421e21e6cccbca │ ├── fd863f14413b3a4e17bdc83243d0f3e2d02e96edbd0f51bd15438269eb9591d3 │ ├── fd8e7edb35817c8cef99515a039b2aa994e130736aaa675752f9dcbab4477bec │ ├── fd99a07f632eff4058bb4a18bbff953a78b171b6a2843590b25fd8352ce2617c │ ├── fdb0a99f45f6a973aac90e4b93c8f05f8e0ddec53992d472e0ccbbb43dc44f60 │ ├── fdd865d0f2c3b3f6f9161c65465209e8a842093e2ed1b199d69583491e5c1c83 │ ├── fde1278c5a37d0d6df59f579b4bbe654a04a0fe9820e3fa41ea9e5ce017f605c │ ├── fde29e320cae6f8d3018e289d8eaab3e552d04338e5a2e428cf5f7effd9677c3 │ ├── fdfe84d8a7394de618d99132c213d53cc2e984ebf6b53688c863713d84a4a045 │ ├── fe1357975341fe92cb3f6ac6efe743c646ce5911d3d778b227c4c4cb17bc1da9 │ ├── fe24016efc76c88c46d95c315a38bdbd4c7f9b33055cb0302814e6a1bf2e9ff6 │ ├── fe54e10f365cecd806fe805e51646fd81552d7d42af569ddf2486e013f3a0dd8 │ ├── fe58e9b1c37f6bb1d3abe807b4f703b488f7758c0415e830e6854d1bb6d83999 │ ├── fe730bdbee6e1ad0b2f3d90edafd28d9e3509cb7ff33e938a629f32636c3f638 │ ├── fe8e58e5de60057c402b5ad4fbd3d332776725fd35cc19ce7b99189e493bb037 │ ├── fe952694e1f4f19094899d7a4f446321bd4c3c82deaccd7c6c9b0a3c2f98f308 │ ├── fea8e4ec13b8ee2092504e0cde4a78329047ae75484e7ffca0f0a3b4c0f0cd93 │ ├── fef7c869845e2bc61e0fa226d477a9b73409a83f78642d76bfd2a1f68797b707 │ ├── ff0349f7c9d38b749df0eecd1e305f19e7a3812c104679622dd71c19f9d8bb8b │ ├── ff3924cc696d979f828824e2775fe9d0e95781cae60fcaf1e6558e555785077b │ ├── ff3e729c040dba90f47385412acfd0eabfbf617fd67e72e13b825e022141201b │ ├── ff4f5597a5bd42656160c569c1574ae1869bd5ad1b7f966dacab602c18a583d1 │ ├── ff5d75b847098fedeed116513075fff8f20b5db088d8d023a8ece73f449f1e8b │ ├── ff5eedad3a9ae5e2fecb92544f4789365020eff046cf5c027aa87a363c4245df │ ├── ff819901fb6a4d46bb86df00549ef14fe1d690a82c3e2b8b4057209a1b44b8ad │ ├── ff8403d3c30d1bc77cd52bbefdecbcdd11028f505413f5b63347fa5fdd2ae9d8 │ ├── ffac03f310e6ad24dd1ff75e12976445bffd0a5f469d73af92424a124ec47316 │ ├── ffcf01d78d7c6422edb71c5bdbe7c2a6c6d09709c5f76b39edad8d5ae149aef1 │ └── ffe580bce29f478b7f64d30c14c357e710dae1dbb21d0380dd906e9d800e5a50 ├── discussion │ ├── 40645316fef824d7ff8ddcc53d1783a376c0eb02e4c167a7d4720fdc27d2e9fb │ ├── 5407ddfa890a9a17de6d66ea70e33f30132b2120f2958b74e189341438a5ca09 │ ├── 5cad8f992b5288b72323b69c15c041018fe04404770707ce8b622ada157e5c96 │ ├── 70be15b2614fdb0881532833ff887039beb2e28b2952b0644de47ec664253332 │ ├── 993e06098ee2a37265d7c9460a58bcf30375c0fa30f44d14106e544c79dc15f9 │ └── c3eb4ede69661c49d465d5255b43bcffe59fc37b329ee65f1ff1c5bb7f0a321c ├── facebook-graph-api │ ├── 83bd6458e3869e57c61857b080b0307bc148bc40ca5305433ec8d87f1a119f9c │ └── a5ad44ffbe1148f62f924f41827039431d33ac06321c2df29e307703cd8510f4 ├── football │ ├── 00d4ca5aeca7eb16bf77dddeca3dad2328cb263d4c0bb0cac2ca6e45103464bc │ ├── 0b828d217194f12c6eae8df33aa31f4ee6424bbc5962fb5d773c44a6cb2bcf87 │ ├── 3b0f0083f2a69a357788ef6bc06c4849b7e3e6e9b7cea159f0c64eec33610d95 │ ├── 6ae1aa5e126c5df9b56e13329b0cdd486a53f6880401bb006ed9d0dedfa06cdc │ ├── 757f207006035a5cf680ae44d71fdff6a5f9dcb74f828f7a90553d80c7790f6a │ ├── 94fc332619295693f6df375215852191c50a722b131e2472529dd6a3d089eeee │ └── bac21e5fa5bb4dda12b4dc1b5c4285104e2f60299aec53eae1e2c0fb0e7df602 └── pressedPage │ ├── 28ef6d696f47cdccc3e02dd4a2e6b1f527d0e4b7d37e6d41ba8a6ddc2d796704 │ ├── be6a9b0fa7c26734133b4f56c21fc2bf692f8782e648a544d651a0f2c28e3d4d │ ├── ed23634b00492822d8c5c2365d6011396ab1d8900549c0322bca9ce0554b3054 │ └── f4e7869bf075ca843752f8a1c46b7c4b94b90ef234decbadca3ddcde89a7bfb1 ├── dev-build ├── app │ ├── AppLoader.scala │ └── http │ │ ├── DevBuildParametersHttpRequestHandler.scala │ │ └── DevFilters.scala └── conf │ ├── dev-build.application.conf │ ├── logback.xml │ └── routes ├── dev ├── .eslintrc.js ├── git-branch-cleaner-remote ├── jest.setupTestFrameworkScriptFile.js ├── watch.mjs └── webpack-loaders │ └── svg-loader │ └── index.js ├── disallowed-strings.mjs ├── discussion ├── README.md ├── app │ ├── AppLoader.scala │ ├── controllers │ │ ├── CommentCountController.scala │ │ ├── CommentsController.scala │ │ ├── DiscussionController.scala │ │ ├── DiscussionControllers.scala │ │ ├── HealthCheck.scala │ │ └── ProfileActivityController.scala │ ├── discussion │ │ ├── CommentPage.scala │ │ ├── api │ │ │ ├── DiscussionApi.scala │ │ │ └── DiscussionApiException.scala │ │ ├── model │ │ │ ├── Comment.scala │ │ │ ├── DiscussionAbuseReport.scala │ │ │ ├── DiscussionKey.scala │ │ │ ├── Profile.scala │ │ │ ├── Switch.scala │ │ │ └── comments.scala │ │ └── util │ │ │ └── Http.scala │ └── views │ │ ├── discussionComments │ │ ├── commentsList.scala.html │ │ ├── discussionPage.scala.html │ │ └── topCommentsList.scala.html │ │ ├── fragments │ │ ├── comment.scala.html │ │ ├── commentBadges.scala.html │ │ ├── commentPagination.scala.html │ │ ├── commentSchema.scala.html │ │ ├── person.scala.html │ │ ├── recommendationTooltip.scala.html │ │ ├── reportComment.scala.html │ │ └── topComment.scala.html │ │ └── profileActivity │ │ ├── comment.scala.html │ │ ├── comments.scala.html │ │ ├── discussions.scala.html │ │ └── profile.scala.html ├── conf │ ├── application.conf │ ├── logback.xml │ └── routes └── test │ ├── CommentCountControllerTest.scala │ ├── CommentPageControllerTest.scala │ ├── ProfileTest.scala │ ├── controllers │ ├── DiscussionApiPluginIntegrationTest.scala │ └── ProfileActivityControllerTest.scala │ ├── discussion │ ├── DiscussionApiTest.scala │ └── model │ │ ├── CommentTest.scala │ │ └── DiscussionKeyTest.scala │ └── package.scala ├── docs ├── 01-start-here │ ├── 01-installation-steps.md │ ├── 02-guardian-visual-glossary.md │ ├── 03-how-to-deploy.md │ ├── 04-troubleshooting.md │ ├── 05-development-tips.md │ ├── 06-testing-tips.md │ ├── 07-faqs.md │ ├── 08-incidents.md │ ├── README.md │ └── images │ │ ├── amp-ads.jpg │ │ ├── blog series.jpg │ │ ├── box set.jpg │ │ ├── build-number-tc.png │ │ ├── full width trail.jpg │ │ ├── immersive.jpg │ │ ├── katie ledecky.jpg │ │ ├── liveblog.jpg │ │ ├── minute.jpg │ │ ├── more_on_this_story.jpg │ │ ├── quotes.jpg │ │ ├── related.jpg │ │ ├── review.jpg │ │ ├── standard article.jpg │ │ ├── the counted.jpg │ │ └── video.jpg ├── 02-architecture │ ├── 01-applications-architecture.md │ ├── 02-fronts-architecture.md │ ├── 03-libraries-we-use.md │ ├── 04-archiving.md │ ├── 05-architecture-principles-for-css.md │ ├── 06-client-side-architecture.md │ ├── README.md │ ├── facia │ │ └── facia-monitoring.md │ └── images │ │ ├── fronts-archirecture.jpg │ │ └── fronts-archirecture.odg ├── 03-dev-howtos │ ├── 01-ab-testing.md │ ├── 02-deployment.md │ ├── 03-embeds.md │ ├── 04-inline-svgs.md │ ├── 05-interactives.md │ ├── 06-repressing.md │ ├── 07-sprite-production.md │ ├── 08-template-deduping.md │ ├── 09-testing-externally-on-localhost.md │ ├── 10-testing-platform.md │ ├── 11-access-logs-for-your-localhost.md │ ├── 12-Update-configuration.md │ ├── 14-override-default-configuration.md │ ├── 15-updating-test-database.md │ ├── 16-working-with-amp.md │ ├── 17-working-with-emails.md │ ├── 18-apply-the-special-report-tone.md │ ├── 19-tracking-components-in-the-data-lake.md │ ├── 20-update-overlay-images.md │ ├── 22-access-preview-locally.md │ ├── 23-sport-tournaments.md │ ├── 24-pointing-to-CODE-CAPI.md │ ├── README.md │ └── images │ │ └── composer-embed-dialog.png ├── 04-quality │ ├── 01-browser-support.md │ ├── 02-browser-support-principles.md │ ├── 03-accessibility.md │ ├── 04-security.md │ ├── README.md │ └── images │ │ ├── chrome_full.png │ │ └── ie8_basic.png ├── 05-commercial │ ├── 01-DFP-Advertising.md │ ├── 02-commercial-components.md │ ├── 03-commercial-javascript.md │ ├── 04-non-refreshable-line-items.md │ └── README.md ├── 06-features-and-components │ ├── 01-trail-images.md │ ├── 02-The-Interactive-Librarian │ │ ├── 01-README.md │ │ ├── 02-Batch-01 │ │ │ ├── 01-interactive-urls │ │ │ ├── 02-making.txt │ │ │ ├── 03.interactive-urls.txt │ │ │ ├── 04-originals-pressing │ │ │ └── 05-original-pressing-failures.txt │ │ ├── 02-interactive-migration.md │ │ └── 03-Batch-02 │ │ │ ├── 06-cleaning │ │ │ ├── 07-cleaning-failures.txt │ │ │ └── 08-pascal-message-to-the-team.png │ ├── 03-tag-combiners.md │ └── README.md ├── 07-performance │ ├── 01-performance-reading.md │ └── README.md ├── 99-archives │ ├── crepes.md │ └── font-loader-route.md ├── README.md ├── generate-toc.sh └── how-to-create-a-doc-file.md ├── facia-press ├── README.md ├── app │ ├── AppLoader.scala │ ├── controllers │ │ ├── Application.scala │ │ └── HealthCheck.scala │ ├── frontpress │ │ ├── FapiFrontPress.scala │ │ ├── FrontPressCron.scala │ │ ├── JsonQueueWorker.scala │ │ ├── PressedCollectionDeduplication.scala │ │ ├── PressedCollectionVisibility.scala │ │ ├── StatusNotification.scala │ │ └── ToolPressQueueWorker.scala │ ├── lifecycle │ │ └── FaciaPressLifecycle.scala │ └── testdata │ │ └── FaciaPressDeduplicationTestData.scala ├── conf │ ├── application.conf │ ├── logback.xml │ └── routes └── test │ └── frontpress │ ├── FaciaClientTest.scala │ ├── FaciaPressDeduplicationTest.scala │ ├── FapiFrontPressTest.scala │ └── PressedCollectionVisibilityTest.scala ├── facia ├── app │ ├── AppLoader.scala │ ├── agents │ │ └── MostViewedAgent.scala │ ├── controllers │ │ ├── FaciaController.scala │ │ ├── FaciaControllers.scala │ │ ├── HealthCheck.scala │ │ └── front │ │ │ ├── FaciaDefaults.scala │ │ │ ├── FapiFrontJsonMinimal.scala │ │ │ └── FrontHeadline.scala │ ├── feed │ │ ├── DeeplyReadLifecycle.scala │ │ └── MostViewedLifecycle.scala │ ├── model │ │ └── OnwardItem.scala │ ├── pages │ │ ├── FrontEmailHtmlPage.scala │ │ └── FrontHtmlPage.scala │ ├── services │ │ └── dotcomrendering │ │ │ └── FaciaPicker.scala │ ├── utils │ │ └── TargetedCollections.scala │ └── views │ │ ├── fragments │ │ ├── emailFrontBody.scala.html │ │ ├── frontBody.scala.html │ │ └── frontMeta.scala.html │ │ └── package.scala ├── conf │ ├── application.conf │ ├── logback.xml │ ├── rome.properties │ └── routes ├── public │ ├── amphtml │ │ └── apikey.pub │ ├── apple-developer-merchantid-domain-association-code.txt │ ├── apple-developer-merchantid-domain-association-prod.txt │ ├── humans.txt │ ├── security.txt │ └── security.txt.asc └── test │ ├── FaciaControllerTest.scala │ ├── FaciaFeatureTest.scala │ ├── FaciaMetaDataTest.scala │ ├── controllers │ └── front │ │ ├── FaciaDefaultsTest.scala │ │ └── FrontHeadlineTest.scala │ ├── model │ └── FaciaPageTest.scala │ ├── package.scala │ ├── services │ └── dotcomrendering │ │ └── FaciaPickerTest.scala │ └── utils │ ├── TargetedCollectionsTest.scala │ └── WithAssets.scala ├── git-hooks ├── post-merge └── pre-push ├── identity ├── README.md ├── app │ ├── AppLoader.scala │ ├── actions │ │ └── AuthenticatedActions.scala │ ├── clients │ │ └── DiscussionClient.scala │ ├── conf │ │ ├── FrontendIdentityCookieDecoder.scala │ │ ├── IdentityConfiguration.scala │ │ ├── IdentityConfigurationComponents.scala │ │ └── IdentityLifecycle.scala │ ├── controllers │ │ ├── DiscardingIdentityCookies.scala │ │ ├── EmailVerificationController.scala │ │ ├── FormstackController.scala │ │ ├── HealthCheck.scala │ │ ├── IdentityControllers.scala │ │ ├── PublicProfileController.scala │ │ └── editprofile │ │ │ ├── ConsentsJourney.scala │ │ │ ├── EditProfileController.scala │ │ │ ├── EditProfileControllerComponents.scala │ │ │ ├── ProfileForms.scala │ │ │ ├── editprofile.scala │ │ │ └── tabs │ │ │ ├── EmailsTab.scala │ │ │ └── PublicTab.scala │ ├── form │ │ ├── AddressMapping.scala │ │ ├── DateFormData.scala │ │ ├── FormComponents.scala │ │ ├── IdFormHelpers.scala │ │ ├── Mappings.scala │ │ ├── PrivacyMapping.scala │ │ ├── ProfileFormsMapping.scala │ │ ├── TelephoneNumberMapping.scala │ │ └── UserFormMapping.scala │ ├── http │ │ ├── HeaderLoggingFilter.scala │ │ ├── IdentityFilters.scala │ │ ├── IdentityHttpErrorHandler.scala │ │ └── StrictTransportSecurityHeaderFilter.scala │ ├── idapiclient │ │ ├── Auth.scala │ │ ├── IdApiClient.scala │ │ ├── IdApiComponents.scala │ │ ├── UserUpdateDTO.scala │ │ ├── filters │ │ │ ├── ApiFilter.scala │ │ │ ├── DateRange.scala │ │ │ ├── ElemMatch.scala │ │ │ ├── OrderBy.scala │ │ │ ├── Pagination.scala │ │ │ └── ValueFilter.scala │ │ ├── package.scala │ │ ├── parser │ │ │ ├── IdApiJsonBodyParser.scala │ │ │ ├── JodaJsonSerializer.scala │ │ │ └── JsonBodyParser.scala │ │ ├── requests │ │ │ ├── AutoSignInToken.scala │ │ │ └── DeletionBody.scala │ │ └── responses │ │ │ ├── AccessTokenResponse.scala │ │ │ ├── AccountDeletionResponse.scala │ │ │ ├── CookiesResponse.scala │ │ │ ├── Error.scala │ │ │ └── HttpResponse.scala │ ├── implicits │ │ └── Forms.scala │ ├── jobs │ │ └── TorExitNodeList.scala │ ├── model │ │ ├── Countries.scala │ │ ├── IdentityPage.scala │ │ ├── PhoneNumbers.scala │ │ ├── ReturnJourney.scala │ │ ├── Titles.scala │ │ └── Userhelp.scala │ ├── pages │ │ └── IdentityHtmlPage.scala │ ├── services │ │ ├── AuthenticationService.scala │ │ ├── DiscussionApiService.scala │ │ ├── IdRequestParser.scala │ │ ├── IdentityServices.scala │ │ ├── IdentityUrlBuilder.scala │ │ ├── MembersDataApiService.scala │ │ ├── NewsletterService.scala │ │ ├── PlaySigninService.scala │ │ ├── ReturnUrlVerifier.scala │ │ └── UserGroupService.scala │ ├── utils │ │ ├── ConsentOrder.scala │ │ ├── ConsentsJourneyType.scala │ │ ├── IdentityApiThreadPoolMonitor.scala │ │ ├── IdentitySafeLogging.scala │ │ └── ThirdPartyConditions.scala │ └── views │ │ ├── SocialErrorMapper.scala │ │ ├── SocialSigninRoute.scala │ │ ├── completeConsents.scala.html │ │ ├── consentJourney.scala.html │ │ ├── consentJourneyFragments │ │ ├── block.scala.html │ │ ├── error.scala.html │ │ └── jsFallback.scala.html │ │ ├── errors │ │ ├── _400.scala.html │ │ ├── _404.scala.html │ │ ├── _502.scala.html │ │ ├── _50x.scala.html │ │ └── error.scala.html │ │ ├── formstack │ │ ├── formstackComplete.scala.html │ │ └── formstackFormNotFound.scala.html │ │ ├── fragments │ │ ├── consentSwitch.scala.html │ │ ├── emailListCategories.scala.html │ │ ├── error.scala.html │ │ ├── form │ │ │ ├── checkbox.scala.html │ │ │ ├── checkboxField.scala.html │ │ │ ├── fieldConstructors │ │ │ │ ├── frontendFieldConstructor.scala.html │ │ │ │ └── multiInputFieldConstructor.scala.html │ │ │ ├── hidden.scala.html │ │ │ ├── inputField.scala.html │ │ │ ├── radioField.scala.html │ │ │ ├── switch.scala.html │ │ │ └── textareaField.scala.html │ │ ├── identityPageHeader.scala.html │ │ ├── modal.scala.html │ │ ├── newsletterSwitch.scala.html │ │ ├── registrationFooter.scala.html │ │ ├── socialSignin.scala.html │ │ └── userhelpFooter.scala.html │ │ ├── layout │ │ ├── identityFlexWrap.scala.html │ │ ├── identityHeader.scala.html │ │ └── identitySkinnyFooter.scala.html │ │ ├── noDiscussionsPage.scala.html │ │ ├── profile │ │ └── deletion │ │ │ ├── accountDeletionBlock.scala.html │ │ │ ├── accountDeletionConfirm.scala.html │ │ │ ├── accountDeletionForm.scala.html │ │ │ └── error.scala.html │ │ ├── publicProfilePage.scala.html │ │ ├── support │ │ └── fragment │ │ │ ├── ConsentBlock.scala │ │ │ ├── ConsentChannel.scala │ │ │ └── Switch.scala │ │ ├── verificationEmailResent.scala.html │ │ └── verificationEmailResentError.scala.html ├── conf │ ├── application.conf │ ├── logback.xml │ ├── messages.en │ └── routes ├── public │ └── google1ec7a89a27d60d47.html └── test │ ├── actions │ └── AuthenticatedActionsTest.scala │ ├── clients │ └── DiscussionClientTest.scala │ ├── controllers │ ├── ConsentsJourneyControllerTest.scala │ ├── EditProfileControllerTest.scala │ ├── EmailVerificationControllerTest.scala │ ├── FormstackControllerTest.scala │ └── PublicProfileControllerTest.scala │ ├── filters │ └── StrictTransportSecurityHeaderFilterTest.scala │ ├── form │ └── TelephoneNumberMappingTest.scala │ ├── idapiclient │ ├── IdApiTest.scala │ ├── filters │ │ ├── DateRangeTest.scala │ │ ├── ElemMatchTest.scala │ │ ├── OrderByTest.scala │ │ ├── PaginationTest.scala │ │ └── ValueFilterTest.scala │ └── parser │ │ └── JsonBodyParserTest.scala │ ├── model │ └── PhoneNumbersTest.scala │ ├── package.scala │ ├── services │ ├── DiscussionApiServiceTest.scala │ ├── IdentityUrlBuilderTest.scala │ ├── MembersDataApiServiceTest.scala │ └── ReturnUrlVerifierTest.scala │ ├── test │ └── FakeCSRFRequest.scala │ └── utils │ ├── RemoteAddressTest.scala │ └── ThirdPartyConditionsTest.scala ├── makefile ├── nginx ├── Brewfile ├── README.md ├── frontend.conf ├── hosts ├── nginx-mapping.yml └── setup.sh ├── onward ├── app │ ├── AppLoader.scala │ ├── authentication │ │ └── AuthenticationSupport.scala │ ├── business │ │ ├── StocksData.scala │ │ ├── StocksDataLifecycle.scala │ │ ├── massagedModels.scala │ │ └── rawModels.scala │ ├── containers │ │ └── Containers.scala │ ├── controllers │ │ ├── CardController.scala │ │ ├── ChangeEditionController.scala │ │ ├── HealthCheck.scala │ │ ├── MediaInSectionController.scala │ │ ├── MostPopularController.scala │ │ ├── MostViewedAudioController.scala │ │ ├── MostViewedGalleryController.scala │ │ ├── MostViewedVideoController.scala │ │ ├── NavigationController.scala │ │ ├── OnwardContentCardController.scala │ │ ├── OnwardControllers.scala │ │ ├── PopularInTag.scala │ │ ├── RecommendedContentCardController.scala │ │ ├── RelatedController.scala │ │ ├── RichLinkController.scala │ │ ├── SeriesController.scala │ │ ├── StocksController.scala │ │ ├── StoryPackageController.scala │ │ ├── TaggedContentController.scala │ │ ├── TopStoriesController.scala │ │ └── package.scala │ ├── feed │ │ ├── MostPopularAgent.scala │ │ ├── MostReadAgent.scala │ │ ├── MostViewedAudioAgent.scala │ │ ├── MostViewedGalleryAgent.scala │ │ ├── MostViewedVideoAgent.scala │ │ └── OnwardJourneyLifecycle.scala │ ├── models │ │ ├── NewsAlertType.scala │ │ ├── Series.scala │ │ ├── URIFormats.scala │ │ └── dotcomrendering │ │ │ └── DotcomponentsOnwardsModels.scala │ ├── services │ │ ├── PopularInTagService.scala │ │ └── repositories.scala │ └── views │ │ ├── feedback.scala.html │ │ ├── feedbackSent.scala.html │ │ ├── fragments │ │ ├── feedbackForm.scala.html │ │ ├── feedbackForms.scala.html │ │ ├── mediaItem.scala.html │ │ ├── mostViewedVideo.scala.html │ │ ├── podcastEpisodes.scala.html │ │ ├── richLinkBody.scala.html │ │ ├── rightMostPopular.scala.html │ │ ├── rightMostPopularGeoGarnett.scala.html │ │ ├── topStoriesBody.scala.html │ │ ├── videoEndSlate.scala.html │ │ └── videosInSeries.scala.html │ │ ├── mostPopular.scala.html │ │ ├── mostViewedGalleries.scala.html │ │ ├── relatedContent.scala.html │ │ ├── richLink.scala.html │ │ └── topStories.scala.html ├── conf │ ├── application.conf │ ├── logback.xml │ └── routes └── test │ ├── MostPopularControllerTest.scala │ ├── MostPopularFeatureTest.scala │ ├── MostViewedVideoTest.scala │ ├── NavigationControllerTest.scala │ ├── OnwardContentCardControllerTest.scala │ ├── RecommendedContentCardControllerTest.scala │ ├── RelatedControllerTest.scala │ ├── RelatedFeatureTest.scala │ ├── RichLinkControllerTest.scala │ ├── SeriesControllerTest.scala │ ├── TestAppLoader.scala │ ├── TopStoriesControllerTest.scala │ ├── VideoInSectionTest.scala │ ├── business │ └── ModelsTest.scala │ ├── controllers │ └── ChangeEditionControllerTest.scala │ ├── model │ └── TopStoriesFeatureTest.scala │ ├── package.scala │ └── resources │ └── business-indices.json ├── package.json ├── preview ├── app │ ├── AppLoader.scala │ ├── PreviewErrorHandler.scala │ ├── controllers │ │ ├── FaciaDraftController.scala │ │ ├── FaviconController.scala │ │ ├── HealthCheck.scala │ │ ├── ItemController.scala │ │ ├── LiveHarnessController.scala │ │ └── ResponsiveViewerController.scala │ ├── http │ │ ├── PanDomainDesktopAuthentication.scala │ │ ├── PreviewContentSecurityPolicyFilter.scala │ │ └── PreviewNoCacheFilter.scala │ └── views │ │ ├── not_found.scala.html │ │ ├── responsive_viewer.scala.html │ │ ├── showcase.scala.html │ │ └── showcase_articlegroup.scala.html ├── conf │ ├── application.conf │ ├── logback.xml │ └── routes └── public │ ├── css │ └── style.css │ └── javascripts │ └── components │ └── bootstrap.css │ └── css │ └── bootstrap.css ├── project ├── Dependencies.scala ├── ProjectSettings.scala ├── VersionInfo.scala ├── build.properties └── plugins.sbt ├── prout └── seen.md ├── riff-raff.yaml ├── rss ├── app │ ├── AppLoader.scala │ └── controllers │ │ ├── HealthCheck.scala │ │ └── RssController.scala └── conf │ ├── application.conf │ ├── logback.xml │ └── routes ├── sbt ├── scala-steward.conf ├── setup.sh ├── sport ├── app │ ├── AppLoader.scala │ ├── conf │ │ └── SportConfiguration.scala │ ├── cricket │ │ ├── conf │ │ │ └── context.scala │ │ ├── controllers │ │ │ ├── CricketControllers.scala │ │ │ └── CricketMatchController.scala │ │ ├── feed │ │ │ ├── CricketThrottler.scala │ │ │ ├── cricketModel.scala │ │ │ ├── cricketPaDeserialisation.scala │ │ │ └── cricketPaFeed.scala │ │ ├── jobs │ │ │ └── CricketStatsJob.scala │ │ └── views │ │ │ ├── cricketMatch.scala.html │ │ │ └── fragments │ │ │ ├── cricketFullScorecard.scala.html │ │ │ ├── cricketMatchBody.scala.html │ │ │ └── cricketMatchSummary.scala.html │ ├── football │ │ ├── collections │ │ │ └── RichList.scala │ │ ├── conf │ │ │ └── context.scala │ │ ├── containers │ │ │ └── FixturesAndResults.scala │ │ ├── controllers │ │ │ ├── CompetitionListController.scala │ │ │ ├── FixturesAndResultsContainerController.scala │ │ │ ├── FixturesController.scala │ │ │ ├── FootballControllers.scala │ │ │ ├── HealthCheck.scala │ │ │ ├── LeagueTableController.scala │ │ │ ├── MatchController.scala │ │ │ ├── MatchDayController.scala │ │ │ ├── MatchListController.scala │ │ │ ├── MoreOnMatchController.scala │ │ │ ├── ResultsController.scala │ │ │ ├── WallchartController.scala │ │ │ ├── context.scala │ │ │ └── model.scala │ │ ├── datetime │ │ │ └── dateHelpers.scala │ │ ├── feed │ │ │ ├── Competitions.scala │ │ │ └── agent.scala │ │ ├── implicits │ │ │ └── Football.scala │ │ ├── model │ │ │ ├── CompetitionStages.scala │ │ │ ├── DotcomRenderingCricketDataModel.scala │ │ │ ├── DotcomRenderingFootballDataModel.scala │ │ │ ├── DotcomRenderingWallchartDataModel.scala │ │ │ ├── FootballMatchTrail.scala │ │ │ ├── FootballWomensEuro2025Atom.scala │ │ │ ├── GuTeamCode.scala │ │ │ ├── TeamMap.scala │ │ │ ├── matches.scala │ │ │ └── model.scala │ │ └── views │ │ │ ├── competitions.scala.html │ │ │ ├── fragments │ │ │ ├── competitionsBody.scala.html │ │ │ ├── componentStyles.scala.html │ │ │ ├── leagueSelector.scala.html │ │ │ ├── matchNav.scala.html │ │ │ ├── matchSummary.scala.html │ │ │ ├── status.scala.html │ │ │ ├── teamForm.scala.html │ │ │ └── teamlistBody.scala.html │ │ │ ├── matchList │ │ │ ├── matchesComponent.scala.html │ │ │ ├── matchesList.scala.html │ │ │ ├── matchesPage.scala.html │ │ │ └── moreMatchesComponent.scala.html │ │ │ ├── matchStats │ │ │ ├── matchStatsComponent.scala.html │ │ │ └── matchStatsPage.scala.html │ │ │ ├── support.scala │ │ │ ├── tablesList │ │ │ ├── tableView.scala.html │ │ │ ├── tablesComponent.scala.html │ │ │ └── tablesPage.scala.html │ │ │ ├── teamlist.scala.html │ │ │ └── wallchart │ │ │ ├── embed.scala.html │ │ │ ├── groupTableEmbed.scala.html │ │ │ ├── groupTablesEmbed.scala.html │ │ │ ├── groups.scala.html │ │ │ ├── knockoutList.scala.html │ │ │ ├── knockoutMatch.scala.html │ │ │ ├── knockoutSpider.scala.html │ │ │ ├── league.scala.html │ │ │ ├── page.scala.html │ │ │ ├── spiderEmbed.scala.html │ │ │ ├── spiderRoundEmbed.scala.html │ │ │ ├── wallchart.scala.html │ │ │ └── wallchartComponent.scala.html │ ├── rugby │ │ ├── conf │ │ │ └── RugbyLifecycle.scala │ │ ├── controllers │ │ │ ├── MatchesController.scala │ │ │ └── RugbyControllers.scala │ │ ├── feed │ │ │ ├── CapiFeed.scala │ │ │ └── PAFeed.scala │ │ ├── jobs │ │ │ └── RugbyStatsJob.scala │ │ ├── model │ │ │ ├── paRugby.scala │ │ │ └── rugby.scala │ │ └── views │ │ │ ├── fragments │ │ │ ├── groupTable.scala.html │ │ │ ├── matchNav.scala.html │ │ │ ├── matchStats.scala.html │ │ │ ├── matchSummary.scala.html │ │ │ └── scoreEvents.scala.html │ │ │ └── matchSummary.scala.html │ └── services │ │ └── dotcomrendering │ │ ├── CricketPagePicker.scala │ │ ├── FootballPagePicker.scala │ │ ├── FootballSummaryPagePicker.scala │ │ └── FootballTablesPagePicker.scala ├── conf │ ├── application.conf │ ├── logback.xml │ └── routes └── test │ ├── CompetitionAgentTest.scala │ ├── FootballTestData.scala │ ├── LeagueTablesFeatureTest.scala │ ├── MatchFeatureTest.scala │ ├── TestAppLoader.scala │ ├── controllers │ ├── CompetitionListControllerTest.scala │ ├── FixturesControllerTest.scala │ ├── LeagueTableControllerTest.scala │ ├── MatchControllerTest.scala │ ├── MoreOnMatchFeatureTest.scala │ └── ResultsControllerTest.scala │ ├── football │ ├── collections │ │ └── RichListTest.scala │ ├── containers │ │ └── FixturesAndResultsTest.scala │ ├── feed │ │ └── CompetitionsTest.scala │ ├── implicits │ │ └── FootballTest.scala │ └── model │ │ ├── CompetitionStageTest.scala │ │ ├── CompetitionTestData.scala │ │ ├── FixturesListTest.scala │ │ ├── MatchDayListTest.scala │ │ ├── MatchTestData.scala │ │ ├── ResultsListTest.scala │ │ └── TeamColoursTest.scala │ ├── package.scala │ ├── resources │ └── rugby │ │ └── feed │ │ ├── fixtures-and-results.xml │ │ ├── group-tables.xml │ │ ├── live-events-stats.xml │ │ ├── live-scores.xml │ │ └── pa-events.json │ └── rugby │ ├── feed │ └── PAFeedTest.scala │ └── model │ └── PAMatchParserTest.scala ├── static ├── public │ └── images │ │ ├── acquisitions │ │ ├── ad-free.svg │ │ ├── info-logo.svg │ │ ├── payment-methods-us.png │ │ └── payment-methods.png │ │ ├── auto-update-activity-dark.gif │ │ ├── auto-update-activity.gif │ │ ├── badges │ │ ├── 05_july_2022_Badge.svg │ │ ├── 100days.svg │ │ ├── 18_feb_2022_Badge.svg │ │ ├── 56738_Badge.svg │ │ ├── EUReferendumBadge.svg │ │ ├── GE2017Badge.svg │ │ ├── SpecialReportJul21.svg │ │ ├── SpecialReportSep21.svg │ │ ├── anniversary200.svg │ │ ├── australian-election-2019.svg │ │ ├── australian-election-2022.svg │ │ ├── behind-the-lines.svg │ │ ├── beyondthebladebadge.svg │ │ ├── bias-in-britain.svg │ │ ├── calock.svg │ │ ├── cop26-badge.svg │ │ ├── corona-badge.svg │ │ ├── cricket-world-cup.svg │ │ ├── culture-badge.svg │ │ ├── dreams-interrupted.svg │ │ ├── election-badge-4.svg │ │ ├── eohk.svg │ │ ├── eu_election.svg │ │ ├── euro-2020.svg │ │ ├── facebookFiles.svg │ │ ├── futureofcities.svg │ │ ├── ge2019-badge.svg │ │ ├── green-blood.svg │ │ ├── green-recovery.svg │ │ ├── johnsons-promises.svg │ │ ├── london-versus.svg │ │ ├── lost-in-politics-badge.svg │ │ ├── midterm.svg │ │ ├── new-arrivals.png │ │ ├── newsletter-badge.svg │ │ ├── nhs-70.svg │ │ ├── pp_web.svg │ │ ├── rugby-world-cup.svg │ │ ├── spy-cops-scandal.svg │ │ ├── the-age-of-extinction.svg │ │ ├── the-empty-doorway.svg │ │ ├── the-implant-files.svg │ │ ├── the-last-chance.svg │ │ ├── the-new-populism.svg │ │ ├── the-polluters.svg │ │ ├── the-real-boris-johnson.svg │ │ ├── this-is-europe.svg │ │ ├── tokyo-2020.svg │ │ ├── uk-debt.svg │ │ ├── us-midterm-elections-2022.svg │ │ ├── winter-olympics-2022-badge.svg │ │ ├── womens-world-cup.svg │ │ ├── womens_euros_2022_badge.svg │ │ ├── world-cup-2018.svg │ │ ├── world-cup-2022.svg │ │ └── yemen-at-war.svg │ │ ├── commercial │ │ ├── ab-icon.png │ │ ├── abp-icon.png │ │ ├── ad-block-instructions-chrome.png │ │ ├── soulmates-bg.jpg │ │ ├── soulmates-dropdown-arrow.png │ │ ├── soulmates-female.jpg │ │ └── soulmates-male.jpg │ │ ├── email │ │ ├── banners │ │ │ ├── andrew-sparrow-election-briefing.png │ │ │ ├── andrew-sparrow-email.png │ │ │ ├── animals-farmed-update.png │ │ │ ├── art-weekly.png │ │ │ ├── aus-modern-outback.png │ │ │ ├── australia-sports.png │ │ │ ├── australian-politics.png │ │ │ ├── banner-coronavirus-aus.png │ │ │ ├── beyond-the-blade.png │ │ │ ├── bookmarks.png │ │ │ ├── breaking-news-australia.jpg │ │ │ ├── brexit-briefing.png │ │ │ ├── business-today.png │ │ │ ├── business-view.png │ │ │ ├── coronavirus-in-the-pacific.png │ │ │ ├── coronavirus.png │ │ │ ├── crosswords-editors-update.png │ │ │ ├── design-review.png │ │ │ ├── documentaries.gif │ │ │ ├── fashion-statement.png │ │ │ ├── fashion-week.png │ │ │ ├── fight-to-vote.png │ │ │ ├── film-today.png │ │ │ ├── first-dog-on-the-moon.png │ │ │ ├── first-edition.png │ │ │ ├── first-thing-2.png │ │ │ ├── five-great-reads.png │ │ │ ├── generic.png │ │ │ ├── global-dispatch.png │ │ │ ├── green-light.png │ │ │ ├── guardian-students.png │ │ │ ├── guns_and_lies.png │ │ │ ├── headlines-eur.png │ │ │ ├── healthcare-professionals-network.png │ │ │ ├── hear-here.gif │ │ │ ├── hear-here.png │ │ │ ├── home-entertainment-banner3-small.png │ │ │ ├── housing-network.png │ │ │ ├── lab-notes.png │ │ │ ├── media-briefing.png │ │ │ ├── money-talks.png │ │ │ ├── morning-mail.png │ │ │ ├── moving-the-goalposts.png │ │ │ ├── observer-picture-archive.png │ │ │ ├── opinion.png │ │ │ ├── outside-in-america.png │ │ │ ├── paris-2024-paralympics.jpg │ │ │ ├── public-leaders-network.png │ │ │ ├── rural-network.png │ │ │ ├── saved-for-later.png │ │ │ ├── sleeve-notes.png │ │ │ ├── social-care-network.png │ │ │ ├── society-weekly.png │ │ │ ├── teacher-network.png │ │ │ ├── techscape.png │ │ │ ├── the-breakdown.png │ │ │ ├── the-cityscape.png │ │ │ ├── the-fiver.png │ │ │ ├── the-flyer.png │ │ │ ├── the-guardian-headlines-australia.png │ │ │ ├── the-guardian-headlines-uk.png │ │ │ ├── the-guardian-headlines-us.png │ │ │ ├── the-guide.png │ │ │ ├── the-long-read.png │ │ │ ├── the-new-arrivals.png │ │ │ ├── the-recap.png │ │ │ ├── the-resistance-now.png │ │ │ ├── the-snap.png │ │ │ ├── the-spin.png │ │ │ ├── the-upside.png │ │ │ ├── the-us-politics-minute.png │ │ │ ├── the-week-in-patriarchy.png │ │ │ ├── this-is-europe-series.png │ │ │ ├── this-is-europe.png │ │ │ ├── this-land-is.png │ │ │ ├── tokyo2020-daily-briefing.png │ │ │ ├── universities.png │ │ │ ├── us-election-briefing-australia.png │ │ │ ├── us-morning-briefing.png │ │ │ ├── virtual-reality-studio.png │ │ │ ├── voluntary-sector-network.png │ │ │ ├── weekend-reading.png │ │ │ ├── winter-olympics-2018.png │ │ │ ├── winter-olympics-2022.png │ │ │ ├── word-of-mouth.png │ │ │ └── world-cup-fiver.png │ │ ├── grey-g.png │ │ ├── icons │ │ │ ├── camera.png │ │ │ ├── gallery-culture.png │ │ │ ├── gallery-lifestyle.png │ │ │ ├── gallery-news.png │ │ │ ├── gallery-opinion.png │ │ │ ├── gallery-sport.png │ │ │ ├── gallery.png │ │ │ ├── mail.png │ │ │ ├── play.png │ │ │ ├── playx2.png │ │ │ ├── podcast-culture.png │ │ │ ├── podcast-lifestyle.png │ │ │ ├── podcast-news.png │ │ │ ├── podcast-opinion.png │ │ │ ├── podcast-sport.png │ │ │ ├── podcast.png │ │ │ ├── quote-culture.png │ │ │ ├── quote-lifestyle.png │ │ │ ├── quote-news.png │ │ │ ├── quote-opinion.png │ │ │ ├── quote-sport.png │ │ │ ├── quote.png │ │ │ ├── star-golden.png │ │ │ ├── star-grey.png │ │ │ ├── twitter-bird.png │ │ │ ├── video-culture.png │ │ │ ├── video-lifestyle.png │ │ │ ├── video-news.png │ │ │ ├── video-opinion.png │ │ │ ├── video-sport.png │ │ │ └── video.png │ │ └── quote.png │ │ ├── fallback-logo.png │ │ ├── favicons │ │ ├── 114x114.png │ │ ├── 120x120.png │ │ ├── 144x144.png │ │ ├── 152x152.png │ │ ├── 32x32-dev.ico │ │ ├── 32x32.ico │ │ ├── 57x57.png │ │ ├── 72x72.png │ │ ├── roundel-114x114.png │ │ ├── roundel-152x152.png │ │ ├── roundel-192x192.png │ │ └── windows_tile_144_b.png │ │ ├── guardian-logo-rss.png │ │ ├── journalism │ │ └── apple-podcast-icon-48.png │ │ ├── logo │ │ ├── guardian-logo-160.png │ │ ├── guardian-logo-320.png │ │ ├── observer-logo-160.png │ │ └── observer-logo-320.png │ │ ├── media-holding.jpg │ │ ├── no-image.png │ │ └── twitter │ │ ├── bird.png │ │ └── bird.svg ├── src │ ├── images │ │ ├── commercial │ │ │ └── soulmates-title-background.svg │ │ ├── global │ │ │ ├── back.svg │ │ │ ├── camera-black-large.svg │ │ │ ├── camera-white-large.svg │ │ │ ├── camera-yellow-large.svg │ │ │ ├── card-red.svg │ │ │ ├── card-yellow.svg │ │ │ ├── close-icon-dark-small.svg │ │ │ ├── close-icon-white.svg │ │ │ ├── comment-light-grey.svg │ │ │ ├── guardian-logo-160.svg │ │ │ ├── guardian-logo-320.svg │ │ │ ├── information-circle-grey.svg │ │ │ ├── information-white.svg │ │ │ ├── left-arrow.svg │ │ │ ├── observer-logo-160.svg │ │ │ ├── observer-logo-320.svg │ │ │ ├── pause-icon--arts.svg │ │ │ ├── pause-icon--lifestyle.svg │ │ │ ├── pause-icon--news.svg │ │ │ ├── pause-icon--opinion.svg │ │ │ ├── pause-icon--sport.svg │ │ │ ├── play-icon--arts.svg │ │ │ ├── play-icon--lifestyle.svg │ │ │ ├── play-icon--news.svg │ │ │ ├── play-icon--opinion.svg │ │ │ ├── play-icon--sport.svg │ │ │ ├── play-icon-gold.svg │ │ │ ├── play-icon-grey.svg │ │ │ ├── recommend.svg │ │ │ └── right-arrow.svg │ │ ├── membership │ │ │ ├── americanexpress.svg │ │ │ ├── g-friend.svg │ │ │ ├── g-partner.svg │ │ │ ├── g-patron.svg │ │ │ ├── g-supporter.svg │ │ │ ├── mastercard.svg │ │ │ ├── mem-arrow.svg │ │ │ └── visa.svg │ │ └── video │ │ │ ├── camera-black-large.svg │ │ │ ├── close-icon-white-small.svg │ │ │ ├── embed--black.svg │ │ │ ├── embed--tone-media.svg │ │ │ ├── embed--white.svg │ │ │ ├── error-exclamation.svg │ │ │ ├── expand--black.svg │ │ │ ├── expand-black.svg │ │ │ ├── expand-white.svg │ │ │ ├── expand-yellow.svg │ │ │ ├── pause-32--tone-media.svg │ │ │ ├── pause-32--tone-podcast.svg │ │ │ ├── play-32--tone-media.svg │ │ │ ├── play-32--tone-podcast.svg │ │ │ ├── video-camera--tone-media.svg │ │ │ ├── video-camera--tone-podcast.svg │ │ │ ├── volume-high--tone-media.svg │ │ │ ├── volume-high--tone-podcast.svg │ │ │ ├── volume-high-black.svg │ │ │ ├── volume-high-white.svg │ │ │ ├── volume-low--tone-media.svg │ │ │ ├── volume-low--tone-podcast.svg │ │ │ ├── volume-low-black.svg │ │ │ ├── volume-low-white.svg │ │ │ ├── volume-mute--tone-media.svg │ │ │ ├── volume-mute--tone-podcast.svg │ │ │ └── volume-mute-white.svg │ ├── inline-svgs │ │ ├── acquisitions │ │ │ └── apple-pay-mark.svg │ │ ├── badges │ │ │ ├── euro_2020_badge.svg │ │ │ ├── womens_euros_2022_badge.svg │ │ │ ├── womens_world_cup_2023_badge.svg │ │ │ ├── world_cup_2022_badge.svg │ │ │ └── world_cup_badge.svg │ │ ├── commercial │ │ │ ├── logo-membership.svg │ │ │ ├── logo-moneyshop.svg │ │ │ ├── paid-content.svg │ │ │ ├── thankyou-email.svg │ │ │ └── thrasher-benefit-icon.svg │ │ ├── icon │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-in-circle.svg │ │ │ ├── arrow-left-double.svg │ │ │ ├── arrow-left-stem.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right-double.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up-white.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow-white-right.svg │ │ │ ├── arrow.svg │ │ │ ├── bookmark.svg │ │ │ ├── camera.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── clock.svg │ │ │ ├── close-central.svg │ │ │ ├── close-large.svg │ │ │ ├── close.svg │ │ │ ├── comment-16.svg │ │ │ ├── comment-anchor.svg │ │ │ ├── cross-failed.svg │ │ │ ├── cross.svg │ │ │ ├── cursor.svg │ │ │ ├── device.svg │ │ │ ├── dropdown-mask.svg │ │ │ ├── ellipsis-36.svg │ │ │ ├── envelope-add.svg │ │ │ ├── envelope-remove.svg │ │ │ ├── envelope.svg │ │ │ ├── error-exclamation.svg │ │ │ ├── error-triangle.svg │ │ │ ├── expand-image.svg │ │ │ ├── external-link.svg │ │ │ ├── fb.svg │ │ │ ├── garnett-quote.svg │ │ │ ├── gifting.svg │ │ │ ├── home.svg │ │ │ ├── hosted-quote.svg │ │ │ ├── illustration-letters.svg │ │ │ ├── information-circle.svg │ │ │ ├── information.svg │ │ │ ├── instagram.svg │ │ │ ├── log-off.svg │ │ │ ├── mail.svg │ │ │ ├── market-down.svg │ │ │ ├── market-same.svg │ │ │ ├── market-up.svg │ │ │ ├── marque-36.svg │ │ │ ├── marque-44.svg │ │ │ ├── marque-54-inverted.svg │ │ │ ├── marque-54.svg │ │ │ ├── minus.svg │ │ │ ├── newspaper.svg │ │ │ ├── pin.svg │ │ │ ├── play.svg │ │ │ ├── plus.svg │ │ │ ├── profile-36.svg │ │ │ ├── profile-add-36.svg │ │ │ ├── profile.svg │ │ │ ├── quote.svg │ │ │ ├── refresh.svg │ │ │ ├── reply.svg │ │ │ ├── search-36.svg │ │ │ ├── share-email.svg │ │ │ ├── share-facebook-square.svg │ │ │ ├── share-facebook.svg │ │ │ ├── share-google.svg │ │ │ ├── share-gplus.svg │ │ │ ├── share-linkedin.svg │ │ │ ├── share-messenger.svg │ │ │ ├── share-twitter.svg │ │ │ ├── share-whatsapp.svg │ │ │ ├── share.svg │ │ │ ├── star.svg │ │ │ ├── status-alert.svg │ │ │ ├── status-ok.svg │ │ │ ├── thumb.svg │ │ │ ├── tick-button.svg │ │ │ ├── tick-success.svg │ │ │ ├── tick.svg │ │ │ ├── triangle.svg │ │ │ ├── twitter-bird.svg │ │ │ ├── video-icon.svg │ │ │ ├── volume-high.svg │ │ │ └── world.svg │ │ ├── illustration │ │ │ ├── desktop-lab.svg │ │ │ ├── email_register.svg │ │ │ ├── mobile-lab.svg │ │ │ ├── survey_clipboard.svg │ │ │ ├── tablet-lab.svg │ │ │ └── wide-lab.svg │ │ ├── journalism │ │ │ ├── audio-flagship │ │ │ │ └── flagship-audio-series-header.svg │ │ │ ├── audio-player │ │ │ │ ├── backward.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play.svg │ │ │ │ ├── sound-off.svg │ │ │ │ ├── sound-on.svg │ │ │ │ └── wave-wide.svg │ │ │ ├── audio │ │ │ │ ├── apple-podcasts.svg │ │ │ │ ├── download.svg │ │ │ │ ├── gu-podcast-2021.svg │ │ │ │ ├── podcast-white.svg │ │ │ │ └── spotify.svg │ │ │ ├── in-article-audio-player │ │ │ │ ├── btn-pause.svg │ │ │ │ └── btn-play.svg │ │ │ └── podcast-container │ │ │ │ ├── audio-icon.svg │ │ │ │ ├── waveform-mobile-landscape.svg │ │ │ │ ├── waveform-mobile.svg │ │ │ │ ├── waveform-tablet.svg │ │ │ │ └── waveform-wide.svg │ │ ├── logo │ │ │ ├── glabs-logo-small.svg │ │ │ ├── glabs-logo.svg │ │ │ ├── guardian-australia-decade-logo.svg │ │ │ ├── guardian-best-newspaper-logo.svg │ │ │ ├── guardian-best-website-logo.svg │ │ │ ├── guardian-foundation.svg │ │ │ ├── guardian-logo-160.svg │ │ │ ├── guardian-logo-320.svg │ │ │ ├── guardian-logo.svg │ │ │ ├── guardian-video-logo.svg │ │ │ ├── minute-logo.svg │ │ │ ├── minute_lock_up.svg │ │ │ ├── observer-logo-160.svg │ │ │ ├── observer-logo-320.svg │ │ │ ├── the-guardian-logo.svg │ │ │ └── the-guardian-roundel.svg │ │ ├── membership │ │ │ ├── explore-series-header-bg.svg │ │ │ ├── explore-series-headline-bg.svg │ │ │ ├── explore-series-identity-bg.svg │ │ │ ├── speech-bubble-mask.svg │ │ │ └── videoCaption.svg │ │ ├── numbers │ │ │ ├── number-0.svg │ │ │ ├── number-1.svg │ │ │ ├── number-10.svg │ │ │ ├── number-2.svg │ │ │ ├── number-3.svg │ │ │ ├── number-4.svg │ │ │ ├── number-5.svg │ │ │ ├── number-6.svg │ │ │ ├── number-7.svg │ │ │ ├── number-8.svg │ │ │ └── number-9.svg │ │ └── weather │ │ │ ├── weather-1.svg │ │ │ ├── weather-11.svg │ │ │ ├── weather-12.svg │ │ │ ├── weather-13.svg │ │ │ ├── weather-14.svg │ │ │ ├── weather-15.svg │ │ │ ├── weather-16.svg │ │ │ ├── weather-17.svg │ │ │ ├── weather-18.svg │ │ │ ├── weather-19.svg │ │ │ ├── weather-2.svg │ │ │ ├── weather-20.svg │ │ │ ├── weather-21.svg │ │ │ ├── weather-22.svg │ │ │ ├── weather-23.svg │ │ │ ├── weather-24.svg │ │ │ ├── weather-25.svg │ │ │ ├── weather-26.svg │ │ │ ├── weather-29.svg │ │ │ ├── weather-3.svg │ │ │ ├── weather-30.svg │ │ │ ├── weather-31.svg │ │ │ ├── weather-32.svg │ │ │ ├── weather-33.svg │ │ │ ├── weather-34.svg │ │ │ ├── weather-35.svg │ │ │ ├── weather-36.svg │ │ │ ├── weather-37.svg │ │ │ ├── weather-38.svg │ │ │ ├── weather-39.svg │ │ │ ├── weather-4.svg │ │ │ ├── weather-40.svg │ │ │ ├── weather-41.svg │ │ │ ├── weather-42.svg │ │ │ ├── weather-43.svg │ │ │ ├── weather-44.svg │ │ │ ├── weather-5.svg │ │ │ ├── weather-6.svg │ │ │ ├── weather-7.svg │ │ │ └── weather-8.svg │ ├── javascripts │ │ ├── .eslintrc.js │ │ ├── boot.js │ │ ├── bootstraps │ │ │ ├── admin.js │ │ │ ├── atoms │ │ │ │ ├── snippet.js │ │ │ │ └── storyquestions.js │ │ │ ├── commercial-hosted-legacy.ts │ │ │ ├── enhanced │ │ │ │ ├── accessibility.js │ │ │ │ ├── article-liveblog-common.js │ │ │ │ ├── article-minute.js │ │ │ │ ├── article.js │ │ │ │ ├── browser-diagnostics.js │ │ │ │ ├── common.js │ │ │ │ ├── crosswords.js │ │ │ │ ├── facia.js │ │ │ │ ├── football.js │ │ │ │ ├── gallery.ts │ │ │ │ ├── identity-common.js │ │ │ │ ├── liveblog.js │ │ │ │ ├── main.js │ │ │ │ ├── media-player.js │ │ │ │ ├── newsletters.js │ │ │ │ ├── preferences.js │ │ │ │ ├── profile.js │ │ │ │ ├── sport.js │ │ │ │ ├── trail.js │ │ │ │ ├── video-player.js │ │ │ │ └── youtube.js │ │ │ ├── standard │ │ │ │ ├── alreadyVisited.ts │ │ │ │ ├── atoms.js │ │ │ │ ├── emailEmbeds.js │ │ │ │ └── main.js │ │ │ ├── types.ts │ │ │ ├── video-embed.js │ │ │ ├── videojs-embed.js │ │ │ └── youtube-embed.ts │ │ ├── lib │ │ │ ├── $$.spec.ts │ │ │ ├── $$.ts │ │ │ ├── $.js │ │ │ ├── $.spec.js │ │ │ ├── __mocks__ │ │ │ │ ├── config.js │ │ │ │ ├── fastdom-promise.ts │ │ │ │ ├── fastdom.ts │ │ │ │ ├── fetch-json.js │ │ │ │ ├── raven.ts │ │ │ │ └── storage.js │ │ │ ├── array-utils.js │ │ │ ├── capture-ophan-info.js │ │ │ ├── comready.js │ │ │ ├── config.d.ts │ │ │ ├── config.js │ │ │ ├── config.spec.js │ │ │ ├── cookies.js │ │ │ ├── cookies.spec.js │ │ │ ├── defer-to-analytics.js │ │ │ ├── detect-adblock.ts │ │ │ ├── detect-breakpoint.spec.ts │ │ │ ├── detect-breakpoint.ts │ │ │ ├── detect-google-proxy.spec.ts │ │ │ ├── detect-google-proxy.ts │ │ │ ├── detect-pushstate.ts │ │ │ ├── detect-viewport.ts │ │ │ ├── detect.js │ │ │ ├── dotcom-rendering │ │ │ │ └── public-path.js │ │ │ ├── dynamic-import-init.d.ts │ │ │ ├── dynamic-import-init.js │ │ │ ├── easing.js │ │ │ ├── easing.spec.js │ │ │ ├── element-inview.js │ │ │ ├── events.ts │ │ │ ├── fastdom-promise.ts │ │ │ ├── fetch-json.spec.js │ │ │ ├── fetch-json.ts │ │ │ ├── formInlineLabels.js │ │ │ ├── formatters.js │ │ │ ├── formatters.spec.js │ │ │ ├── fsm.ts │ │ │ ├── geolocation.ts │ │ │ ├── getPrivacyFramework.js │ │ │ ├── load-css-promise.ts │ │ │ ├── mediator.ts │ │ │ ├── noop.ts │ │ │ ├── page.js │ │ │ ├── page.spec.js │ │ │ ├── partition.spec.ts │ │ │ ├── partition.ts │ │ │ ├── proximity-loader.js │ │ │ ├── raven.ts │ │ │ ├── report-error.spec.ts │ │ │ ├── report-error.ts │ │ │ ├── robust.spec.ts │ │ │ ├── robust.ts │ │ │ ├── scroller.js │ │ │ ├── string-utils.js │ │ │ ├── time-utils.spec.ts │ │ │ ├── time-utils.ts │ │ │ ├── timeout.js │ │ │ ├── timeout.spec.js │ │ │ ├── url.spec.js │ │ │ ├── url.ts │ │ │ ├── user-timing.spec.js │ │ │ ├── user-timing.ts │ │ │ └── window-performance.js │ │ ├── polyfill.io.txt │ │ ├── projects │ │ │ ├── admin │ │ │ │ ├── bootstraps │ │ │ │ │ ├── abtests.js │ │ │ │ │ ├── drama.js │ │ │ │ │ └── switchwarnings.js │ │ │ │ └── modules │ │ │ │ │ └── abtests │ │ │ │ │ ├── abtest-report-item.js │ │ │ │ │ ├── audience-item.js │ │ │ │ │ ├── audience.js │ │ │ │ │ ├── participation-item.js │ │ │ │ │ └── participation.js │ │ │ ├── atoms │ │ │ │ ├── services.js │ │ │ │ └── services │ │ │ │ │ └── viewport.js │ │ │ ├── commercial │ │ │ │ ├── adblock-ask.spec.ts │ │ │ │ ├── adblock-ask.ts │ │ │ │ ├── commercial-metrics.ts │ │ │ │ ├── detect-adblock.ts │ │ │ │ ├── measure-timing.js │ │ │ │ └── modules │ │ │ │ │ ├── hosted │ │ │ │ │ ├── about.spec.js │ │ │ │ │ ├── about.ts │ │ │ │ │ ├── gallery-html.js │ │ │ │ │ ├── gallery.js │ │ │ │ │ ├── gallery.spec.js │ │ │ │ │ ├── next-video.js │ │ │ │ │ ├── next-video.spec.js │ │ │ │ │ ├── onward-journey-carousel.spec.js │ │ │ │ │ ├── onward-journey-carousel.ts │ │ │ │ │ ├── onward.js │ │ │ │ │ ├── onward.spec.js │ │ │ │ │ ├── video.ts │ │ │ │ │ └── youtube.ts │ │ │ │ │ └── messenger │ │ │ │ │ ├── send.spec.ts │ │ │ │ │ └── send.ts │ │ │ ├── common │ │ │ │ ├── modules │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ └── user-prefs.ts │ │ │ │ │ ├── accessibility │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── main.spec.js │ │ │ │ │ ├── analytics │ │ │ │ │ │ ├── beacon.js │ │ │ │ │ │ ├── coreVitals.ts │ │ │ │ │ │ ├── discussion.js │ │ │ │ │ │ ├── interaction-tracking.js │ │ │ │ │ │ ├── interaction-tracking.spec.js │ │ │ │ │ │ ├── media-listener.js │ │ │ │ │ │ ├── mvt-cookie.ts │ │ │ │ │ │ ├── register.js │ │ │ │ │ │ ├── send-privacy-prefs.js │ │ │ │ │ │ └── shouldCaptureMetrics.ts │ │ │ │ │ ├── article │ │ │ │ │ │ ├── membership-events.js │ │ │ │ │ │ └── twitter.js │ │ │ │ │ ├── async-call-merger.spec.ts │ │ │ │ │ ├── async-call-merger.ts │ │ │ │ │ ├── atoms │ │ │ │ │ │ ├── quiz.js │ │ │ │ │ │ ├── youtube-player.spec.ts │ │ │ │ │ │ ├── youtube-player.ts │ │ │ │ │ │ ├── youtube-tracking.js │ │ │ │ │ │ ├── youtube.js │ │ │ │ │ │ └── youtube.spec.js │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── AudioPlayer.js │ │ │ │ │ │ ├── AuralAid.js │ │ │ │ │ │ ├── ProgressBar.js │ │ │ │ │ │ ├── Slider.js │ │ │ │ │ │ ├── Time.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── onward-container.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── avatar │ │ │ │ │ │ └── api.ts │ │ │ │ │ ├── bufferedNotificationListener.spec.ts │ │ │ │ │ ├── bufferedNotificationListener.ts │ │ │ │ │ ├── business │ │ │ │ │ │ └── stocks.js │ │ │ │ │ ├── charts │ │ │ │ │ │ ├── doughnut.js │ │ │ │ │ │ └── table-doughnut.js │ │ │ │ │ ├── commercial │ │ │ │ │ │ ├── acquisitions-link-enrichment.js │ │ │ │ │ │ ├── acquisitions-ophan.ts │ │ │ │ │ │ ├── ad-free-banner.js │ │ │ │ │ │ ├── ad-prefs.lib.js │ │ │ │ │ │ ├── ad-prefs.lib.spec.js │ │ │ │ │ │ ├── braze │ │ │ │ │ │ │ ├── buildBrazeMessaging.ts │ │ │ │ │ │ │ ├── checkBrazeDependencies.test.ts │ │ │ │ │ │ │ ├── checkBrazeDependencies.ts │ │ │ │ │ │ │ ├── hasCurrentBrazeUser.js │ │ │ │ │ │ │ ├── hasCurrentBrazeUser.test.js │ │ │ │ │ │ │ ├── hasRequiredConsents.spec.ts │ │ │ │ │ │ │ └── hasRequiredConsents.ts │ │ │ │ │ │ ├── build-page-targeting.spec.ts │ │ │ │ │ │ ├── build-page-targeting.ts │ │ │ │ │ │ ├── commercial-features.spec.ts │ │ │ │ │ │ ├── commercial-features.ts │ │ │ │ │ │ ├── contributions-liveblog-utilities.js │ │ │ │ │ │ ├── contributions-utilities.ts │ │ │ │ │ │ ├── geo-utils.spec.ts │ │ │ │ │ │ ├── geo-utils.ts │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── cookie.ts │ │ │ │ │ │ │ └── googletag-ad-size.ts │ │ │ │ │ │ ├── reader-revenue-dev-utils.js │ │ │ │ │ │ ├── support-utilities.spec.ts │ │ │ │ │ │ ├── support-utilities.ts │ │ │ │ │ │ ├── user-features.spec.ts │ │ │ │ │ │ └── user-features.ts │ │ │ │ │ ├── component.js │ │ │ │ │ ├── component.spec.js │ │ │ │ │ ├── crosswords │ │ │ │ │ │ ├── accessible-crossword-solutions.js │ │ │ │ │ │ ├── anagram-helper │ │ │ │ │ │ │ ├── clue-input.js │ │ │ │ │ │ │ ├── clue-preview.js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ ├── main.spec.js │ │ │ │ │ │ │ └── ring.js │ │ │ │ │ │ ├── cell.js │ │ │ │ │ │ ├── classNames.js │ │ │ │ │ │ ├── clues.js │ │ │ │ │ │ ├── comments.js │ │ │ │ │ │ ├── confirm-button.js │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── controls.js │ │ │ │ │ │ ├── crossword.js │ │ │ │ │ │ ├── grid.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── helpers.spec.js │ │ │ │ │ │ ├── hidden-input.js │ │ │ │ │ │ ├── keycodes.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── persistence.js │ │ │ │ │ │ └── series.js │ │ │ │ │ ├── discussion │ │ │ │ │ │ ├── activity-stream.js │ │ │ │ │ │ ├── api.ts │ │ │ │ │ │ ├── comment-box.js │ │ │ │ │ │ ├── comment-box.spec.js │ │ │ │ │ │ ├── comment-count.js │ │ │ │ │ │ ├── comment-count.spec.js │ │ │ │ │ │ ├── comments.js │ │ │ │ │ │ ├── loader.js │ │ │ │ │ │ ├── upvote.js │ │ │ │ │ │ ├── upvote.spec.js │ │ │ │ │ │ ├── urlify.js │ │ │ │ │ │ ├── urlify.spec.js │ │ │ │ │ │ ├── user-avatars.js │ │ │ │ │ │ ├── user-edit-link.js │ │ │ │ │ │ └── whole-discussion.js │ │ │ │ │ ├── experiments │ │ │ │ │ │ ├── __fixtures__ │ │ │ │ │ │ │ └── ab-test.ts │ │ │ │ │ │ ├── __mocks__ │ │ │ │ │ │ │ └── ab-tests.ts │ │ │ │ │ │ ├── ab-constants.ts │ │ │ │ │ │ ├── ab-core.spec.js │ │ │ │ │ │ ├── ab-core.ts │ │ │ │ │ │ ├── ab-local-storage.ts │ │ │ │ │ │ ├── ab-ophan.spec.js │ │ │ │ │ │ ├── ab-ophan.ts │ │ │ │ │ │ ├── ab-tests.ts │ │ │ │ │ │ ├── ab-url.spec.js │ │ │ │ │ │ ├── ab-url.ts │ │ │ │ │ │ ├── ab-utils.spec.js │ │ │ │ │ │ ├── ab-utils.ts │ │ │ │ │ │ ├── ab.spec.ts │ │ │ │ │ │ ├── ab.ts │ │ │ │ │ │ ├── affix.js │ │ │ │ │ │ ├── automatLog.ts │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ ├── auxia-sign-in-gate.js │ │ │ │ │ │ │ ├── personalised-highlights.js │ │ │ │ │ │ │ ├── remote-header-test.js │ │ │ │ │ │ │ ├── sign-in-gate-main-control.js │ │ │ │ │ │ │ └── sign-in-gate-main-variant.js │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── fix-secondary-column.js │ │ │ │ │ ├── fix-secondary-column.spec.js │ │ │ │ │ ├── gallery │ │ │ │ │ │ └── lightbox.js │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── ad-prefs.js │ │ │ │ │ │ ├── ad-prefs │ │ │ │ │ │ │ ├── ConsentBox.js │ │ │ │ │ │ │ ├── FeedbackFlashBox.js │ │ │ │ │ │ │ └── wordings.js │ │ │ │ │ │ ├── api.ts │ │ │ │ │ │ ├── consent-journey.js │ │ │ │ │ │ ├── delete-account.js │ │ │ │ │ │ ├── form-ajax.js │ │ │ │ │ │ ├── forms.js │ │ │ │ │ │ ├── header.js │ │ │ │ │ │ ├── identity-features.js │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ │ ├── fetchFormFields.js │ │ │ │ │ │ │ ├── loadEnhancers.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ ├── prependMessage.js │ │ │ │ │ │ │ ├── show-errors.js │ │ │ │ │ │ │ ├── show-errors.spec.js │ │ │ │ │ │ │ ├── switch.js │ │ │ │ │ │ │ └── switch.spec.js │ │ │ │ │ │ ├── okta.ts │ │ │ │ │ │ ├── public-profile.js │ │ │ │ │ │ └── sign-in-gate │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── component-event-tracking.js │ │ │ │ │ │ │ ├── component.js │ │ │ │ │ │ │ ├── helper.js │ │ │ │ │ │ │ ├── helper.spec.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── sign-in-gate.spec.js │ │ │ │ │ │ │ ├── types.d.ts │ │ │ │ │ │ │ └── variants │ │ │ │ │ │ │ ├── design │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ └── main-variant.js │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ ├── control.js │ │ │ │ │ │ │ └── variant.js │ │ │ │ │ ├── media │ │ │ │ │ │ └── videojs-plugins │ │ │ │ │ │ │ └── fullscreener.js │ │ │ │ │ ├── navigation │ │ │ │ │ │ ├── header-top-nav.js │ │ │ │ │ │ ├── linkTracking.spec.ts │ │ │ │ │ │ ├── linkTracking.ts │ │ │ │ │ │ ├── membership.js │ │ │ │ │ │ ├── navigation.js │ │ │ │ │ │ ├── navigation.spec.js │ │ │ │ │ │ ├── new-header.js │ │ │ │ │ │ ├── profile.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ └── user-account.ts │ │ │ │ │ ├── onward │ │ │ │ │ │ ├── geo-most-popular.js │ │ │ │ │ │ ├── history.js │ │ │ │ │ │ ├── history.spec.js │ │ │ │ │ │ ├── onward-content.js │ │ │ │ │ │ ├── onward-content.spec.js │ │ │ │ │ │ ├── popular.js │ │ │ │ │ │ ├── popular.spec.js │ │ │ │ │ │ ├── related.js │ │ │ │ │ │ ├── related.spec.js │ │ │ │ │ │ └── tonal.js │ │ │ │ │ ├── social │ │ │ │ │ │ └── share-count.js │ │ │ │ │ ├── sport │ │ │ │ │ │ ├── football │ │ │ │ │ │ │ ├── football.js │ │ │ │ │ │ │ ├── match-info.js │ │ │ │ │ │ │ ├── match-list-live.js │ │ │ │ │ │ │ └── tag-page-stats.js │ │ │ │ │ │ └── score-board.js │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── accessibility-prefs.js │ │ │ │ │ │ ├── autoupdate.js │ │ │ │ │ │ ├── bannerPicker.js │ │ │ │ │ │ ├── bannerPicker.spec.js │ │ │ │ │ │ ├── clickstream.js │ │ │ │ │ │ ├── clickstream.spec.js │ │ │ │ │ │ ├── cmp-ui.js │ │ │ │ │ │ ├── cmp-ui.spec.js │ │ │ │ │ │ ├── dropdowns.js │ │ │ │ │ │ ├── expandable.js │ │ │ │ │ │ ├── expandable.spec.js │ │ │ │ │ │ ├── faux-block-link.js │ │ │ │ │ │ ├── full-height.js │ │ │ │ │ │ ├── last-modified.js │ │ │ │ │ │ ├── message.js │ │ │ │ │ │ ├── message.spec.js │ │ │ │ │ │ ├── normalise.js │ │ │ │ │ │ ├── notification-counter.js │ │ │ │ │ │ ├── notification-counter.spec.js │ │ │ │ │ │ ├── relativedates.js │ │ │ │ │ │ ├── relativedates.spec.js │ │ │ │ │ │ ├── rhc.js │ │ │ │ │ │ ├── rhc.spec.js │ │ │ │ │ │ ├── selection-sharing.js │ │ │ │ │ │ ├── selection-sharing.spec.js │ │ │ │ │ │ ├── sticky.js │ │ │ │ │ │ ├── tabs.js │ │ │ │ │ │ ├── tabs.spec.js │ │ │ │ │ │ ├── toggles.js │ │ │ │ │ │ └── toggles.spec.js │ │ │ │ │ ├── user-prefs.spec.ts │ │ │ │ │ ├── user-prefs.ts │ │ │ │ │ ├── userFeatures │ │ │ │ │ │ ├── cookies │ │ │ │ │ │ │ ├── adFree.ts │ │ │ │ │ │ │ ├── allowRejectAll.ts │ │ │ │ │ │ │ ├── cookieHelpers.ts │ │ │ │ │ │ │ ├── hideSupportMessaging.ts │ │ │ │ │ │ │ └── userBenefitsExpiry.ts │ │ │ │ │ │ ├── fetchJson.ts │ │ │ │ │ │ ├── user-features.ts │ │ │ │ │ │ └── userBenefitsApi.ts │ │ │ │ │ └── video │ │ │ │ │ │ ├── events.js │ │ │ │ │ │ ├── metadata.js │ │ │ │ │ │ ├── more-in-series-container.js │ │ │ │ │ │ ├── onward-container.js │ │ │ │ │ │ ├── video-container.js │ │ │ │ │ │ └── videojs-options.js │ │ │ │ └── views │ │ │ │ │ ├── business │ │ │ │ │ ├── stock-value.html │ │ │ │ │ └── stocks.html │ │ │ │ │ ├── commercial │ │ │ │ │ ├── external-content.html │ │ │ │ │ ├── live-events-survey.html │ │ │ │ │ └── live-events-thrasher.html │ │ │ │ │ ├── content │ │ │ │ │ ├── block-sharing.html │ │ │ │ │ ├── button.html │ │ │ │ │ ├── endslate.html │ │ │ │ │ ├── loader.html │ │ │ │ │ ├── share-button.html │ │ │ │ │ ├── share-count-immersive.html │ │ │ │ │ └── share-count.html │ │ │ │ │ ├── experiments │ │ │ │ │ ├── overlay.html │ │ │ │ │ └── styles.css │ │ │ │ │ ├── general-message.html │ │ │ │ │ ├── history │ │ │ │ │ ├── mega-nav.html │ │ │ │ │ └── tag.html │ │ │ │ │ ├── media │ │ │ │ │ └── titlebar.html │ │ │ │ │ ├── svg.js │ │ │ │ │ ├── svg.spec.js │ │ │ │ │ ├── svgs.js │ │ │ │ │ └── ui │ │ │ │ │ ├── close-button.html │ │ │ │ │ ├── loading.html │ │ │ │ │ └── video-ads-overlay.html │ │ │ ├── facia │ │ │ │ ├── modules │ │ │ │ │ ├── onwards │ │ │ │ │ │ ├── geo-most-popular-front-extended.js │ │ │ │ │ │ ├── geo-most-popular-front.js │ │ │ │ │ │ ├── search-tool.js │ │ │ │ │ │ └── search-tool.spec.js │ │ │ │ │ └── ui │ │ │ │ │ │ ├── au-region-selector.ts │ │ │ │ │ │ ├── container-show-more.js │ │ │ │ │ │ ├── container-show-more.spec.js │ │ │ │ │ │ ├── container-toggle.js │ │ │ │ │ │ ├── container-toggle.spec.js │ │ │ │ │ │ ├── football-snaps.js │ │ │ │ │ │ ├── lazy-load-containers.js │ │ │ │ │ │ ├── live-blog-updates.js │ │ │ │ │ │ └── snaps.js │ │ │ │ └── views │ │ │ │ │ └── liveblog-block.html │ │ │ └── journalism │ │ │ │ ├── modules │ │ │ │ ├── audio-series-add-contributions.js │ │ │ │ ├── get-campaign.js │ │ │ │ ├── get-campaign.spec.js │ │ │ │ ├── render-campaign.js │ │ │ │ ├── render-campaign.spec.js │ │ │ │ ├── submit-form.js │ │ │ │ └── submit-form.spec.js │ │ │ │ └── views │ │ │ │ ├── audioSeriesContributions.html │ │ │ │ └── campaignForm.html │ │ └── types │ │ │ ├── ab-tests.d.ts │ │ │ ├── acquisitions.d.ts │ │ │ ├── crosswords.d.ts │ │ │ ├── dates.ts │ │ │ ├── discussion-comment.d.ts │ │ │ ├── discussion-profile.d.ts │ │ │ ├── global.d.ts │ │ │ ├── ias.d.ts │ │ │ ├── membership.ts │ │ │ ├── ophan.d.ts │ │ │ ├── user-attributes.d.ts │ │ │ └── utils.d.ts │ └── stylesheets │ │ ├── README.md │ │ ├── _common.garnett.scss │ │ ├── _extends-only.scss │ │ ├── _head.amp-common.scss │ │ ├── _head.common.scss │ │ ├── _mixins.scss │ │ ├── _vars.scss │ │ ├── admin │ │ ├── _bootstrap.graun.scss │ │ ├── _drama.scss │ │ ├── _switchboard.scss │ │ └── _z-index.scss │ │ ├── amp │ │ ├── _adconsent.scss │ │ ├── _ads.scss │ │ ├── _article-tones.scss │ │ ├── _buttons.scss │ │ ├── _content.scss │ │ ├── _d2-comments.scss │ │ ├── _facia.scss │ │ ├── _fonts.scss │ │ ├── _footer-new.scss │ │ ├── _from-content-api.scss │ │ ├── _geo.scss │ │ ├── _helpers.scss │ │ ├── _hosted-article.scss │ │ ├── _hosted-gallery.scss │ │ ├── _hosted.scss │ │ ├── _live-blog.scss │ │ ├── _liveblog-tones.scss │ │ ├── _main-media-captions.scss │ │ ├── _match-report.scss │ │ ├── _navigation-new.scss │ │ ├── _player-card.scss │ │ ├── _rich-link.scss │ │ ├── _social.scss │ │ ├── _submeta.scss │ │ ├── _type.scss │ │ ├── atoms │ │ │ └── temporary │ │ │ │ ├── _explainers.scss │ │ │ │ └── _snippets.scss │ │ ├── footer.new │ │ │ ├── _colophon.scss │ │ │ └── _footer.scss │ │ └── nav.new │ │ │ ├── _header-cta-item.scss │ │ │ ├── _header.scss │ │ │ ├── _menu-group.scss │ │ │ ├── _menu-item.scss │ │ │ ├── _menu.scss │ │ │ ├── _pillar-link.scss │ │ │ ├── _pillars.scss │ │ │ └── _veggie-burger.scss │ │ ├── base │ │ ├── _base.scss │ │ ├── _faux-block-link.scss │ │ ├── _helpers.scss │ │ ├── _iframe.scss │ │ ├── _inline-svgs-fallback.scss │ │ ├── _inline-svgs.scss │ │ ├── _links.scss │ │ ├── _lists.scss │ │ ├── _normalize.scss │ │ ├── _state.scss │ │ ├── _tables.scss │ │ └── _type.scss │ │ ├── content.garnett.scss │ │ ├── email │ │ ├── _article.scss │ │ ├── _footer.scss │ │ ├── _front.scss │ │ ├── _media-query.scss │ │ ├── _normalise.scss │ │ ├── _tones.scss │ │ └── _util.scss │ │ ├── facia.garnett.scss │ │ ├── head.admin.scss │ │ ├── head.amp-liveblog.scss │ │ ├── head.amp.scss │ │ ├── head.atom-chart.scss │ │ ├── head.atom-guide.scss │ │ ├── head.atom-interactive.scss │ │ ├── head.atom-media.scss │ │ ├── head.atom-profile.scss │ │ ├── head.atom-qanda.scss │ │ ├── head.atom-snippets.scss │ │ ├── head.atom-timeline.scss │ │ ├── head.commercial.scss │ │ ├── head.content.garnett.scss │ │ ├── head.email-article.scss │ │ ├── head.email-front.scss │ │ ├── head.email-signup.scss │ │ ├── head.facia.garnett.scss │ │ ├── head.football.scss │ │ ├── head.footballSnaps.scss │ │ ├── head.hosted-amp.scss │ │ ├── head.identity.scss │ │ ├── head.index.scss │ │ ├── head.interactive.scss │ │ ├── head.rich-links.garnett.scss │ │ ├── head.signup.scss │ │ ├── head.survey.scss │ │ ├── ie9.content.garnett.scss │ │ ├── ie9.head.content.garnett.scss │ │ ├── ie9.head.facia.garnett.scss │ │ ├── ie9.head.football.scss │ │ ├── ie9.head.identity.scss │ │ ├── ie9.head.index.scss │ │ ├── inline │ │ ├── article-photo-essay-garnett.scss │ │ └── story-package-garnett.scss │ │ ├── layout │ │ ├── _ab-new-header-test-variant.scss │ │ ├── _footer.scss │ │ ├── _helpers.scss │ │ ├── _navigation.scss │ │ ├── _side-margins.scss │ │ ├── footer │ │ │ ├── _back-to-top.scss │ │ │ ├── _colophon.scss │ │ │ ├── _copywrite.scss │ │ │ ├── _email-container.scss │ │ │ ├── _footer.scss │ │ │ └── _variables.scss │ │ └── nav │ │ │ ├── _colours.scss │ │ │ ├── _cta-bar.scss │ │ │ ├── _edition-picker-toggle.scss │ │ │ ├── _header-top-nav.scss │ │ │ ├── _main-menu-toggle.scss │ │ │ ├── _menu-group.scss │ │ │ ├── _menu-item.scss │ │ │ ├── _menu-search.scss │ │ │ ├── _menu.scss │ │ │ ├── _my-account.scss │ │ │ ├── _new-header.scss │ │ │ ├── _pillar-link.scss │ │ │ ├── _pillars.scss │ │ │ ├── _search-dropdown.scss │ │ │ ├── _subnav-link.scss │ │ │ ├── _subnav.scss │ │ │ ├── _top-bar-dropdown.scss │ │ │ ├── _top-bar.scss │ │ │ ├── _variables.scss │ │ │ ├── _veggie-burger-fallback.scss │ │ │ └── _veggie-burger.scss │ │ ├── media-player.scss │ │ ├── membership-icons.scss │ │ ├── module │ │ ├── _accessibility.scss │ │ ├── _adslot.scss │ │ ├── _badging.scss │ │ ├── _breadcrumbs.scss │ │ ├── _childrens-books-site.scss │ │ ├── _cta.scss │ │ ├── _discussion-mixins.scss │ │ ├── _discussion.scss │ │ ├── _dropdown.scss │ │ ├── _headers.scss │ │ ├── _headline-list-garnett.scss │ │ ├── _icons.head.scss │ │ ├── _icons.scss │ │ ├── _index.scss │ │ ├── _layout-hints.garnett.scss │ │ ├── _layout-hints.scss │ │ ├── _live-pulse.scss │ │ ├── _loader.scss │ │ ├── _main-media-captions.scss │ │ ├── _match-summary.scss │ │ ├── _media.scss │ │ ├── _membership-events.scss │ │ ├── _most-popular.scss │ │ ├── _overlay.scss │ │ ├── _popup.scss │ │ ├── _rounded-icon.scss │ │ ├── _save-for-later.scss │ │ ├── _search-tool.scss │ │ ├── _site-message.scss │ │ ├── _social-icons.scss │ │ ├── _social.scss │ │ ├── _submeta.scss │ │ ├── _tabs-garnett.head.scss │ │ ├── _tabs-garnett.scss │ │ ├── _tabs.head.scss │ │ ├── _tag-list.scss │ │ ├── _tooltip.scss │ │ ├── _weather.scss │ │ ├── atoms │ │ │ ├── _explainers.scss │ │ │ ├── _interactive.scss │ │ │ ├── _media.scss │ │ │ ├── _quiz.scss │ │ │ └── _youtube.scss │ │ ├── business │ │ │ └── _stocks.scss │ │ ├── charts │ │ │ └── _doughnuts.scss │ │ ├── commercial │ │ │ ├── _advert.scss │ │ │ ├── _brandbadge.scss │ │ │ ├── _capi.scss │ │ │ ├── _commercial.scss │ │ │ ├── _creatives.scss │ │ │ ├── _frame.scss │ │ │ ├── _hostedbadge.scss │ │ │ ├── _labs-capi.scss │ │ │ ├── _labs.scss │ │ │ ├── creatives │ │ │ │ └── _fabric-video.scss │ │ │ ├── glabs │ │ │ │ ├── _hosted-article.scss │ │ │ │ ├── _hosted-gallery.scss │ │ │ │ ├── _hosted-header.scss │ │ │ │ ├── _hosted-video.scss │ │ │ │ └── _hosted.scss │ │ │ ├── gustyle │ │ │ │ ├── _gu-comlabel.scss │ │ │ │ └── _gu-compopup.scss │ │ │ ├── paidfor │ │ │ │ ├── _paidfor-band.scss │ │ │ │ ├── _paidfor-meta.scss │ │ │ │ └── _paidfor-popup.scss │ │ │ └── surveys │ │ │ │ └── _survey.scss │ │ ├── content-garnett │ │ │ ├── _article-immersive.scss │ │ │ ├── _article-minute.scss │ │ │ ├── _article-numbered-list.scss │ │ │ ├── _article-special-report.scss │ │ │ ├── _article-splash.scss │ │ │ ├── _article.scss │ │ │ ├── _block-level-sharing.scss │ │ │ ├── _content.global.scss │ │ │ ├── _content.scss │ │ │ ├── _gallery-lightbox.scss │ │ │ ├── _gallery.head.scss │ │ │ ├── _gallery.scss │ │ │ ├── _interactive.scss │ │ │ ├── _live-blog.scss │ │ │ ├── _media-player.scss │ │ │ ├── _media.global.scss │ │ │ ├── _media.head.scss │ │ │ ├── _pillars.scss │ │ │ ├── _tweets.scss │ │ │ ├── _types.scss │ │ │ └── live-blog │ │ │ │ └── _live-blog.head.scss │ │ ├── content │ │ │ ├── _article-immersive.scss │ │ │ ├── _article-minute.scss │ │ │ ├── _article.scss │ │ │ ├── _content.scss │ │ │ ├── _gallery.head.scss │ │ │ ├── _live-blog.scss │ │ │ ├── _media-player.scss │ │ │ ├── _media.head.scss │ │ │ ├── _tones-mixins.scss │ │ │ ├── _tones.head.scss │ │ │ ├── _tweets.scss │ │ │ ├── live-blog │ │ │ │ └── _live-blog.head.scss │ │ │ └── tones │ │ │ │ ├── _tone-analysis.scss │ │ │ │ ├── _tone-comment.scss │ │ │ │ ├── _tone-dead.scss │ │ │ │ ├── _tone-editorial.scss │ │ │ │ ├── _tone-feature.scss │ │ │ │ ├── _tone-letters.scss │ │ │ │ ├── _tone-live.scss │ │ │ │ ├── _tone-media.scss │ │ │ │ ├── _tone-news.scss │ │ │ │ ├── _tone-review.scss │ │ │ │ └── _tone-special-report.scss │ │ ├── cricket │ │ │ └── _match-summary.scss │ │ ├── crosswords │ │ │ ├── _accessible.scss │ │ │ ├── _anagram-helper.scss │ │ │ ├── _cell.scss │ │ │ ├── _clues.scss │ │ │ ├── _controls.scss │ │ │ ├── _grid.scss │ │ │ ├── _hidden-input.scss │ │ │ ├── _layout.scss │ │ │ ├── _main.scss │ │ │ ├── _printable.scss │ │ │ └── _vars.scss │ │ ├── email-signup │ │ │ ├── _form.scss │ │ │ ├── _header.scss │ │ │ ├── _iframe.scss │ │ │ ├── _main.scss │ │ │ ├── _newDesign.scss │ │ │ └── _vars.scss │ │ ├── experiments │ │ │ ├── _affix.scss │ │ │ ├── _svg.scss │ │ │ └── _update-account.scss │ │ ├── external │ │ │ ├── _d2-comments.scss │ │ │ ├── _from-content-api.scss │ │ │ └── _witness.scss │ │ ├── facia-garnett │ │ │ ├── _container--podcast.scss │ │ │ ├── _container--video.scss │ │ │ ├── _container.scss │ │ │ ├── _containers.scss │ │ │ ├── _cp-scott.scss │ │ │ ├── _item.scss │ │ │ ├── _items.scss │ │ │ ├── _l-list.scss │ │ │ ├── _linkslist.scss │ │ │ ├── _mixins.scss │ │ │ ├── _pillars.scss │ │ │ ├── _slices.scss │ │ │ ├── _sublinks.scss │ │ │ ├── _tag-meta.scss │ │ │ ├── _treats.scss │ │ │ ├── item-layouts │ │ │ │ ├── _fc-item--fluid.scss │ │ │ │ ├── _fc-item--full-media-100.scss │ │ │ │ ├── _fc-item--full-media-50.scss │ │ │ │ ├── _fc-item--full-media-75.scss │ │ │ │ ├── _fc-item--half.scss │ │ │ │ ├── _fc-item--list-compact--media.scss │ │ │ │ ├── _fc-item--list-compact.scss │ │ │ │ ├── _fc-item--list-media.scss │ │ │ │ ├── _fc-item--list.scss │ │ │ │ ├── _fc-item--standard.scss │ │ │ │ ├── _fc-item--third.scss │ │ │ │ ├── _fc-item--three-quarters-right.scss │ │ │ │ ├── _fc-item--three-quarters-tall.scss │ │ │ │ └── _fc-item--three-quarters.scss │ │ │ └── item-types │ │ │ │ ├── _fc-item--type-comment.scss │ │ │ │ ├── _fc-item--type-immersive.scss │ │ │ │ ├── _fc-item--type-interview.scss │ │ │ │ ├── _fc-item--type-liveblog.scss │ │ │ │ └── _fc-item--type-media.scss │ │ ├── facia │ │ │ ├── _container.scss │ │ │ ├── _facia-show-more.scss │ │ │ ├── _item.scss │ │ │ ├── _items.scss │ │ │ ├── _linkslist.scss │ │ │ ├── _mixins.scss │ │ │ ├── _pagination.scss │ │ │ ├── _sublinks.scss │ │ │ ├── _tones.scss │ │ │ ├── item-layouts │ │ │ │ ├── _fc-item--fluid.scss │ │ │ │ ├── _fc-item--full-media-100.scss │ │ │ │ ├── _fc-item--full-media-50.scss │ │ │ │ ├── _fc-item--full-media-75.scss │ │ │ │ ├── _fc-item--half.scss │ │ │ │ ├── _fc-item--list-compact--media.scss │ │ │ │ ├── _fc-item--list-compact.scss │ │ │ │ ├── _fc-item--list-media.scss │ │ │ │ ├── _fc-item--list.scss │ │ │ │ ├── _fc-item--standard.scss │ │ │ │ ├── _fc-item--third.scss │ │ │ │ ├── _fc-item--three-quarters-right.scss │ │ │ │ ├── _fc-item--three-quarters-tall.scss │ │ │ │ └── _fc-item--three-quarters.scss │ │ │ ├── item-tones │ │ │ │ ├── _tone-analysis.scss │ │ │ │ ├── _tone-comment.scss │ │ │ │ ├── _tone-dead.scss │ │ │ │ ├── _tone-editorial.scss │ │ │ │ ├── _tone-external.scss │ │ │ │ ├── _tone-feature.scss │ │ │ │ ├── _tone-letters.scss │ │ │ │ ├── _tone-live.scss │ │ │ │ ├── _tone-media.scss │ │ │ │ ├── _tone-news.scss │ │ │ │ ├── _tone-review.scss │ │ │ │ └── _tone-special-report.scss │ │ │ └── snaps │ │ │ │ ├── _facia.scss │ │ │ │ └── _football.scss │ │ ├── football │ │ │ ├── _article-embeds.scss │ │ │ ├── _global.scss │ │ │ ├── _league-list.scss │ │ │ ├── _live-summary.scss │ │ │ ├── _match-stat.scss │ │ │ ├── _match-summary.scss │ │ │ ├── _matches.scss │ │ │ ├── _overview.scss │ │ │ ├── _player-card.scss │ │ │ ├── _stats.scss │ │ │ └── _tables.scss │ │ ├── identity │ │ │ ├── _activity-stream.scss │ │ │ ├── _ad-prefs.scss │ │ │ ├── _button.scss │ │ │ ├── _consent.scss │ │ │ ├── _disc.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _footer.scss │ │ │ ├── _forms.scss │ │ │ ├── _formstack.scss │ │ │ ├── _header.scss │ │ │ ├── _identity.scss │ │ │ ├── _manage-account-tab.scss │ │ │ ├── _sign-in-gate.scss │ │ │ ├── _switches.scss │ │ │ └── _wrapper.scss │ │ ├── journalism │ │ │ ├── _audio-flagship-tag-page-container.scss │ │ │ ├── _audio-flagship-tag-page.scss │ │ │ ├── _campaigns.scss │ │ │ └── _media.scss │ │ ├── onward-garnett │ │ │ ├── _breaking-news.scss │ │ │ ├── _feedback.scss │ │ │ ├── _rich-links-default.head.scss │ │ │ ├── _rich-links-enhanced.scss │ │ │ └── _right-hand-most-popular.scss │ │ ├── preferences │ │ │ └── _notifications.scss │ │ ├── reader-revenue │ │ │ └── _epic.scss │ │ ├── signup │ │ │ ├── _newsletters.scss │ │ │ └── _signup.scss │ │ ├── site-messages │ │ │ ├── _ad-free-banner.scss │ │ │ ├── _cmp-iframe.scss │ │ │ └── _engagement-banner.scss │ │ └── survey │ │ │ ├── _inline-email-form.scss │ │ │ ├── _survey-page.scss │ │ │ └── _survey.scss │ │ ├── old-ie.content.garnett.scss │ │ ├── old-ie.head.content.garnett.scss │ │ ├── old-ie.head.facia.garnett.scss │ │ ├── old-ie.head.football.scss │ │ ├── old-ie.head.identity.scss │ │ ├── old-ie.head.index.scss │ │ ├── pasteup │ │ ├── _src.scss │ │ ├── buttons │ │ │ ├── _src.scss │ │ │ └── _styles.scss │ │ ├── fonts │ │ │ └── _src.scss │ │ ├── forms │ │ │ └── _styles.scss │ │ ├── grid-system │ │ │ └── _src.scss │ │ ├── layout │ │ │ ├── _src.scss │ │ │ └── _styles.scss │ │ ├── palette │ │ │ ├── README.md │ │ │ └── _src.scss │ │ └── typography │ │ │ └── _src.scss │ │ ├── print.scss │ │ ├── webfonts-hinting-auto-kerning-on.scss │ │ ├── webfonts-hinting-cleartype-kerning-on.scss │ │ └── webfonts-hinting-off-kerning-on.scss └── vendor │ ├── data │ ├── amp-iframe.html │ └── amp-iframe.md │ └── javascripts │ ├── formstack-interactive │ └── 0.1 │ │ └── boot.js │ ├── omsdk-v1.js │ ├── polyfillio.fallback.js │ ├── polyfillio.minimum.fallback.js │ └── prebid_safeframe.js ├── tools ├── __tasks__ │ ├── compile │ │ ├── conf │ │ │ ├── clean.mjs │ │ │ ├── copy.mjs │ │ │ └── index.mjs │ │ ├── css │ │ │ ├── clean.mjs │ │ │ ├── index.dev.mjs │ │ │ ├── index.mjs │ │ │ ├── mkdir.mjs │ │ │ └── sass.mjs │ │ ├── data │ │ │ ├── amp.mjs │ │ │ ├── clean.mjs │ │ │ ├── index.dev.mjs │ │ │ ├── index.mjs │ │ │ └── index.watch.mjs │ │ ├── hash │ │ │ ├── clean.mjs │ │ │ └── index.mjs │ │ ├── images │ │ │ ├── clean.mjs │ │ │ ├── copy.mjs │ │ │ ├── icons.mjs │ │ │ ├── index.mjs │ │ │ └── svg.mjs │ │ ├── index.dev.mjs │ │ ├── index.mjs │ │ ├── index.watch.mjs │ │ ├── inline-svgs │ │ │ └── index.mjs │ │ └── javascript │ │ │ ├── bundle-polyfills.mjs │ │ │ ├── clean.mjs │ │ │ ├── copy.mjs │ │ │ ├── index.atoms.mjs │ │ │ ├── index.dev.mjs │ │ │ ├── index.mjs │ │ │ ├── index.watch.mjs │ │ │ ├── webpack-atoms.mjs │ │ │ ├── webpack.dev.mjs │ │ │ └── webpack.mjs │ ├── config.mjs │ ├── lib │ │ ├── check-network.mjs │ │ └── get-changed-files.js │ ├── pre-push.mjs │ ├── test │ │ ├── index.mjs │ │ └── javascript │ │ │ └── index.mjs │ ├── validate-head │ │ ├── index.mjs │ │ ├── javascript-fix.mjs │ │ ├── javascript.mjs │ │ ├── sass.mjs │ │ └── scala.mjs │ └── validate │ │ ├── check-for-disallowed-strings.mjs │ │ ├── index.mjs │ │ ├── javascript-fix.mjs │ │ ├── javascript.mjs │ │ ├── sass.mjs │ │ ├── scalafmt.mjs │ │ └── typescript.mjs ├── asset-monitor │ ├── cloudwatch.js │ └── index.js ├── check-node-env.js ├── clean-project ├── compile-css.mjs ├── eslint-plugin-guardian-frontend │ ├── README.md │ ├── __tests__ │ │ ├── exports-last.js │ │ ├── global-config.js │ │ ├── no-default-export.js │ │ ├── no-direct-access-config.js │ │ └── no-multiple-classlist-parameter.js │ ├── index.js │ ├── package.json │ └── rules │ │ ├── exports-last.js │ │ ├── global-config.js │ │ ├── no-default-export.js │ │ ├── no-direct-access-config.js │ │ └── no-multiple-classlist-parameters.js ├── sync-githooks.js ├── task-runner │ ├── README.md │ ├── run-task-verbose-formater.mjs │ └── runner.mjs └── webpack-progress-reporter.mjs ├── tsconfig.json ├── tsconfig.test.json ├── values.md ├── variables ├── webpack.config.atoms.js ├── webpack.config.dev.js ├── webpack.config.js ├── webpack.config.prod.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/typescript.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.github/workflows/typescript.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.14.0 2 | -------------------------------------------------------------------------------- /.prout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.prout.json -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | java corretto-11.0.22.7.1 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/svgMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/__mocks__/svgMock.js -------------------------------------------------------------------------------- /__mocks__/templateMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/__mocks__/templateMock.js -------------------------------------------------------------------------------- /admin/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/AppLoader.scala -------------------------------------------------------------------------------- /admin/app/conf/AdminConfiguration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/conf/AdminConfiguration.scala -------------------------------------------------------------------------------- /admin/app/controllers/HealthCheck.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/controllers/HealthCheck.scala -------------------------------------------------------------------------------- /admin/app/dfp/DfpDataExtractor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/dfp/DfpDataExtractor.scala -------------------------------------------------------------------------------- /admin/app/dfp/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/dfp/package.scala -------------------------------------------------------------------------------- /admin/app/football/formats/PaPlayer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/football/formats/PaPlayer.scala -------------------------------------------------------------------------------- /admin/app/football/model/PA.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/football/model/PA.scala -------------------------------------------------------------------------------- /admin/app/football/model/PrevResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/football/model/PrevResult.scala -------------------------------------------------------------------------------- /admin/app/football/model/SnapFields.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/football/model/SnapFields.scala -------------------------------------------------------------------------------- /admin/app/football/services/Client.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/football/services/Client.scala -------------------------------------------------------------------------------- /admin/app/http/AdminHttpErrorHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/http/AdminHttpErrorHandler.scala -------------------------------------------------------------------------------- /admin/app/indexes/TagPages.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/indexes/TagPages.scala -------------------------------------------------------------------------------- /admin/app/indexes/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/indexes/package.scala -------------------------------------------------------------------------------- /admin/app/jobs/R2PagePressJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/jobs/R2PagePressJob.scala -------------------------------------------------------------------------------- /admin/app/jobs/RebuildIndexJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/jobs/RebuildIndexJob.scala -------------------------------------------------------------------------------- /admin/app/jobs/RefreshFrontsJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/jobs/RefreshFrontsJob.scala -------------------------------------------------------------------------------- /admin/app/model/AdminLifecycle.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/model/AdminLifecycle.scala -------------------------------------------------------------------------------- /admin/app/model/AdminPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/model/AdminPage.scala -------------------------------------------------------------------------------- /admin/app/purge/CdnPurge.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/purge/CdnPurge.scala -------------------------------------------------------------------------------- /admin/app/services/EmailService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/services/EmailService.scala -------------------------------------------------------------------------------- /admin/app/tools/CloudWatch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/tools/CloudWatch.scala -------------------------------------------------------------------------------- /admin/app/tools/DfpLink.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/tools/DfpLink.scala -------------------------------------------------------------------------------- /admin/app/tools/LoadBalancer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/tools/LoadBalancer.scala -------------------------------------------------------------------------------- /admin/app/tools/Store.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/tools/Store.scala -------------------------------------------------------------------------------- /admin/app/tools/charts/charts.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/tools/charts/charts.scala -------------------------------------------------------------------------------- /admin/app/tools/errors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/tools/errors.scala -------------------------------------------------------------------------------- /admin/app/views/abTests.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/abTests.scala.html -------------------------------------------------------------------------------- /admin/app/views/admin.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/admin.scala.html -------------------------------------------------------------------------------- /admin/app/views/admin_embed.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/admin_embed.scala.html -------------------------------------------------------------------------------- /admin/app/views/admin_head.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/admin_head.scala.html -------------------------------------------------------------------------------- /admin/app/views/admin_main.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/admin_main.scala.html -------------------------------------------------------------------------------- /admin/app/views/appConfig.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/appConfig.scala.html -------------------------------------------------------------------------------- /admin/app/views/contentGallery.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/contentGallery.scala.html -------------------------------------------------------------------------------- /admin/app/views/errorPage.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/errorPage.scala.html -------------------------------------------------------------------------------- /admin/app/views/football/browse.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/football/browse.scala.html -------------------------------------------------------------------------------- /admin/app/views/football/error.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/football/error.scala.html -------------------------------------------------------------------------------- /admin/app/views/football/index.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/football/index.scala.html -------------------------------------------------------------------------------- /admin/app/views/football/main.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/football/main.scala.html -------------------------------------------------------------------------------- /admin/app/views/fragments/participationItem.scala.html: -------------------------------------------------------------------------------- 1 | @() 2 | 3 | -------------------------------------------------------------------------------- /admin/app/views/legacyAbTests.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/legacyAbTests.scala.html -------------------------------------------------------------------------------- /admin/app/views/lineCharts.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/lineCharts.scala.html -------------------------------------------------------------------------------- /admin/app/views/press.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/press.scala.html -------------------------------------------------------------------------------- /admin/app/views/pressContent.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/pressContent.scala.html -------------------------------------------------------------------------------- /admin/app/views/pressR2.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/pressR2.scala.html -------------------------------------------------------------------------------- /admin/app/views/redirects.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/redirects.scala.html -------------------------------------------------------------------------------- /admin/app/views/switchboard.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/switchboard.scala.html -------------------------------------------------------------------------------- /admin/app/views/troubleshooter.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/app/views/troubleshooter.scala.html -------------------------------------------------------------------------------- /admin/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/conf/application.conf -------------------------------------------------------------------------------- /admin/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/conf/logback.xml -------------------------------------------------------------------------------- /admin/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/conf/routes -------------------------------------------------------------------------------- /admin/public/css/abtests.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/css/abtests.css -------------------------------------------------------------------------------- /admin/public/css/admin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/public/css/browsers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/css/browsers.css -------------------------------------------------------------------------------- /admin/public/css/commercial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/css/commercial.css -------------------------------------------------------------------------------- /admin/public/css/football.css: -------------------------------------------------------------------------------- 1 | strong { 2 | color: indianred; 3 | } 4 | -------------------------------------------------------------------------------- /admin/public/css/radiator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/css/radiator.css -------------------------------------------------------------------------------- /admin/public/css/reader-revenue.css: -------------------------------------------------------------------------------- 1 | .reader-revenue-warning { 2 | color: #d9534f; 3 | } 4 | -------------------------------------------------------------------------------- /admin/public/css/switchboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/css/switchboard.css -------------------------------------------------------------------------------- /admin/public/football/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/football/images/favicon.ico -------------------------------------------------------------------------------- /admin/public/images/114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/images/114x114.png -------------------------------------------------------------------------------- /admin/public/images/144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/images/144x144.png -------------------------------------------------------------------------------- /admin/public/images/57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/images/57x57.png -------------------------------------------------------------------------------- /admin/public/images/72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/images/72x72.png -------------------------------------------------------------------------------- /admin/public/images/ajax-failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/images/ajax-failed.png -------------------------------------------------------------------------------- /admin/public/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/images/ajax-loader.gif -------------------------------------------------------------------------------- /admin/public/images/favicon-dev.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/images/favicon-dev.ico -------------------------------------------------------------------------------- /admin/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/images/favicon.ico -------------------------------------------------------------------------------- /admin/public/images/windows_tile_144_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/public/images/windows_tile_144_b.png -------------------------------------------------------------------------------- /admin/test/TestAppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/test/TestAppLoader.scala -------------------------------------------------------------------------------- /admin/test/indexes/TagPagesTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/test/indexes/TagPagesTest.scala -------------------------------------------------------------------------------- /admin/test/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/admin/test/package.scala -------------------------------------------------------------------------------- /applications/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/app/AppLoader.scala -------------------------------------------------------------------------------- /applications/app/pages/IndexHtmlPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/app/pages/IndexHtmlPage.scala -------------------------------------------------------------------------------- /applications/app/services/ImageQuery.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/app/services/ImageQuery.scala -------------------------------------------------------------------------------- /applications/app/views/all.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/app/views/all.scala.html -------------------------------------------------------------------------------- /applications/app/views/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/app/views/package.scala -------------------------------------------------------------------------------- /applications/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/conf/application.conf -------------------------------------------------------------------------------- /applications/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/conf/logback.xml -------------------------------------------------------------------------------- /applications/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/conf/routes -------------------------------------------------------------------------------- /applications/test/CrosswordDataTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/test/CrosswordDataTest.scala -------------------------------------------------------------------------------- /applications/test/IndexFeatureTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/test/IndexFeatureTest.scala -------------------------------------------------------------------------------- /applications/test/IndexMetaDataTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/test/IndexMetaDataTest.scala -------------------------------------------------------------------------------- /applications/test/MediaFeatureTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/test/MediaFeatureTest.scala -------------------------------------------------------------------------------- /applications/test/ShareLinksTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/test/ShareLinksTest.scala -------------------------------------------------------------------------------- /applications/test/TagTemplateTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/test/TagTemplateTest.scala -------------------------------------------------------------------------------- /applications/test/TestAppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/test/TestAppLoader.scala -------------------------------------------------------------------------------- /applications/test/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/applications/test/package.scala -------------------------------------------------------------------------------- /archive/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/archive/app/AppLoader.scala -------------------------------------------------------------------------------- /archive/app/controllers/HealthCheck.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/archive/app/controllers/HealthCheck.scala -------------------------------------------------------------------------------- /archive/app/views/archive.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/archive/app/views/archive.scala.html -------------------------------------------------------------------------------- /archive/app/views/notFound.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/archive/app/views/notFound.scala.html -------------------------------------------------------------------------------- /archive/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/archive/conf/application.conf -------------------------------------------------------------------------------- /archive/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/archive/conf/logback.xml -------------------------------------------------------------------------------- /archive/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/archive/conf/routes -------------------------------------------------------------------------------- /archive/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/archive/readme.txt -------------------------------------------------------------------------------- /archive/test/ArchiveControllerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/archive/test/ArchiveControllerTest.scala -------------------------------------------------------------------------------- /archive/test/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/archive/test/package.scala -------------------------------------------------------------------------------- /article/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/app/AppLoader.scala -------------------------------------------------------------------------------- /article/app/controllers/HealthCheck.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/app/controllers/HealthCheck.scala -------------------------------------------------------------------------------- /article/app/model/ContentFields.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/app/model/ContentFields.scala -------------------------------------------------------------------------------- /article/app/model/KeyEventData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/app/model/KeyEventData.scala -------------------------------------------------------------------------------- /article/app/model/LiveBlogHelpers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/app/model/LiveBlogHelpers.scala -------------------------------------------------------------------------------- /article/app/model/ParseBlockId.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/app/model/ParseBlockId.scala -------------------------------------------------------------------------------- /article/app/pages/ArticleHtmlPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/app/pages/ArticleHtmlPage.scala -------------------------------------------------------------------------------- /article/app/pages/LiveBlogHtmlPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/app/pages/LiveBlogHtmlPage.scala -------------------------------------------------------------------------------- /article/app/pages/MinuteHtmlPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/app/pages/MinuteHtmlPage.scala -------------------------------------------------------------------------------- /article/app/pages/StoryHtmlPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/app/pages/StoryHtmlPage.scala -------------------------------------------------------------------------------- /article/app/views/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/app/views/package.scala -------------------------------------------------------------------------------- /article/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/conf/application.conf -------------------------------------------------------------------------------- /article/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/conf/logback.xml -------------------------------------------------------------------------------- /article/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/conf/routes -------------------------------------------------------------------------------- /article/test/ArticleControllerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/test/ArticleControllerTest.scala -------------------------------------------------------------------------------- /article/test/CdnHealthCheckTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/test/CdnHealthCheckTest.scala -------------------------------------------------------------------------------- /article/test/DCRFake.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/test/DCRFake.scala -------------------------------------------------------------------------------- /article/test/LiveBlogControllerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/test/LiveBlogControllerTest.scala -------------------------------------------------------------------------------- /article/test/MainMediaWidthsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/test/MainMediaWidthsTest.scala -------------------------------------------------------------------------------- /article/test/TestAppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/test/TestAppLoader.scala -------------------------------------------------------------------------------- /article/test/model/KeyEventDataTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/test/model/KeyEventDataTest.scala -------------------------------------------------------------------------------- /article/test/model/ParseBlockIdTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/test/model/ParseBlockIdTest.scala -------------------------------------------------------------------------------- /article/test/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/article/test/package.scala -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/sbt-launch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/bin/sbt-launch.jar -------------------------------------------------------------------------------- /cla-corporate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/cla-corporate.txt -------------------------------------------------------------------------------- /cla-individual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/cla-individual.txt -------------------------------------------------------------------------------- /commercial/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/app/AppLoader.scala -------------------------------------------------------------------------------- /commercial/app/agents/AdmiralAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/app/agents/AdmiralAgent.scala -------------------------------------------------------------------------------- /commercial/app/controllers/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/app/controllers/package.scala -------------------------------------------------------------------------------- /commercial/app/jobs/AdmiralLifecycle.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/app/jobs/AdmiralLifecycle.scala -------------------------------------------------------------------------------- /commercial/app/model/capi/CapiAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/app/model/capi/CapiAgent.scala -------------------------------------------------------------------------------- /commercial/app/model/capi/CapiImages.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/app/model/capi/CapiImages.scala -------------------------------------------------------------------------------- /commercial/app/model/capi/CapiSingle.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/app/model/capi/CapiSingle.scala -------------------------------------------------------------------------------- /commercial/app/model/capi/Keyword.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/app/model/capi/Keyword.scala -------------------------------------------------------------------------------- /commercial/app/model/capi/Lookup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/app/model/capi/Lookup.scala -------------------------------------------------------------------------------- /commercial/app/model/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/app/model/package.scala -------------------------------------------------------------------------------- /commercial/app/views/passback.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/app/views/passback.scala.html -------------------------------------------------------------------------------- /commercial/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/conf/application.conf -------------------------------------------------------------------------------- /commercial/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/conf/logback.xml -------------------------------------------------------------------------------- /commercial/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/conf/routes -------------------------------------------------------------------------------- /commercial/test/model/CapiAgentTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/test/model/CapiAgentTest.scala -------------------------------------------------------------------------------- /commercial/test/model/LookupTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/commercial/test/model/LookupTest.scala -------------------------------------------------------------------------------- /common/app/ab/ABTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/ab/ABTests.scala -------------------------------------------------------------------------------- /common/app/agents/DeeplyReadAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/agents/DeeplyReadAgent.scala -------------------------------------------------------------------------------- /common/app/app/FrontendBuildInfo.scala: -------------------------------------------------------------------------------- 1 | package app 2 | 3 | trait FrontendBuildInfo { 4 | val gitCommitId: String 5 | } 6 | -------------------------------------------------------------------------------- /common/app/bindables/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/bindables/package.scala -------------------------------------------------------------------------------- /common/app/common/Assets/assets.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Assets/assets.scala -------------------------------------------------------------------------------- /common/app/common/AutoRefresh.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/AutoRefresh.scala -------------------------------------------------------------------------------- /common/app/common/Box.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Box.scala -------------------------------------------------------------------------------- /common/app/common/CSV.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/CSV.scala -------------------------------------------------------------------------------- /common/app/common/Chronos.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Chronos.scala -------------------------------------------------------------------------------- /common/app/common/CommercialBundle.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/CommercialBundle.scala -------------------------------------------------------------------------------- /common/app/common/Crypto.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Crypto.scala -------------------------------------------------------------------------------- /common/app/common/Edition.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Edition.scala -------------------------------------------------------------------------------- /common/app/common/ExternalLinks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/ExternalLinks.scala -------------------------------------------------------------------------------- /common/app/common/GuLogging.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/GuLogging.scala -------------------------------------------------------------------------------- /common/app/common/HTML.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/HTML.scala -------------------------------------------------------------------------------- /common/app/common/InlineStyles.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/InlineStyles.scala -------------------------------------------------------------------------------- /common/app/common/InternalCode.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/InternalCode.scala -------------------------------------------------------------------------------- /common/app/common/JodaTime.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/JodaTime.scala -------------------------------------------------------------------------------- /common/app/common/JsMinifier.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/JsMinifier.scala -------------------------------------------------------------------------------- /common/app/common/JsonComponent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/JsonComponent.scala -------------------------------------------------------------------------------- /common/app/common/Lazy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Lazy.scala -------------------------------------------------------------------------------- /common/app/common/LinkTo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/LinkTo.scala -------------------------------------------------------------------------------- /common/app/common/Localisation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Localisation.scala -------------------------------------------------------------------------------- /common/app/common/Maps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Maps.scala -------------------------------------------------------------------------------- /common/app/common/ModelOrResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/ModelOrResult.scala -------------------------------------------------------------------------------- /common/app/common/PagePaths.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/PagePaths.scala -------------------------------------------------------------------------------- /common/app/common/Pagination.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Pagination.scala -------------------------------------------------------------------------------- /common/app/common/Preload.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Preload.scala -------------------------------------------------------------------------------- /common/app/common/PreloadAsset.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/PreloadAsset.scala -------------------------------------------------------------------------------- /common/app/common/Properties.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Properties.scala -------------------------------------------------------------------------------- /common/app/common/QueryParams.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/QueryParams.scala -------------------------------------------------------------------------------- /common/app/common/RequestLogger.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/RequestLogger.scala -------------------------------------------------------------------------------- /common/app/common/ResourcesHelper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/ResourcesHelper.scala -------------------------------------------------------------------------------- /common/app/common/Retry.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Retry.scala -------------------------------------------------------------------------------- /common/app/common/SNSNotification.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/SNSNotification.scala -------------------------------------------------------------------------------- /common/app/common/SQSQueues.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/SQSQueues.scala -------------------------------------------------------------------------------- /common/app/common/Seqs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Seqs.scala -------------------------------------------------------------------------------- /common/app/common/ShowcaseRSSModules.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/ShowcaseRSSModules.scala -------------------------------------------------------------------------------- /common/app/common/StopWatch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/StopWatch.scala -------------------------------------------------------------------------------- /common/app/common/StringEncodings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/StringEncodings.scala -------------------------------------------------------------------------------- /common/app/common/Strings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/Strings.scala -------------------------------------------------------------------------------- /common/app/common/TrailsToRss.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/TrailsToRss.scala -------------------------------------------------------------------------------- /common/app/common/TrailsToShowcase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/TrailsToShowcase.scala -------------------------------------------------------------------------------- /common/app/common/akka.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/akka.scala -------------------------------------------------------------------------------- /common/app/common/configuration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/configuration.scala -------------------------------------------------------------------------------- /common/app/common/dfp/AdSize.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/dfp/AdSize.scala -------------------------------------------------------------------------------- /common/app/common/dfp/DfpAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/dfp/DfpAgent.scala -------------------------------------------------------------------------------- /common/app/common/dfp/DfpData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/dfp/DfpData.scala -------------------------------------------------------------------------------- /common/app/common/editions/Au.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/editions/Au.scala -------------------------------------------------------------------------------- /common/app/common/editions/Europe.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/editions/Europe.scala -------------------------------------------------------------------------------- /common/app/common/editions/Uk.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/editions/Uk.scala -------------------------------------------------------------------------------- /common/app/common/editions/Us.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/editions/Us.scala -------------------------------------------------------------------------------- /common/app/common/jobs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/jobs.scala -------------------------------------------------------------------------------- /common/app/common/management.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/management.scala -------------------------------------------------------------------------------- /common/app/common/metrics.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/metrics.scala -------------------------------------------------------------------------------- /common/app/common/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/common/package.scala -------------------------------------------------------------------------------- /common/app/concurrent/FutureOpt.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/concurrent/FutureOpt.scala -------------------------------------------------------------------------------- /common/app/conf/AudioFlagship.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/conf/AudioFlagship.scala -------------------------------------------------------------------------------- /common/app/conf/HealthCheck.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/conf/HealthCheck.scala -------------------------------------------------------------------------------- /common/app/conf/application.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/conf/application.scala -------------------------------------------------------------------------------- /common/app/conf/switches/Switches.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/conf/switches/Switches.scala -------------------------------------------------------------------------------- /common/app/conf/switches/TXSwitches.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/conf/switches/TXSwitches.scala -------------------------------------------------------------------------------- /common/app/contentapi/Paths.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/contentapi/Paths.scala -------------------------------------------------------------------------------- /common/app/contentapi/SectionsLookUp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/contentapi/SectionsLookUp.scala -------------------------------------------------------------------------------- /common/app/contentapi/http.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/contentapi/http.scala -------------------------------------------------------------------------------- /common/app/controllers/Paging.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/controllers/Paging.scala -------------------------------------------------------------------------------- /common/app/controllers/PublicAssets.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/controllers/PublicAssets.scala -------------------------------------------------------------------------------- /common/app/crosswords/CrosswordPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/crosswords/CrosswordPage.scala -------------------------------------------------------------------------------- /common/app/crosswords/CrosswordSvg.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/crosswords/CrosswordSvg.scala -------------------------------------------------------------------------------- /common/app/crosswords/CrosswordTreat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/crosswords/CrosswordTreat.scala -------------------------------------------------------------------------------- /common/app/crosswords/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/crosswords/package.scala -------------------------------------------------------------------------------- /common/app/dev/DevAssetsController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/dev/DevAssetsController.scala -------------------------------------------------------------------------------- /common/app/experiments/Experiment.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/experiments/Experiment.scala -------------------------------------------------------------------------------- /common/app/experiments/Experiments.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/experiments/Experiments.scala -------------------------------------------------------------------------------- /common/app/feed/MostViewed.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/feed/MostViewed.scala -------------------------------------------------------------------------------- /common/app/html/BrazeEmailFormatter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/html/BrazeEmailFormatter.scala -------------------------------------------------------------------------------- /common/app/html/HtmlPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/html/HtmlPage.scala -------------------------------------------------------------------------------- /common/app/html/HtmlTextExtractor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/html/HtmlTextExtractor.scala -------------------------------------------------------------------------------- /common/app/html/Styles.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/html/Styles.scala -------------------------------------------------------------------------------- /common/app/http/AmpFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/http/AmpFilter.scala -------------------------------------------------------------------------------- /common/app/http/CorsHttpErrorHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/http/CorsHttpErrorHandler.scala -------------------------------------------------------------------------------- /common/app/http/CustomPanDomainAuth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/http/CustomPanDomainAuth.scala -------------------------------------------------------------------------------- /common/app/http/Filters.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/http/Filters.scala -------------------------------------------------------------------------------- /common/app/http/H2PreloadFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/http/H2PreloadFilter.scala -------------------------------------------------------------------------------- /common/app/http/RequestIdFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/http/RequestIdFilter.scala -------------------------------------------------------------------------------- /common/app/http/RequestLoggingFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/http/RequestLoggingFilter.scala -------------------------------------------------------------------------------- /common/app/implicits/Booleans.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/implicits/Booleans.scala -------------------------------------------------------------------------------- /common/app/implicits/Dates.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/implicits/Dates.scala -------------------------------------------------------------------------------- /common/app/implicits/ItemResponses.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/implicits/ItemResponses.scala -------------------------------------------------------------------------------- /common/app/implicits/Numbers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/implicits/Numbers.scala -------------------------------------------------------------------------------- /common/app/implicits/Requests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/implicits/Requests.scala -------------------------------------------------------------------------------- /common/app/implicits/Responses.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/implicits/Responses.scala -------------------------------------------------------------------------------- /common/app/implicits/Strings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/implicits/Strings.scala -------------------------------------------------------------------------------- /common/app/implicits/WSRequests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/implicits/WSRequests.scala -------------------------------------------------------------------------------- /common/app/json/ObjectDeduplication.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/json/ObjectDeduplication.scala -------------------------------------------------------------------------------- /common/app/layout/Breakpoint.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/Breakpoint.scala -------------------------------------------------------------------------------- /common/app/layout/BreakpointWidth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/BreakpointWidth.scala -------------------------------------------------------------------------------- /common/app/layout/BrowserWidth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/BrowserWidth.scala -------------------------------------------------------------------------------- /common/app/layout/Byline.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/Byline.scala -------------------------------------------------------------------------------- /common/app/layout/CollectionEmail.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/CollectionEmail.scala -------------------------------------------------------------------------------- /common/app/layout/Column.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/Column.scala -------------------------------------------------------------------------------- /common/app/layout/ColumnAndCards.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/ColumnAndCards.scala -------------------------------------------------------------------------------- /common/app/layout/ContainerLayout.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/ContainerLayout.scala -------------------------------------------------------------------------------- /common/app/layout/ContentWidths.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/ContentWidths.scala -------------------------------------------------------------------------------- /common/app/layout/DateHeadline.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/DateHeadline.scala -------------------------------------------------------------------------------- /common/app/layout/DiscussionSettings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/DiscussionSettings.scala -------------------------------------------------------------------------------- /common/app/layout/DisplaySettings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/DisplaySettings.scala -------------------------------------------------------------------------------- /common/app/layout/EditionalisedLink.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/EditionalisedLink.scala -------------------------------------------------------------------------------- /common/app/layout/FaciaCard.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/FaciaCard.scala -------------------------------------------------------------------------------- /common/app/layout/FaciaCardAndIndex.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/FaciaCardAndIndex.scala -------------------------------------------------------------------------------- /common/app/layout/FaciaCardHeader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/FaciaCardHeader.scala -------------------------------------------------------------------------------- /common/app/layout/FaciaCardTimestamp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/FaciaCardTimestamp.scala -------------------------------------------------------------------------------- /common/app/layout/FaciaContainer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/FaciaContainer.scala -------------------------------------------------------------------------------- /common/app/layout/FaciaWidths.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/FaciaWidths.scala -------------------------------------------------------------------------------- /common/app/layout/Front.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/Front.scala -------------------------------------------------------------------------------- /common/app/layout/HtmlAndClasses.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/HtmlAndClasses.scala -------------------------------------------------------------------------------- /common/app/layout/InclusiveRange.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/InclusiveRange.scala -------------------------------------------------------------------------------- /common/app/layout/IndexedTrail.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/IndexedTrail.scala -------------------------------------------------------------------------------- /common/app/layout/ItemClasses.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/ItemClasses.scala -------------------------------------------------------------------------------- /common/app/layout/SliceLayout.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/SliceLayout.scala -------------------------------------------------------------------------------- /common/app/layout/SliceWithCards.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/SliceWithCards.scala -------------------------------------------------------------------------------- /common/app/layout/SlowOrFastByTrails.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/SlowOrFastByTrails.scala -------------------------------------------------------------------------------- /common/app/layout/SnapStuff.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/SnapStuff.scala -------------------------------------------------------------------------------- /common/app/layout/SnapType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/SnapType.scala -------------------------------------------------------------------------------- /common/app/layout/Sublink.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/Sublink.scala -------------------------------------------------------------------------------- /common/app/layout/Sublinks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/Sublinks.scala -------------------------------------------------------------------------------- /common/app/layout/TagHistogram.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/TagHistogram.scala -------------------------------------------------------------------------------- /common/app/layout/WidthsByBreakpoint.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/WidthsByBreakpoint.scala -------------------------------------------------------------------------------- /common/app/layout/cards/CardType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/cards/CardType.scala -------------------------------------------------------------------------------- /common/app/layout/slices/Container.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/slices/Container.scala -------------------------------------------------------------------------------- /common/app/layout/slices/DynamicFast.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/slices/DynamicFast.scala -------------------------------------------------------------------------------- /common/app/layout/slices/DynamicSlow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/slices/DynamicSlow.scala -------------------------------------------------------------------------------- /common/app/layout/slices/EmailLayout.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/slices/EmailLayout.scala -------------------------------------------------------------------------------- /common/app/layout/slices/Pascal Scala Playground.sc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /common/app/layout/slices/Slice.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/slices/Slice.scala -------------------------------------------------------------------------------- /common/app/layout/slices/Story.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/layout/slices/Story.scala -------------------------------------------------------------------------------- /common/app/metrics/FrontendMetrics.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/metrics/FrontendMetrics.scala -------------------------------------------------------------------------------- /common/app/model/ApplicationContext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/ApplicationContext.scala -------------------------------------------------------------------------------- /common/app/model/ApplicationIdentity.scala: -------------------------------------------------------------------------------- 1 | package model 2 | 3 | case class ApplicationIdentity( 4 | name: String, 5 | ) 6 | -------------------------------------------------------------------------------- /common/app/model/ArticleBlocks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/ArticleBlocks.scala -------------------------------------------------------------------------------- /common/app/model/ArticlePage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/ArticlePage.scala -------------------------------------------------------------------------------- /common/app/model/Asset.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Asset.scala -------------------------------------------------------------------------------- /common/app/model/AtomPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/AtomPage.scala -------------------------------------------------------------------------------- /common/app/model/AudioPlayer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/AudioPlayer.scala -------------------------------------------------------------------------------- /common/app/model/Badges.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Badges.scala -------------------------------------------------------------------------------- /common/app/model/Cached.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Cached.scala -------------------------------------------------------------------------------- /common/app/model/CardStyle.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/CardStyle.scala -------------------------------------------------------------------------------- /common/app/model/CardStylePicker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/CardStylePicker.scala -------------------------------------------------------------------------------- /common/app/model/CollectionConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/CollectionConfig.scala -------------------------------------------------------------------------------- /common/app/model/ContentDesignType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/ContentDesignType.scala -------------------------------------------------------------------------------- /common/app/model/Cors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Cors.scala -------------------------------------------------------------------------------- /common/app/model/CrosswordData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/CrosswordData.scala -------------------------------------------------------------------------------- /common/app/model/CrosswordGridModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/CrosswordGridModel.scala -------------------------------------------------------------------------------- /common/app/model/DatesAndTimes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/DatesAndTimes.scala -------------------------------------------------------------------------------- /common/app/model/DisplayHints.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/DisplayHints.scala -------------------------------------------------------------------------------- /common/app/model/DotcomContentType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/DotcomContentType.scala -------------------------------------------------------------------------------- /common/app/model/Element.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Element.scala -------------------------------------------------------------------------------- /common/app/model/EmailAddons.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/EmailAddons.scala -------------------------------------------------------------------------------- /common/app/model/EmailSubscription.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/EmailSubscription.scala -------------------------------------------------------------------------------- /common/app/model/Encoding.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Encoding.scala -------------------------------------------------------------------------------- /common/app/model/EnrichedContent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/EnrichedContent.scala -------------------------------------------------------------------------------- /common/app/model/FaciaDisplayElement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/FaciaDisplayElement.scala -------------------------------------------------------------------------------- /common/app/model/FootballNavigation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/FootballNavigation.scala -------------------------------------------------------------------------------- /common/app/model/Formats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Formats.scala -------------------------------------------------------------------------------- /common/app/model/Image.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Image.scala -------------------------------------------------------------------------------- /common/app/model/ImageContentPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/ImageContentPage.scala -------------------------------------------------------------------------------- /common/app/model/ImageElement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/ImageElement.scala -------------------------------------------------------------------------------- /common/app/model/ImageOverride.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/ImageOverride.scala -------------------------------------------------------------------------------- /common/app/model/IndexNav.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/IndexNav.scala -------------------------------------------------------------------------------- /common/app/model/InteractivePage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/InteractivePage.scala -------------------------------------------------------------------------------- /common/app/model/IpsosTags.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/IpsosTags.scala -------------------------------------------------------------------------------- /common/app/model/ItemKicker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/ItemKicker.scala -------------------------------------------------------------------------------- /common/app/model/KickerProperties.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/KickerProperties.scala -------------------------------------------------------------------------------- /common/app/model/Link.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Link.scala -------------------------------------------------------------------------------- /common/app/model/LiveBlogCurrentPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/LiveBlogCurrentPage.scala -------------------------------------------------------------------------------- /common/app/model/LiveBlogPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/LiveBlogPage.scala -------------------------------------------------------------------------------- /common/app/model/MediaPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/MediaPage.scala -------------------------------------------------------------------------------- /common/app/model/MediaType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/MediaType.scala -------------------------------------------------------------------------------- /common/app/model/MostPopular.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/MostPopular.scala -------------------------------------------------------------------------------- /common/app/model/Pillar.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Pillar.scala -------------------------------------------------------------------------------- /common/app/model/PressedCard.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/PressedCard.scala -------------------------------------------------------------------------------- /common/app/model/PressedCardHeader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/PressedCardHeader.scala -------------------------------------------------------------------------------- /common/app/model/PressedElements.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/PressedElements.scala -------------------------------------------------------------------------------- /common/app/model/PressedFields.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/PressedFields.scala -------------------------------------------------------------------------------- /common/app/model/PressedMetadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/PressedMetadata.scala -------------------------------------------------------------------------------- /common/app/model/PressedPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/PressedPage.scala -------------------------------------------------------------------------------- /common/app/model/PressedProperties.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/PressedProperties.scala -------------------------------------------------------------------------------- /common/app/model/PressedStory.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/PressedStory.scala -------------------------------------------------------------------------------- /common/app/model/PressedTrail.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/PressedTrail.scala -------------------------------------------------------------------------------- /common/app/model/R2PressMessage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/R2PressMessage.scala -------------------------------------------------------------------------------- /common/app/model/RelatedContent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/RelatedContent.scala -------------------------------------------------------------------------------- /common/app/model/RugbyContent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/RugbyContent.scala -------------------------------------------------------------------------------- /common/app/model/Section.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Section.scala -------------------------------------------------------------------------------- /common/app/model/Series.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Series.scala -------------------------------------------------------------------------------- /common/app/model/ShareLinks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/ShareLinks.scala -------------------------------------------------------------------------------- /common/app/model/SupportedUrl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/SupportedUrl.scala -------------------------------------------------------------------------------- /common/app/model/Tag.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/Tag.scala -------------------------------------------------------------------------------- /common/app/model/TagIndexPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/TagIndexPage.scala -------------------------------------------------------------------------------- /common/app/model/TinyResponse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/TinyResponse.scala -------------------------------------------------------------------------------- /common/app/model/VideoPlayer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/VideoPlayer.scala -------------------------------------------------------------------------------- /common/app/model/content.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/content.scala -------------------------------------------------------------------------------- /common/app/model/content/Atom.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/content/Atom.scala -------------------------------------------------------------------------------- /common/app/model/content/Atoms.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/content/Atoms.scala -------------------------------------------------------------------------------- /common/app/model/facia.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/facia.scala -------------------------------------------------------------------------------- /common/app/model/liveblog/BodyBlock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/liveblog/BodyBlock.scala -------------------------------------------------------------------------------- /common/app/model/meta.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/meta.scala -------------------------------------------------------------------------------- /common/app/model/meta/LinkedData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/meta/LinkedData.scala -------------------------------------------------------------------------------- /common/app/model/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/package.scala -------------------------------------------------------------------------------- /common/app/model/pressedContent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/pressedContent.scala -------------------------------------------------------------------------------- /common/app/model/trails.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/model/trails.scala -------------------------------------------------------------------------------- /common/app/navigation/DCRNavigation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/navigation/DCRNavigation.scala -------------------------------------------------------------------------------- /common/app/navigation/FooterLinks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/navigation/FooterLinks.scala -------------------------------------------------------------------------------- /common/app/navigation/NavLinks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/navigation/NavLinks.scala -------------------------------------------------------------------------------- /common/app/navigation/Navigation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/navigation/Navigation.scala -------------------------------------------------------------------------------- /common/app/pagepresser/HtmlCleaner.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/pagepresser/HtmlCleaner.scala -------------------------------------------------------------------------------- /common/app/quiz/form/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/quiz/form/package.scala -------------------------------------------------------------------------------- /common/app/quiz/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/quiz/package.scala -------------------------------------------------------------------------------- /common/app/services/CAPILookup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/CAPILookup.scala -------------------------------------------------------------------------------- /common/app/services/ConfigAgentTrait.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/ConfigAgentTrait.scala -------------------------------------------------------------------------------- /common/app/services/DynamoDB.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/DynamoDB.scala -------------------------------------------------------------------------------- /common/app/services/IndexPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/IndexPage.scala -------------------------------------------------------------------------------- /common/app/services/Notification.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/Notification.scala -------------------------------------------------------------------------------- /common/app/services/OphanApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/OphanApi.scala -------------------------------------------------------------------------------- /common/app/services/ParameterStore.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/ParameterStore.scala -------------------------------------------------------------------------------- /common/app/services/RedirectService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/RedirectService.scala -------------------------------------------------------------------------------- /common/app/services/S3.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/S3.scala -------------------------------------------------------------------------------- /common/app/services/SkimLinksCache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/SkimLinksCache.scala -------------------------------------------------------------------------------- /common/app/services/TagIndexesS3.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/TagIndexesS3.scala -------------------------------------------------------------------------------- /common/app/services/fronts/FrontsApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/fronts/FrontsApi.scala -------------------------------------------------------------------------------- /common/app/services/repositories.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/services/repositories.scala -------------------------------------------------------------------------------- /common/app/staticpages/StaticPages.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/staticpages/StaticPages.scala -------------------------------------------------------------------------------- /common/app/utils/AWSv2.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/utils/AWSv2.scala -------------------------------------------------------------------------------- /common/app/utils/RemoteAddress.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/utils/RemoteAddress.scala -------------------------------------------------------------------------------- /common/app/utils/ShortUrls.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/utils/ShortUrls.scala -------------------------------------------------------------------------------- /common/app/views/emailEmbed.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/views/emailEmbed.scala.html -------------------------------------------------------------------------------- /common/app/views/fragments/email/signup/recaptchaContainer.scala.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /common/app/views/fragments/page/body/mainContent.scala.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /common/app/views/gone.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/views/gone.scala.html -------------------------------------------------------------------------------- /common/app/views/main.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/views/main.scala.html -------------------------------------------------------------------------------- /common/app/views/mainLegacy.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/views/mainLegacy.scala.html -------------------------------------------------------------------------------- /common/app/views/stacked.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/views/stacked.scala.html -------------------------------------------------------------------------------- /common/app/views/support/CamelCase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/views/support/CamelCase.scala -------------------------------------------------------------------------------- /common/app/views/support/CutOut.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/views/support/CutOut.scala -------------------------------------------------------------------------------- /common/app/views/support/Title.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/views/support/Title.scala -------------------------------------------------------------------------------- /common/app/views/support/Treats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/views/support/Treats.scala -------------------------------------------------------------------------------- /common/app/views/support/URLEncode.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/views/support/URLEncode.scala -------------------------------------------------------------------------------- /common/app/views/support/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/app/views/support/package.scala -------------------------------------------------------------------------------- /common/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/conf/application.conf -------------------------------------------------------------------------------- /common/conf/env/DEVINFRA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/conf/env/DEVINFRA.properties -------------------------------------------------------------------------------- /common/conf/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/conf/test.conf -------------------------------------------------------------------------------- /common/test/CommonTestSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/CommonTestSuite.scala -------------------------------------------------------------------------------- /common/test/ab/ABTestsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/ab/ABTestsTest.scala -------------------------------------------------------------------------------- /common/test/assets/testassets.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/assets/testassets.map -------------------------------------------------------------------------------- /common/test/assets/testclass-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/assets/testclass-map.json -------------------------------------------------------------------------------- /common/test/common/BoxTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/BoxTest.scala -------------------------------------------------------------------------------- /common/test/common/CryptoTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/CryptoTest.scala -------------------------------------------------------------------------------- /common/test/common/EditionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/EditionTest.scala -------------------------------------------------------------------------------- /common/test/common/ExperimentsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/ExperimentsTest.scala -------------------------------------------------------------------------------- /common/test/common/HtmlCleanerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/HtmlCleanerTest.scala -------------------------------------------------------------------------------- /common/test/common/IsoDateTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/IsoDateTest.scala -------------------------------------------------------------------------------- /common/test/common/LinkToTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/LinkToTest.scala -------------------------------------------------------------------------------- /common/test/common/MapsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/MapsTest.scala -------------------------------------------------------------------------------- /common/test/common/PaginationTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/PaginationTest.scala -------------------------------------------------------------------------------- /common/test/common/Retry.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/Retry.scala -------------------------------------------------------------------------------- /common/test/common/SeqsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/SeqsTest.scala -------------------------------------------------------------------------------- /common/test/common/StringsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/StringsTest.scala -------------------------------------------------------------------------------- /common/test/common/TagLinkerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/TagLinkerTest.scala -------------------------------------------------------------------------------- /common/test/common/TrailsToRssTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/common/TrailsToRssTest.scala -------------------------------------------------------------------------------- /common/test/helpers/FaciaTestData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/helpers/FaciaTestData.scala -------------------------------------------------------------------------------- /common/test/implicits/FakeRequests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/implicits/FakeRequests.scala -------------------------------------------------------------------------------- /common/test/layout/DayHeadlineTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/layout/DayHeadlineTest.scala -------------------------------------------------------------------------------- /common/test/layout/FrontTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/layout/FrontTest.scala -------------------------------------------------------------------------------- /common/test/layout/PaidCardTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/layout/PaidCardTest.scala -------------------------------------------------------------------------------- /common/test/layout/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/layout/package.scala -------------------------------------------------------------------------------- /common/test/model/CachedTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/model/CachedTest.scala -------------------------------------------------------------------------------- /common/test/model/ContentTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/model/ContentTest.scala -------------------------------------------------------------------------------- /common/test/model/CorsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/model/CorsTest.scala -------------------------------------------------------------------------------- /common/test/model/DateTimeTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/model/DateTimeTest.scala -------------------------------------------------------------------------------- /common/test/model/ElementsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/model/ElementsTest.scala -------------------------------------------------------------------------------- /common/test/model/MetaDataTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/model/MetaDataTest.scala -------------------------------------------------------------------------------- /common/test/model/SeoDataTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/model/SeoDataTest.scala -------------------------------------------------------------------------------- /common/test/model/TagIndexPageTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/model/TagIndexPageTest.scala -------------------------------------------------------------------------------- /common/test/model/UrlsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/model/UrlsTest.scala -------------------------------------------------------------------------------- /common/test/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/package.scala -------------------------------------------------------------------------------- /common/test/recorder/HttpRecorder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/recorder/HttpRecorder.scala -------------------------------------------------------------------------------- /common/test/resources/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/resources/c.json -------------------------------------------------------------------------------- /common/test/resources/liveblog-body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/resources/liveblog-body.html -------------------------------------------------------------------------------- /common/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/resources/logback.xml -------------------------------------------------------------------------------- /common/test/resources/rome.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/resources/rome.properties -------------------------------------------------------------------------------- /common/test/services/IndexPageTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/services/IndexPageTest.scala -------------------------------------------------------------------------------- /common/test/test-env/DEV.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/test-env/DEV.properties -------------------------------------------------------------------------------- /common/test/test-env/DEVINFRA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/test-env/DEVINFRA.properties -------------------------------------------------------------------------------- /common/test/test-env/GUDEV.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/common/test/test-env/GUDEV.properties -------------------------------------------------------------------------------- /data/discussion/40645316fef824d7ff8ddcc53d1783a376c0eb02e4c167a7d4720fdc27d2e9fb: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /data/discussion/5407ddfa890a9a17de6d66ea70e33f30132b2120f2958b74e189341438a5ca09: -------------------------------------------------------------------------------- 1 | Error:404 -------------------------------------------------------------------------------- /data/discussion/5cad8f992b5288b72323b69c15c041018fe04404770707ce8b622ada157e5c96: -------------------------------------------------------------------------------- 1 | Error:404 -------------------------------------------------------------------------------- /data/discussion/c3eb4ede69661c49d465d5255b43bcffe59fc37b329ee65f1ff1c5bb7f0a321c: -------------------------------------------------------------------------------- 1 | Error:404 -------------------------------------------------------------------------------- /dev-build/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/dev-build/app/AppLoader.scala -------------------------------------------------------------------------------- /dev-build/app/http/DevFilters.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/dev-build/app/http/DevFilters.scala -------------------------------------------------------------------------------- /dev-build/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/dev-build/conf/logback.xml -------------------------------------------------------------------------------- /dev-build/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/dev-build/conf/routes -------------------------------------------------------------------------------- /dev/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/dev/.eslintrc.js -------------------------------------------------------------------------------- /dev/git-branch-cleaner-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/dev/git-branch-cleaner-remote -------------------------------------------------------------------------------- /dev/jest.setupTestFrameworkScriptFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/dev/jest.setupTestFrameworkScriptFile.js -------------------------------------------------------------------------------- /dev/watch.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/dev/watch.mjs -------------------------------------------------------------------------------- /dev/webpack-loaders/svg-loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/dev/webpack-loaders/svg-loader/index.js -------------------------------------------------------------------------------- /disallowed-strings.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/disallowed-strings.mjs -------------------------------------------------------------------------------- /discussion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/discussion/README.md -------------------------------------------------------------------------------- /discussion/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/discussion/app/AppLoader.scala -------------------------------------------------------------------------------- /discussion/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/discussion/conf/application.conf -------------------------------------------------------------------------------- /discussion/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/discussion/conf/logback.xml -------------------------------------------------------------------------------- /discussion/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/discussion/conf/routes -------------------------------------------------------------------------------- /discussion/test/ProfileTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/discussion/test/ProfileTest.scala -------------------------------------------------------------------------------- /discussion/test/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/discussion/test/package.scala -------------------------------------------------------------------------------- /docs/01-start-here/03-how-to-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/03-how-to-deploy.md -------------------------------------------------------------------------------- /docs/01-start-here/04-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/04-troubleshooting.md -------------------------------------------------------------------------------- /docs/01-start-here/06-testing-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/06-testing-tips.md -------------------------------------------------------------------------------- /docs/01-start-here/07-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/07-faqs.md -------------------------------------------------------------------------------- /docs/01-start-here/08-incidents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/08-incidents.md -------------------------------------------------------------------------------- /docs/01-start-here/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/01-start-here/images/amp-ads.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/images/amp-ads.jpg -------------------------------------------------------------------------------- /docs/01-start-here/images/box set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/images/box set.jpg -------------------------------------------------------------------------------- /docs/01-start-here/images/immersive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/images/immersive.jpg -------------------------------------------------------------------------------- /docs/01-start-here/images/liveblog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/images/liveblog.jpg -------------------------------------------------------------------------------- /docs/01-start-here/images/minute.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/images/minute.jpg -------------------------------------------------------------------------------- /docs/01-start-here/images/quotes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/images/quotes.jpg -------------------------------------------------------------------------------- /docs/01-start-here/images/related.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/images/related.jpg -------------------------------------------------------------------------------- /docs/01-start-here/images/review.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/images/review.jpg -------------------------------------------------------------------------------- /docs/01-start-here/images/video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/01-start-here/images/video.jpg -------------------------------------------------------------------------------- /docs/02-architecture/04-archiving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/02-architecture/04-archiving.md -------------------------------------------------------------------------------- /docs/02-architecture/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/03-dev-howtos/01-ab-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/03-dev-howtos/01-ab-testing.md -------------------------------------------------------------------------------- /docs/03-dev-howtos/02-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/03-dev-howtos/02-deployment.md -------------------------------------------------------------------------------- /docs/03-dev-howtos/03-embeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/03-dev-howtos/03-embeds.md -------------------------------------------------------------------------------- /docs/03-dev-howtos/04-inline-svgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/03-dev-howtos/04-inline-svgs.md -------------------------------------------------------------------------------- /docs/03-dev-howtos/05-interactives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/03-dev-howtos/05-interactives.md -------------------------------------------------------------------------------- /docs/03-dev-howtos/06-repressing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/03-dev-howtos/06-repressing.md -------------------------------------------------------------------------------- /docs/03-dev-howtos/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/04-quality/01-browser-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/04-quality/01-browser-support.md -------------------------------------------------------------------------------- /docs/04-quality/03-accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/04-quality/03-accessibility.md -------------------------------------------------------------------------------- /docs/04-quality/04-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/04-quality/04-security.md -------------------------------------------------------------------------------- /docs/04-quality/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/04-quality/images/chrome_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/04-quality/images/chrome_full.png -------------------------------------------------------------------------------- /docs/04-quality/images/ie8_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/04-quality/images/ie8_basic.png -------------------------------------------------------------------------------- /docs/05-commercial/01-DFP-Advertising.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/05-commercial/01-DFP-Advertising.md -------------------------------------------------------------------------------- /docs/05-commercial/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/06-features-and-components/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/07-performance/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/99-archives/crepes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/99-archives/crepes.md -------------------------------------------------------------------------------- /docs/99-archives/font-loader-route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/99-archives/font-loader-route.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/generate-toc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/generate-toc.sh -------------------------------------------------------------------------------- /docs/how-to-create-a-doc-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/docs/how-to-create-a-doc-file.md -------------------------------------------------------------------------------- /facia-press/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia-press/README.md -------------------------------------------------------------------------------- /facia-press/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia-press/app/AppLoader.scala -------------------------------------------------------------------------------- /facia-press/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia-press/conf/application.conf -------------------------------------------------------------------------------- /facia-press/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia-press/conf/logback.xml -------------------------------------------------------------------------------- /facia-press/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia-press/conf/routes -------------------------------------------------------------------------------- /facia/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/app/AppLoader.scala -------------------------------------------------------------------------------- /facia/app/agents/MostViewedAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/app/agents/MostViewedAgent.scala -------------------------------------------------------------------------------- /facia/app/controllers/HealthCheck.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/app/controllers/HealthCheck.scala -------------------------------------------------------------------------------- /facia/app/feed/DeeplyReadLifecycle.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/app/feed/DeeplyReadLifecycle.scala -------------------------------------------------------------------------------- /facia/app/feed/MostViewedLifecycle.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/app/feed/MostViewedLifecycle.scala -------------------------------------------------------------------------------- /facia/app/model/OnwardItem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/app/model/OnwardItem.scala -------------------------------------------------------------------------------- /facia/app/pages/FrontEmailHtmlPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/app/pages/FrontEmailHtmlPage.scala -------------------------------------------------------------------------------- /facia/app/pages/FrontHtmlPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/app/pages/FrontHtmlPage.scala -------------------------------------------------------------------------------- /facia/app/views/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/app/views/package.scala -------------------------------------------------------------------------------- /facia/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/conf/application.conf -------------------------------------------------------------------------------- /facia/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/conf/logback.xml -------------------------------------------------------------------------------- /facia/conf/rome.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/conf/rome.properties -------------------------------------------------------------------------------- /facia/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/conf/routes -------------------------------------------------------------------------------- /facia/public/amphtml/apikey.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/public/amphtml/apikey.pub -------------------------------------------------------------------------------- /facia/public/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/public/humans.txt -------------------------------------------------------------------------------- /facia/public/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/public/security.txt -------------------------------------------------------------------------------- /facia/public/security.txt.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/public/security.txt.asc -------------------------------------------------------------------------------- /facia/test/FaciaControllerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/test/FaciaControllerTest.scala -------------------------------------------------------------------------------- /facia/test/FaciaFeatureTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/test/FaciaFeatureTest.scala -------------------------------------------------------------------------------- /facia/test/FaciaMetaDataTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/test/FaciaMetaDataTest.scala -------------------------------------------------------------------------------- /facia/test/model/FaciaPageTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/test/model/FaciaPageTest.scala -------------------------------------------------------------------------------- /facia/test/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/test/package.scala -------------------------------------------------------------------------------- /facia/test/utils/WithAssets.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/facia/test/utils/WithAssets.scala -------------------------------------------------------------------------------- /git-hooks/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/git-hooks/post-merge -------------------------------------------------------------------------------- /git-hooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/git-hooks/pre-push -------------------------------------------------------------------------------- /identity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/README.md -------------------------------------------------------------------------------- /identity/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/AppLoader.scala -------------------------------------------------------------------------------- /identity/app/form/AddressMapping.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/form/AddressMapping.scala -------------------------------------------------------------------------------- /identity/app/form/DateFormData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/form/DateFormData.scala -------------------------------------------------------------------------------- /identity/app/form/FormComponents.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/form/FormComponents.scala -------------------------------------------------------------------------------- /identity/app/form/IdFormHelpers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/form/IdFormHelpers.scala -------------------------------------------------------------------------------- /identity/app/form/Mappings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/form/Mappings.scala -------------------------------------------------------------------------------- /identity/app/form/PrivacyMapping.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/form/PrivacyMapping.scala -------------------------------------------------------------------------------- /identity/app/form/UserFormMapping.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/form/UserFormMapping.scala -------------------------------------------------------------------------------- /identity/app/http/IdentityFilters.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/http/IdentityFilters.scala -------------------------------------------------------------------------------- /identity/app/idapiclient/Auth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/idapiclient/Auth.scala -------------------------------------------------------------------------------- /identity/app/idapiclient/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/idapiclient/package.scala -------------------------------------------------------------------------------- /identity/app/implicits/Forms.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/implicits/Forms.scala -------------------------------------------------------------------------------- /identity/app/jobs/TorExitNodeList.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/jobs/TorExitNodeList.scala -------------------------------------------------------------------------------- /identity/app/model/Countries.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/model/Countries.scala -------------------------------------------------------------------------------- /identity/app/model/IdentityPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/model/IdentityPage.scala -------------------------------------------------------------------------------- /identity/app/model/PhoneNumbers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/model/PhoneNumbers.scala -------------------------------------------------------------------------------- /identity/app/model/ReturnJourney.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/model/ReturnJourney.scala -------------------------------------------------------------------------------- /identity/app/model/Titles.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/model/Titles.scala -------------------------------------------------------------------------------- /identity/app/model/Userhelp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/model/Userhelp.scala -------------------------------------------------------------------------------- /identity/app/utils/ConsentOrder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/app/utils/ConsentOrder.scala -------------------------------------------------------------------------------- /identity/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/conf/application.conf -------------------------------------------------------------------------------- /identity/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/conf/logback.xml -------------------------------------------------------------------------------- /identity/conf/messages.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/conf/messages.en -------------------------------------------------------------------------------- /identity/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/conf/routes -------------------------------------------------------------------------------- /identity/test/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/test/package.scala -------------------------------------------------------------------------------- /identity/test/test/FakeCSRFRequest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/identity/test/test/FakeCSRFRequest.scala -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/makefile -------------------------------------------------------------------------------- /nginx/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/nginx/Brewfile -------------------------------------------------------------------------------- /nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/nginx/README.md -------------------------------------------------------------------------------- /nginx/frontend.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/nginx/frontend.conf -------------------------------------------------------------------------------- /nginx/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/nginx/hosts -------------------------------------------------------------------------------- /nginx/nginx-mapping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/nginx/nginx-mapping.yml -------------------------------------------------------------------------------- /nginx/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/nginx/setup.sh -------------------------------------------------------------------------------- /onward/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/AppLoader.scala -------------------------------------------------------------------------------- /onward/app/business/StocksData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/business/StocksData.scala -------------------------------------------------------------------------------- /onward/app/business/massagedModels.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/business/massagedModels.scala -------------------------------------------------------------------------------- /onward/app/business/rawModels.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/business/rawModels.scala -------------------------------------------------------------------------------- /onward/app/containers/Containers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/containers/Containers.scala -------------------------------------------------------------------------------- /onward/app/controllers/HealthCheck.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/controllers/HealthCheck.scala -------------------------------------------------------------------------------- /onward/app/controllers/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/controllers/package.scala -------------------------------------------------------------------------------- /onward/app/feed/MostPopularAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/feed/MostPopularAgent.scala -------------------------------------------------------------------------------- /onward/app/feed/MostReadAgent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/feed/MostReadAgent.scala -------------------------------------------------------------------------------- /onward/app/models/NewsAlertType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/models/NewsAlertType.scala -------------------------------------------------------------------------------- /onward/app/models/Series.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/models/Series.scala -------------------------------------------------------------------------------- /onward/app/models/URIFormats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/models/URIFormats.scala -------------------------------------------------------------------------------- /onward/app/services/repositories.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/services/repositories.scala -------------------------------------------------------------------------------- /onward/app/views/feedback.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/views/feedback.scala.html -------------------------------------------------------------------------------- /onward/app/views/feedbackSent.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/views/feedbackSent.scala.html -------------------------------------------------------------------------------- /onward/app/views/mostPopular.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/views/mostPopular.scala.html -------------------------------------------------------------------------------- /onward/app/views/richLink.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/views/richLink.scala.html -------------------------------------------------------------------------------- /onward/app/views/topStories.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/app/views/topStories.scala.html -------------------------------------------------------------------------------- /onward/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/conf/application.conf -------------------------------------------------------------------------------- /onward/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/conf/logback.xml -------------------------------------------------------------------------------- /onward/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/conf/routes -------------------------------------------------------------------------------- /onward/test/MostPopularFeatureTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/test/MostPopularFeatureTest.scala -------------------------------------------------------------------------------- /onward/test/MostViewedVideoTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/test/MostViewedVideoTest.scala -------------------------------------------------------------------------------- /onward/test/RelatedControllerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/test/RelatedControllerTest.scala -------------------------------------------------------------------------------- /onward/test/RelatedFeatureTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/test/RelatedFeatureTest.scala -------------------------------------------------------------------------------- /onward/test/RichLinkControllerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/test/RichLinkControllerTest.scala -------------------------------------------------------------------------------- /onward/test/SeriesControllerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/test/SeriesControllerTest.scala -------------------------------------------------------------------------------- /onward/test/TestAppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/test/TestAppLoader.scala -------------------------------------------------------------------------------- /onward/test/VideoInSectionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/test/VideoInSectionTest.scala -------------------------------------------------------------------------------- /onward/test/business/ModelsTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/test/business/ModelsTest.scala -------------------------------------------------------------------------------- /onward/test/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/onward/test/package.scala -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/package.json -------------------------------------------------------------------------------- /preview/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/preview/app/AppLoader.scala -------------------------------------------------------------------------------- /preview/app/PreviewErrorHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/preview/app/PreviewErrorHandler.scala -------------------------------------------------------------------------------- /preview/app/views/not_found.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/preview/app/views/not_found.scala.html -------------------------------------------------------------------------------- /preview/app/views/showcase.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/preview/app/views/showcase.scala.html -------------------------------------------------------------------------------- /preview/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/preview/conf/application.conf -------------------------------------------------------------------------------- /preview/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/preview/conf/logback.xml -------------------------------------------------------------------------------- /preview/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/preview/conf/routes -------------------------------------------------------------------------------- /preview/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/preview/public/css/style.css -------------------------------------------------------------------------------- /project/Dependencies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/project/Dependencies.scala -------------------------------------------------------------------------------- /project/ProjectSettings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/project/ProjectSettings.scala -------------------------------------------------------------------------------- /project/VersionInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/project/VersionInfo.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.11.7 2 | -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /prout/seen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/prout/seen.md -------------------------------------------------------------------------------- /riff-raff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/riff-raff.yaml -------------------------------------------------------------------------------- /rss/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/rss/app/AppLoader.scala -------------------------------------------------------------------------------- /rss/app/controllers/HealthCheck.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/rss/app/controllers/HealthCheck.scala -------------------------------------------------------------------------------- /rss/app/controllers/RssController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/rss/app/controllers/RssController.scala -------------------------------------------------------------------------------- /rss/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/rss/conf/application.conf -------------------------------------------------------------------------------- /rss/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/rss/conf/logback.xml -------------------------------------------------------------------------------- /rss/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/rss/conf/routes -------------------------------------------------------------------------------- /sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sbt -------------------------------------------------------------------------------- /scala-steward.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/scala-steward.conf -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/setup.sh -------------------------------------------------------------------------------- /sport/app/AppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/AppLoader.scala -------------------------------------------------------------------------------- /sport/app/conf/SportConfiguration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/conf/SportConfiguration.scala -------------------------------------------------------------------------------- /sport/app/cricket/conf/context.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/cricket/conf/context.scala -------------------------------------------------------------------------------- /sport/app/football/conf/context.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/football/conf/context.scala -------------------------------------------------------------------------------- /sport/app/football/feed/agent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/football/feed/agent.scala -------------------------------------------------------------------------------- /sport/app/football/model/TeamMap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/football/model/TeamMap.scala -------------------------------------------------------------------------------- /sport/app/football/model/matches.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/football/model/matches.scala -------------------------------------------------------------------------------- /sport/app/football/model/model.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/football/model/model.scala -------------------------------------------------------------------------------- /sport/app/football/views/support.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/football/views/support.scala -------------------------------------------------------------------------------- /sport/app/rugby/feed/CapiFeed.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/rugby/feed/CapiFeed.scala -------------------------------------------------------------------------------- /sport/app/rugby/feed/PAFeed.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/rugby/feed/PAFeed.scala -------------------------------------------------------------------------------- /sport/app/rugby/jobs/RugbyStatsJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/rugby/jobs/RugbyStatsJob.scala -------------------------------------------------------------------------------- /sport/app/rugby/model/paRugby.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/rugby/model/paRugby.scala -------------------------------------------------------------------------------- /sport/app/rugby/model/rugby.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/app/rugby/model/rugby.scala -------------------------------------------------------------------------------- /sport/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/conf/application.conf -------------------------------------------------------------------------------- /sport/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/conf/logback.xml -------------------------------------------------------------------------------- /sport/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/conf/routes -------------------------------------------------------------------------------- /sport/test/CompetitionAgentTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/test/CompetitionAgentTest.scala -------------------------------------------------------------------------------- /sport/test/FootballTestData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/test/FootballTestData.scala -------------------------------------------------------------------------------- /sport/test/LeagueTablesFeatureTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/test/LeagueTablesFeatureTest.scala -------------------------------------------------------------------------------- /sport/test/MatchFeatureTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/test/MatchFeatureTest.scala -------------------------------------------------------------------------------- /sport/test/TestAppLoader.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/test/TestAppLoader.scala -------------------------------------------------------------------------------- /sport/test/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/test/package.scala -------------------------------------------------------------------------------- /sport/test/rugby/feed/PAFeedTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/sport/test/rugby/feed/PAFeedTest.scala -------------------------------------------------------------------------------- /static/public/images/badges/100days.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/badges/100days.svg -------------------------------------------------------------------------------- /static/public/images/badges/calock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/badges/calock.svg -------------------------------------------------------------------------------- /static/public/images/badges/eohk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/badges/eohk.svg -------------------------------------------------------------------------------- /static/public/images/badges/midterm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/badges/midterm.svg -------------------------------------------------------------------------------- /static/public/images/badges/nhs-70.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/badges/nhs-70.svg -------------------------------------------------------------------------------- /static/public/images/badges/pp_web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/badges/pp_web.svg -------------------------------------------------------------------------------- /static/public/images/badges/uk-debt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/badges/uk-debt.svg -------------------------------------------------------------------------------- /static/public/images/email/grey-g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/email/grey-g.png -------------------------------------------------------------------------------- /static/public/images/email/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/email/quote.png -------------------------------------------------------------------------------- /static/public/images/fallback-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/fallback-logo.png -------------------------------------------------------------------------------- /static/public/images/favicons/32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/favicons/32x32.ico -------------------------------------------------------------------------------- /static/public/images/favicons/57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/favicons/57x57.png -------------------------------------------------------------------------------- /static/public/images/favicons/72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/favicons/72x72.png -------------------------------------------------------------------------------- /static/public/images/media-holding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/media-holding.jpg -------------------------------------------------------------------------------- /static/public/images/no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/no-image.png -------------------------------------------------------------------------------- /static/public/images/twitter/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/twitter/bird.png -------------------------------------------------------------------------------- /static/public/images/twitter/bird.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/public/images/twitter/bird.svg -------------------------------------------------------------------------------- /static/src/images/global/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/images/global/back.svg -------------------------------------------------------------------------------- /static/src/images/global/card-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/images/global/card-red.svg -------------------------------------------------------------------------------- /static/src/images/global/card-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/images/global/card-yellow.svg -------------------------------------------------------------------------------- /static/src/images/global/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/images/global/left-arrow.svg -------------------------------------------------------------------------------- /static/src/images/global/recommend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/images/global/recommend.svg -------------------------------------------------------------------------------- /static/src/images/global/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/images/global/right-arrow.svg -------------------------------------------------------------------------------- /static/src/images/membership/visa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/images/membership/visa.svg -------------------------------------------------------------------------------- /static/src/images/video/embed--black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/images/video/embed--black.svg -------------------------------------------------------------------------------- /static/src/images/video/embed--white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/images/video/embed--white.svg -------------------------------------------------------------------------------- /static/src/images/video/expand-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/images/video/expand-black.svg -------------------------------------------------------------------------------- /static/src/images/video/expand-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/images/video/expand-white.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/arrow-up.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/arrow.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/bookmark.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/camera.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/clock.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/close.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/cross.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/cursor.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/device.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/device.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/envelope.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/fb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/fb.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/gifting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/gifting.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/home.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/log-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/log-off.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/mail.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/minus.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/pin.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/play.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/plus.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/profile.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/quote.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/refresh.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/reply.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/share.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/star.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/thumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/thumb.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/tick.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/triangle.svg -------------------------------------------------------------------------------- /static/src/inline-svgs/icon/world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/inline-svgs/icon/world.svg -------------------------------------------------------------------------------- /static/src/javascripts/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/.eslintrc.js -------------------------------------------------------------------------------- /static/src/javascripts/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/boot.js -------------------------------------------------------------------------------- /static/src/javascripts/bootstraps/youtube-embed.ts: -------------------------------------------------------------------------------- 1 | import { init } from 'bootstraps/enhanced/youtube'; 2 | 3 | init(); 4 | -------------------------------------------------------------------------------- /static/src/javascripts/lib/$$.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/$$.spec.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/$$.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/$$.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/$.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/$.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/$.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/$.spec.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/comready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/comready.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/config.d.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/config.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/cookies.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/detect.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/easing.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/events.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/fetch-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/fetch-json.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/formatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/formatters.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/fsm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/fsm.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/mediator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/mediator.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/noop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/noop.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/page.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/page.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/page.spec.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/partition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/partition.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/raven.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/raven.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/robust.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/robust.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/scroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/scroller.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/time-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/time-utils.ts -------------------------------------------------------------------------------- /static/src/javascripts/lib/timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/timeout.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/url.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/url.spec.js -------------------------------------------------------------------------------- /static/src/javascripts/lib/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/lib/url.ts -------------------------------------------------------------------------------- /static/src/javascripts/polyfill.io.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/polyfill.io.txt -------------------------------------------------------------------------------- /static/src/javascripts/projects/common/modules/analytics/beacon.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/src/javascripts/types/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/types/dates.ts -------------------------------------------------------------------------------- /static/src/javascripts/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/types/global.d.ts -------------------------------------------------------------------------------- /static/src/javascripts/types/ias.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/types/ias.d.ts -------------------------------------------------------------------------------- /static/src/javascripts/types/ophan.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/types/ophan.d.ts -------------------------------------------------------------------------------- /static/src/javascripts/types/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/javascripts/types/utils.d.ts -------------------------------------------------------------------------------- /static/src/stylesheets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/README.md -------------------------------------------------------------------------------- /static/src/stylesheets/_head.common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/_head.common.scss -------------------------------------------------------------------------------- /static/src/stylesheets/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/_mixins.scss -------------------------------------------------------------------------------- /static/src/stylesheets/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/_vars.scss -------------------------------------------------------------------------------- /static/src/stylesheets/admin/_drama.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/admin/_drama.scss -------------------------------------------------------------------------------- /static/src/stylesheets/amp/_ads.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/amp/_ads.scss -------------------------------------------------------------------------------- /static/src/stylesheets/amp/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/amp/_buttons.scss -------------------------------------------------------------------------------- /static/src/stylesheets/amp/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/amp/_content.scss -------------------------------------------------------------------------------- /static/src/stylesheets/amp/_facia.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/amp/_facia.scss -------------------------------------------------------------------------------- /static/src/stylesheets/amp/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/amp/_fonts.scss -------------------------------------------------------------------------------- /static/src/stylesheets/amp/_geo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/amp/_geo.scss -------------------------------------------------------------------------------- /static/src/stylesheets/amp/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/amp/_helpers.scss -------------------------------------------------------------------------------- /static/src/stylesheets/amp/_hosted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/amp/_hosted.scss -------------------------------------------------------------------------------- /static/src/stylesheets/amp/_social.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/amp/_social.scss -------------------------------------------------------------------------------- /static/src/stylesheets/amp/_submeta.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/amp/_submeta.scss -------------------------------------------------------------------------------- /static/src/stylesheets/amp/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/amp/_type.scss -------------------------------------------------------------------------------- /static/src/stylesheets/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/base/_base.scss -------------------------------------------------------------------------------- /static/src/stylesheets/base/_iframe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/base/_iframe.scss -------------------------------------------------------------------------------- /static/src/stylesheets/base/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/base/_links.scss -------------------------------------------------------------------------------- /static/src/stylesheets/base/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/base/_lists.scss -------------------------------------------------------------------------------- /static/src/stylesheets/base/_state.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/base/_state.scss -------------------------------------------------------------------------------- /static/src/stylesheets/base/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/base/_tables.scss -------------------------------------------------------------------------------- /static/src/stylesheets/base/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/base/_type.scss -------------------------------------------------------------------------------- /static/src/stylesheets/email/_front.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/email/_front.scss -------------------------------------------------------------------------------- /static/src/stylesheets/email/_tones.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/email/_tones.scss -------------------------------------------------------------------------------- /static/src/stylesheets/email/_util.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/email/_util.scss -------------------------------------------------------------------------------- /static/src/stylesheets/head.admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/head.admin.scss -------------------------------------------------------------------------------- /static/src/stylesheets/head.amp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/head.amp.scss -------------------------------------------------------------------------------- /static/src/stylesheets/head.atom-chart.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/src/stylesheets/head.atom-guide.scss: -------------------------------------------------------------------------------- 1 | @import 'head.atom-snippets'; 2 | -------------------------------------------------------------------------------- /static/src/stylesheets/head.atom-interactive.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/src/stylesheets/head.atom-profile.scss: -------------------------------------------------------------------------------- 1 | @import 'head.atom-snippets'; 2 | -------------------------------------------------------------------------------- /static/src/stylesheets/head.atom-qanda.scss: -------------------------------------------------------------------------------- 1 | @import 'head.atom-snippets'; 2 | -------------------------------------------------------------------------------- /static/src/stylesheets/head.atom-timeline.scss: -------------------------------------------------------------------------------- 1 | @import 'head.atom-snippets'; 2 | -------------------------------------------------------------------------------- /static/src/stylesheets/head.email-article.scss: -------------------------------------------------------------------------------- 1 | @import 'email/_article'; 2 | -------------------------------------------------------------------------------- /static/src/stylesheets/head.email-front.scss: -------------------------------------------------------------------------------- 1 | @import 'email/_front'; 2 | -------------------------------------------------------------------------------- /static/src/stylesheets/head.index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/head.index.scss -------------------------------------------------------------------------------- /static/src/stylesheets/head.signup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/head.signup.scss -------------------------------------------------------------------------------- /static/src/stylesheets/head.survey.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/head.survey.scss -------------------------------------------------------------------------------- /static/src/stylesheets/media-player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/media-player.scss -------------------------------------------------------------------------------- /static/src/stylesheets/module/_breadcrumbs.scss: -------------------------------------------------------------------------------- 1 | .breadcrumb { 2 | text-transform: lowercase; 3 | } 4 | -------------------------------------------------------------------------------- /static/src/stylesheets/module/_cta.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/module/_cta.scss -------------------------------------------------------------------------------- /static/src/stylesheets/module/signup/_signup.scss: -------------------------------------------------------------------------------- 1 | 2 | @import '_newsletters'; 3 | -------------------------------------------------------------------------------- /static/src/stylesheets/pasteup/_src.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/pasteup/_src.scss -------------------------------------------------------------------------------- /static/src/stylesheets/pasteup/palette/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/src/stylesheets/pasteup/palette/_src.scss: -------------------------------------------------------------------------------- 1 | // Tumbleweed 2 | -------------------------------------------------------------------------------- /static/src/stylesheets/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/src/stylesheets/print.scss -------------------------------------------------------------------------------- /static/vendor/data/amp-iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/vendor/data/amp-iframe.html -------------------------------------------------------------------------------- /static/vendor/data/amp-iframe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/vendor/data/amp-iframe.md -------------------------------------------------------------------------------- /static/vendor/javascripts/omsdk-v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/static/vendor/javascripts/omsdk-v1.js -------------------------------------------------------------------------------- /tools/__tasks__/compile/conf/clean.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/conf/clean.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/conf/copy.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/conf/copy.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/conf/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/conf/index.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/css/clean.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/css/clean.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/css/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/css/index.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/css/mkdir.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/css/mkdir.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/css/sass.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/css/sass.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/data/amp.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/data/amp.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/data/clean.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/data/clean.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/data/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/data/index.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/hash/clean.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/hash/clean.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/hash/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/hash/index.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/images/clean.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/images/clean.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/images/copy.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/images/copy.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/images/icons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/images/icons.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/images/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/images/index.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/images/svg.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/images/svg.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/index.dev.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/index.dev.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/index.mjs -------------------------------------------------------------------------------- /tools/__tasks__/compile/index.watch.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/compile/index.watch.mjs -------------------------------------------------------------------------------- /tools/__tasks__/config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/config.mjs -------------------------------------------------------------------------------- /tools/__tasks__/lib/check-network.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/lib/check-network.mjs -------------------------------------------------------------------------------- /tools/__tasks__/lib/get-changed-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/lib/get-changed-files.js -------------------------------------------------------------------------------- /tools/__tasks__/pre-push.mjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/__tasks__/test/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/test/index.mjs -------------------------------------------------------------------------------- /tools/__tasks__/validate-head/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/validate-head/index.mjs -------------------------------------------------------------------------------- /tools/__tasks__/validate-head/sass.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/validate-head/sass.mjs -------------------------------------------------------------------------------- /tools/__tasks__/validate-head/scala.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/validate-head/scala.mjs -------------------------------------------------------------------------------- /tools/__tasks__/validate/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/validate/index.mjs -------------------------------------------------------------------------------- /tools/__tasks__/validate/javascript.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/validate/javascript.mjs -------------------------------------------------------------------------------- /tools/__tasks__/validate/sass.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/validate/sass.mjs -------------------------------------------------------------------------------- /tools/__tasks__/validate/scalafmt.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/validate/scalafmt.mjs -------------------------------------------------------------------------------- /tools/__tasks__/validate/typescript.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/__tasks__/validate/typescript.mjs -------------------------------------------------------------------------------- /tools/asset-monitor/cloudwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/asset-monitor/cloudwatch.js -------------------------------------------------------------------------------- /tools/asset-monitor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/asset-monitor/index.js -------------------------------------------------------------------------------- /tools/check-node-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/check-node-env.js -------------------------------------------------------------------------------- /tools/clean-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/clean-project -------------------------------------------------------------------------------- /tools/compile-css.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/compile-css.mjs -------------------------------------------------------------------------------- /tools/sync-githooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/sync-githooks.js -------------------------------------------------------------------------------- /tools/task-runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/task-runner/README.md -------------------------------------------------------------------------------- /tools/task-runner/runner.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/task-runner/runner.mjs -------------------------------------------------------------------------------- /tools/webpack-progress-reporter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tools/webpack-progress-reporter.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/values.md -------------------------------------------------------------------------------- /variables: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.atoms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/webpack.config.atoms.js -------------------------------------------------------------------------------- /webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/webpack.config.dev.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/webpack.config.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardian/frontend/HEAD/yarn.lock --------------------------------------------------------------------------------