└── src ├── BundestagMine ├── wwwroot │ ├── js │ │ ├── cookieconsent-1.3.2 │ │ │ ├── docs_src │ │ │ │ ├── .nvmrc │ │ │ │ └── src │ │ │ │ │ └── assets │ │ │ │ │ ├── plugin │ │ │ │ │ └── thesaas │ │ │ │ │ │ ├── scss │ │ │ │ │ │ ├── _theme.scss │ │ │ │ │ │ ├── uikit │ │ │ │ │ │ │ ├── _spinner.scss │ │ │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ │ │ ├── _progress.scss │ │ │ │ │ │ │ ├── _popover.scss │ │ │ │ │ │ │ ├── _alert.scss │ │ │ │ │ │ │ └── _pagination.scss │ │ │ │ │ │ ├── vendor │ │ │ │ │ │ │ ├── _countup.scss │ │ │ │ │ │ │ ├── _aos.scss │ │ │ │ │ │ │ ├── _jarallax.scss │ │ │ │ │ │ │ ├── _constellation.scss │ │ │ │ │ │ │ ├── _photoswipe.scss │ │ │ │ │ │ │ └── _typedjs.scss │ │ │ │ │ │ ├── utility │ │ │ │ │ │ │ └── _no.scss │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── _sticky.scss │ │ │ │ │ │ │ └── _footer.scss │ │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ │ ├── mixins │ │ │ │ │ │ │ ├── _form.scss │ │ │ │ │ │ │ └── _button.scss │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ └── _input-border.scss │ │ │ │ │ │ ├── loaders │ │ │ │ │ │ │ └── core.scss │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ ├── _media.scss │ │ │ │ │ │ │ └── _code.scss │ │ │ │ │ │ ├── block │ │ │ │ │ │ │ └── _partner.scss │ │ │ │ │ │ └── _functions.scss │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── section.js │ │ │ │ │ │ └── drawer.js │ │ │ │ │ │ └── vendors │ │ │ │ │ │ └── lity.js │ │ │ │ │ ├── img │ │ │ │ │ ├── bg │ │ │ │ │ │ ├── 01.jpg │ │ │ │ │ │ ├── 02.jpg │ │ │ │ │ │ └── logo-logo.png │ │ │ │ │ ├── og-img.jpg │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── logo-dark.png │ │ │ │ │ ├── logo-light.png │ │ │ │ │ ├── app │ │ │ │ │ │ ├── map-marker.png │ │ │ │ │ │ ├── badge-apple.png │ │ │ │ │ │ └── badge-google.png │ │ │ │ │ └── apple-touch-icon.png │ │ │ │ │ ├── fonts │ │ │ │ │ ├── et-line.eot │ │ │ │ │ ├── et-line.ttf │ │ │ │ │ ├── themify.eot │ │ │ │ │ ├── themify.ttf │ │ │ │ │ ├── et-line.woff │ │ │ │ │ ├── themify.woff │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ └── js │ │ │ │ │ └── src │ │ │ │ │ └── script.js │ │ │ ├── .gitignore │ │ │ ├── cc_modal_75.png │ │ │ ├── diginomica-24.png │ │ │ ├── docs │ │ │ │ └── assets │ │ │ │ │ ├── img │ │ │ │ │ ├── bg │ │ │ │ │ │ ├── 01.jpg │ │ │ │ │ │ ├── 02.jpg │ │ │ │ │ │ └── logo-logo.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── og-img.jpg │ │ │ │ │ ├── logo-dark.png │ │ │ │ │ ├── logo-light.png │ │ │ │ │ ├── app │ │ │ │ │ │ ├── map-marker.png │ │ │ │ │ │ ├── badge-apple.png │ │ │ │ │ │ └── badge-google.png │ │ │ │ │ └── apple-touch-icon.png │ │ │ │ │ └── fonts │ │ │ │ │ ├── et-line.eot │ │ │ │ │ ├── et-line.ttf │ │ │ │ │ ├── themify.eot │ │ │ │ │ ├── themify.ttf │ │ │ │ │ ├── et-line.woff │ │ │ │ │ ├── themify.woff │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── src │ │ │ │ └── index.js │ │ │ └── .babelrc │ │ ├── site.js │ │ ├── REST-dataaccess.js │ │ └── dashboard-create.js │ ├── img │ │ ├── Me.jpg │ │ ├── jurix.png │ │ ├── Me_zoomed.jpg │ │ ├── Unbekannt.jpg │ │ ├── file-icon.png │ │ ├── jurix_logo.png │ │ ├── chart-beispiel.png │ │ ├── ttl-logo-blau.png │ │ ├── ttl-logo-white.png │ │ ├── bundestag-sitze.jpg │ │ ├── chart-beispiel-2.png │ │ ├── chart-beispiel-3.png │ │ ├── chart-beispiel-4.png │ │ ├── chart-beispiel-5.png │ │ ├── logo │ │ │ ├── VecTop_Logo.png │ │ │ ├── Logo_weiß_transparent_RGB_534x512.png │ │ │ ├── Logo_nur weiß_transparent_RGB_534x512.png │ │ │ ├── Logo_schwarz_transparent_RGB_534x512.png │ │ │ ├── Logo_weiss_transparent_RGB_1069x1024.png │ │ │ ├── Logo_nur weiß_transparent_RGB_1069x1024.png │ │ │ ├── Logo_schwarz_transparent_RGB_1069x1024.png │ │ │ ├── Logo_nur schwarz_transparent_RGB_1069x1024.png │ │ │ ├── Logo_nur schwarz_transparent_RGB_534x512.png │ │ │ ├── Logo mit Schriftzug_weiß_transparent_RGB_1024x473.png │ │ │ └── Logo mit Schriftzug_schwarz_transparent_RGB_1024x473.png │ │ ├── portrait-beispiel.jpg │ │ ├── ARTLAS │ │ │ ├── artlas-logo.png │ │ │ ├── Atlas_transparent.png │ │ │ ├── artlas-logo-gold.png │ │ │ ├── Atlas_transparent_klein.png │ │ │ └── ARTLAS Designs_Banner_2008x1300_72ppi.png │ │ ├── daily-paper-example.png │ │ ├── deutscher-bundestag.jpg │ │ ├── portrait-beispiel-2.jpg │ │ ├── deutscher-bundesadler.jpg │ │ ├── duetscher-adler-flagge.png │ │ ├── deutscher-bundestag-adler.png │ │ └── deutscher-bundestag-adler-weiß.png │ ├── favicon.ico │ ├── favicon-old.ico │ ├── files │ │ ├── VecTop.pdf │ │ ├── Download_Center_Doku.pdf │ │ └── Chancen_und_Risiken_von Text_Summarization.pdf │ ├── fonts │ │ ├── mukta │ │ │ ├── Mukta-Bold.ttf │ │ │ ├── Mukta-Light.ttf │ │ │ ├── Mukta-Medium.ttf │ │ │ ├── Mukta-Regular.ttf │ │ │ ├── Mukta-SemiBold.ttf │ │ │ ├── Mukta-ExtraBold.ttf │ │ │ └── Mukta-ExtraLight.ttf │ │ ├── raleway │ │ │ ├── static │ │ │ │ ├── Raleway-Bold.ttf │ │ │ │ ├── Raleway-Thin.ttf │ │ │ │ ├── Raleway-Black.ttf │ │ │ │ ├── Raleway-Italic.ttf │ │ │ │ ├── Raleway-Light.ttf │ │ │ │ ├── Raleway-Medium.ttf │ │ │ │ ├── Raleway-Regular.ttf │ │ │ │ ├── Raleway-ExtraBold.ttf │ │ │ │ ├── Raleway-SemiBold.ttf │ │ │ │ ├── Raleway-BlackItalic.ttf │ │ │ │ ├── Raleway-BoldItalic.ttf │ │ │ │ ├── Raleway-ExtraLight.ttf │ │ │ │ ├── Raleway-LightItalic.ttf │ │ │ │ ├── Raleway-MediumItalic.ttf │ │ │ │ ├── Raleway-ThinItalic.ttf │ │ │ │ ├── Raleway-SemiBoldItalic.ttf │ │ │ │ ├── Raleway-ExtraBoldItalic.ttf │ │ │ │ └── Raleway-ExtraLightItalic.ttf │ │ │ ├── Raleway-VariableFont_wght.ttf │ │ │ └── Raleway-Italic-VariableFont_wght.ttf │ │ ├── imb_plex_sans │ │ │ ├── IBMPlexSans-Bold.ttf │ │ │ ├── IBMPlexSans-Thin.ttf │ │ │ ├── IBMPlexSans-Italic.ttf │ │ │ ├── IBMPlexSans-Light.ttf │ │ │ ├── IBMPlexSans-Medium.ttf │ │ │ ├── IBMPlexSans-Regular.ttf │ │ │ ├── IBMPlexSans-SemiBold.ttf │ │ │ ├── IBMPlexSans-BoldItalic.ttf │ │ │ ├── IBMPlexSans-ExtraLight.ttf │ │ │ ├── IBMPlexSans-LightItalic.ttf │ │ │ ├── IBMPlexSans-ThinItalic.ttf │ │ │ ├── IBMPlexSans-MediumItalic.ttf │ │ │ ├── IBMPlexSans-SemiBoldItalic.ttf │ │ │ └── IBMPlexSans-ExtraLightItalic.ttf │ │ ├── montreal │ │ │ ├── PPNeueMontreal-Bold.otf │ │ │ ├── PPNeueMontreal-Book.otf │ │ │ ├── PPNeueMontreal-Italic.otf │ │ │ ├── PPNeueMontreal-Medium.otf │ │ │ ├── PPNeueMontreal-Thin.otf │ │ │ └── PPNeueMontreal-SemiBolditalic.otf │ │ ├── josefin_sans │ │ │ ├── static │ │ │ │ ├── JosefinSans-Bold.ttf │ │ │ │ ├── JosefinSans-Light.ttf │ │ │ │ ├── JosefinSans-Thin.ttf │ │ │ │ ├── JosefinSans-Italic.ttf │ │ │ │ ├── JosefinSans-Medium.ttf │ │ │ │ ├── JosefinSans-Regular.ttf │ │ │ │ ├── JosefinSans-SemiBold.ttf │ │ │ │ ├── JosefinSans-BoldItalic.ttf │ │ │ │ ├── JosefinSans-ExtraLight.ttf │ │ │ │ ├── JosefinSans-ThinItalic.ttf │ │ │ │ ├── JosefinSans-LightItalic.ttf │ │ │ │ ├── JosefinSans-MediumItalic.ttf │ │ │ │ ├── JosefinSans-SemiBoldItalic.ttf │ │ │ │ └── JosefinSans-ExtraLightItalic.ttf │ │ │ ├── JosefinSans-VariableFont_wght.ttf │ │ │ └── JosefinSans-Italic-VariableFont_wght.ttf │ │ └── playfair │ │ │ ├── static │ │ │ ├── PlayfairDisplay-Black.ttf │ │ │ ├── PlayfairDisplay-Bold.ttf │ │ │ ├── PlayfairDisplay-Italic.ttf │ │ │ ├── PlayfairDisplay-Medium.ttf │ │ │ ├── PlayfairDisplay-Regular.ttf │ │ │ ├── PlayfairDisplay-SemiBold.ttf │ │ │ ├── PlayfairDisplay-BoldItalic.ttf │ │ │ ├── PlayfairDisplay-ExtraBold.ttf │ │ │ ├── PlayfairDisplay-BlackItalic.ttf │ │ │ ├── PlayfairDisplay-MediumItalic.ttf │ │ │ ├── PlayfairDisplay-ExtraBoldItalic.ttf │ │ │ └── PlayfairDisplay-SemiBoldItalic.ttf │ │ │ ├── PlayfairDisplay-VariableFont_wght.ttf │ │ │ └── PlayfairDisplay-Italic-VariableFont_wght.ttf │ ├── videos │ │ ├── Thumbnail_Video.png │ │ ├── Thumbnail_Video_2.png │ │ └── Thumbnail_Video_3.png │ ├── lib │ │ ├── datatables │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ │ └── dataTables.dataTables.min.js │ │ └── fontawesome-free │ │ │ ├── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ └── fa-solid-900.woff2 │ │ │ ├── less │ │ │ ├── _fixed-width.less │ │ │ ├── _screen-reader.less │ │ │ ├── v4-shims.less │ │ │ ├── _core.less │ │ │ ├── _animated.less │ │ │ └── _list.less │ │ │ ├── scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── v4-shims.scss │ │ │ ├── _animated.scss │ │ │ ├── _list.scss │ │ │ ├── _core.scss │ │ │ └── _larger.scss │ │ │ ├── attribution.js │ │ │ └── svgs │ │ │ ├── solid │ │ │ ├── square-full.svg │ │ │ ├── egg.svg │ │ │ ├── circle.svg │ │ │ ├── bookmark.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-up.svg │ │ │ ├── square.svg │ │ │ ├── stop.svg │ │ │ ├── play.svg │ │ │ ├── minus.svg │ │ │ ├── volume-off.svg │ │ │ ├── window-minimize.svg │ │ │ ├── caret-down.svg │ │ │ ├── cheese.svg │ │ │ ├── folder.svg │ │ │ ├── ice-cream.svg │ │ │ ├── mouse.svg │ │ │ ├── star-half.svg │ │ │ ├── comment-alt.svg │ │ │ ├── sd-card.svg │ │ │ ├── adjust.svg │ │ │ ├── caret-right.svg │ │ │ ├── genderless.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── bread-slice.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-up.svg │ │ │ ├── columns.svg │ │ │ ├── map-marker.svg │ │ │ ├── location-arrow.svg │ │ │ ├── border-all.svg │ │ │ ├── dot-circle.svg │ │ │ ├── stop-circle.svg │ │ │ ├── window-maximize.svg │ │ │ ├── minus-circle.svg │ │ │ ├── mobile.svg │ │ │ ├── tablet.svg │ │ │ ├── voicemail.svg │ │ │ ├── file.svg │ │ │ ├── paragraph.svg │ │ │ ├── play-circle.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── slash.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── dice-one.svg │ │ │ ├── sticky-note.svg │ │ │ ├── toggle-on.svg │ │ │ ├── sort.svg │ │ │ ├── burn.svg │ │ │ ├── filter.svg │ │ │ ├── grip-lines.svg │ │ │ ├── table.svg │ │ │ ├── bolt.svg │ │ │ ├── chalkboard.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── heart.svg │ │ │ ├── italic.svg │ │ │ ├── lock.svg │ │ │ ├── minus-square.svg │ │ │ ├── seedling.svg │ │ │ ├── tv.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── glass-martini.svg │ │ │ ├── pause.svg │ │ │ ├── battery-empty.svg │ │ │ ├── meh-blank.svg │ │ │ ├── paper-plane.svg │ │ │ ├── qrcode.svg │ │ │ ├── box.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── clock.svg │ │ │ ├── comment.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── forward.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── sign.svg │ │ │ ├── suitcase.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── backward.svg │ │ │ ├── desktop.svg │ │ │ ├── equals.svg │ │ │ ├── neuter.svg │ │ │ ├── cross.svg │ │ │ ├── map.svg │ │ │ ├── trash.svg │ │ │ ├── video.svg │ │ │ ├── coffee.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── plug.svg │ │ │ ├── plus.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── chart-area.svg │ │ │ ├── chevron-left.svg │ │ │ ├── clone.svg │ │ │ ├── folder-minus.svg │ │ │ ├── hard-hat.svg │ │ │ ├── heart-broken.svg │ │ │ ├── icicles.svg │ │ │ ├── industry.svg │ │ │ ├── music.svg │ │ │ └── pen.svg │ │ │ ├── brands │ │ │ ├── houzz.svg │ │ │ ├── flipboard.svg │ │ │ ├── unsplash.svg │ │ │ ├── yandex-international.svg │ │ │ ├── ethereum.svg │ │ │ ├── bandcamp.svg │ │ │ ├── black-tie.svg │ │ │ ├── strava.svg │ │ │ ├── gitter.svg │ │ │ ├── microsoft.svg │ │ │ ├── vuejs.svg │ │ │ ├── css3.svg │ │ │ ├── think-peaks.svg │ │ │ ├── windows.svg │ │ │ ├── y-combinator.svg │ │ │ ├── google-drive.svg │ │ │ ├── mix.svg │ │ │ ├── uikit.svg │ │ │ ├── patreon.svg │ │ │ ├── viacoin.svg │ │ │ ├── angular.svg │ │ │ ├── modx.svg │ │ │ ├── npm.svg │ │ │ ├── deviantart.svg │ │ │ ├── facebook-f.svg │ │ │ ├── servicestack.svg │ │ │ ├── adn.svg │ │ │ ├── dyalog.svg │ │ │ ├── figma.svg │ │ │ ├── instalod.svg │ │ │ ├── dochub.svg │ │ │ ├── hacker-news.svg │ │ │ ├── firstdraft.svg │ │ │ ├── artstation.svg │ │ │ ├── html5.svg │ │ │ ├── magento.svg │ │ │ ├── twitch.svg │ │ │ ├── yahoo.svg │ │ │ ├── yandex.svg │ │ │ ├── autoprefixer.svg │ │ │ ├── monero.svg │ │ │ ├── cloudsmith.svg │ │ │ ├── jira.svg │ │ │ ├── tiktok.svg │ │ │ ├── buysellads.svg │ │ │ ├── maxcdn.svg │ │ │ ├── bitbucket.svg │ │ │ ├── stack-exchange.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── dropbox.svg │ │ │ ├── css3-alt.svg │ │ │ ├── kaggle.svg │ │ │ └── dashcube.svg │ │ │ └── regular │ │ │ ├── window-minimize.svg │ │ │ ├── circle.svg │ │ │ ├── bookmark.svg │ │ │ ├── window-maximize.svg │ │ │ ├── square.svg │ │ │ ├── star-half.svg │ │ │ ├── file.svg │ │ │ └── folder.svg │ └── css │ │ └── import-log.css ├── Pages │ ├── _ViewStart.cshtml │ ├── Shared │ │ ├── Dashboard │ │ │ └── _NamedEntityWithSentimentView.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── ResearchCenter │ │ ├── VecTop.cshtml.cs │ │ ├── WebScraper.cshtml.cs │ │ ├── BasicAnnotations.cshtml.cs │ │ ├── AutomaticTextSummarization.cshtml.cs │ │ └── Index.cshtml.cs ├── Areas │ └── Identity │ │ └── Pages │ │ ├── Account │ │ ├── _ViewImports.cshtml │ │ ├── AccessDenied.cshtml │ │ ├── AccessDenied.cshtml.cs │ │ └── _StatusMessage.cshtml │ │ ├── _ViewStart.cshtml │ │ └── _ViewImports.cshtml ├── Startup.cs ├── Properties │ ├── serviceDependencies.json │ └── serviceDependencies.local.json ├── libman.json ├── .config │ └── dotnet-tools.json ├── Extensions │ └── StringExtensions.cs └── appsettings.json ├── .editorconfig ├── BundestagMine.Models ├── BundestagMine.Models.csproj └── Database │ ├── DBEntity.cs │ ├── MongoDB │ ├── SpeechSegment.cs │ ├── Sentiment.cs │ ├── CategoryCoveredTagged.cs │ ├── NamedEntity.cs │ └── CommentNetworkNode.cs │ └── Poll.cs ├── BundestagMine.Logic ├── ViewModels │ ├── ReportPartyViewModel.cs │ ├── ReportFractionViewModel.cs │ ├── AgendaItemViewModel.cs │ ├── PollViewModel.cs │ ├── ReportDeputyViewModel.cs │ ├── Import │ │ └── ImportedProtocolViewModel.cs │ ├── ParliamentPanorama │ │ └── CategoryViewModel.cs │ ├── SpeechCommentViewModel.cs │ └── SpeakerInspectorViewModel.cs └── HelperModels │ ├── DefaultChartModel.cs │ ├── LaTeXProtocol.cs │ └── DailyPaper │ └── NamedEntityChartData.cs ├── BundestagMine.MongoDB └── BundestagMine.MongoDB.csproj ├── BundestagMine.Utility └── BundestagMine.Utility.csproj ├── BundestagMine.Synchronisation └── Services │ └── CacheService.cs └── BundestagMine.SqlDatabase ├── appsettings.json └── Migrations └── 20220325102312_AddedAnnotationsToDb.cs /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/.nvmrc: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /src/BundestagMine/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/_theme.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/uikit/_spinner.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/uikit/_tooltip.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .cache 3 | node_modules 4 | /dist 5 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/vendor/_countup.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using BundestagMine.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /src/BundestagMine/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/Startup.cs -------------------------------------------------------------------------------- /src/BundestagMine/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | 2 | @{ 3 | Layout = "/Pages/Shared/_Layout.cshtml"; 4 | } 5 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/Me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/Me.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/BundestagMine/Pages/Shared/Dashboard/_NamedEntityWithSentimentView.cshtml: -------------------------------------------------------------------------------- 1 | @model dynamic 2 | 3 |
Hi! @Model.First().Element
-------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/favicon-old.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/favicon-old.ico -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/jurix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/jurix.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/uikit/_progress.scss: -------------------------------------------------------------------------------- 1 | 2 | .progress { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/files/VecTop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/files/VecTop.pdf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/Me_zoomed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/Me_zoomed.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/Unbekannt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/Unbekannt.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/file-icon.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/jurix_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/jurix_logo.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/chart-beispiel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/chart-beispiel.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/ttl-logo-blau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/ttl-logo-blau.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/ttl-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/ttl-logo-white.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/REST-dataaccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/REST-dataaccess.js -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/utility/_no.scss: -------------------------------------------------------------------------------- 1 | 2 | .flex-grow-0 { 3 | flex-grow: 0; 4 | } 5 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/dashboard-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/dashboard-create.js -------------------------------------------------------------------------------- /src/BundestagMine/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using BundestagMine 2 | @namespace BundestagMine.Pages 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/bundestag-sitze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/bundestag-sitze.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/chart-beispiel-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/chart-beispiel-2.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/chart-beispiel-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/chart-beispiel-3.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/chart-beispiel-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/chart-beispiel-4.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/chart-beispiel-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/chart-beispiel-5.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/logo/VecTop_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/logo/VecTop_Logo.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/portrait-beispiel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/portrait-beispiel.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/mukta/Mukta-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/mukta/Mukta-Bold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/mukta/Mukta-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/mukta/Mukta-Light.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/ARTLAS/artlas-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/ARTLAS/artlas-logo.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/daily-paper-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/daily-paper-example.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/deutscher-bundestag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/deutscher-bundestag.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/portrait-beispiel-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/portrait-beispiel-2.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/uikit/_popover.scss: -------------------------------------------------------------------------------- 1 | 2 | .popover { 3 | box-shadow: $box-shadow; 4 | } 5 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/videos/Thumbnail_Video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/videos/Thumbnail_Video.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/files/Download_Center_Doku.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/files/Download_Center_Doku.pdf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/mukta/Mukta-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/mukta/Mukta-Medium.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/mukta/Mukta-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/mukta/Mukta-Regular.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/mukta/Mukta-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/mukta/Mukta-SemiBold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/deutscher-bundesadler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/deutscher-bundesadler.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/duetscher-adler-flagge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/duetscher-adler-flagge.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/videos/Thumbnail_Video_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/videos/Thumbnail_Video_2.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/videos/Thumbnail_Video_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/videos/Thumbnail_Video_3.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/mukta/Mukta-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/mukta/Mukta-ExtraBold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/mukta/Mukta-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/mukta/Mukta-ExtraLight.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/ARTLAS/Atlas_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/ARTLAS/Atlas_transparent.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/ARTLAS/artlas-logo-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/ARTLAS/artlas-logo-gold.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/deutscher-bundestag-adler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/deutscher-bundestag-adler.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/vendor/_aos.scss: -------------------------------------------------------------------------------- 1 | 2 | // Import the plugin style. 3 | // 4 | @import "~aos/src/sass/aos"; 5 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/datatables/images/sort_both.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Bold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Thin.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Bold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Thin.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-Bold.otf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-Book.otf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-Italic.otf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-Medium.otf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-Thin.otf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Black.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Italic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Light.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Medium.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-Regular.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/ARTLAS/Atlas_transparent_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/ARTLAS/Atlas_transparent_klein.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/deutscher-bundestag-adler-weiß.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/deutscher-bundestag-adler-weiß.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/cc_modal_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/cc_modal_75.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/diginomica-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/diginomica-24.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Italic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Light.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Medium.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-ExtraBold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-SemiBold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-Regular.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/Raleway-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/Raleway-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-BlackItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-BoldItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-ExtraLight.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-LightItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-MediumItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-ThinItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/layout/_sticky.scss: -------------------------------------------------------------------------------- 1 | 2 | [data-sticky="true"].stick:not(.navbar) { 3 | position: fixed; 4 | top: 0; 5 | } 6 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-BoldItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-ExtraLight.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-LightItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-ThinItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Bold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Light.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Thin.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-Black.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-Bold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/logo/Logo_weiß_transparent_RGB_534x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/logo/Logo_weiß_transparent_RGB_534x512.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/uikit/_alert.scss: -------------------------------------------------------------------------------- 1 | 2 | .alert { 3 | border-width: 0; 4 | border-left-width: 4px; 5 | border-radius: 0; 6 | } 7 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-MediumItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Italic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Medium.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-Regular.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-SemiBolditalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/montreal/PPNeueMontreal-SemiBolditalic.otf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-Italic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-Medium.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-Regular.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-SemiBold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/Raleway-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/Raleway-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/raleway/static/Raleway-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/logo/Logo_nur weiß_transparent_RGB_534x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/logo/Logo_nur weiß_transparent_RGB_534x512.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/logo/Logo_schwarz_transparent_RGB_534x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/logo/Logo_schwarz_transparent_RGB_534x512.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/logo/Logo_weiss_transparent_RGB_1069x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/logo/Logo_weiss_transparent_RGB_1069x1024.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/bg/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/bg/01.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/bg/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/bg/02.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/favicon.ico -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/favicon.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/og-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/og-img.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/layout/_footer.scss: -------------------------------------------------------------------------------- 1 | 2 | .footer { 3 | padding: 1.25rem 0; 4 | border-top: 1px solid $color-divider-light; 5 | } 6 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/lib/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/files/Chancen_und_Risiken_von Text_Summarization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/files/Chancen_und_Risiken_von Text_Summarization.pdf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/imb_plex_sans/IBMPlexSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/JosefinSans-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/JosefinSans-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-BoldItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-ExtraLight.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-ThinItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/PlayfairDisplay-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/PlayfairDisplay-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-BoldItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-ExtraBold.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/ARTLAS/ARTLAS Designs_Banner_2008x1300_72ppi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/ARTLAS/ARTLAS Designs_Banner_2008x1300_72ppi.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/logo/Logo_nur weiß_transparent_RGB_1069x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/logo/Logo_nur weiß_transparent_RGB_1069x1024.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/logo/Logo_schwarz_transparent_RGB_1069x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/logo/Logo_schwarz_transparent_RGB_1069x1024.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/et-line.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/et-line.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/et-line.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/et-line.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/themify.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/themify.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/logo-dark.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | 2 | @import "mixins/button"; 3 | @import "mixins/form"; 4 | @import "mixins/grid"; 5 | @import "mixins/navbar"; 6 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/vendor/_jarallax.scss: -------------------------------------------------------------------------------- 1 | [data-parallax], 2 | [data-video], 3 | .jarallax { 4 | position: relative; 5 | z-index: 0; 6 | } 7 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: $fa-fw-width; 6 | } 7 | -------------------------------------------------------------------------------- /src/BundestagMine/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "mssql1": { 4 | "type": "mssql", 5 | "connectionId": "ConnectionStrings:IdentityContextConnection" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-LightItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-MediumItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-BlackItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-MediumItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/logo/Logo_nur schwarz_transparent_RGB_1069x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/logo/Logo_nur schwarz_transparent_RGB_1069x1024.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/logo/Logo_nur schwarz_transparent_RGB_534x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/logo/Logo_nur schwarz_transparent_RGB_534x512.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/et-line.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/et-line.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/themify.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/bg/logo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/bg/logo-logo.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/logo-light.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/static/PlayfairDisplay-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/app/map-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/app/map-marker.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/bg/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/bg/01.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/bg/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/bg/02.jpg -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/og-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/og-img.jpg -------------------------------------------------------------------------------- /src/BundestagMine/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "mssql1": { 4 | "type": "mssql.local", 5 | "connectionId": "ConnectionStrings:IdentityContextConnection" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/JosefinSans-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/JosefinSans-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/josefin_sans/static/JosefinSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/fonts/playfair/PlayfairDisplay-Italic-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/fonts/playfair/PlayfairDisplay-Italic-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/app/badge-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/app/badge-apple.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/app/badge-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/app/badge-google.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/img/apple-touch-icon.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/et-line.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/et-line.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/et-line.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/et-line.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/themify.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/themify.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/favicon.ico -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/favicon.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/logo-dark.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/logo/Logo mit Schriftzug_weiß_transparent_RGB_1024x473.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/logo/Logo mit Schriftzug_weiß_transparent_RGB_1024x473.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/et-line.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/et-line.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/themify.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/logo-light.png -------------------------------------------------------------------------------- /src/BundestagMine/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Microsoft.AspNetCore.Identity 2 | @using BundestagMine.Areas.Identity 3 | @using BundestagMine.Areas.Identity.Pages 4 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 5 | -------------------------------------------------------------------------------- /src/BundestagMine/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/img/logo/Logo mit Schriftzug_schwarz_transparent_RGB_1024x473.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/img/logo/Logo mit Schriftzug_schwarz_transparent_RGB_1024x473.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/app/map-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/app/map-marker.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/bg/logo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/bg/logo-logo.png -------------------------------------------------------------------------------- /src/BundestagMine/libman.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "defaultProvider": "cdnjs", 4 | "libraries": [ 5 | { 6 | "library": "datatables@1.10.21", 7 | "destination": "wwwroot/lib/datatables/" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/app/badge-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/app/badge-apple.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/app/badge-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/app/badge-google.png -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/img/apple-touch-icon.png -------------------------------------------------------------------------------- /src/BundestagMine/.config/dotnet-tools.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "isRoot": true, 4 | "tools": { 5 | "dotnet-ef": { 6 | "version": "6.0.8", 7 | "commands": [ 8 | "dotnet-ef" 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/js/partials/section.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * 4 | */ 5 | 6 | +function($){ 7 | 8 | page.initSection = function() { 9 | 10 | } 11 | 12 | }(jQuery); 13 | 14 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/mixins/_form.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | @mixin input-transparent-focus($border-color) { 4 | box-shadow: none; 5 | border-color: $border-color; 6 | color: #fff; 7 | } 8 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/attribution.js: -------------------------------------------------------------------------------- 1 | console.log(`Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com 2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 3 | `) -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheItCrOw/Bundestags-Mine/HEAD/src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | 3 | # CS8601: Mögliche Nullverweiszuweisung. 4 | dotnet_diagnostic.CS8601.severity = silent 5 | 6 | # CS8619: Die NULL-Zulässigkeit von Verweistypen im Wert entspricht nicht dem Zieltyp. 7 | dotnet_diagnostic.CS8619.severity = silent 8 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/vendor/_constellation.scss: -------------------------------------------------------------------------------- 1 | 2 | .constellation { 3 | position: absolute; 4 | top: 0; 5 | left: 0; 6 | width: 100%; 7 | height: 100%; 8 | //z-index: -1; 9 | } 10 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/src/index.js: -------------------------------------------------------------------------------- 1 | import CookieConsent from './lib/CookieConsent'; 2 | 3 | const cookieConsent = new CookieConsent(); 4 | 5 | window.CookieConsent = window.CookieConsent || {}; 6 | window.CookieConsent.init = cookieConsent.init; 7 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/form/_input-border.scss: -------------------------------------------------------------------------------- 1 | .input-border { 2 | 3 | .form-control:focus, 4 | .input-group.focus { 5 | border-color: theme-color-level('primary', -5); 6 | box-shadow: none; 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/vendor/_photoswipe.scss: -------------------------------------------------------------------------------- 1 | 2 | // Import the plugin style. 3 | // 4 | $pswp__assets-path: '../img/app/photoswipe/'; 5 | @import "~photoswipe/src/css/main"; 6 | @import "~photoswipe/src/css/default-skin/default-skin"; 7 | 8 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/scss/v4-shims.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'shims'; 7 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/loaders/core.scss: -------------------------------------------------------------------------------- 1 | 2 | // Core 3 | // 4 | @import "../functions"; 5 | @import "../theme"; 6 | @import "../variables"; 7 | @import "../vendor/bootstrap"; 8 | @import "../mixins"; // Import after Bootstrap to override mixins. 9 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/less/v4-shims.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import '_variables.less'; 6 | @import '_shims.less'; 7 | -------------------------------------------------------------------------------- /src/BundestagMine.Models/BundestagMine.Models.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/ViewModels/ReportPartyViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace BundestagMine.Logic.ViewModels 7 | { 8 | public class ReportPartyViewModel : SpeechStatisticsViewModel 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/BundestagMine.MongoDB/BundestagMine.MongoDB.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/BundestagMine/Areas/Identity/Pages/Account/AccessDenied.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | @model AccessDeniedModel 3 | @{ 4 | ViewData["Title"] = "Access denied"; 5 | } 6 | 7 |
8 |

@ViewData["Title"]

9 |

You do not have access to this resource.

10 |
11 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/ViewModels/ReportFractionViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace BundestagMine.Logic.ViewModels 7 | { 8 | public class ReportFractionViewModel : SpeechStatisticsViewModel 9 | { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/BundestagMine/Pages/ResearchCenter/VecTop.cshtml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.AspNetCore.Mvc.RazorPages; 3 | 4 | namespace BundestagMine.Pages.ResearchCenter 5 | { 6 | public class VecTopModel : PageModel 7 | { 8 | public void OnGet() 9 | { 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/ViewModels/AgendaItemViewModel.cs: -------------------------------------------------------------------------------- 1 | using BundestagMine.Models.Database.MongoDB; 2 | 3 | namespace BundestagMine.Logic.ViewModels 4 | { 5 | public class AgendaItemViewModel 6 | { 7 | public AgendaItem AgendaItem { get; set; } 8 | public Protocol Protocol { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/BundestagMine/Pages/ResearchCenter/WebScraper.cshtml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.AspNetCore.Mvc.RazorPages; 3 | 4 | namespace BundestagMine.Pages.ResearchCenter 5 | { 6 | public class WebScraperModel : PageModel 7 | { 8 | public void OnGet() 9 | { 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/BundestagMine.Models/Database/DBEntity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Text; 5 | 6 | namespace BundestagMine.Models.Database 7 | { 8 | public class DBEntity 9 | { 10 | [Key] 11 | public Guid Id { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/Pages/ResearchCenter/BasicAnnotations.cshtml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.AspNetCore.Mvc.RazorPages; 3 | 4 | namespace BundestagMine.Pages.ResearchCenter 5 | { 6 | public class BasicAnnotationsModel : PageModel 7 | { 8 | public void OnGet() 9 | { 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/BundestagMine.Utility/BundestagMine.Utility.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/content/_media.scss: -------------------------------------------------------------------------------- 1 | 2 | .media-list { 3 | 4 | .media { 5 | border-bottom: 1px solid $color-divider-light; 6 | padding-top: 1.5rem; 7 | padding-bottom: 1.5rem; 8 | 9 | &:last-child { 10 | border-bottom: none; 11 | } 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/BundestagMine/Pages/ResearchCenter/AutomaticTextSummarization.cshtml.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.AspNetCore.Mvc.RazorPages; 3 | 4 | namespace BundestagMine.Pages.ResearchCenter 5 | { 6 | public class AutomaticTextSummarizationModel : PageModel 7 | { 8 | public void OnGet() 9 | { 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/Pages/ResearchCenter/Index.cshtml.cs: -------------------------------------------------------------------------------- 1 | using BundestagMine.Models.Database.MongoDB; 2 | using Microsoft.AspNetCore.Mvc; 3 | using Microsoft.AspNetCore.Mvc.RazorPages; 4 | using System.Collections.Generic; 5 | using System.Threading.Tasks; 6 | 7 | namespace BundestagMine.Pages.ResearchCenter 8 | { 9 | public class IndexModel : PageModel 10 | { 11 | 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/unsplash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/HelperModels/DefaultChartModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BundestagMine.Logic.HelperModels 8 | { 9 | public class DefaultChartModel 10 | { 11 | public string Label { get; set; } 12 | public int Value { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/js/partials/drawer.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * 4 | */ 5 | 6 | +function($){ 7 | 8 | page.initDrawer = function() { 9 | 10 | $(document).on( 'click', '.drawer-toggler, .drawer-close, .backdrop-drawer', function() { 11 | $('body').toggleClass( 'drawer-open' ); 12 | }); 13 | 14 | } 15 | 16 | }(jQuery); 17 | 18 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fad, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Models/Database/MongoDB/SpeechSegment.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace BundestagMine.Models.Database.MongoDB 6 | { 7 | public class SpeechSegment : DBEntity 8 | { 9 | public string Text { get; set; } 10 | public List Shouts { get; set; } 11 | public Guid SpeechId { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/ViewModels/PollViewModel.cs: -------------------------------------------------------------------------------- 1 | using BundestagMine.Models.Database; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | 7 | namespace BundestagMine.Logic.ViewModels 8 | { 9 | public class PollViewModel 10 | { 11 | public Poll Poll { get; set; } 12 | public List Entries { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/ViewModels/ReportDeputyViewModel.cs: -------------------------------------------------------------------------------- 1 | using BundestagMine.Models.Database.MongoDB; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | 7 | namespace BundestagMine.Logic.ViewModels 8 | { 9 | public class ReportDeputyViewModel : SpeechStatisticsViewModel 10 | { 11 | public Deputy Deputy { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/mixins/_button.scss: -------------------------------------------------------------------------------- 1 | 2 | // Button sizes 3 | @mixin button-size($padding-top, $padding-bottom, $padding-x, $font-size) { 4 | padding: $padding-top $padding-x $padding-bottom; 5 | font-size: $font-size; 6 | } 7 | 8 | 9 | // Circle button sizes 10 | // 11 | @mixin circle-button-size($size) { 12 | width: $size; 13 | height: $size; 14 | } 15 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/uikit/_pagination.scss: -------------------------------------------------------------------------------- 1 | 2 | .page-link { 3 | margin: 0 3px; 4 | padding: 0; 5 | text-align: center; 6 | min-width: $pagination-line-height; 7 | } 8 | 9 | .page-link, 10 | .page-item:last-child .page-link, 11 | .page-item:first-child .page-link { 12 | border-radius: 2px; 13 | } 14 | 15 | .page-item.disabled { 16 | opacity: 0.6; 17 | } 18 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/Areas/Identity/Pages/Account/AccessDenied.cshtml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Mvc.RazorPages; 6 | 7 | namespace BundestagMine.Areas.Identity.Pages.Account 8 | { 9 | public class AccessDeniedModel : PageModel 10 | { 11 | public void OnGet() 12 | { 13 | 14 | } 15 | } 16 | } 17 | 18 | -------------------------------------------------------------------------------- /src/BundestagMine/Areas/Identity/Pages/Account/_StatusMessage.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 | 3 | @if (!String.IsNullOrEmpty(Model)) 4 | { 5 | var statusMessageClass = Model.StartsWith("Error") ? "danger" : "success"; 6 | 10 | } 11 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/less/_animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .@{fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 100% { 17 | transform: rotate(360deg); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace BundestagMine.Extensions 7 | { 8 | public static class StringExtensions 9 | { 10 | public static string ToCleanRequestString(this string str) 11 | { 12 | return str.Replace("{SLASH}", "/").Replace("{NULL}", ""); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/less/_list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: (@fa-li-width * 5/4); 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: -@fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: @fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: $fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: -$fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: $fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/HelperModels/LaTeXProtocol.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BundestagMine.Logic.HelperModels 8 | { 9 | public class LaTeXProtocol 10 | { 11 | public string LaTeX { get; set; } 12 | 13 | public string TmpFolderPath { get; set; } 14 | 15 | public Guid Id { get; set; } 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/js/vendors/lity.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Load required plugin. 4 | */ 5 | window.Lity = require('lity'); 6 | 7 | /** 8 | * Configure the plugin. 9 | */ 10 | 11 | +function($){ 12 | page.registerVendor('Lity'); 13 | 14 | page.initLity = function() { 15 | 16 | $(document).on('click', '[data-provide~="lightbox"]', Lity); 17 | 18 | } 19 | 20 | }(jQuery); 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/block/_partner.scss: -------------------------------------------------------------------------------- 1 | 2 | .partner { 3 | display: flex; 4 | align-items: center; 5 | justify-content: center; 6 | text-align: center; 7 | flex-wrap: wrap; 8 | 9 | img { 10 | margin: 16px 24px; 11 | max-width: 100%; 12 | } 13 | 14 | [class*="col-"] img { 15 | margin: 0; 16 | } 17 | } 18 | 19 | 20 | .partner-sm img { 21 | height: 20px; 22 | } 23 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Synchronisation/Services/CacheService.cs: -------------------------------------------------------------------------------- 1 | using BundestagMine.Models.Database.MongoDB; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Text; 5 | 6 | namespace BundestagMine.Synchronisation.Services 7 | { 8 | public static class CacheService 9 | { 10 | public static List ImportedShouts { get; set; } = new List(); 11 | public static int NewProtocolsStored { get; set; } = 0; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/_functions.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | // Request a theme color level 4 | @function color-level($color, $level: 0) { 5 | $color-base: if($level > 0, #000, #fff); 6 | $level: abs($level); 7 | 8 | @return mix($color-base, $color, $level * $theme-color-interval); 9 | } 10 | 11 | @function pale-color($value) { 12 | @return change-color($value, $saturation: 70%, $lightness: 96%); 13 | } 14 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/ViewModels/Import/ImportedProtocolViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace BundestagMine.Logic.ViewModels.Import 5 | { 6 | public class ImportedProtocolViewModel 7 | { 8 | public DateTime ImportedDate { get; set; } 9 | public string ProtocolJson { get; set; } 10 | public Guid ImportedEntityId { get; set; } 11 | public List SpeechIds { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/vendor/_typedjs.scss: -------------------------------------------------------------------------------- 1 | 2 | .typed-cursor { 3 | font-weight: 200; 4 | opacity: 1; 5 | animation: blink 0.7s infinite; 6 | } 7 | 8 | @each $color, $value in $theme-colors { 9 | [data-type].text-#{$color} + .typed-cursor { 10 | color: $value; 11 | } 12 | } 13 | 14 | 15 | @keyframes blink{ 16 | 0% { opacity:1; } 17 | 50% { opacity:0; } 18 | 100% { opacity:1; } 19 | } 20 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/map-marker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@babel/preset-env", { 5 | "targets": { 6 | "browsers": [ 7 | "Chrome >= 52", 8 | "FireFox >= 44", 9 | "Safari >= 7", 10 | "Explorer 11", 11 | "last 4 Edge versions" 12 | ] 13 | }, 14 | "useBuiltIns": "entry", 15 | "corejs": "3.21.1" 16 | } 17 | ] 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/plugin/thesaas/scss/content/_code.scss: -------------------------------------------------------------------------------- 1 | 2 | pre { 3 | background-color: lighten($color-bg-gray, 0.7%); 4 | padding: 12px; 5 | border: 1px solid $color-divider-light; 6 | border-left: 3px solid $primary; 7 | box-shadow: 0 0 15px rgba(0,0,0,.02); 8 | } 9 | 10 | .pre-scrollable { 11 | max-height: 350px; 12 | overflow-y: auto; 13 | } 14 | 15 | code { 16 | //background-color: transparent; 17 | } 18 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}, 5 | .fas, 6 | .far, 7 | .fal, 8 | .fad, 9 | .fab { 10 | -moz-osx-font-smoothing: grayscale; 11 | -webkit-font-smoothing: antialiased; 12 | display: inline-block; 13 | font-style: normal; 14 | font-variant: normal; 15 | text-rendering: auto; 16 | line-height: 1; 17 | } 18 | 19 | %fa-icon { 20 | @include fa-icon; 21 | } 22 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/regular/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Paths": { 3 | "DataDirectory": ".\\wwwroot\\data\\" 4 | }, 5 | "ConnectionStrings": { 6 | //"DefaultConnection": "Server=localhost;Database=BundestagMineDB;Trusted_Connection=True;MultipleActiveResultSets=True" 7 | }, 8 | "Logging": { 9 | "LogLevel": { 10 | "Default": "Information", 11 | "Microsoft": "Warning", 12 | "Microsoft.Hosting.Lifetime": "Information" 13 | } 14 | }, 15 | "AllowedHosts": "*" 16 | } -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/minus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/voicemail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/figma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/instalod.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.SqlDatabase/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Paths": { 3 | "DataDirectory": ".\\wwwroot\\data\\" 4 | }, 5 | "ConnectionStrings": { 6 | //"DefaultConnection": "Server=localhost;Database=BundestagMineDB;Trusted_Connection=True;MultipleActiveResultSets=True" 7 | }, 8 | "Logging": { 9 | "LogLevel": { 10 | "Default": "Information", 11 | "Microsoft": "Warning", 12 | "Microsoft.Hosting.Lifetime": "Information" 13 | } 14 | }, 15 | "AllowedHosts": "*" 16 | } -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/glass-whiskey.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/step-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/step-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/ViewModels/ParliamentPanorama/CategoryViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BundestagMine.Logic.ViewModels.ParliamentPanorama 8 | { 9 | public class CategoryViewModel 10 | { 11 | public Guid NLPSpeechId { get; set; } 12 | public string Name { get; set; } 13 | public List SubCategories { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/ViewModels/SpeechCommentViewModel.cs: -------------------------------------------------------------------------------- 1 | using BundestagMine.Models.Database.MongoDB; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | 7 | namespace BundestagMine.Logic.ViewModels 8 | { 9 | public class SpeechCommentViewModel 10 | { 11 | public Deputy Speaker { get; set; } 12 | public Guid SpeechId { get; set; } 13 | public SpeechSegment SpeechSegment { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/BundestagMine.Models/Database/MongoDB/Sentiment.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace BundestagMine.Models.Database.MongoDB 6 | { 7 | public class Sentiment : DBEntity 8 | { 9 | public Guid NLPSpeechId { get; set; } 10 | public Guid ShoutId { get; set; } 11 | public int Begin { get; set; } 12 | public int End { get; set; } 13 | public double SentimentSingleScore { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/BundestagMine.SqlDatabase/Migrations/20220325102312_AddedAnnotationsToDb.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | namespace BundestagMine.SqlDatabase.Migrations 4 | { 5 | public partial class AddedAnnotationsToDb : Migration 6 | { 7 | protected override void Up(MigrationBuilder migrationBuilder) 8 | { 9 | 10 | } 11 | 12 | protected override void Down(MigrationBuilder migrationBuilder) 13 | { 14 | 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/datatables/js/dataTables.dataTables.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | DataTables styling integration 3 | ©2018 SpryMedia Ltd - datatables.net/license 4 | */ 5 | (function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net")(a,b).$);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,d){return c.fn.dataTable}); 6 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/sort.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Models/Database/MongoDB/CategoryCoveredTagged.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace BundestagMine.Models.Database.MongoDB 6 | { 7 | public class CategoryCoveredTagged : DBEntity 8 | { 9 | public int Begin { get; set; } 10 | public int End { get; set; } 11 | public string Value { get; set; } 12 | public double Score { get; set; } 13 | public Guid NLPSpeechId { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/burn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/grip-lines.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/ViewModels/SpeakerInspectorViewModel.cs: -------------------------------------------------------------------------------- 1 | using BundestagMine.Models.Database.MongoDB; 2 | using System.Collections.Generic; 3 | 4 | namespace BundestagMine.Logic.ViewModels 5 | { 6 | public class SpeakerInspectorViewModel 7 | { 8 | public Deputy Deputy { get; set; } 9 | public List Speeches { get; set; } 10 | public List Polls { get; set; } 11 | public List Comments { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/regular/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/chalkboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/grip-lines-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/heart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/seedling.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Logic/HelperModels/DailyPaper/NamedEntityChartData.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace BundestagMine.Logic.HelperModels.DailyPaper 8 | { 9 | public class NamedEntityChartData 10 | { 11 | public string NamedEntity { get; set; } 12 | public int NamedEntityOccurences { get; set; } 13 | public List Sentiments { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/ellipsis-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/glass-martini.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/css/import-log.css: -------------------------------------------------------------------------------- 1 | .log-lines{ 2 | max-height:80vh; 3 | overflow-y:auto; 4 | border:lightgray 1px solid; 5 | } 6 | 7 | .line { 8 | border: lightgray 1px solid; 9 | width: 100%; 10 | margin: 0; 11 | padding: 3px; 12 | } 13 | 14 | .line:hover{ 15 | background-color:lightgray; 16 | border:1px solid black; 17 | } 18 | 19 | .info{ 20 | } 21 | 22 | .warning{ 23 | background-color:yellow; 24 | } 25 | 26 | .error{ 27 | background-color:red; 28 | color:white; 29 | } -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/tiktok.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/battery-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/paper-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/qrcode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/regular/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/caret-square-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/comment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/ellipsis-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/record-vinyl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/suitcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/utensil-spoon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/stack-exchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/regular/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/equals.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/neuter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Models/Database/MongoDB/NamedEntity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace BundestagMine.Models.Database.MongoDB 6 | { 7 | public class NamedEntity : DBEntity 8 | { 9 | public string LemmaValue { get; set; } 10 | public Guid NLPSpeechId { get; set; } 11 | public Guid ShoutId { get; set; } 12 | public int Begin { get; set; } 13 | public int End { get; set; } 14 | public string Value { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/BundestagMine.Models/Database/Poll.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace BundestagMine.Models.Database 6 | { 7 | public class Poll : DBEntity 8 | { 9 | public DateTime Date { get; set; } 10 | public string Title { get; set; } 11 | public int LegislaturePeriod { get; set; } 12 | public int ProtocolNumber { get; set; } 13 | public int PollNumber { get; set; } 14 | public List Entries { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/dropbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/cross.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/map.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/trash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/js/cookieconsent-1.3.2/docs_src/src/assets/js/src/script.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | |-------------------------------------------------------------------------- 4 | | Custom Javascript code 5 | |-------------------------------------------------------------------------- 6 | | 7 | | Now that you configured your website, you can write additional Javascript 8 | | code inside the following function. You might want to add more plugins and 9 | | initialize them in this file. 10 | | 11 | */ 12 | 13 | $(function() { 14 | 15 | 16 | 17 | }); 18 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/css3-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/kaggle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/coffee.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/long-arrow-alt-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/long-arrow-alt-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/long-arrow-alt-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/long-arrow-alt-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/plug.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine.Models/Database/MongoDB/CommentNetworkNode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using MongoDB.Bson; 5 | using MongoDB.Bson.Serialization.Attributes; 6 | 7 | namespace BundestagMine.Models.Database.MongoDB 8 | { 9 | public class CommentNetworkNode : DBEntity 10 | { 11 | public string Id { get; set; } 12 | 13 | public string Name { get; set; } 14 | 15 | public string Party { get; set; } 16 | public Guid NetworkDataId { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | // makes the font 33% larger relative to the icon container 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -.0667em; 9 | } 10 | 11 | .#{$fa-css-prefix}-xs { 12 | font-size: .75em; 13 | } 14 | 15 | .#{$fa-css-prefix}-sm { 16 | font-size: .875em; 17 | } 18 | 19 | @for $i from 1 through 10 { 20 | .#{$fa-css-prefix}-#{$i}x { 21 | font-size: $i * 1em; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/brands/dashcube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/battery-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/battery-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/chart-area.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/clone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/folder-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/hard-hat.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/heart-broken.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/icicles.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/industry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/music.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/BundestagMine/wwwroot/lib/fontawesome-free/svgs/solid/pen.svg: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------