diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
new file mode 100644
index 0000000..fc14765
--- /dev/null
+++ b/.github/FUNDING.yml
@@ -0,0 +1,3 @@
+# These are supported funding model platforms
+patreon: aleen42
+custom: ["http://paypal.me/aleen42", "https://www.buymeacoffee.com/aleen42"]
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..5f6a4cd
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,45 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+
+# Runtime data
+pids
+*.pid
+*.seed
+
+# Directory for instrumented libs generated by jscoverage/JSCover
+lib-cov
+
+# Coverage directory used by tools like istanbul
+coverage
+
+# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
+.grunt
+
+# node-waf configuration
+.lock-wscript
+
+# Compiled binary addons (http://nodejs.org/api/addons.html)
+build/Release
+
+# Dependency directory
+node_modules
+
+# Optional npm cache directory
+.npm
+
+# Optional REPL history
+.node_repl_history
+
+# Editor
+.idea
+
+# Output Assets
+dist
+README.md
+README_dfc.md
+README_flat_square.md
+README_flat_square_dfc.md
+
+package-lock.json
diff --git a/.travis.yml b/.travis.yml
new file mode 100755
index 0000000..35d0a50
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,14 @@
+language: node_js
+node_js:
+ - "5"
+ - "5.1"
+ - "4"
+ - "4.2"
+ - "4.1"
+ - "4.0"
+ - "0.12"
+ - "0.11"
+ - "iojs"
+script: npm link && make test
+os:
+ - linux
\ No newline at end of file
diff --git a/CNAME b/CNAME
new file mode 100644
index 0000000..4fbdb51
--- /dev/null
+++ b/CNAME
@@ -0,0 +1 @@
+badges.aleen42.com
\ No newline at end of file
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..bac117b
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1 @@
+gem 'jemoji'
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..464b07f
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2017 Aleen
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..998fe4d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,258 @@
+## badges
+
+
+
+
+
+To make badges more standard and acceptable.
+
+
+
+
+
+![npm](dist/npm.svg) ![cli](dist/cli.svg) ![javascript](https://img.shields.io/badge/%20%20JavaScript-%20%20%20%20730L-f1e05a.svg) ![html](https://img.shields.io/badge/%20%20HTML-%20%20%20%20164L-e34c26.svg)
+
+Alternative: [**default**](./README.md), [**flat-square**](./README_flat_square.md), [**dynamic-fore-color**](./README_dfc.md), [**dynamic-fore-color (flat_square)**](./README_flat_square_dfc.md).
+
+A collection of badges designed for personal repositories, and I hope that all of these badges can be widely accepted and used in the document of any project so that they can become more and more standard. If you also have some new ideas about badges, just open an issue. Always remember that: **More than a coder, more than a designer.**
+
+So, how to create such cute badges? It's very simple. As it's only registered on [npm](https://www.npmjs.com/), you should install it by typing:
+
+```bash
+sudo npm install -g badges-cli
+```
+
+Then you can use this command-line tool for creating badges yourself:
+
+Take the following command as an example, `t` means text content, and `c` means color. If you want to create a badge with SVG sources, you can specify with `p` to tell the tool where to find your sources. Finally, `o` is used to specify where to export the badge.
+
+```bash
+badge -t Alipay -c "#1CACEB" -p alipay.svg -o output.svg
+```
+
+One more thing, according to [the suggestion](https://github.com/facebook/jest/issues/5438#issuecomment-362553867) during creating badges for Jest, this tool has been extended to support skins with `s` to specify, which value can be "light" or "dark" temporarily at this moment.
+
+To uninstall the tool, you can just uninstall it by typing:
+
+```bash
+sudo npm uninstall -g badges-cli
+```
+
+As for how to create a badge and add it to the collection? There are some steps you may need to follow:
+
+1. Fork the repository
+2. Install `badges-cli`
+3. Create a logo with SVG formatted (**recommended**) or other formats like PNG. (_**The logo should be wrapped into a square, in another word, the width should be equal to the height, or it would have been horizontally squished.**_)
+4. Save the logo in the folder `dist`
+5. Add data for your badge in the file `script/data.js`
+ ```js
+ const data = {
+ // ...
+ 'React Router': {
+ fileName: 'react-router.svg',
+ color: '#D0021B',
+ description: 'A badge used for projects using React Router'
+ },
+ };
+ ```
+5. Run the script by typing `npm run build`
+6. If successful, the readme file will be automatically updated
+7. Finally, push all updates and create a pull request for your change
+8. **Done!!**
+
+> Note that: so far haven't I thought out a perfect solution for calculating the width of text accurately yet, and it means that the text can not be aligned in some cases.
+
+*Note: if you like this project, feel free to buy me a swimming chance:*
+
+[![badges](dist/paypal.svg)](http://paypal.me/aleen42) [![badges](dist/patreon.svg)](https://www.patreon.com/aleen42) [![badges](dist/buymeacoffee.svg)](https://www.buymeacoffee.com/aleen42)
+
+### Coder
+
+- [![cli](./dist/cli.svg)](https://badges.aleen42.com/src/cli.svg) A badge used for projects which provide command-line interfaces
+- [![terser](./dist/terser.svg)](https://badges.aleen42.com/src/terser.svg) A badge used for projects using [Terser](https://github.com/terser/terser) for compressing JavaScript
+- [![codepen](./dist/codepen.svg)](https://badges.aleen42.com/src/codepen.svg) A badge used for projects running on CodePen
+- [![github](./dist/github.svg)](https://badges.aleen42.com/src/github.svg) A badge used for GitHub repositories
+- [![hacker](./dist/hacker.svg)](https://badges.aleen42.com/src/hacker.svg) A badge used for hacking projects (**Business Using is not allowed)**
+- [![idea](./dist/idea.svg)](https://badges.aleen42.com/src/idea.svg) A badge for the IDEA editor
+- [![rome](./dist/rome.svg)](https://badges.aleen42.com/src/rome.svg) A badge used for projects built with [Rome](https://github.com/rome/tools)
+- [![elasticsearch](./dist/elasticsearch.svg)](https://badges.aleen42.com/src/elasticsearch.svg) A badge used for projects using [Elasticsearch](https://github.com/elastic/elasticsearch)
+- [![kibana](./dist/kibana.svg)](https://badges.aleen42.com/src/kibana.svg) A badge used for projects using [Kibana](https://github.com/elastic/kibana)
+- [![logstash](./dist/logstash.svg)](https://badges.aleen42.com/src/logstash.svg) A badge used for projects using [Logstash](https://github.com/elastic/logstash)
+- [![gitbook](./dist/gitbook_1.svg)](https://badges.aleen42.com/src/gitbook_1.svg) A badge used for books publish by Gitbook
+- [![gitbook](./dist/gitbook_2.svg)](https://badges.aleen42.com/src/gitbook_2.svg) A badge used for books publish by Gitbook
+- [![chrome_extensions](./dist/chrome_extensions.svg)](https://badges.aleen42.com/src/chrome_extensions.svg) A badge used for Chrome extensions
+- [![gulp](./dist/gulp.svg)](https://badges.aleen42.com/src/gulp.svg) A badge used for projects using Gulp to build
+- [![angular](./dist/angular.svg)](https://badges.aleen42.com/src/angular.svg) A badge used for repositories which has used the framework, Angular
+- [![postcss](./dist/postcss.svg)](https://badges.aleen42.com/src/postcss.svg) A badge used for projects using [PostCSS](https://github.com/postcss/postcss)
+- [![svelte](./dist/svelte.svg)](https://badges.aleen42.com/src/svelte.svg) A badge used for repositories that using [Svelte](https://github.com/sveltejs/svelte)
+- [![gitlab](./dist/gitlab.svg)](https://badges.aleen42.com/src/gitlab.svg) A badge used for Gitlab repositories
+- [![mocha](./dist/mocha.svg)](https://badges.aleen42.com/src/mocha.svg) A badge used for projects using Mocha for unit tests
+- [![bower](./dist/bower.svg)](https://badges.aleen42.com/src/bower.svg) A badge used for bower packages
+- [![java](./dist/java.svg)](https://badges.aleen42.com/src/java.svg) A badge used for projects that coded with Java
+- [![tc39](./dist/tc39_1.svg)](https://badges.aleen42.com/src/tc39_1.svg) A badge used for [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_2.svg)](https://badges.aleen42.com/src/tc39_2.svg) A badge used for proposals under stage 1 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_3.svg)](https://badges.aleen42.com/src/tc39_3.svg) A badge used for proposals under stage 2 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_4.svg)](https://badges.aleen42.com/src/tc39_4.svg) A badge used for proposals under stage 3 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_5.svg)](https://badges.aleen42.com/src/tc39_5.svg) A badge used for proposals under stage 4 of [TC39](https://github.com/tc39) committee
+- [![parcel](./dist/parcel.svg)](https://badges.aleen42.com/src/parcel.svg) A badge used for projects built with [Parcel](https://github.com/parcel-bundler/parcel)
+- [![grafana](./dist/grafana.svg)](https://badges.aleen42.com/src/grafana.svg) A badge used for projects using [Grafana](https://github.com/grafana/grafana)
+- [![sublime_text](./dist/sublime_text.svg)](https://badges.aleen42.com/src/sublime_text.svg) A badge for the Sulime Text editor
+- [![rss](./dist/rss.svg)](https://badges.aleen42.com/src/rss.svg) A badge used for RSS subscribing
+- [![grunt](./dist/grunt.svg)](https://badges.aleen42.com/src/grunt.svg) A badge used for projects using grunt to build
+- [![tensorflow](./dist/tensorflow.svg)](https://badges.aleen42.com/src/tensorflow.svg) A badge use for projects using Tensorflow
+- [![esbuild](./dist/esbuild.svg)](https://badges.aleen42.com/src/esbuild.svg) A badge used for projects built with [ESBuild](https://github.com/evanw/esbuild)
+- [![javascript](./dist/javascript.svg)](https://badges.aleen42.com/src/javascript.svg) A badge used for projects that coded with JavaScript
+- [![node](./dist/node.svg)](https://badges.aleen42.com/src/node.svg) A badge used for projects built with Node.js
+- [![atom](./dist/atom.svg)](https://badges.aleen42.com/src/atom.svg) A badge for the Atom editor
+- [![cssnano](./dist/cssnano.svg)](https://badges.aleen42.com/src/cssnano.svg) A badge used for projects using [CSSNano](https://github.com/cssnano/cssnano) for compacting CSS
+- [![vue](./dist/vue.svg)](https://badges.aleen42.com/src/vue.svg) A badge used for repositories which has used the framework, Vue
+- [![vuepress](./dist/vuepress.svg)](https://badges.aleen42.com/src/vuepress.svg) A badge used for books publish by Vuepress
+- [![apiary](./dist/apiary.svg)](https://badges.aleen42.com/src/apiary.svg) A badge used for documents written on Apiary
+- [![tailwindcss](./dist/tailwindcss.svg)](https://badges.aleen42.com/src/tailwindcss.svg) A badge used for projects using [TailwindCSS](https://github.com/tailwindlabs/tailwindcss)
+- [![golang](./dist/golang.svg)](https://badges.aleen42.com/src/golang.svg) A badge used for projects that coded with Golang
+- [![react](./dist/react.svg)](https://badges.aleen42.com/src/react.svg) A badge used for repositories that using [React](https://github.com/facebook/react)
+- [![docker](./dist/docker.svg)](https://badges.aleen42.com/src/docker.svg) A badge used for projects deployed on Docker
+- [![kotlin](./dist/kotlin.svg)](https://badges.aleen42.com/src/kotlin.svg) A badge used for projects that coded with Kotlin
+- [![visual_studio_code](./dist/visual_studio_code.svg)](https://badges.aleen42.com/src/visual_studio_code.svg) A badge for the Visual Studio Code IDE
+- [![typescript](./dist/typescript.svg)](https://badges.aleen42.com/src/typescript.svg) A badge used for projects that coded with TypeScript
+- [![python](./dist/python.svg)](https://badges.aleen42.com/src/python.svg) A badge used for projects that coded with Python
+- [![jsfiddle](./dist/jsfiddle.svg)](https://badges.aleen42.com/src/jsfiddle.svg) A badge used for projects running on JSFiddle
+- [![webpack](./dist/webpack.svg)](https://badges.aleen42.com/src/webpack.svg) A badge used for projects built with [Webpack](https://github.com/webpack/webpack)
+- [![vitejs](./dist/vitejs.svg)](https://badges.aleen42.com/src/vitejs.svg) A badge used for projects using [Vite](https://github.com/vitejs/vite)
+- [![eslint](./dist/eslint.svg)](https://badges.aleen42.com/src/eslint.svg) A badge used for projects using ESLint
+- [![eclipse](./dist/eclipse.svg)](https://badges.aleen42.com/src/eclipse.svg) A badge for the Eclipse editor
+- [![preact](./dist/preact.svg)](https://badges.aleen42.com/src/preact.svg) A badge used for repositories that using [Preact](https://github.com/preactjs/preact)
+- [![redux](./dist/redux.svg)](https://badges.aleen42.com/src/redux.svg) A badge used for projects using React Redux
+- [![visual_studio](./dist/visual_studio.svg)](https://badges.aleen42.com/src/visual_studio.svg) A badge for the Visual Studio IDE
+- [![jasmine](./dist/jasmine.svg)](https://badges.aleen42.com/src/jasmine.svg) A badge used for projects using Jasmine for testing JavaScript
+- [![qunit](./dist/qunit.svg)](https://badges.aleen42.com/src/qunit.svg) A badge for projects using QUnit for unit tests
+- [![reactivex](./dist/reactivex.svg)](https://badges.aleen42.com/src/reactivex.svg) A badge for projects using ReactiveX
+- [![modernizr](./dist/modernizr.svg)](https://badges.aleen42.com/src/modernizr.svg) A badge for projects using Modernizr
+- [![jest](./dist/jest_1.svg)](https://badges.aleen42.com/src/jest_1.svg) A badge used for projects using [Jest](https://github.com/facebook/jest) for testing JavaScript.
+- [![jest](./dist/jest_2.svg)](https://badges.aleen42.com/src/jest_2.svg) A badge used for projects using [Jest](https://github.com/facebook/jest) for testing JavaScript. *(**official accepted** by [facebook/jest#5348](https://github.com/facebook/jest/issues/5438))*
+- [![erlang](./dist/erlang.svg)](https://badges.aleen42.com/src/erlang.svg) A badge used for projects that coded with Erlang
+- [![react-router](./dist/react-router.svg)](https://badges.aleen42.com/src/react-router.svg) A badge used for projects using [React Router](https://github.com/remix-run/react-router)
+- [![npm](./dist/npm.svg)](https://badges.aleen42.com/src/npm.svg) A badge used for npm packages
+- [![rollup](./dist/rollup.svg)](https://badges.aleen42.com/src/rollup.svg) A badge used for projects built with [Rollup](https://github.com/rollup/rollup)
+
+
+### Community
+
+- [![stackoverflow](./dist/stackoverflow.svg)](https://badges.aleen42.com/src/stackoverflow.svg) A badge used for references on Stack Overflow.
+- [![medium](./dist/medium.svg)](https://badges.aleen42.com/src/medium.svg) A badge used for articles shared on Medium.
+- [![superuser](./dist/superuser.svg)](https://badges.aleen42.com/src/superuser.svg) A badge used for references on Super User
+- [![stackexchange](./dist/stackexchange.svg)](https://badges.aleen42.com/src/stackexchange.svg) A badge used for references on Stack Exchange.
+- [![juejin_translation](./dist/juejin_translation.svg)](https://badges.aleen42.com/src/juejin_translation.svg) A badge used for any articles translated by [gold-miner](https://github.com/xitu/gold-miner).
+- [![serverfault](./dist/serverfault.svg)](https://badges.aleen42.com/src/serverfault.svg) A badge used for references on Server Fault.
+
+
+### Communication
+
+- [![lunkr](./dist/lunkr.svg)](https://badges.aleen42.com/src/lunkr.svg) A badge used for sharing communication ways on Coremail Lunkr
+- [![wechat](./dist/wechat.svg)](https://badges.aleen42.com/src/wechat.svg) A badge used for sharing communication ways on WeChat
+- [![line](./dist/line.svg)](https://badges.aleen42.com/src/line.svg) A badge used for sharing communication ways on Line
+- [![whatsapp](./dist/whatsapp.svg)](https://badges.aleen42.com/src/whatsapp.svg) A badge used for sharing communication ways on WhatsApp
+- [![skype](./dist/skype.svg)](https://badges.aleen42.com/src/skype.svg) A badge used for sharing communication ways on Skype
+- [![telegram](./dist/telegram.svg)](https://badges.aleen42.com/src/telegram.svg) A badge used for sharing communication ways on Telegram
+- [![messenger](./dist/messenger.svg)](https://badges.aleen42.com/src/messenger.svg) A badge used for sharing communication ways on Messenger
+- [![discord](./dist/discord.svg)](https://badges.aleen42.com/src/discord.svg) A badge used for groups discussed on [Discord](https://discord.com/)
+- [![slack](./dist/slack.svg)](https://badges.aleen42.com/src/slack.svg) A badge used for groups discussed on [Slack](https://slack.com/)
+- [![gitter](./dist/gitter.svg)](https://badges.aleen42.com/src/gitter.svg) A badge used for groups discussed on [Gitter](https://gitter.im/)
+
+
+### Multimedia
+
+- [![soundcloud](./dist/soundcloud.svg)](https://badges.aleen42.com/src/soundcloud.svg) A badge used for music shared on SoundCloud
+- [![spotify](./dist/spotify.svg)](https://badges.aleen42.com/src/spotify.svg) A badge used for music shared on Spotify
+
+
+### Inc
+
+- [![soundtooth](./dist/soundtooth.svg)](https://badges.aleen42.com/src/soundtooth.svg) A badge used for any project of Soundtooth Inc.
+- [![bitcoin](./dist/bitcoin.svg)](https://badges.aleen42.com/src/bitcoin.svg) A badge used for the Bitcoin Inc.
+- [![amazon](./dist/amazon.svg)](https://badges.aleen42.com/src/amazon.svg) A badge used for the Amazon Inc.
+- [![monsoon](./dist/monsoon.svg)](https://badges.aleen42.com/src/monsoon.svg) A badge used for the Monsoon Inc.
+- [![codrops](./dist/codrops.svg)](https://badges.aleen42.com/src/codrops.svg) A badge used for any project of Codrops Inc.
+- [![coremail](./dist/coremail.svg)](https://badges.aleen42.com/src/coremail.svg) A badge used for the Coremail Inc.
+- [![nasa](./dist/nasa.svg)](https://badges.aleen42.com/src/nasa.svg) A badge used for projects of NASA
+- [![xitu](./dist/xitu.svg)](https://badges.aleen42.com/src/xitu.svg) A badge used for any articles of Xitu Inc.
+- [![airbnb](./dist/airbnb.svg)](https://badges.aleen42.com/src/airbnb.svg) A badge used for the Airbnb Inc.
+
+
+### Social Media
+
+- [![youtube](./dist/youtube.svg)](https://badges.aleen42.com/src/youtube.svg) A badge used for Youtube.
+- [![google_plus](./dist/google_plus.svg)](https://badges.aleen42.com/src/google_plus.svg) A badge used for sharing communities on Google Plus.
+- [![reddit](./dist/reddit.svg)](https://badges.aleen42.com/src/reddit.svg) A badge used for articles shared on Reddit.
+- [![snapchat](./dist/snapchat.svg)](https://badges.aleen42.com/src/snapchat.svg) A badge used for Snapchat.
+- [![twitter](./dist/twitter.svg)](https://badges.aleen42.com/src/twitter.svg) A badge used for Twitter.
+- [![facebook](./dist/facebook.svg)](https://badges.aleen42.com/src/facebook.svg) A badge used for Facebook.
+- [![instagram](./dist/instagram.svg)](https://badges.aleen42.com/src/instagram.svg) A badge used for Instagram.
+- [![sina_weibo](./dist/sina_weibo.svg)](https://badges.aleen42.com/src/sina_weibo.svg) A badge used for sharing communities on Sina Weibo.
+- [![pinterest](./dist/pinterest.svg)](https://badges.aleen42.com/src/pinterest.svg) A badge used for sharing communities on Pinterest.
+
+
+### Sponsors
+
+- [![patreon](./dist/patreon.svg)](https://badges.aleen42.com/src/patreon.svg) A badge used for Patreon sponsors.
+- [![buymeacoffee](./dist/buymeacoffee.svg)](https://badges.aleen42.com/src/buymeacoffee.svg) A badge used for BuyMeACoffee sponsors.
+- [![issuehunt](./dist/issuehunt.svg)](https://badges.aleen42.com/src/issuehunt.svg) A badge used for IssueHunt sponsors.
+- [![alipay](./dist/alipay.svg)](https://badges.aleen42.com/src/alipay.svg) A badge used for Alipay sponsors.
+- [![paypal](./dist/paypal.svg)](https://badges.aleen42.com/src/paypal.svg) A badge used for Paypal sponsors.
+
+
+### Car
+
+- [![mercedes_benz](./dist/mercedes_benz.svg)](https://badges.aleen42.com/src/mercedes_benz.svg) A badge used for cars of Mercedes Benz
+- [![toyota](./dist/toyota.svg)](https://badges.aleen42.com/src/toyota.svg) A badge used for cars of Toyota
+- [![lamborghini](./dist/lamborghini.svg)](https://badges.aleen42.com/src/lamborghini.svg) A badge used for cars of Lamborghini
+- [![land_rover](./dist/land_rover.svg)](https://badges.aleen42.com/src/land_rover.svg) A badge used for cars of Land Rover
+- [![bmw](./dist/bmw.svg)](https://badges.aleen42.com/src/bmw.svg) A badge used for cars of BMW
+- [![audi](./dist/audi.svg)](https://badges.aleen42.com/src/audi.svg) A badge used for cars of Audi
+- [![marussia](./dist/marussia.svg)](https://badges.aleen42.com/src/marussia.svg) A badge used for cars of Marussia
+- [![maserati](./dist/maserati.svg)](https://badges.aleen42.com/src/maserati.svg) A badge used for cars of Maserati
+- [![koenigsegg](./dist/koenigsegg.svg)](https://badges.aleen42.com/src/koenigsegg.svg) A badge used for cars of Koenigsegg
+- [![bugatti](./dist/bugatti.svg)](https://badges.aleen42.com/src/bugatti.svg) A badge used for cars of Bugatti
+- [![porsche](./dist/porsche.svg)](https://badges.aleen42.com/src/porsche.svg) A badge used for cars of Porsche
+- [![mitsubishi](./dist/mitsubishi.svg)](https://badges.aleen42.com/src/mitsubishi.svg) A badge used for cars of Mitsubishi
+- [![ferrari](./dist/ferrari.svg)](https://badges.aleen42.com/src/ferrari.svg) A badge used for cars of Ferrari
+- [![tesla](./dist/tesla.svg)](https://badges.aleen42.com/src/tesla.svg) A badge used for cars of Tesla
+
+
+### Football Clubs
+
+- [![manchester_united](./dist/manchester_united.svg)](https://badges.aleen42.com/src/manchester_united.svg) A badge used for FC Manchester United
+- [![real_madrid](./dist/real_madrid.svg)](https://badges.aleen42.com/src/real_madrid.svg) A badge used for FC Real Madrid
+- [![liverpool](./dist/liverpool.svg)](https://badges.aleen42.com/src/liverpool.svg) A badge used for FC Liverpool
+- [![chelsea](./dist/chelsea.svg)](https://badges.aleen42.com/src/chelsea.svg) A badge used for FC Chelsea
+- [![barcelona](./dist/barcelona.svg)](https://badges.aleen42.com/src/barcelona.svg) A badge used for FC Barcelona
+- [![bayern_munchen](./dist/bayern_munchen.svg)](https://badges.aleen42.com/src/bayern_munchen.svg) A badge used for FC Bayern Munchen
+- [![arsenal](./dist/arsenal.svg)](https://badges.aleen42.com/src/arsenal.svg) A badge used for FC Arsenal
+- [![ac_milan](./dist/ac_milan.svg)](https://badges.aleen42.com/src/ac_milan.svg) A badge used for FC AC Milan
+
+
+### Game
+
+- [![ingress](./dist/ingress.svg)](https://badges.aleen42.com/src/ingress.svg) A badge used for the game Ingress published by Niantic Inc.
+- [![steam](./dist/steam.svg)](https://badges.aleen42.com/src/steam.svg) A badge used for any game supported on the platform Steam
+- [![osu](./dist/osu.svg)](https://badges.aleen42.com/src/osu.svg) A badge used for the game osu! published by ppy
+
+
+### Designer
+
+- [![flash](./dist/flash.svg)](https://badges.aleen42.com/src/flash.svg) A badge used for designing projects using Flash as a tool
+- [![illustrator](./dist/illustrator.svg)](https://badges.aleen42.com/src/illustrator.svg) A badge used for designing projects using Illustrator as a tool
+- [![zeplin](./dist/zeplin.svg)](https://badges.aleen42.com/src/zeplin.svg) A badge used for designing projects with Zeplin
+- [![dreamweaver](./dist/dreamweaver.svg)](https://badges.aleen42.com/src/dreamweaver.svg) A badge used for projects using Dreamweaver as a tool
+- [![photoshop](./dist/photoshop.svg)](https://badges.aleen42.com/src/photoshop.svg) A badge used for designing projects using Photoshop as a tool
+- [![behance](./dist/behance.svg)](https://badges.aleen42.com/src/behance.svg) A badge used for designing projects sharing on Behance
+- [![after_effects](./dist/after_effects.svg)](https://badges.aleen42.com/src/after_effects.svg) A badge used for designing projects using After Effect as a tool
+- [![premiere](./dist/premiere.svg)](https://badges.aleen42.com/src/premiere.svg) A badge used for designing projects using Premiere as a tool
+
+### :fuelpump: How to contribute
+
+Have an idea? Found a bug? See [how to contribute](https://wiki.aleen42.com/contribution.html).
+
+### :scroll: License
+
+[MIT](https://wiki.aleen42.com/MIT.html) © aleen42
diff --git a/README_dfc.md b/README_dfc.md
new file mode 100644
index 0000000..8be6483
--- /dev/null
+++ b/README_dfc.md
@@ -0,0 +1,258 @@
+## badges
+
+
+
+
+
+To make badges more standard and acceptable.
+
+
+
+
+
+![npm](dist/npm.svg) ![cli](dist/cli.svg) ![javascript](https://img.shields.io/badge/%20%20JavaScript-%20%20%20%20730L-f1e05a.svg) ![html](https://img.shields.io/badge/%20%20HTML-%20%20%20%20164L-e34c26.svg)
+
+Alternative: [**default**](./README.md), [**flat-square**](./README_flat_square.md), [**dynamic-fore-color**](./README_dfc.md), [**dynamic-fore-color (flat_square)**](./README_flat_square_dfc.md).
+
+A collection of badges designed for personal repositories, and I hope that all of these badges can be widely accepted and used in the document of any project so that they can become more and more standard. If you also have some new ideas about badges, just open an issue. Always remember that: **More than a coder, more than a designer.**
+
+So, how to create such cute badges? It's very simple. As it's only registered on [npm](https://www.npmjs.com/), you should install it by typing:
+
+```bash
+sudo npm install -g badges-cli
+```
+
+Then you can use this command-line tool for creating badges yourself:
+
+Take the following command as an example, `t` means text content, and `c` means color. If you want to create a badge with SVG sources, you can specify with `p` to tell the tool where to find your sources. Finally, `o` is used to specify where to export the badge.
+
+```bash
+badge -t Alipay -c "#1CACEB" -p alipay.svg --dynamic-fore-color -o output.svg
+```
+
+One more thing, according to [the suggestion](https://github.com/facebook/jest/issues/5438#issuecomment-362553867) during creating badges for Jest, this tool has been extended to support skins with `s` to specify, which value can be "light" or "dark" temporarily at this moment.
+
+To uninstall the tool, you can just uninstall it by typing:
+
+```bash
+sudo npm uninstall -g badges-cli
+```
+
+As for how to create a badge and add it to the collection? There are some steps you may need to follow:
+
+1. Fork the repository
+2. Install `badges-cli`
+3. Create a logo with SVG formatted (**recommended**) or other formats like PNG. (_**The logo should be wrapped into a square, in another word, the width should be equal to the height, or it would have been horizontally squished.**_)
+4. Save the logo in the folder `dist`
+5. Add data for your badge in the file `script/data.js`
+ ```js
+ const data = {
+ // ...
+ 'React Router': {
+ fileName: 'react-router.svg',
+ color: '#D0021B',
+ description: 'A badge used for projects using React Router'
+ },
+ };
+ ```
+5. Run the script by typing `npm run build`
+6. If successful, the readme file will be automatically updated
+7. Finally, push all updates and create a pull request for your change
+8. **Done!!**
+
+> Note that: so far haven't I thought out a perfect solution for calculating the width of text accurately yet, and it means that the text can not be aligned in some cases.
+
+*Note: if you like this project, feel free to buy me a swimming chance:*
+
+[![badges](dist/paypal.svg)](http://paypal.me/aleen42) [![badges](dist/patreon.svg)](https://www.patreon.com/aleen42) [![badges](dist/buymeacoffee.svg)](https://www.buymeacoffee.com/aleen42)
+
+### Coder
+
+- [![cli](./dist/cli_dfc.svg)](https://badges.aleen42.com/src/cli_dfc.svg) A badge used for projects which provide command-line interfaces
+- [![terser](./dist/terser_dfc.svg)](https://badges.aleen42.com/src/terser_dfc.svg) A badge used for projects using [Terser](https://github.com/terser/terser) for compressing JavaScript
+- [![codepen](./dist/codepen_dfc.svg)](https://badges.aleen42.com/src/codepen_dfc.svg) A badge used for projects running on CodePen
+- [![github](./dist/github_dfc.svg)](https://badges.aleen42.com/src/github_dfc.svg) A badge used for GitHub repositories
+- [![hacker](./dist/hacker_dfc.svg)](https://badges.aleen42.com/src/hacker_dfc.svg) A badge used for hacking projects (**Business Using is not allowed)**
+- [![idea](./dist/idea_dfc.svg)](https://badges.aleen42.com/src/idea_dfc.svg) A badge for the IDEA editor
+- [![rome](./dist/rome_dfc.svg)](https://badges.aleen42.com/src/rome_dfc.svg) A badge used for projects built with [Rome](https://github.com/rome/tools)
+- [![elasticsearch](./dist/elasticsearch_dfc.svg)](https://badges.aleen42.com/src/elasticsearch_dfc.svg) A badge used for projects using [Elasticsearch](https://github.com/elastic/elasticsearch)
+- [![kibana](./dist/kibana_dfc.svg)](https://badges.aleen42.com/src/kibana_dfc.svg) A badge used for projects using [Kibana](https://github.com/elastic/kibana)
+- [![logstash](./dist/logstash_dfc.svg)](https://badges.aleen42.com/src/logstash_dfc.svg) A badge used for projects using [Logstash](https://github.com/elastic/logstash)
+- [![gitbook](./dist/gitbook_1_dfc.svg)](https://badges.aleen42.com/src/gitbook_1_dfc.svg) A badge used for books publish by Gitbook
+- [![gitbook](./dist/gitbook_2_dfc.svg)](https://badges.aleen42.com/src/gitbook_2_dfc.svg) A badge used for books publish by Gitbook
+- [![chrome_extensions](./dist/chrome_extensions_dfc.svg)](https://badges.aleen42.com/src/chrome_extensions_dfc.svg) A badge used for Chrome extensions
+- [![gulp](./dist/gulp_dfc.svg)](https://badges.aleen42.com/src/gulp_dfc.svg) A badge used for projects using Gulp to build
+- [![angular](./dist/angular_dfc.svg)](https://badges.aleen42.com/src/angular_dfc.svg) A badge used for repositories which has used the framework, Angular
+- [![postcss](./dist/postcss_dfc.svg)](https://badges.aleen42.com/src/postcss_dfc.svg) A badge used for projects using [PostCSS](https://github.com/postcss/postcss)
+- [![svelte](./dist/svelte_dfc.svg)](https://badges.aleen42.com/src/svelte_dfc.svg) A badge used for repositories that using [Svelte](https://github.com/sveltejs/svelte)
+- [![gitlab](./dist/gitlab_dfc.svg)](https://badges.aleen42.com/src/gitlab_dfc.svg) A badge used for Gitlab repositories
+- [![mocha](./dist/mocha_dfc.svg)](https://badges.aleen42.com/src/mocha_dfc.svg) A badge used for projects using Mocha for unit tests
+- [![bower](./dist/bower_dfc.svg)](https://badges.aleen42.com/src/bower_dfc.svg) A badge used for bower packages
+- [![java](./dist/java_dfc.svg)](https://badges.aleen42.com/src/java_dfc.svg) A badge used for projects that coded with Java
+- [![tc39](./dist/tc39_1_dfc.svg)](https://badges.aleen42.com/src/tc39_1_dfc.svg) A badge used for [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_2_dfc.svg)](https://badges.aleen42.com/src/tc39_2_dfc.svg) A badge used for proposals under stage 1 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_3_dfc.svg)](https://badges.aleen42.com/src/tc39_3_dfc.svg) A badge used for proposals under stage 2 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_4_dfc.svg)](https://badges.aleen42.com/src/tc39_4_dfc.svg) A badge used for proposals under stage 3 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_5_dfc.svg)](https://badges.aleen42.com/src/tc39_5_dfc.svg) A badge used for proposals under stage 4 of [TC39](https://github.com/tc39) committee
+- [![parcel](./dist/parcel_dfc.svg)](https://badges.aleen42.com/src/parcel_dfc.svg) A badge used for projects built with [Parcel](https://github.com/parcel-bundler/parcel)
+- [![grafana](./dist/grafana_dfc.svg)](https://badges.aleen42.com/src/grafana_dfc.svg) A badge used for projects using [Grafana](https://github.com/grafana/grafana)
+- [![sublime_text](./dist/sublime_text_dfc.svg)](https://badges.aleen42.com/src/sublime_text_dfc.svg) A badge for the Sulime Text editor
+- [![rss](./dist/rss_dfc.svg)](https://badges.aleen42.com/src/rss_dfc.svg) A badge used for RSS subscribing
+- [![grunt](./dist/grunt_dfc.svg)](https://badges.aleen42.com/src/grunt_dfc.svg) A badge used for projects using grunt to build
+- [![tensorflow](./dist/tensorflow_dfc.svg)](https://badges.aleen42.com/src/tensorflow_dfc.svg) A badge use for projects using Tensorflow
+- [![esbuild](./dist/esbuild_dfc.svg)](https://badges.aleen42.com/src/esbuild_dfc.svg) A badge used for projects built with [ESBuild](https://github.com/evanw/esbuild)
+- [![javascript](./dist/javascript_dfc.svg)](https://badges.aleen42.com/src/javascript_dfc.svg) A badge used for projects that coded with JavaScript
+- [![node](./dist/node_dfc.svg)](https://badges.aleen42.com/src/node_dfc.svg) A badge used for projects built with Node.js
+- [![atom](./dist/atom_dfc.svg)](https://badges.aleen42.com/src/atom_dfc.svg) A badge for the Atom editor
+- [![cssnano](./dist/cssnano_dfc.svg)](https://badges.aleen42.com/src/cssnano_dfc.svg) A badge used for projects using [CSSNano](https://github.com/cssnano/cssnano) for compacting CSS
+- [![vue](./dist/vue_dfc.svg)](https://badges.aleen42.com/src/vue_dfc.svg) A badge used for repositories which has used the framework, Vue
+- [![vuepress](./dist/vuepress_dfc.svg)](https://badges.aleen42.com/src/vuepress_dfc.svg) A badge used for books publish by Vuepress
+- [![apiary](./dist/apiary_dfc.svg)](https://badges.aleen42.com/src/apiary_dfc.svg) A badge used for documents written on Apiary
+- [![tailwindcss](./dist/tailwindcss_dfc.svg)](https://badges.aleen42.com/src/tailwindcss_dfc.svg) A badge used for projects using [TailwindCSS](https://github.com/tailwindlabs/tailwindcss)
+- [![golang](./dist/golang_dfc.svg)](https://badges.aleen42.com/src/golang_dfc.svg) A badge used for projects that coded with Golang
+- [![react](./dist/react_dfc.svg)](https://badges.aleen42.com/src/react_dfc.svg) A badge used for repositories that using [React](https://github.com/facebook/react)
+- [![docker](./dist/docker_dfc.svg)](https://badges.aleen42.com/src/docker_dfc.svg) A badge used for projects deployed on Docker
+- [![kotlin](./dist/kotlin_dfc.svg)](https://badges.aleen42.com/src/kotlin_dfc.svg) A badge used for projects that coded with Kotlin
+- [![visual_studio_code](./dist/visual_studio_code_dfc.svg)](https://badges.aleen42.com/src/visual_studio_code_dfc.svg) A badge for the Visual Studio Code IDE
+- [![typescript](./dist/typescript_dfc.svg)](https://badges.aleen42.com/src/typescript_dfc.svg) A badge used for projects that coded with TypeScript
+- [![python](./dist/python_dfc.svg)](https://badges.aleen42.com/src/python_dfc.svg) A badge used for projects that coded with Python
+- [![jsfiddle](./dist/jsfiddle_dfc.svg)](https://badges.aleen42.com/src/jsfiddle_dfc.svg) A badge used for projects running on JSFiddle
+- [![webpack](./dist/webpack_dfc.svg)](https://badges.aleen42.com/src/webpack_dfc.svg) A badge used for projects built with [Webpack](https://github.com/webpack/webpack)
+- [![vitejs](./dist/vitejs_dfc.svg)](https://badges.aleen42.com/src/vitejs_dfc.svg) A badge used for projects using [Vite](https://github.com/vitejs/vite)
+- [![eslint](./dist/eslint_dfc.svg)](https://badges.aleen42.com/src/eslint_dfc.svg) A badge used for projects using ESLint
+- [![eclipse](./dist/eclipse_dfc.svg)](https://badges.aleen42.com/src/eclipse_dfc.svg) A badge for the Eclipse editor
+- [![preact](./dist/preact_dfc.svg)](https://badges.aleen42.com/src/preact_dfc.svg) A badge used for repositories that using [Preact](https://github.com/preactjs/preact)
+- [![redux](./dist/redux_dfc.svg)](https://badges.aleen42.com/src/redux_dfc.svg) A badge used for projects using React Redux
+- [![visual_studio](./dist/visual_studio_dfc.svg)](https://badges.aleen42.com/src/visual_studio_dfc.svg) A badge for the Visual Studio IDE
+- [![jasmine](./dist/jasmine_dfc.svg)](https://badges.aleen42.com/src/jasmine_dfc.svg) A badge used for projects using Jasmine for testing JavaScript
+- [![qunit](./dist/qunit_dfc.svg)](https://badges.aleen42.com/src/qunit_dfc.svg) A badge for projects using QUnit for unit tests
+- [![reactivex](./dist/reactivex_dfc.svg)](https://badges.aleen42.com/src/reactivex_dfc.svg) A badge for projects using ReactiveX
+- [![modernizr](./dist/modernizr_dfc.svg)](https://badges.aleen42.com/src/modernizr_dfc.svg) A badge for projects using Modernizr
+- [![jest](./dist/jest_1_dfc.svg)](https://badges.aleen42.com/src/jest_1_dfc.svg) A badge used for projects using [Jest](https://github.com/facebook/jest) for testing JavaScript.
+- [![jest](./dist/jest_2_dfc.svg)](https://badges.aleen42.com/src/jest_2_dfc.svg) A badge used for projects using [Jest](https://github.com/facebook/jest) for testing JavaScript. *(**official accepted** by [facebook/jest#5348](https://github.com/facebook/jest/issues/5438))*
+- [![erlang](./dist/erlang_dfc.svg)](https://badges.aleen42.com/src/erlang_dfc.svg) A badge used for projects that coded with Erlang
+- [![react-router](./dist/react-router_dfc.svg)](https://badges.aleen42.com/src/react-router_dfc.svg) A badge used for projects using [React Router](https://github.com/remix-run/react-router)
+- [![npm](./dist/npm_dfc.svg)](https://badges.aleen42.com/src/npm_dfc.svg) A badge used for npm packages
+- [![rollup](./dist/rollup_dfc.svg)](https://badges.aleen42.com/src/rollup_dfc.svg) A badge used for projects built with [Rollup](https://github.com/rollup/rollup)
+
+
+### Community
+
+- [![stackoverflow](./dist/stackoverflow_dfc.svg)](https://badges.aleen42.com/src/stackoverflow_dfc.svg) A badge used for references on Stack Overflow.
+- [![medium](./dist/medium_dfc.svg)](https://badges.aleen42.com/src/medium_dfc.svg) A badge used for articles shared on Medium.
+- [![superuser](./dist/superuser_dfc.svg)](https://badges.aleen42.com/src/superuser_dfc.svg) A badge used for references on Super User
+- [![stackexchange](./dist/stackexchange_dfc.svg)](https://badges.aleen42.com/src/stackexchange_dfc.svg) A badge used for references on Stack Exchange.
+- [![juejin_translation](./dist/juejin_translation_dfc.svg)](https://badges.aleen42.com/src/juejin_translation_dfc.svg) A badge used for any articles translated by [gold-miner](https://github.com/xitu/gold-miner).
+- [![serverfault](./dist/serverfault_dfc.svg)](https://badges.aleen42.com/src/serverfault_dfc.svg) A badge used for references on Server Fault.
+
+
+### Communication
+
+- [![lunkr](./dist/lunkr_dfc.svg)](https://badges.aleen42.com/src/lunkr_dfc.svg) A badge used for sharing communication ways on Coremail Lunkr
+- [![wechat](./dist/wechat_dfc.svg)](https://badges.aleen42.com/src/wechat_dfc.svg) A badge used for sharing communication ways on WeChat
+- [![line](./dist/line_dfc.svg)](https://badges.aleen42.com/src/line_dfc.svg) A badge used for sharing communication ways on Line
+- [![whatsapp](./dist/whatsapp_dfc.svg)](https://badges.aleen42.com/src/whatsapp_dfc.svg) A badge used for sharing communication ways on WhatsApp
+- [![skype](./dist/skype_dfc.svg)](https://badges.aleen42.com/src/skype_dfc.svg) A badge used for sharing communication ways on Skype
+- [![telegram](./dist/telegram_dfc.svg)](https://badges.aleen42.com/src/telegram_dfc.svg) A badge used for sharing communication ways on Telegram
+- [![messenger](./dist/messenger_dfc.svg)](https://badges.aleen42.com/src/messenger_dfc.svg) A badge used for sharing communication ways on Messenger
+- [![discord](./dist/discord_dfc.svg)](https://badges.aleen42.com/src/discord_dfc.svg) A badge used for groups discussed on [Discord](https://discord.com/)
+- [![slack](./dist/slack_dfc.svg)](https://badges.aleen42.com/src/slack_dfc.svg) A badge used for groups discussed on [Slack](https://slack.com/)
+- [![gitter](./dist/gitter_dfc.svg)](https://badges.aleen42.com/src/gitter_dfc.svg) A badge used for groups discussed on [Gitter](https://gitter.im/)
+
+
+### Multimedia
+
+- [![soundcloud](./dist/soundcloud_dfc.svg)](https://badges.aleen42.com/src/soundcloud_dfc.svg) A badge used for music shared on SoundCloud
+- [![spotify](./dist/spotify_dfc.svg)](https://badges.aleen42.com/src/spotify_dfc.svg) A badge used for music shared on Spotify
+
+
+### Inc
+
+- [![soundtooth](./dist/soundtooth_dfc.svg)](https://badges.aleen42.com/src/soundtooth_dfc.svg) A badge used for any project of Soundtooth Inc.
+- [![bitcoin](./dist/bitcoin_dfc.svg)](https://badges.aleen42.com/src/bitcoin_dfc.svg) A badge used for the Bitcoin Inc.
+- [![amazon](./dist/amazon_dfc.svg)](https://badges.aleen42.com/src/amazon_dfc.svg) A badge used for the Amazon Inc.
+- [![monsoon](./dist/monsoon_dfc.svg)](https://badges.aleen42.com/src/monsoon_dfc.svg) A badge used for the Monsoon Inc.
+- [![codrops](./dist/codrops_dfc.svg)](https://badges.aleen42.com/src/codrops_dfc.svg) A badge used for any project of Codrops Inc.
+- [![coremail](./dist/coremail_dfc.svg)](https://badges.aleen42.com/src/coremail_dfc.svg) A badge used for the Coremail Inc.
+- [![nasa](./dist/nasa_dfc.svg)](https://badges.aleen42.com/src/nasa_dfc.svg) A badge used for projects of NASA
+- [![xitu](./dist/xitu_dfc.svg)](https://badges.aleen42.com/src/xitu_dfc.svg) A badge used for any articles of Xitu Inc.
+- [![airbnb](./dist/airbnb_dfc.svg)](https://badges.aleen42.com/src/airbnb_dfc.svg) A badge used for the Airbnb Inc.
+
+
+### Social Media
+
+- [![youtube](./dist/youtube_dfc.svg)](https://badges.aleen42.com/src/youtube_dfc.svg) A badge used for Youtube.
+- [![google_plus](./dist/google_plus_dfc.svg)](https://badges.aleen42.com/src/google_plus_dfc.svg) A badge used for sharing communities on Google Plus.
+- [![reddit](./dist/reddit_dfc.svg)](https://badges.aleen42.com/src/reddit_dfc.svg) A badge used for articles shared on Reddit.
+- [![snapchat](./dist/snapchat_dfc.svg)](https://badges.aleen42.com/src/snapchat_dfc.svg) A badge used for Snapchat.
+- [![twitter](./dist/twitter_dfc.svg)](https://badges.aleen42.com/src/twitter_dfc.svg) A badge used for Twitter.
+- [![facebook](./dist/facebook_dfc.svg)](https://badges.aleen42.com/src/facebook_dfc.svg) A badge used for Facebook.
+- [![instagram](./dist/instagram_dfc.svg)](https://badges.aleen42.com/src/instagram_dfc.svg) A badge used for Instagram.
+- [![sina_weibo](./dist/sina_weibo_dfc.svg)](https://badges.aleen42.com/src/sina_weibo_dfc.svg) A badge used for sharing communities on Sina Weibo.
+- [![pinterest](./dist/pinterest_dfc.svg)](https://badges.aleen42.com/src/pinterest_dfc.svg) A badge used for sharing communities on Pinterest.
+
+
+### Sponsors
+
+- [![patreon](./dist/patreon_dfc.svg)](https://badges.aleen42.com/src/patreon_dfc.svg) A badge used for Patreon sponsors.
+- [![buymeacoffee](./dist/buymeacoffee_dfc.svg)](https://badges.aleen42.com/src/buymeacoffee_dfc.svg) A badge used for BuyMeACoffee sponsors.
+- [![issuehunt](./dist/issuehunt_dfc.svg)](https://badges.aleen42.com/src/issuehunt_dfc.svg) A badge used for IssueHunt sponsors.
+- [![alipay](./dist/alipay_dfc.svg)](https://badges.aleen42.com/src/alipay_dfc.svg) A badge used for Alipay sponsors.
+- [![paypal](./dist/paypal_dfc.svg)](https://badges.aleen42.com/src/paypal_dfc.svg) A badge used for Paypal sponsors.
+
+
+### Car
+
+- [![mercedes_benz](./dist/mercedes_benz_dfc.svg)](https://badges.aleen42.com/src/mercedes_benz_dfc.svg) A badge used for cars of Mercedes Benz
+- [![toyota](./dist/toyota_dfc.svg)](https://badges.aleen42.com/src/toyota_dfc.svg) A badge used for cars of Toyota
+- [![lamborghini](./dist/lamborghini_dfc.svg)](https://badges.aleen42.com/src/lamborghini_dfc.svg) A badge used for cars of Lamborghini
+- [![land_rover](./dist/land_rover_dfc.svg)](https://badges.aleen42.com/src/land_rover_dfc.svg) A badge used for cars of Land Rover
+- [![bmw](./dist/bmw_dfc.svg)](https://badges.aleen42.com/src/bmw_dfc.svg) A badge used for cars of BMW
+- [![audi](./dist/audi_dfc.svg)](https://badges.aleen42.com/src/audi_dfc.svg) A badge used for cars of Audi
+- [![marussia](./dist/marussia_dfc.svg)](https://badges.aleen42.com/src/marussia_dfc.svg) A badge used for cars of Marussia
+- [![maserati](./dist/maserati_dfc.svg)](https://badges.aleen42.com/src/maserati_dfc.svg) A badge used for cars of Maserati
+- [![koenigsegg](./dist/koenigsegg_dfc.svg)](https://badges.aleen42.com/src/koenigsegg_dfc.svg) A badge used for cars of Koenigsegg
+- [![bugatti](./dist/bugatti_dfc.svg)](https://badges.aleen42.com/src/bugatti_dfc.svg) A badge used for cars of Bugatti
+- [![porsche](./dist/porsche_dfc.svg)](https://badges.aleen42.com/src/porsche_dfc.svg) A badge used for cars of Porsche
+- [![mitsubishi](./dist/mitsubishi_dfc.svg)](https://badges.aleen42.com/src/mitsubishi_dfc.svg) A badge used for cars of Mitsubishi
+- [![ferrari](./dist/ferrari_dfc.svg)](https://badges.aleen42.com/src/ferrari_dfc.svg) A badge used for cars of Ferrari
+- [![tesla](./dist/tesla_dfc.svg)](https://badges.aleen42.com/src/tesla_dfc.svg) A badge used for cars of Tesla
+
+
+### Football Clubs
+
+- [![manchester_united](./dist/manchester_united_dfc.svg)](https://badges.aleen42.com/src/manchester_united_dfc.svg) A badge used for FC Manchester United
+- [![real_madrid](./dist/real_madrid_dfc.svg)](https://badges.aleen42.com/src/real_madrid_dfc.svg) A badge used for FC Real Madrid
+- [![liverpool](./dist/liverpool_dfc.svg)](https://badges.aleen42.com/src/liverpool_dfc.svg) A badge used for FC Liverpool
+- [![chelsea](./dist/chelsea_dfc.svg)](https://badges.aleen42.com/src/chelsea_dfc.svg) A badge used for FC Chelsea
+- [![barcelona](./dist/barcelona_dfc.svg)](https://badges.aleen42.com/src/barcelona_dfc.svg) A badge used for FC Barcelona
+- [![bayern_munchen](./dist/bayern_munchen_dfc.svg)](https://badges.aleen42.com/src/bayern_munchen_dfc.svg) A badge used for FC Bayern Munchen
+- [![arsenal](./dist/arsenal_dfc.svg)](https://badges.aleen42.com/src/arsenal_dfc.svg) A badge used for FC Arsenal
+- [![ac_milan](./dist/ac_milan_dfc.svg)](https://badges.aleen42.com/src/ac_milan_dfc.svg) A badge used for FC AC Milan
+
+
+### Game
+
+- [![ingress](./dist/ingress_dfc.svg)](https://badges.aleen42.com/src/ingress_dfc.svg) A badge used for the game Ingress published by Niantic Inc.
+- [![steam](./dist/steam_dfc.svg)](https://badges.aleen42.com/src/steam_dfc.svg) A badge used for any game supported on the platform Steam
+- [![osu](./dist/osu_dfc.svg)](https://badges.aleen42.com/src/osu_dfc.svg) A badge used for the game osu! published by ppy
+
+
+### Designer
+
+- [![flash](./dist/flash_dfc.svg)](https://badges.aleen42.com/src/flash_dfc.svg) A badge used for designing projects using Flash as a tool
+- [![illustrator](./dist/illustrator_dfc.svg)](https://badges.aleen42.com/src/illustrator_dfc.svg) A badge used for designing projects using Illustrator as a tool
+- [![zeplin](./dist/zeplin_dfc.svg)](https://badges.aleen42.com/src/zeplin_dfc.svg) A badge used for designing projects with Zeplin
+- [![dreamweaver](./dist/dreamweaver_dfc.svg)](https://badges.aleen42.com/src/dreamweaver_dfc.svg) A badge used for projects using Dreamweaver as a tool
+- [![photoshop](./dist/photoshop_dfc.svg)](https://badges.aleen42.com/src/photoshop_dfc.svg) A badge used for designing projects using Photoshop as a tool
+- [![behance](./dist/behance_dfc.svg)](https://badges.aleen42.com/src/behance_dfc.svg) A badge used for designing projects sharing on Behance
+- [![after_effects](./dist/after_effects_dfc.svg)](https://badges.aleen42.com/src/after_effects_dfc.svg) A badge used for designing projects using After Effect as a tool
+- [![premiere](./dist/premiere_dfc.svg)](https://badges.aleen42.com/src/premiere_dfc.svg) A badge used for designing projects using Premiere as a tool
+
+### :fuelpump: How to contribute
+
+Have an idea? Found a bug? See [how to contribute](https://wiki.aleen42.com/contribution.html).
+
+### :scroll: License
+
+[MIT](https://wiki.aleen42.com/MIT.html) © aleen42
diff --git a/README_flat_square.md b/README_flat_square.md
new file mode 100644
index 0000000..f92839b
--- /dev/null
+++ b/README_flat_square.md
@@ -0,0 +1,258 @@
+## badges
+
+
+
+
+
+To make badges more standard and acceptable.
+
+
+
+
+
+![npm](dist/npm.svg) ![cli](dist/cli.svg) ![javascript](https://img.shields.io/badge/%20%20JavaScript-%20%20%20%20730L-f1e05a.svg) ![html](https://img.shields.io/badge/%20%20HTML-%20%20%20%20164L-e34c26.svg)
+
+Alternative: [**default**](./README.md), [**flat-square**](./README_flat_square.md), [**dynamic-fore-color**](./README_dfc.md), [**dynamic-fore-color (flat_square)**](./README_flat_square_dfc.md).
+
+A collection of badges designed for personal repositories, and I hope that all of these badges can be widely accepted and used in the document of any project so that they can become more and more standard. If you also have some new ideas about badges, just open an issue. Always remember that: **More than a coder, more than a designer.**
+
+So, how to create such cute badges? It's very simple. As it's only registered on [npm](https://www.npmjs.com/), you should install it by typing:
+
+```bash
+sudo npm install -g badges-cli
+```
+
+Then you can use this command-line tool for creating badges yourself:
+
+Take the following command as an example, `t` means text content, and `c` means color. If you want to create a badge with SVG sources, you can specify with `p` to tell the tool where to find your sources. Finally, `o` is used to specify where to export the badge.
+
+```bash
+badge -t Alipay -c "#1CACEB" -p alipay.svg --style=flat_square -o output.svg
+```
+
+One more thing, according to [the suggestion](https://github.com/facebook/jest/issues/5438#issuecomment-362553867) during creating badges for Jest, this tool has been extended to support skins with `s` to specify, which value can be "light" or "dark" temporarily at this moment.
+
+To uninstall the tool, you can just uninstall it by typing:
+
+```bash
+sudo npm uninstall -g badges-cli
+```
+
+As for how to create a badge and add it to the collection? There are some steps you may need to follow:
+
+1. Fork the repository
+2. Install `badges-cli`
+3. Create a logo with SVG formatted (**recommended**) or other formats like PNG. (_**The logo should be wrapped into a square, in another word, the width should be equal to the height, or it would have been horizontally squished.**_)
+4. Save the logo in the folder `dist`
+5. Add data for your badge in the file `script/data.js`
+ ```js
+ const data = {
+ // ...
+ 'React Router': {
+ fileName: 'react-router.svg',
+ color: '#D0021B',
+ description: 'A badge used for projects using React Router'
+ },
+ };
+ ```
+5. Run the script by typing `npm run build`
+6. If successful, the readme file will be automatically updated
+7. Finally, push all updates and create a pull request for your change
+8. **Done!!**
+
+> Note that: so far haven't I thought out a perfect solution for calculating the width of text accurately yet, and it means that the text can not be aligned in some cases.
+
+*Note: if you like this project, feel free to buy me a swimming chance:*
+
+[![badges](dist/paypal.svg)](http://paypal.me/aleen42) [![badges](dist/patreon.svg)](https://www.patreon.com/aleen42) [![badges](dist/buymeacoffee.svg)](https://www.buymeacoffee.com/aleen42)
+
+### Coder
+
+- [![cli](./dist/cli_flat_square.svg)](https://badges.aleen42.com/src/cli_flat_square.svg) A badge used for projects which provide command-line interfaces
+- [![terser](./dist/terser_flat_square.svg)](https://badges.aleen42.com/src/terser_flat_square.svg) A badge used for projects using [Terser](https://github.com/terser/terser) for compressing JavaScript
+- [![codepen](./dist/codepen_flat_square.svg)](https://badges.aleen42.com/src/codepen_flat_square.svg) A badge used for projects running on CodePen
+- [![github](./dist/github_flat_square.svg)](https://badges.aleen42.com/src/github_flat_square.svg) A badge used for GitHub repositories
+- [![hacker](./dist/hacker_flat_square.svg)](https://badges.aleen42.com/src/hacker_flat_square.svg) A badge used for hacking projects (**Business Using is not allowed)**
+- [![idea](./dist/idea_flat_square.svg)](https://badges.aleen42.com/src/idea_flat_square.svg) A badge for the IDEA editor
+- [![rome](./dist/rome_flat_square.svg)](https://badges.aleen42.com/src/rome_flat_square.svg) A badge used for projects built with [Rome](https://github.com/rome/tools)
+- [![elasticsearch](./dist/elasticsearch_flat_square.svg)](https://badges.aleen42.com/src/elasticsearch_flat_square.svg) A badge used for projects using [Elasticsearch](https://github.com/elastic/elasticsearch)
+- [![kibana](./dist/kibana_flat_square.svg)](https://badges.aleen42.com/src/kibana_flat_square.svg) A badge used for projects using [Kibana](https://github.com/elastic/kibana)
+- [![logstash](./dist/logstash_flat_square.svg)](https://badges.aleen42.com/src/logstash_flat_square.svg) A badge used for projects using [Logstash](https://github.com/elastic/logstash)
+- [![gitbook](./dist/gitbook_1_flat_square.svg)](https://badges.aleen42.com/src/gitbook_1_flat_square.svg) A badge used for books publish by Gitbook
+- [![gitbook](./dist/gitbook_2_flat_square.svg)](https://badges.aleen42.com/src/gitbook_2_flat_square.svg) A badge used for books publish by Gitbook
+- [![chrome_extensions](./dist/chrome_extensions_flat_square.svg)](https://badges.aleen42.com/src/chrome_extensions_flat_square.svg) A badge used for Chrome extensions
+- [![gulp](./dist/gulp_flat_square.svg)](https://badges.aleen42.com/src/gulp_flat_square.svg) A badge used for projects using Gulp to build
+- [![angular](./dist/angular_flat_square.svg)](https://badges.aleen42.com/src/angular_flat_square.svg) A badge used for repositories which has used the framework, Angular
+- [![postcss](./dist/postcss_flat_square.svg)](https://badges.aleen42.com/src/postcss_flat_square.svg) A badge used for projects using [PostCSS](https://github.com/postcss/postcss)
+- [![svelte](./dist/svelte_flat_square.svg)](https://badges.aleen42.com/src/svelte_flat_square.svg) A badge used for repositories that using [Svelte](https://github.com/sveltejs/svelte)
+- [![gitlab](./dist/gitlab_flat_square.svg)](https://badges.aleen42.com/src/gitlab_flat_square.svg) A badge used for Gitlab repositories
+- [![mocha](./dist/mocha_flat_square.svg)](https://badges.aleen42.com/src/mocha_flat_square.svg) A badge used for projects using Mocha for unit tests
+- [![bower](./dist/bower_flat_square.svg)](https://badges.aleen42.com/src/bower_flat_square.svg) A badge used for bower packages
+- [![java](./dist/java_flat_square.svg)](https://badges.aleen42.com/src/java_flat_square.svg) A badge used for projects that coded with Java
+- [![tc39](./dist/tc39_1_flat_square.svg)](https://badges.aleen42.com/src/tc39_1_flat_square.svg) A badge used for [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_2_flat_square.svg)](https://badges.aleen42.com/src/tc39_2_flat_square.svg) A badge used for proposals under stage 1 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_3_flat_square.svg)](https://badges.aleen42.com/src/tc39_3_flat_square.svg) A badge used for proposals under stage 2 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_4_flat_square.svg)](https://badges.aleen42.com/src/tc39_4_flat_square.svg) A badge used for proposals under stage 3 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_5_flat_square.svg)](https://badges.aleen42.com/src/tc39_5_flat_square.svg) A badge used for proposals under stage 4 of [TC39](https://github.com/tc39) committee
+- [![parcel](./dist/parcel_flat_square.svg)](https://badges.aleen42.com/src/parcel_flat_square.svg) A badge used for projects built with [Parcel](https://github.com/parcel-bundler/parcel)
+- [![grafana](./dist/grafana_flat_square.svg)](https://badges.aleen42.com/src/grafana_flat_square.svg) A badge used for projects using [Grafana](https://github.com/grafana/grafana)
+- [![sublime_text](./dist/sublime_text_flat_square.svg)](https://badges.aleen42.com/src/sublime_text_flat_square.svg) A badge for the Sulime Text editor
+- [![rss](./dist/rss_flat_square.svg)](https://badges.aleen42.com/src/rss_flat_square.svg) A badge used for RSS subscribing
+- [![grunt](./dist/grunt_flat_square.svg)](https://badges.aleen42.com/src/grunt_flat_square.svg) A badge used for projects using grunt to build
+- [![tensorflow](./dist/tensorflow_flat_square.svg)](https://badges.aleen42.com/src/tensorflow_flat_square.svg) A badge use for projects using Tensorflow
+- [![esbuild](./dist/esbuild_flat_square.svg)](https://badges.aleen42.com/src/esbuild_flat_square.svg) A badge used for projects built with [ESBuild](https://github.com/evanw/esbuild)
+- [![javascript](./dist/javascript_flat_square.svg)](https://badges.aleen42.com/src/javascript_flat_square.svg) A badge used for projects that coded with JavaScript
+- [![node](./dist/node_flat_square.svg)](https://badges.aleen42.com/src/node_flat_square.svg) A badge used for projects built with Node.js
+- [![atom](./dist/atom_flat_square.svg)](https://badges.aleen42.com/src/atom_flat_square.svg) A badge for the Atom editor
+- [![cssnano](./dist/cssnano_flat_square.svg)](https://badges.aleen42.com/src/cssnano_flat_square.svg) A badge used for projects using [CSSNano](https://github.com/cssnano/cssnano) for compacting CSS
+- [![vue](./dist/vue_flat_square.svg)](https://badges.aleen42.com/src/vue_flat_square.svg) A badge used for repositories which has used the framework, Vue
+- [![vuepress](./dist/vuepress_flat_square.svg)](https://badges.aleen42.com/src/vuepress_flat_square.svg) A badge used for books publish by Vuepress
+- [![apiary](./dist/apiary_flat_square.svg)](https://badges.aleen42.com/src/apiary_flat_square.svg) A badge used for documents written on Apiary
+- [![tailwindcss](./dist/tailwindcss_flat_square.svg)](https://badges.aleen42.com/src/tailwindcss_flat_square.svg) A badge used for projects using [TailwindCSS](https://github.com/tailwindlabs/tailwindcss)
+- [![golang](./dist/golang_flat_square.svg)](https://badges.aleen42.com/src/golang_flat_square.svg) A badge used for projects that coded with Golang
+- [![react](./dist/react_flat_square.svg)](https://badges.aleen42.com/src/react_flat_square.svg) A badge used for repositories that using [React](https://github.com/facebook/react)
+- [![docker](./dist/docker_flat_square.svg)](https://badges.aleen42.com/src/docker_flat_square.svg) A badge used for projects deployed on Docker
+- [![kotlin](./dist/kotlin_flat_square.svg)](https://badges.aleen42.com/src/kotlin_flat_square.svg) A badge used for projects that coded with Kotlin
+- [![visual_studio_code](./dist/visual_studio_code_flat_square.svg)](https://badges.aleen42.com/src/visual_studio_code_flat_square.svg) A badge for the Visual Studio Code IDE
+- [![typescript](./dist/typescript_flat_square.svg)](https://badges.aleen42.com/src/typescript_flat_square.svg) A badge used for projects that coded with TypeScript
+- [![python](./dist/python_flat_square.svg)](https://badges.aleen42.com/src/python_flat_square.svg) A badge used for projects that coded with Python
+- [![jsfiddle](./dist/jsfiddle_flat_square.svg)](https://badges.aleen42.com/src/jsfiddle_flat_square.svg) A badge used for projects running on JSFiddle
+- [![webpack](./dist/webpack_flat_square.svg)](https://badges.aleen42.com/src/webpack_flat_square.svg) A badge used for projects built with [Webpack](https://github.com/webpack/webpack)
+- [![vitejs](./dist/vitejs_flat_square.svg)](https://badges.aleen42.com/src/vitejs_flat_square.svg) A badge used for projects using [Vite](https://github.com/vitejs/vite)
+- [![eslint](./dist/eslint_flat_square.svg)](https://badges.aleen42.com/src/eslint_flat_square.svg) A badge used for projects using ESLint
+- [![eclipse](./dist/eclipse_flat_square.svg)](https://badges.aleen42.com/src/eclipse_flat_square.svg) A badge for the Eclipse editor
+- [![preact](./dist/preact_flat_square.svg)](https://badges.aleen42.com/src/preact_flat_square.svg) A badge used for repositories that using [Preact](https://github.com/preactjs/preact)
+- [![redux](./dist/redux_flat_square.svg)](https://badges.aleen42.com/src/redux_flat_square.svg) A badge used for projects using React Redux
+- [![visual_studio](./dist/visual_studio_flat_square.svg)](https://badges.aleen42.com/src/visual_studio_flat_square.svg) A badge for the Visual Studio IDE
+- [![jasmine](./dist/jasmine_flat_square.svg)](https://badges.aleen42.com/src/jasmine_flat_square.svg) A badge used for projects using Jasmine for testing JavaScript
+- [![qunit](./dist/qunit_flat_square.svg)](https://badges.aleen42.com/src/qunit_flat_square.svg) A badge for projects using QUnit for unit tests
+- [![reactivex](./dist/reactivex_flat_square.svg)](https://badges.aleen42.com/src/reactivex_flat_square.svg) A badge for projects using ReactiveX
+- [![modernizr](./dist/modernizr_flat_square.svg)](https://badges.aleen42.com/src/modernizr_flat_square.svg) A badge for projects using Modernizr
+- [![jest](./dist/jest_1_flat_square.svg)](https://badges.aleen42.com/src/jest_1_flat_square.svg) A badge used for projects using [Jest](https://github.com/facebook/jest) for testing JavaScript.
+- [![jest](./dist/jest_2_flat_square.svg)](https://badges.aleen42.com/src/jest_2_flat_square.svg) A badge used for projects using [Jest](https://github.com/facebook/jest) for testing JavaScript. *(**official accepted** by [facebook/jest#5348](https://github.com/facebook/jest/issues/5438))*
+- [![erlang](./dist/erlang_flat_square.svg)](https://badges.aleen42.com/src/erlang_flat_square.svg) A badge used for projects that coded with Erlang
+- [![react-router](./dist/react-router_flat_square.svg)](https://badges.aleen42.com/src/react-router_flat_square.svg) A badge used for projects using [React Router](https://github.com/remix-run/react-router)
+- [![npm](./dist/npm_flat_square.svg)](https://badges.aleen42.com/src/npm_flat_square.svg) A badge used for npm packages
+- [![rollup](./dist/rollup_flat_square.svg)](https://badges.aleen42.com/src/rollup_flat_square.svg) A badge used for projects built with [Rollup](https://github.com/rollup/rollup)
+
+
+### Community
+
+- [![stackoverflow](./dist/stackoverflow_flat_square.svg)](https://badges.aleen42.com/src/stackoverflow_flat_square.svg) A badge used for references on Stack Overflow.
+- [![medium](./dist/medium_flat_square.svg)](https://badges.aleen42.com/src/medium_flat_square.svg) A badge used for articles shared on Medium.
+- [![superuser](./dist/superuser_flat_square.svg)](https://badges.aleen42.com/src/superuser_flat_square.svg) A badge used for references on Super User
+- [![stackexchange](./dist/stackexchange_flat_square.svg)](https://badges.aleen42.com/src/stackexchange_flat_square.svg) A badge used for references on Stack Exchange.
+- [![juejin_translation](./dist/juejin_translation_flat_square.svg)](https://badges.aleen42.com/src/juejin_translation_flat_square.svg) A badge used for any articles translated by [gold-miner](https://github.com/xitu/gold-miner).
+- [![serverfault](./dist/serverfault_flat_square.svg)](https://badges.aleen42.com/src/serverfault_flat_square.svg) A badge used for references on Server Fault.
+
+
+### Communication
+
+- [![lunkr](./dist/lunkr_flat_square.svg)](https://badges.aleen42.com/src/lunkr_flat_square.svg) A badge used for sharing communication ways on Coremail Lunkr
+- [![wechat](./dist/wechat_flat_square.svg)](https://badges.aleen42.com/src/wechat_flat_square.svg) A badge used for sharing communication ways on WeChat
+- [![line](./dist/line_flat_square.svg)](https://badges.aleen42.com/src/line_flat_square.svg) A badge used for sharing communication ways on Line
+- [![whatsapp](./dist/whatsapp_flat_square.svg)](https://badges.aleen42.com/src/whatsapp_flat_square.svg) A badge used for sharing communication ways on WhatsApp
+- [![skype](./dist/skype_flat_square.svg)](https://badges.aleen42.com/src/skype_flat_square.svg) A badge used for sharing communication ways on Skype
+- [![telegram](./dist/telegram_flat_square.svg)](https://badges.aleen42.com/src/telegram_flat_square.svg) A badge used for sharing communication ways on Telegram
+- [![messenger](./dist/messenger_flat_square.svg)](https://badges.aleen42.com/src/messenger_flat_square.svg) A badge used for sharing communication ways on Messenger
+- [![discord](./dist/discord_flat_square.svg)](https://badges.aleen42.com/src/discord_flat_square.svg) A badge used for groups discussed on [Discord](https://discord.com/)
+- [![slack](./dist/slack_flat_square.svg)](https://badges.aleen42.com/src/slack_flat_square.svg) A badge used for groups discussed on [Slack](https://slack.com/)
+- [![gitter](./dist/gitter_flat_square.svg)](https://badges.aleen42.com/src/gitter_flat_square.svg) A badge used for groups discussed on [Gitter](https://gitter.im/)
+
+
+### Multimedia
+
+- [![soundcloud](./dist/soundcloud_flat_square.svg)](https://badges.aleen42.com/src/soundcloud_flat_square.svg) A badge used for music shared on SoundCloud
+- [![spotify](./dist/spotify_flat_square.svg)](https://badges.aleen42.com/src/spotify_flat_square.svg) A badge used for music shared on Spotify
+
+
+### Inc
+
+- [![soundtooth](./dist/soundtooth_flat_square.svg)](https://badges.aleen42.com/src/soundtooth_flat_square.svg) A badge used for any project of Soundtooth Inc.
+- [![bitcoin](./dist/bitcoin_flat_square.svg)](https://badges.aleen42.com/src/bitcoin_flat_square.svg) A badge used for the Bitcoin Inc.
+- [![amazon](./dist/amazon_flat_square.svg)](https://badges.aleen42.com/src/amazon_flat_square.svg) A badge used for the Amazon Inc.
+- [![monsoon](./dist/monsoon_flat_square.svg)](https://badges.aleen42.com/src/monsoon_flat_square.svg) A badge used for the Monsoon Inc.
+- [![codrops](./dist/codrops_flat_square.svg)](https://badges.aleen42.com/src/codrops_flat_square.svg) A badge used for any project of Codrops Inc.
+- [![coremail](./dist/coremail_flat_square.svg)](https://badges.aleen42.com/src/coremail_flat_square.svg) A badge used for the Coremail Inc.
+- [![nasa](./dist/nasa_flat_square.svg)](https://badges.aleen42.com/src/nasa_flat_square.svg) A badge used for projects of NASA
+- [![xitu](./dist/xitu_flat_square.svg)](https://badges.aleen42.com/src/xitu_flat_square.svg) A badge used for any articles of Xitu Inc.
+- [![airbnb](./dist/airbnb_flat_square.svg)](https://badges.aleen42.com/src/airbnb_flat_square.svg) A badge used for the Airbnb Inc.
+
+
+### Social Media
+
+- [![youtube](./dist/youtube_flat_square.svg)](https://badges.aleen42.com/src/youtube_flat_square.svg) A badge used for Youtube.
+- [![google_plus](./dist/google_plus_flat_square.svg)](https://badges.aleen42.com/src/google_plus_flat_square.svg) A badge used for sharing communities on Google Plus.
+- [![reddit](./dist/reddit_flat_square.svg)](https://badges.aleen42.com/src/reddit_flat_square.svg) A badge used for articles shared on Reddit.
+- [![snapchat](./dist/snapchat_flat_square.svg)](https://badges.aleen42.com/src/snapchat_flat_square.svg) A badge used for Snapchat.
+- [![twitter](./dist/twitter_flat_square.svg)](https://badges.aleen42.com/src/twitter_flat_square.svg) A badge used for Twitter.
+- [![facebook](./dist/facebook_flat_square.svg)](https://badges.aleen42.com/src/facebook_flat_square.svg) A badge used for Facebook.
+- [![instagram](./dist/instagram_flat_square.svg)](https://badges.aleen42.com/src/instagram_flat_square.svg) A badge used for Instagram.
+- [![sina_weibo](./dist/sina_weibo_flat_square.svg)](https://badges.aleen42.com/src/sina_weibo_flat_square.svg) A badge used for sharing communities on Sina Weibo.
+- [![pinterest](./dist/pinterest_flat_square.svg)](https://badges.aleen42.com/src/pinterest_flat_square.svg) A badge used for sharing communities on Pinterest.
+
+
+### Sponsors
+
+- [![patreon](./dist/patreon_flat_square.svg)](https://badges.aleen42.com/src/patreon_flat_square.svg) A badge used for Patreon sponsors.
+- [![buymeacoffee](./dist/buymeacoffee_flat_square.svg)](https://badges.aleen42.com/src/buymeacoffee_flat_square.svg) A badge used for BuyMeACoffee sponsors.
+- [![issuehunt](./dist/issuehunt_flat_square.svg)](https://badges.aleen42.com/src/issuehunt_flat_square.svg) A badge used for IssueHunt sponsors.
+- [![alipay](./dist/alipay_flat_square.svg)](https://badges.aleen42.com/src/alipay_flat_square.svg) A badge used for Alipay sponsors.
+- [![paypal](./dist/paypal_flat_square.svg)](https://badges.aleen42.com/src/paypal_flat_square.svg) A badge used for Paypal sponsors.
+
+
+### Car
+
+- [![mercedes_benz](./dist/mercedes_benz_flat_square.svg)](https://badges.aleen42.com/src/mercedes_benz_flat_square.svg) A badge used for cars of Mercedes Benz
+- [![toyota](./dist/toyota_flat_square.svg)](https://badges.aleen42.com/src/toyota_flat_square.svg) A badge used for cars of Toyota
+- [![lamborghini](./dist/lamborghini_flat_square.svg)](https://badges.aleen42.com/src/lamborghini_flat_square.svg) A badge used for cars of Lamborghini
+- [![land_rover](./dist/land_rover_flat_square.svg)](https://badges.aleen42.com/src/land_rover_flat_square.svg) A badge used for cars of Land Rover
+- [![bmw](./dist/bmw_flat_square.svg)](https://badges.aleen42.com/src/bmw_flat_square.svg) A badge used for cars of BMW
+- [![audi](./dist/audi_flat_square.svg)](https://badges.aleen42.com/src/audi_flat_square.svg) A badge used for cars of Audi
+- [![marussia](./dist/marussia_flat_square.svg)](https://badges.aleen42.com/src/marussia_flat_square.svg) A badge used for cars of Marussia
+- [![maserati](./dist/maserati_flat_square.svg)](https://badges.aleen42.com/src/maserati_flat_square.svg) A badge used for cars of Maserati
+- [![koenigsegg](./dist/koenigsegg_flat_square.svg)](https://badges.aleen42.com/src/koenigsegg_flat_square.svg) A badge used for cars of Koenigsegg
+- [![bugatti](./dist/bugatti_flat_square.svg)](https://badges.aleen42.com/src/bugatti_flat_square.svg) A badge used for cars of Bugatti
+- [![porsche](./dist/porsche_flat_square.svg)](https://badges.aleen42.com/src/porsche_flat_square.svg) A badge used for cars of Porsche
+- [![mitsubishi](./dist/mitsubishi_flat_square.svg)](https://badges.aleen42.com/src/mitsubishi_flat_square.svg) A badge used for cars of Mitsubishi
+- [![ferrari](./dist/ferrari_flat_square.svg)](https://badges.aleen42.com/src/ferrari_flat_square.svg) A badge used for cars of Ferrari
+- [![tesla](./dist/tesla_flat_square.svg)](https://badges.aleen42.com/src/tesla_flat_square.svg) A badge used for cars of Tesla
+
+
+### Football Clubs
+
+- [![manchester_united](./dist/manchester_united_flat_square.svg)](https://badges.aleen42.com/src/manchester_united_flat_square.svg) A badge used for FC Manchester United
+- [![real_madrid](./dist/real_madrid_flat_square.svg)](https://badges.aleen42.com/src/real_madrid_flat_square.svg) A badge used for FC Real Madrid
+- [![liverpool](./dist/liverpool_flat_square.svg)](https://badges.aleen42.com/src/liverpool_flat_square.svg) A badge used for FC Liverpool
+- [![chelsea](./dist/chelsea_flat_square.svg)](https://badges.aleen42.com/src/chelsea_flat_square.svg) A badge used for FC Chelsea
+- [![barcelona](./dist/barcelona_flat_square.svg)](https://badges.aleen42.com/src/barcelona_flat_square.svg) A badge used for FC Barcelona
+- [![bayern_munchen](./dist/bayern_munchen_flat_square.svg)](https://badges.aleen42.com/src/bayern_munchen_flat_square.svg) A badge used for FC Bayern Munchen
+- [![arsenal](./dist/arsenal_flat_square.svg)](https://badges.aleen42.com/src/arsenal_flat_square.svg) A badge used for FC Arsenal
+- [![ac_milan](./dist/ac_milan_flat_square.svg)](https://badges.aleen42.com/src/ac_milan_flat_square.svg) A badge used for FC AC Milan
+
+
+### Game
+
+- [![ingress](./dist/ingress_flat_square.svg)](https://badges.aleen42.com/src/ingress_flat_square.svg) A badge used for the game Ingress published by Niantic Inc.
+- [![steam](./dist/steam_flat_square.svg)](https://badges.aleen42.com/src/steam_flat_square.svg) A badge used for any game supported on the platform Steam
+- [![osu](./dist/osu_flat_square.svg)](https://badges.aleen42.com/src/osu_flat_square.svg) A badge used for the game osu! published by ppy
+
+
+### Designer
+
+- [![flash](./dist/flash_flat_square.svg)](https://badges.aleen42.com/src/flash_flat_square.svg) A badge used for designing projects using Flash as a tool
+- [![illustrator](./dist/illustrator_flat_square.svg)](https://badges.aleen42.com/src/illustrator_flat_square.svg) A badge used for designing projects using Illustrator as a tool
+- [![zeplin](./dist/zeplin_flat_square.svg)](https://badges.aleen42.com/src/zeplin_flat_square.svg) A badge used for designing projects with Zeplin
+- [![dreamweaver](./dist/dreamweaver_flat_square.svg)](https://badges.aleen42.com/src/dreamweaver_flat_square.svg) A badge used for projects using Dreamweaver as a tool
+- [![photoshop](./dist/photoshop_flat_square.svg)](https://badges.aleen42.com/src/photoshop_flat_square.svg) A badge used for designing projects using Photoshop as a tool
+- [![behance](./dist/behance_flat_square.svg)](https://badges.aleen42.com/src/behance_flat_square.svg) A badge used for designing projects sharing on Behance
+- [![after_effects](./dist/after_effects_flat_square.svg)](https://badges.aleen42.com/src/after_effects_flat_square.svg) A badge used for designing projects using After Effect as a tool
+- [![premiere](./dist/premiere_flat_square.svg)](https://badges.aleen42.com/src/premiere_flat_square.svg) A badge used for designing projects using Premiere as a tool
+
+### :fuelpump: How to contribute
+
+Have an idea? Found a bug? See [how to contribute](https://wiki.aleen42.com/contribution.html).
+
+### :scroll: License
+
+[MIT](https://wiki.aleen42.com/MIT.html) © aleen42
diff --git a/README_flat_square_dfc.md b/README_flat_square_dfc.md
new file mode 100644
index 0000000..f5d0953
--- /dev/null
+++ b/README_flat_square_dfc.md
@@ -0,0 +1,258 @@
+## badges
+
+
+
+
+
+To make badges more standard and acceptable.
+
+
+
+
+
+![npm](dist/npm.svg) ![cli](dist/cli.svg) ![javascript](https://img.shields.io/badge/%20%20JavaScript-%20%20%20%20730L-f1e05a.svg) ![html](https://img.shields.io/badge/%20%20HTML-%20%20%20%20164L-e34c26.svg)
+
+Alternative: [**default**](./README.md), [**flat-square**](./README_flat_square.md), [**dynamic-fore-color**](./README_dfc.md), [**dynamic-fore-color (flat_square)**](./README_flat_square_dfc.md).
+
+A collection of badges designed for personal repositories, and I hope that all of these badges can be widely accepted and used in the document of any project so that they can become more and more standard. If you also have some new ideas about badges, just open an issue. Always remember that: **More than a coder, more than a designer.**
+
+So, how to create such cute badges? It's very simple. As it's only registered on [npm](https://www.npmjs.com/), you should install it by typing:
+
+```bash
+sudo npm install -g badges-cli
+```
+
+Then you can use this command-line tool for creating badges yourself:
+
+Take the following command as an example, `t` means text content, and `c` means color. If you want to create a badge with SVG sources, you can specify with `p` to tell the tool where to find your sources. Finally, `o` is used to specify where to export the badge.
+
+```bash
+badge -t Alipay -c "#1CACEB" -p alipay.svg --style=flat_square --dynamic-fore-color -o output.svg
+```
+
+One more thing, according to [the suggestion](https://github.com/facebook/jest/issues/5438#issuecomment-362553867) during creating badges for Jest, this tool has been extended to support skins with `s` to specify, which value can be "light" or "dark" temporarily at this moment.
+
+To uninstall the tool, you can just uninstall it by typing:
+
+```bash
+sudo npm uninstall -g badges-cli
+```
+
+As for how to create a badge and add it to the collection? There are some steps you may need to follow:
+
+1. Fork the repository
+2. Install `badges-cli`
+3. Create a logo with SVG formatted (**recommended**) or other formats like PNG. (_**The logo should be wrapped into a square, in another word, the width should be equal to the height, or it would have been horizontally squished.**_)
+4. Save the logo in the folder `dist`
+5. Add data for your badge in the file `script/data.js`
+ ```js
+ const data = {
+ // ...
+ 'React Router': {
+ fileName: 'react-router.svg',
+ color: '#D0021B',
+ description: 'A badge used for projects using React Router'
+ },
+ };
+ ```
+5. Run the script by typing `npm run build`
+6. If successful, the readme file will be automatically updated
+7. Finally, push all updates and create a pull request for your change
+8. **Done!!**
+
+> Note that: so far haven't I thought out a perfect solution for calculating the width of text accurately yet, and it means that the text can not be aligned in some cases.
+
+*Note: if you like this project, feel free to buy me a swimming chance:*
+
+[![badges](dist/paypal.svg)](http://paypal.me/aleen42) [![badges](dist/patreon.svg)](https://www.patreon.com/aleen42) [![badges](dist/buymeacoffee.svg)](https://www.buymeacoffee.com/aleen42)
+
+### Coder
+
+- [![cli](./dist/cli_flat_square_dfc.svg)](https://badges.aleen42.com/src/cli_flat_square_dfc.svg) A badge used for projects which provide command-line interfaces
+- [![terser](./dist/terser_flat_square_dfc.svg)](https://badges.aleen42.com/src/terser_flat_square_dfc.svg) A badge used for projects using [Terser](https://github.com/terser/terser) for compressing JavaScript
+- [![codepen](./dist/codepen_flat_square_dfc.svg)](https://badges.aleen42.com/src/codepen_flat_square_dfc.svg) A badge used for projects running on CodePen
+- [![github](./dist/github_flat_square_dfc.svg)](https://badges.aleen42.com/src/github_flat_square_dfc.svg) A badge used for GitHub repositories
+- [![hacker](./dist/hacker_flat_square_dfc.svg)](https://badges.aleen42.com/src/hacker_flat_square_dfc.svg) A badge used for hacking projects (**Business Using is not allowed)**
+- [![idea](./dist/idea_flat_square_dfc.svg)](https://badges.aleen42.com/src/idea_flat_square_dfc.svg) A badge for the IDEA editor
+- [![rome](./dist/rome_flat_square_dfc.svg)](https://badges.aleen42.com/src/rome_flat_square_dfc.svg) A badge used for projects built with [Rome](https://github.com/rome/tools)
+- [![elasticsearch](./dist/elasticsearch_flat_square_dfc.svg)](https://badges.aleen42.com/src/elasticsearch_flat_square_dfc.svg) A badge used for projects using [Elasticsearch](https://github.com/elastic/elasticsearch)
+- [![kibana](./dist/kibana_flat_square_dfc.svg)](https://badges.aleen42.com/src/kibana_flat_square_dfc.svg) A badge used for projects using [Kibana](https://github.com/elastic/kibana)
+- [![logstash](./dist/logstash_flat_square_dfc.svg)](https://badges.aleen42.com/src/logstash_flat_square_dfc.svg) A badge used for projects using [Logstash](https://github.com/elastic/logstash)
+- [![gitbook](./dist/gitbook_1_flat_square_dfc.svg)](https://badges.aleen42.com/src/gitbook_1_flat_square_dfc.svg) A badge used for books publish by Gitbook
+- [![gitbook](./dist/gitbook_2_flat_square_dfc.svg)](https://badges.aleen42.com/src/gitbook_2_flat_square_dfc.svg) A badge used for books publish by Gitbook
+- [![chrome_extensions](./dist/chrome_extensions_flat_square_dfc.svg)](https://badges.aleen42.com/src/chrome_extensions_flat_square_dfc.svg) A badge used for Chrome extensions
+- [![gulp](./dist/gulp_flat_square_dfc.svg)](https://badges.aleen42.com/src/gulp_flat_square_dfc.svg) A badge used for projects using Gulp to build
+- [![angular](./dist/angular_flat_square_dfc.svg)](https://badges.aleen42.com/src/angular_flat_square_dfc.svg) A badge used for repositories which has used the framework, Angular
+- [![postcss](./dist/postcss_flat_square_dfc.svg)](https://badges.aleen42.com/src/postcss_flat_square_dfc.svg) A badge used for projects using [PostCSS](https://github.com/postcss/postcss)
+- [![svelte](./dist/svelte_flat_square_dfc.svg)](https://badges.aleen42.com/src/svelte_flat_square_dfc.svg) A badge used for repositories that using [Svelte](https://github.com/sveltejs/svelte)
+- [![gitlab](./dist/gitlab_flat_square_dfc.svg)](https://badges.aleen42.com/src/gitlab_flat_square_dfc.svg) A badge used for Gitlab repositories
+- [![mocha](./dist/mocha_flat_square_dfc.svg)](https://badges.aleen42.com/src/mocha_flat_square_dfc.svg) A badge used for projects using Mocha for unit tests
+- [![bower](./dist/bower_flat_square_dfc.svg)](https://badges.aleen42.com/src/bower_flat_square_dfc.svg) A badge used for bower packages
+- [![java](./dist/java_flat_square_dfc.svg)](https://badges.aleen42.com/src/java_flat_square_dfc.svg) A badge used for projects that coded with Java
+- [![tc39](./dist/tc39_1_flat_square_dfc.svg)](https://badges.aleen42.com/src/tc39_1_flat_square_dfc.svg) A badge used for [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_2_flat_square_dfc.svg)](https://badges.aleen42.com/src/tc39_2_flat_square_dfc.svg) A badge used for proposals under stage 1 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_3_flat_square_dfc.svg)](https://badges.aleen42.com/src/tc39_3_flat_square_dfc.svg) A badge used for proposals under stage 2 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_4_flat_square_dfc.svg)](https://badges.aleen42.com/src/tc39_4_flat_square_dfc.svg) A badge used for proposals under stage 3 of [TC39](https://github.com/tc39) committee
+- [![tc39](./dist/tc39_5_flat_square_dfc.svg)](https://badges.aleen42.com/src/tc39_5_flat_square_dfc.svg) A badge used for proposals under stage 4 of [TC39](https://github.com/tc39) committee
+- [![parcel](./dist/parcel_flat_square_dfc.svg)](https://badges.aleen42.com/src/parcel_flat_square_dfc.svg) A badge used for projects built with [Parcel](https://github.com/parcel-bundler/parcel)
+- [![grafana](./dist/grafana_flat_square_dfc.svg)](https://badges.aleen42.com/src/grafana_flat_square_dfc.svg) A badge used for projects using [Grafana](https://github.com/grafana/grafana)
+- [![sublime_text](./dist/sublime_text_flat_square_dfc.svg)](https://badges.aleen42.com/src/sublime_text_flat_square_dfc.svg) A badge for the Sulime Text editor
+- [![rss](./dist/rss_flat_square_dfc.svg)](https://badges.aleen42.com/src/rss_flat_square_dfc.svg) A badge used for RSS subscribing
+- [![grunt](./dist/grunt_flat_square_dfc.svg)](https://badges.aleen42.com/src/grunt_flat_square_dfc.svg) A badge used for projects using grunt to build
+- [![tensorflow](./dist/tensorflow_flat_square_dfc.svg)](https://badges.aleen42.com/src/tensorflow_flat_square_dfc.svg) A badge use for projects using Tensorflow
+- [![esbuild](./dist/esbuild_flat_square_dfc.svg)](https://badges.aleen42.com/src/esbuild_flat_square_dfc.svg) A badge used for projects built with [ESBuild](https://github.com/evanw/esbuild)
+- [![javascript](./dist/javascript_flat_square_dfc.svg)](https://badges.aleen42.com/src/javascript_flat_square_dfc.svg) A badge used for projects that coded with JavaScript
+- [![node](./dist/node_flat_square_dfc.svg)](https://badges.aleen42.com/src/node_flat_square_dfc.svg) A badge used for projects built with Node.js
+- [![atom](./dist/atom_flat_square_dfc.svg)](https://badges.aleen42.com/src/atom_flat_square_dfc.svg) A badge for the Atom editor
+- [![cssnano](./dist/cssnano_flat_square_dfc.svg)](https://badges.aleen42.com/src/cssnano_flat_square_dfc.svg) A badge used for projects using [CSSNano](https://github.com/cssnano/cssnano) for compacting CSS
+- [![vue](./dist/vue_flat_square_dfc.svg)](https://badges.aleen42.com/src/vue_flat_square_dfc.svg) A badge used for repositories which has used the framework, Vue
+- [![vuepress](./dist/vuepress_flat_square_dfc.svg)](https://badges.aleen42.com/src/vuepress_flat_square_dfc.svg) A badge used for books publish by Vuepress
+- [![apiary](./dist/apiary_flat_square_dfc.svg)](https://badges.aleen42.com/src/apiary_flat_square_dfc.svg) A badge used for documents written on Apiary
+- [![tailwindcss](./dist/tailwindcss_flat_square_dfc.svg)](https://badges.aleen42.com/src/tailwindcss_flat_square_dfc.svg) A badge used for projects using [TailwindCSS](https://github.com/tailwindlabs/tailwindcss)
+- [![golang](./dist/golang_flat_square_dfc.svg)](https://badges.aleen42.com/src/golang_flat_square_dfc.svg) A badge used for projects that coded with Golang
+- [![react](./dist/react_flat_square_dfc.svg)](https://badges.aleen42.com/src/react_flat_square_dfc.svg) A badge used for repositories that using [React](https://github.com/facebook/react)
+- [![docker](./dist/docker_flat_square_dfc.svg)](https://badges.aleen42.com/src/docker_flat_square_dfc.svg) A badge used for projects deployed on Docker
+- [![kotlin](./dist/kotlin_flat_square_dfc.svg)](https://badges.aleen42.com/src/kotlin_flat_square_dfc.svg) A badge used for projects that coded with Kotlin
+- [![visual_studio_code](./dist/visual_studio_code_flat_square_dfc.svg)](https://badges.aleen42.com/src/visual_studio_code_flat_square_dfc.svg) A badge for the Visual Studio Code IDE
+- [![typescript](./dist/typescript_flat_square_dfc.svg)](https://badges.aleen42.com/src/typescript_flat_square_dfc.svg) A badge used for projects that coded with TypeScript
+- [![python](./dist/python_flat_square_dfc.svg)](https://badges.aleen42.com/src/python_flat_square_dfc.svg) A badge used for projects that coded with Python
+- [![jsfiddle](./dist/jsfiddle_flat_square_dfc.svg)](https://badges.aleen42.com/src/jsfiddle_flat_square_dfc.svg) A badge used for projects running on JSFiddle
+- [![webpack](./dist/webpack_flat_square_dfc.svg)](https://badges.aleen42.com/src/webpack_flat_square_dfc.svg) A badge used for projects built with [Webpack](https://github.com/webpack/webpack)
+- [![vitejs](./dist/vitejs_flat_square_dfc.svg)](https://badges.aleen42.com/src/vitejs_flat_square_dfc.svg) A badge used for projects using [Vite](https://github.com/vitejs/vite)
+- [![eslint](./dist/eslint_flat_square_dfc.svg)](https://badges.aleen42.com/src/eslint_flat_square_dfc.svg) A badge used for projects using ESLint
+- [![eclipse](./dist/eclipse_flat_square_dfc.svg)](https://badges.aleen42.com/src/eclipse_flat_square_dfc.svg) A badge for the Eclipse editor
+- [![preact](./dist/preact_flat_square_dfc.svg)](https://badges.aleen42.com/src/preact_flat_square_dfc.svg) A badge used for repositories that using [Preact](https://github.com/preactjs/preact)
+- [![redux](./dist/redux_flat_square_dfc.svg)](https://badges.aleen42.com/src/redux_flat_square_dfc.svg) A badge used for projects using React Redux
+- [![visual_studio](./dist/visual_studio_flat_square_dfc.svg)](https://badges.aleen42.com/src/visual_studio_flat_square_dfc.svg) A badge for the Visual Studio IDE
+- [![jasmine](./dist/jasmine_flat_square_dfc.svg)](https://badges.aleen42.com/src/jasmine_flat_square_dfc.svg) A badge used for projects using Jasmine for testing JavaScript
+- [![qunit](./dist/qunit_flat_square_dfc.svg)](https://badges.aleen42.com/src/qunit_flat_square_dfc.svg) A badge for projects using QUnit for unit tests
+- [![reactivex](./dist/reactivex_flat_square_dfc.svg)](https://badges.aleen42.com/src/reactivex_flat_square_dfc.svg) A badge for projects using ReactiveX
+- [![modernizr](./dist/modernizr_flat_square_dfc.svg)](https://badges.aleen42.com/src/modernizr_flat_square_dfc.svg) A badge for projects using Modernizr
+- [![jest](./dist/jest_1_flat_square_dfc.svg)](https://badges.aleen42.com/src/jest_1_flat_square_dfc.svg) A badge used for projects using [Jest](https://github.com/facebook/jest) for testing JavaScript.
+- [![jest](./dist/jest_2_flat_square_dfc.svg)](https://badges.aleen42.com/src/jest_2_flat_square_dfc.svg) A badge used for projects using [Jest](https://github.com/facebook/jest) for testing JavaScript. *(**official accepted** by [facebook/jest#5348](https://github.com/facebook/jest/issues/5438))*
+- [![erlang](./dist/erlang_flat_square_dfc.svg)](https://badges.aleen42.com/src/erlang_flat_square_dfc.svg) A badge used for projects that coded with Erlang
+- [![react-router](./dist/react-router_flat_square_dfc.svg)](https://badges.aleen42.com/src/react-router_flat_square_dfc.svg) A badge used for projects using [React Router](https://github.com/remix-run/react-router)
+- [![npm](./dist/npm_flat_square_dfc.svg)](https://badges.aleen42.com/src/npm_flat_square_dfc.svg) A badge used for npm packages
+- [![rollup](./dist/rollup_flat_square_dfc.svg)](https://badges.aleen42.com/src/rollup_flat_square_dfc.svg) A badge used for projects built with [Rollup](https://github.com/rollup/rollup)
+
+
+### Community
+
+- [![stackoverflow](./dist/stackoverflow_flat_square_dfc.svg)](https://badges.aleen42.com/src/stackoverflow_flat_square_dfc.svg) A badge used for references on Stack Overflow.
+- [![medium](./dist/medium_flat_square_dfc.svg)](https://badges.aleen42.com/src/medium_flat_square_dfc.svg) A badge used for articles shared on Medium.
+- [![superuser](./dist/superuser_flat_square_dfc.svg)](https://badges.aleen42.com/src/superuser_flat_square_dfc.svg) A badge used for references on Super User
+- [![stackexchange](./dist/stackexchange_flat_square_dfc.svg)](https://badges.aleen42.com/src/stackexchange_flat_square_dfc.svg) A badge used for references on Stack Exchange.
+- [![juejin_translation](./dist/juejin_translation_flat_square_dfc.svg)](https://badges.aleen42.com/src/juejin_translation_flat_square_dfc.svg) A badge used for any articles translated by [gold-miner](https://github.com/xitu/gold-miner).
+- [![serverfault](./dist/serverfault_flat_square_dfc.svg)](https://badges.aleen42.com/src/serverfault_flat_square_dfc.svg) A badge used for references on Server Fault.
+
+
+### Communication
+
+- [![lunkr](./dist/lunkr_flat_square_dfc.svg)](https://badges.aleen42.com/src/lunkr_flat_square_dfc.svg) A badge used for sharing communication ways on Coremail Lunkr
+- [![wechat](./dist/wechat_flat_square_dfc.svg)](https://badges.aleen42.com/src/wechat_flat_square_dfc.svg) A badge used for sharing communication ways on WeChat
+- [![line](./dist/line_flat_square_dfc.svg)](https://badges.aleen42.com/src/line_flat_square_dfc.svg) A badge used for sharing communication ways on Line
+- [![whatsapp](./dist/whatsapp_flat_square_dfc.svg)](https://badges.aleen42.com/src/whatsapp_flat_square_dfc.svg) A badge used for sharing communication ways on WhatsApp
+- [![skype](./dist/skype_flat_square_dfc.svg)](https://badges.aleen42.com/src/skype_flat_square_dfc.svg) A badge used for sharing communication ways on Skype
+- [![telegram](./dist/telegram_flat_square_dfc.svg)](https://badges.aleen42.com/src/telegram_flat_square_dfc.svg) A badge used for sharing communication ways on Telegram
+- [![messenger](./dist/messenger_flat_square_dfc.svg)](https://badges.aleen42.com/src/messenger_flat_square_dfc.svg) A badge used for sharing communication ways on Messenger
+- [![discord](./dist/discord_flat_square_dfc.svg)](https://badges.aleen42.com/src/discord_flat_square_dfc.svg) A badge used for groups discussed on [Discord](https://discord.com/)
+- [![slack](./dist/slack_flat_square_dfc.svg)](https://badges.aleen42.com/src/slack_flat_square_dfc.svg) A badge used for groups discussed on [Slack](https://slack.com/)
+- [![gitter](./dist/gitter_flat_square_dfc.svg)](https://badges.aleen42.com/src/gitter_flat_square_dfc.svg) A badge used for groups discussed on [Gitter](https://gitter.im/)
+
+
+### Multimedia
+
+- [![soundcloud](./dist/soundcloud_flat_square_dfc.svg)](https://badges.aleen42.com/src/soundcloud_flat_square_dfc.svg) A badge used for music shared on SoundCloud
+- [![spotify](./dist/spotify_flat_square_dfc.svg)](https://badges.aleen42.com/src/spotify_flat_square_dfc.svg) A badge used for music shared on Spotify
+
+
+### Inc
+
+- [![soundtooth](./dist/soundtooth_flat_square_dfc.svg)](https://badges.aleen42.com/src/soundtooth_flat_square_dfc.svg) A badge used for any project of Soundtooth Inc.
+- [![bitcoin](./dist/bitcoin_flat_square_dfc.svg)](https://badges.aleen42.com/src/bitcoin_flat_square_dfc.svg) A badge used for the Bitcoin Inc.
+- [![amazon](./dist/amazon_flat_square_dfc.svg)](https://badges.aleen42.com/src/amazon_flat_square_dfc.svg) A badge used for the Amazon Inc.
+- [![monsoon](./dist/monsoon_flat_square_dfc.svg)](https://badges.aleen42.com/src/monsoon_flat_square_dfc.svg) A badge used for the Monsoon Inc.
+- [![codrops](./dist/codrops_flat_square_dfc.svg)](https://badges.aleen42.com/src/codrops_flat_square_dfc.svg) A badge used for any project of Codrops Inc.
+- [![coremail](./dist/coremail_flat_square_dfc.svg)](https://badges.aleen42.com/src/coremail_flat_square_dfc.svg) A badge used for the Coremail Inc.
+- [![nasa](./dist/nasa_flat_square_dfc.svg)](https://badges.aleen42.com/src/nasa_flat_square_dfc.svg) A badge used for projects of NASA
+- [![xitu](./dist/xitu_flat_square_dfc.svg)](https://badges.aleen42.com/src/xitu_flat_square_dfc.svg) A badge used for any articles of Xitu Inc.
+- [![airbnb](./dist/airbnb_flat_square_dfc.svg)](https://badges.aleen42.com/src/airbnb_flat_square_dfc.svg) A badge used for the Airbnb Inc.
+
+
+### Social Media
+
+- [![youtube](./dist/youtube_flat_square_dfc.svg)](https://badges.aleen42.com/src/youtube_flat_square_dfc.svg) A badge used for Youtube.
+- [![google_plus](./dist/google_plus_flat_square_dfc.svg)](https://badges.aleen42.com/src/google_plus_flat_square_dfc.svg) A badge used for sharing communities on Google Plus.
+- [![reddit](./dist/reddit_flat_square_dfc.svg)](https://badges.aleen42.com/src/reddit_flat_square_dfc.svg) A badge used for articles shared on Reddit.
+- [![snapchat](./dist/snapchat_flat_square_dfc.svg)](https://badges.aleen42.com/src/snapchat_flat_square_dfc.svg) A badge used for Snapchat.
+- [![twitter](./dist/twitter_flat_square_dfc.svg)](https://badges.aleen42.com/src/twitter_flat_square_dfc.svg) A badge used for Twitter.
+- [![facebook](./dist/facebook_flat_square_dfc.svg)](https://badges.aleen42.com/src/facebook_flat_square_dfc.svg) A badge used for Facebook.
+- [![instagram](./dist/instagram_flat_square_dfc.svg)](https://badges.aleen42.com/src/instagram_flat_square_dfc.svg) A badge used for Instagram.
+- [![sina_weibo](./dist/sina_weibo_flat_square_dfc.svg)](https://badges.aleen42.com/src/sina_weibo_flat_square_dfc.svg) A badge used for sharing communities on Sina Weibo.
+- [![pinterest](./dist/pinterest_flat_square_dfc.svg)](https://badges.aleen42.com/src/pinterest_flat_square_dfc.svg) A badge used for sharing communities on Pinterest.
+
+
+### Sponsors
+
+- [![patreon](./dist/patreon_flat_square_dfc.svg)](https://badges.aleen42.com/src/patreon_flat_square_dfc.svg) A badge used for Patreon sponsors.
+- [![buymeacoffee](./dist/buymeacoffee_flat_square_dfc.svg)](https://badges.aleen42.com/src/buymeacoffee_flat_square_dfc.svg) A badge used for BuyMeACoffee sponsors.
+- [![issuehunt](./dist/issuehunt_flat_square_dfc.svg)](https://badges.aleen42.com/src/issuehunt_flat_square_dfc.svg) A badge used for IssueHunt sponsors.
+- [![alipay](./dist/alipay_flat_square_dfc.svg)](https://badges.aleen42.com/src/alipay_flat_square_dfc.svg) A badge used for Alipay sponsors.
+- [![paypal](./dist/paypal_flat_square_dfc.svg)](https://badges.aleen42.com/src/paypal_flat_square_dfc.svg) A badge used for Paypal sponsors.
+
+
+### Car
+
+- [![mercedes_benz](./dist/mercedes_benz_flat_square_dfc.svg)](https://badges.aleen42.com/src/mercedes_benz_flat_square_dfc.svg) A badge used for cars of Mercedes Benz
+- [![toyota](./dist/toyota_flat_square_dfc.svg)](https://badges.aleen42.com/src/toyota_flat_square_dfc.svg) A badge used for cars of Toyota
+- [![lamborghini](./dist/lamborghini_flat_square_dfc.svg)](https://badges.aleen42.com/src/lamborghini_flat_square_dfc.svg) A badge used for cars of Lamborghini
+- [![land_rover](./dist/land_rover_flat_square_dfc.svg)](https://badges.aleen42.com/src/land_rover_flat_square_dfc.svg) A badge used for cars of Land Rover
+- [![bmw](./dist/bmw_flat_square_dfc.svg)](https://badges.aleen42.com/src/bmw_flat_square_dfc.svg) A badge used for cars of BMW
+- [![audi](./dist/audi_flat_square_dfc.svg)](https://badges.aleen42.com/src/audi_flat_square_dfc.svg) A badge used for cars of Audi
+- [![marussia](./dist/marussia_flat_square_dfc.svg)](https://badges.aleen42.com/src/marussia_flat_square_dfc.svg) A badge used for cars of Marussia
+- [![maserati](./dist/maserati_flat_square_dfc.svg)](https://badges.aleen42.com/src/maserati_flat_square_dfc.svg) A badge used for cars of Maserati
+- [![koenigsegg](./dist/koenigsegg_flat_square_dfc.svg)](https://badges.aleen42.com/src/koenigsegg_flat_square_dfc.svg) A badge used for cars of Koenigsegg
+- [![bugatti](./dist/bugatti_flat_square_dfc.svg)](https://badges.aleen42.com/src/bugatti_flat_square_dfc.svg) A badge used for cars of Bugatti
+- [![porsche](./dist/porsche_flat_square_dfc.svg)](https://badges.aleen42.com/src/porsche_flat_square_dfc.svg) A badge used for cars of Porsche
+- [![mitsubishi](./dist/mitsubishi_flat_square_dfc.svg)](https://badges.aleen42.com/src/mitsubishi_flat_square_dfc.svg) A badge used for cars of Mitsubishi
+- [![ferrari](./dist/ferrari_flat_square_dfc.svg)](https://badges.aleen42.com/src/ferrari_flat_square_dfc.svg) A badge used for cars of Ferrari
+- [![tesla](./dist/tesla_flat_square_dfc.svg)](https://badges.aleen42.com/src/tesla_flat_square_dfc.svg) A badge used for cars of Tesla
+
+
+### Football Clubs
+
+- [![manchester_united](./dist/manchester_united_flat_square_dfc.svg)](https://badges.aleen42.com/src/manchester_united_flat_square_dfc.svg) A badge used for FC Manchester United
+- [![real_madrid](./dist/real_madrid_flat_square_dfc.svg)](https://badges.aleen42.com/src/real_madrid_flat_square_dfc.svg) A badge used for FC Real Madrid
+- [![liverpool](./dist/liverpool_flat_square_dfc.svg)](https://badges.aleen42.com/src/liverpool_flat_square_dfc.svg) A badge used for FC Liverpool
+- [![chelsea](./dist/chelsea_flat_square_dfc.svg)](https://badges.aleen42.com/src/chelsea_flat_square_dfc.svg) A badge used for FC Chelsea
+- [![barcelona](./dist/barcelona_flat_square_dfc.svg)](https://badges.aleen42.com/src/barcelona_flat_square_dfc.svg) A badge used for FC Barcelona
+- [![bayern_munchen](./dist/bayern_munchen_flat_square_dfc.svg)](https://badges.aleen42.com/src/bayern_munchen_flat_square_dfc.svg) A badge used for FC Bayern Munchen
+- [![arsenal](./dist/arsenal_flat_square_dfc.svg)](https://badges.aleen42.com/src/arsenal_flat_square_dfc.svg) A badge used for FC Arsenal
+- [![ac_milan](./dist/ac_milan_flat_square_dfc.svg)](https://badges.aleen42.com/src/ac_milan_flat_square_dfc.svg) A badge used for FC AC Milan
+
+
+### Game
+
+- [![ingress](./dist/ingress_flat_square_dfc.svg)](https://badges.aleen42.com/src/ingress_flat_square_dfc.svg) A badge used for the game Ingress published by Niantic Inc.
+- [![steam](./dist/steam_flat_square_dfc.svg)](https://badges.aleen42.com/src/steam_flat_square_dfc.svg) A badge used for any game supported on the platform Steam
+- [![osu](./dist/osu_flat_square_dfc.svg)](https://badges.aleen42.com/src/osu_flat_square_dfc.svg) A badge used for the game osu! published by ppy
+
+
+### Designer
+
+- [![flash](./dist/flash_flat_square_dfc.svg)](https://badges.aleen42.com/src/flash_flat_square_dfc.svg) A badge used for designing projects using Flash as a tool
+- [![illustrator](./dist/illustrator_flat_square_dfc.svg)](https://badges.aleen42.com/src/illustrator_flat_square_dfc.svg) A badge used for designing projects using Illustrator as a tool
+- [![zeplin](./dist/zeplin_flat_square_dfc.svg)](https://badges.aleen42.com/src/zeplin_flat_square_dfc.svg) A badge used for designing projects with Zeplin
+- [![dreamweaver](./dist/dreamweaver_flat_square_dfc.svg)](https://badges.aleen42.com/src/dreamweaver_flat_square_dfc.svg) A badge used for projects using Dreamweaver as a tool
+- [![photoshop](./dist/photoshop_flat_square_dfc.svg)](https://badges.aleen42.com/src/photoshop_flat_square_dfc.svg) A badge used for designing projects using Photoshop as a tool
+- [![behance](./dist/behance_flat_square_dfc.svg)](https://badges.aleen42.com/src/behance_flat_square_dfc.svg) A badge used for designing projects sharing on Behance
+- [![after_effects](./dist/after_effects_flat_square_dfc.svg)](https://badges.aleen42.com/src/after_effects_flat_square_dfc.svg) A badge used for designing projects using After Effect as a tool
+- [![premiere](./dist/premiere_flat_square_dfc.svg)](https://badges.aleen42.com/src/premiere_flat_square_dfc.svg) A badge used for designing projects using Premiere as a tool
+
+### :fuelpump: How to contribute
+
+Have an idea? Found a bug? See [how to contribute](https://wiki.aleen42.com/contribution.html).
+
+### :scroll: License
+
+[MIT](https://wiki.aleen42.com/MIT.html) © aleen42
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..ceed161
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,14 @@
+author: Aleen
+email: aleen42@vip.qq.com
+
+color-mode: "dark"
+# theme-color: "#1e2327"
+
+kramdown:
+ syntax_highlighter: rouge
+ input: GFM
+ # turn off smart quotes: https://stackoverflow.com/a/25597026/5698182
+ smart_quotes: ["apos", "apos", "quot", "quot"]
+
+plugins:
+ - jemoji
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..059a14b
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+
+ {% seo %}
+
+
+
+
+
+
+
+
+
+
+
diff --git a/_sass/github-syntax-base.scss b/_sass/github-syntax-base.scss
new file mode 100644
index 0000000..2e95082
--- /dev/null
+++ b/_sass/github-syntax-base.scss
@@ -0,0 +1,122 @@
+/*!
+ * GitHub Dark v0.5.0
+ * Copyright (c) 2012 - 2021 GitHub, Inc.
+ * Licensed under MIT (https://github.com/primer/github-syntax-theme-generator/blob/master/LICENSE)
+ */
+
+.highlight .hll {
+ background-color: var(--color-text-primary);
+}
+
+.highlight {
+ color: var(--color-text-primary);
+ background-color: var(--color-bg-tertiary);
+}
+
+.highlight .err,
+.highlight .gr {
+ color: var(--color-prettylights-syntax-brackethighlighter-unmatched);
+}
+
+.highlight .k,
+.highlight .kc,
+.highlight .kd,
+.highlight .kn,
+.highlight .kp,
+.highlight .kr {
+ color: var(--color-prettylights-syntax-keyword);
+}
+
+.highlight .kt,
+.highlight .ni,
+.highlight .s,
+.highlight .sa,
+.highlight .sb,
+.highlight .sc,
+.highlight .dl,
+.highlight .sd,
+.highlight .s2,
+.highlight .se,
+.highlight .sh,
+.highlight .si,
+.highlight .sx,
+.highlight .sr,
+.highlight .s1 {
+ color: var(--color-prettylights-syntax-string);
+}
+
+.highlight .n,
+.highlight .na,
+.highlight .nc,
+.highlight .nd,
+.highlight .ne,
+.highlight .nf,
+.highlight .nl,
+.highlight .nn,
+.highlight .nx,
+.highlight .gu {
+ color: var(--color-prettylights-syntax-entity);
+}
+
+.highlight .nb,
+.highlight .bp,
+.highlight .no,
+.highlight .py,
+.highlight .nv,
+.highlight .vc,
+.highlight .vg,
+.highlight .vi,
+.highlight .vm,
+.highlight .l,
+.highlight .ld,
+.highlight .ss,
+.highlight .m,
+.highlight .mb,
+.highlight .mf,
+.highlight .mh,
+.highlight .mi,
+.highlight .il,
+.highlight .mo,
+.highlight .o,
+.highlight .ow {
+ color: var(--color-prettylights-syntax-constant);
+}
+
+.highlight .nt {
+ color: var(--color-prettylights-syntax-entity-tag);
+}
+
+.highlight .c,
+.highlight .ch,
+.highlight .cm,
+.highlight .cp,
+.highlight .cpf,
+.highlight .c1,
+.highlight .cs {
+ color: var(--color-prettylights-syntax-comment);
+}
+
+.highlight .gd {
+ color: var(--color-prettylights-syntax-markup-deleted-text);
+ background-color: var(--color-prettylights-syntax-markup-deleted-bg);
+}
+
+.highlight .ge {
+ font-style: italic;
+ color: var(--color-prettylights-syntax-markup-italic);
+}
+
+.highlight .gh {
+ font-weight: bold;
+ color: var(--color-prettylights-syntax-markup-heading);
+}
+
+.highlight .gi {
+ color: var(--color-prettylights-syntax-markup-inserted-text);
+ background-color: var(--color-prettylights-syntax-markup-inserted-bg);
+}
+
+.highlight .gs {
+ font-weight: bold;
+ color: var(--color-prettylights-syntax-markup-bold);
+}
diff --git a/_sass/github-syntax-highlight-dark.scss b/_sass/github-syntax-highlight-dark.scss
new file mode 100644
index 0000000..829023c
--- /dev/null
+++ b/_sass/github-syntax-highlight-dark.scss
@@ -0,0 +1,17 @@
+/*!
+ * GitHub Dark v0.5.0
+ * Copyright (c) 2012 - 2021 GitHub, Inc.
+ * Licensed under MIT (https://github.com/primer/github-syntax-theme-generator/blob/master/LICENSE)
+ */
+
+@mixin dark {
+ .highlight .fm {
+ color: #c8e1ff;
+ }
+
+ .highlight .go,
+ .highlight .gp,
+ .highlight .gt {
+ color: #0366d6;
+ }
+}
diff --git a/_sass/github-syntax-highlight-light.scss b/_sass/github-syntax-highlight-light.scss
new file mode 100644
index 0000000..4ffc909
--- /dev/null
+++ b/_sass/github-syntax-highlight-light.scss
@@ -0,0 +1,14 @@
+/*!
+ * GitHub Light v0.5.0
+ * Copyright (c) 2012 - 2021 GitHub, Inc.
+ * Licensed under MIT (https://github.com/primer/github-syntax-theme-generator/blob/master/LICENSE)
+ */
+
+@mixin light {
+ .highlight .fm,
+ .highlight .go,
+ .highlight .gp,
+ .highlight .gt {
+ color: #005cc5;
+ }
+}
diff --git a/aleen42.svg b/aleen42.svg
new file mode 100644
index 0000000..4ef420a
--- /dev/null
+++ b/aleen42.svg
@@ -0,0 +1 @@
+aleen42 aleen42
diff --git a/assets/css/github-behaviors.css b/assets/css/github-behaviors.css
new file mode 100644
index 0000000..5dbd859
--- /dev/null
+++ b/assets/css/github-behaviors.css
@@ -0,0 +1,7 @@
+/*!
+ * @primer/css/product
+ * http://primer.style/css
+ *
+ * Released under MIT license. Copyright (c) 2019 GitHub Inc.
+ */.flash{position:relative;padding:20px 16px;border-style:solid;border-width:1px;border-radius:6px}.flash p:last-child{margin-bottom:0}.flash .octicon{margin-right:12px}.flash-messages{margin-bottom:24px}.flash-close{float:right;padding:16px;margin:-16px;text-align:center;cursor:pointer;background:none;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.flash-close:hover{opacity:.7}.flash-close:active{opacity:.5}.flash-close .octicon{margin-right:0}.flash-action{float:right;margin-top:-3px;margin-left:24px;background-clip:padding-box}.flash{color:var(--color-alert-info-text);background-image:linear-gradient(var(--color-alert-info-bg),var(--color-alert-info-bg));border-color:var(--color-alert-info-border)}.flash .octicon{color:var(--color-alert-info-icon)}.flash-warn{color:var(--color-alert-warn-text);background-image:linear-gradient(var(--color-alert-warn-bg),var(--color-alert-warn-bg));border-color:var(--color-alert-warn-border)}.flash-warn .octicon{color:var(--color-alert-warn-icon)}.flash-error{color:var(--color-alert-error-text);background-image:linear-gradient(var(--color-alert-error-bg),var(--color-alert-error-bg));border-color:var(--color-alert-error-border)}.flash-error .octicon{color:var(--color-alert-error-icon)}.flash-success{color:var(--color-alert-success-text);background-image:linear-gradient(var(--color-alert-success-bg),var(--color-alert-success-bg));border-color:var(--color-alert-success-border)}.flash-success .octicon{color:var(--color-alert-success-icon)}.flash-full{margin-top:-1px;border-width:1px 0;border-radius:0}.flash-banner{position:fixed;top:0;z-index:90;width:100%;border-top:0;border-right:0;border-left:0;border-radius:0}.flash-banner,.flash-full{background-color:var(--color-bg-canvas)}.warning{padding:.5em;margin-bottom:.8em;font-weight:600;background-color:var(--color-alert-warn-bg)}.autocomplete-results{position:absolute;z-index:99;width:100%;max-height:20em;overflow-y:auto;font-size:13px;list-style:none;background:var(--color-bg-overlay);border:1px solid var(--color-border-overlay);border-radius:6px;box-shadow:var(--color-autocomplete-shadow)}.autocomplete-item{display:block;width:100%;padding:4px 8px;overflow:hidden;font-weight:600;color:var(--color-text-primary);text-align:left;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;background-color:var(--color-bg-overlay);border:0}.autocomplete-item:hover{color:var(--color-state-hover-primary-text);text-decoration:none;background-color:var(--color-state-hover-primary-bg)}.autocomplete-item:hover *{color:inherit!important}.autocomplete-item.navigation-focus,.autocomplete-item.selected,.autocomplete-item[aria-selected=true]{color:var(--color-state-selected-primary-text);text-decoration:none;background-color:var(--color-state-selected-primary-bg)}.autocomplete-item.navigation-focus *,.autocomplete-item.selected *,.autocomplete-item[aria-selected=true] *{color:inherit!important}.suggester{position:relative;top:0;left:0;min-width:180px;padding:0;margin:24px 0 0;list-style:none;cursor:pointer;background:var(--color-bg-overlay);border:1px solid var(--color-border-overlay);border-radius:6px;box-shadow:var(--color-autocomplete-shadow)}.suggester li{display:block;padding:4px 8px;font-weight:500;border-bottom:1px solid var(--color-autocomplete-row-border)}.suggester li small{font-weight:400;color:var(--color-text-secondary)}.suggester li:last-child{border-bottom:0;border-bottom-right-radius:6px;border-bottom-left-radius:6px}.suggester li:first-child{border-top-left-radius:6px;border-top-right-radius:6px}.suggester li:hover{text-decoration:none;background:var(--color-state-hover-primary-bg)}.suggester li:hover,.suggester li:hover small{color:var(--color-state-hover-primary-text)}.suggester li.navigation-focus,.suggester li[aria-selected=true]{color:var(--color-state-selected-primary-text);text-decoration:none;background:var(--color-state-selected-primary-bg)}.suggester li.navigation-focus small,.suggester li[aria-selected=true] small{color:var(--color-state-selected-primary-text)}.suggester-container{position:absolute;top:0;left:0;z-index:30}@media (max-width:544px){.page-responsive .suggester-container{right:8px!important;left:8px!important}.page-responsive .suggester li{padding:8px 16px}}.avatar{display:inline-block;overflow:hidden;line-height:1;vertical-align:middle;background-color:var(--color-avatar-bg);border-radius:6px;flex-shrink:0;box-shadow:0 0 0 1px var(--color-avatar-border)}.avatar-link{float:left;line-height:1}.avatar-group-item{display:inline-block;margin-bottom:3px}.avatar-1,.avatar-2,.avatar-small{border-radius:4px}.avatar-1{width:16px;height:16px}.avatar-2{width:20px;height:20px}.avatar-3{width:24px;height:24px}.avatar-4{width:28px;height:28px}.avatar-5{width:32px;height:32px}.avatar-6{width:40px;height:40px}.avatar-7{width:48px;height:48px}.avatar-8{width:64px;height:64px}.avatar-parent-child{position:relative}.avatar-child{position:absolute;right:-15%;bottom:-9%;background-color:var(--color-bg-canvas);border-radius:4px;box-shadow:var(--color-avatar-child-shadow)}.AvatarStack{position:relative;min-width:26px;height:20px}.AvatarStack .AvatarStack-body{position:absolute}.AvatarStack.AvatarStack--two{min-width:36px}.AvatarStack.AvatarStack--three-plus{min-width:46px}.AvatarStack-body{display:flex;background:var(--color-bg-canvas)}.AvatarStack-body .avatar{position:relative;z-index:2;display:flex;width:20px;height:20px;box-sizing:initial;margin-right:-11px;background-color:var(--color-bg-canvas);border-right:1px solid var(--color-bg-canvas);border-radius:4px;transition:margin .1s ease-in-out}.AvatarStack-body .avatar:first-child{z-index:3}.AvatarStack-body .avatar:last-child{z-index:1;border-right:0}.AvatarStack-body .avatar img{border-radius:4px}.AvatarStack-body .avatar:nth-child(n+4){display:none;opacity:0}.AvatarStack-body:hover .avatar{margin-right:3px}.AvatarStack-body:hover .avatar:nth-child(n+4){display:flex;opacity:1}.AvatarStack-body:hover .avatar-more{display:none!important}.avatar.avatar-more{z-index:1;margin-right:0;background:var(--color-bg-tertiary)}.avatar.avatar-more:after,.avatar.avatar-more:before{position:absolute;display:block;height:20px;content:"";border-radius:2px;outline:1px solid var(--color-bg-canvas)}.avatar.avatar-more:before{width:17px;background:var(--color-avatar-stack-fade-more)}.avatar.avatar-more:after{width:14px;background:var(--color-avatar-stack-fade)}.AvatarStack--right .AvatarStack-body{right:0;flex-direction:row-reverse}.AvatarStack--right .AvatarStack-body:hover .avatar{margin-right:0;margin-left:3px}.AvatarStack--right .avatar.avatar-more{background:var(--color-avatar-stack-fade)}.AvatarStack--right .avatar.avatar-more:before{width:5px}.AvatarStack--right .avatar.avatar-more:after{width:2px;background:var(--color-bg-tertiary)}.AvatarStack--right .avatar{margin-right:0;margin-left:-11px;border-right:0;border-left:1px solid var(--color-bg-canvas)}.CircleBadge{display:flex;align-items:center;justify-content:center;background-color:var(--color-bg-canvas);border-radius:50%;box-shadow:var(--color-shadow-medium)}.CircleBadge-icon{max-width:60%!important;height:auto!important;max-height:55%!important}.CircleBadge--small{width:56px;height:56px}.CircleBadge--medium{width:96px;height:96px}.CircleBadge--large{width:128px;height:128px}.DashedConnection{position:relative}.DashedConnection:before{position:absolute;top:50%;left:0;width:100%;content:"";border-bottom:2px dashed var(--color-border-primary)}.blankslate,.DashedConnection .CircleBadge{position:relative}.blankslate{padding:32px;text-align:center}.blankslate p{color:var(--color-text-secondary)}.blankslate code{padding:2px 5px 3px;font-size:14px;background:var(--color-bg-canvas);border:1px solid var(--color-auto-gray-0);border-radius:6px}.blankslate img{width:56px;height:56px}.blankslate-icon{margin-right:4px;margin-bottom:8px;margin-left:4px;color:var(--color-blankslate-icon)}.blankslate-capped{border-radius:0 0 6px 6px}.blankslate-spacious{padding:80px 40px}.blankslate-narrow{max-width:485px;margin:0 auto}.blankslate-large img{width:80px;height:80px}.blankslate-large h3{margin:16px 0;font-size:24px}.blankslate-large p{font-size:16px}.blankslate-clean-background{border:0}.branch-name{display:inline-block;padding:2px 6px;font:12px SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;color:var(--color-branch-name-text);background-color:var(--color-branch-name-bg);border-radius:6px}.branch-name .octicon{margin:1px -2px 0 0;color:var(--color-branch-name-icon)}a.branch-name{color:var(--color-text-link);background-color:var(--color-branch-name-link-bg)}a.branch-name .octicon{color:var(--color-branch-name-link-icon)}.dropdown{position:relative}.dropdown-caret{display:inline-block;width:0;height:0;vertical-align:middle;content:"";border-top-style:solid;border-top-width:4px;border-right:4px solid transparent;border-bottom:0 solid transparent;border-left:4px solid transparent}.dropdown-menu{position:absolute;top:100%;left:0;z-index:100;width:160px;padding-top:4px;padding-bottom:4px;margin-top:2px;list-style:none;background-color:var(--color-bg-overlay);background-clip:padding-box;border:1px solid var(--color-border-overlay);border-radius:6px;box-shadow:var(--color-dropdown-shadow)}.dropdown-menu:after,.dropdown-menu:before{position:absolute;display:inline-block;content:""}.dropdown-menu:before{border:8px solid transparent;border-bottom:8px solid var(--color-border-overlay)}.dropdown-menu:after{border:7px solid transparent;border-bottom:7px solid var(--color-bg-overlay)}.dropdown-menu>ul{list-style:none}.dropdown-menu-no-overflow{width:auto}.dropdown-menu-no-overflow .dropdown-item{padding:4px 16px;overflow:visible;text-overflow:inherit}.dropdown-item{display:block;padding:4px 8px 4px 16px;overflow:hidden;color:var(--color-text-primary);text-overflow:ellipsis;white-space:nowrap}.dropdown-item:focus,.dropdown-item:hover{color:var(--color-state-hover-primary-text);text-decoration:none;background-color:var(--color-state-hover-primary-bg);outline:none}.dropdown-item:focus>.octicon,.dropdown-item:hover>.octicon{color:inherit;opacity:1}.dropdown-item.btn-link,.dropdown-signout{width:100%;text-align:left}.dropdown-signout{background:none;border:0}.dropdown-divider{display:block;height:0;margin:8px 0;border-top:1px solid var(--color-border-overlay)}.dropdown-header{padding:4px 16px;font-size:12px;color:var(--color-text-secondary)}.dropdown-item[aria-checked=false] .octicon-check{display:none}.dropdown-menu-w{top:0;right:100%;left:auto;width:auto;margin-top:0;margin-right:8px}.dropdown-menu-w:before{top:10px;right:-16px;left:auto;border-color:transparent;border-left-color:var(--color-border-overlay)}.dropdown-menu-w:after{top:11px;right:-14px;left:auto;border-color:transparent;border-left-color:var(--color-bg-overlay)}.dropdown-menu-e{top:0;left:100%;width:auto;margin-top:0;margin-left:8px}.dropdown-menu-e:before{top:10px;left:-16px;border-color:transparent;border-right-color:var(--color-border-overlay)}.dropdown-menu-e:after{top:11px;left:-14px;border-color:transparent;border-right-color:var(--color-bg-overlay)}.dropdown-menu-ne{top:auto;bottom:100%;left:0;margin-bottom:3px}.dropdown-menu-ne:after,.dropdown-menu-ne:before{top:auto;right:auto}.dropdown-menu-ne:before{bottom:-8px;left:9px;border-top:8px solid var(--color-border-overlay);border-right:8px solid transparent;border-bottom:0;border-left:8px solid transparent}.dropdown-menu-ne:after{bottom:-7px;left:10px;border-top:7px solid var(--color-bg-overlay);border-right:7px solid transparent;border-bottom:0;border-left:7px solid transparent}.dropdown-menu-s{right:50%;left:auto;transform:translateX(50%)}.dropdown-menu-s:before{top:-16px;right:50%;transform:translateX(50%)}.dropdown-menu-s:after{top:-14px;right:50%;transform:translateX(50%)}.dropdown-menu-sw{right:0;left:auto}.dropdown-menu-sw:before{top:-16px;right:9px;left:auto}.dropdown-menu-sw:after{top:-14px;right:10px;left:auto}.dropdown-menu-se:before{top:-16px;left:9px}.dropdown-menu-se:after{top:-14px;left:10px}.Header{z-index:32;padding:16px;font-size:14px;line-height:1.5;color:var(--color-header-text);background-color:var(--color-header-bg)}.Header,.Header-item{display:flex;align-items:center;flex-wrap:nowrap}.Header-item{margin-right:16px;align-self:stretch}.Header-item--full{flex:auto}.Header-link{font-weight:600;color:var(--color-header-logo);white-space:nowrap}.Header-link:focus,.Header-link:hover{color:var(--color-header-text);text-decoration:none}.IssueLabel{display:inline-block;padding:0 7px;font-size:12px;font-weight:500;line-height:18px;border:1px solid transparent;border-radius:2em}.IssueLabel .g-emoji{position:relative;top:-.05em;display:inline-block;font-size:1em;line-height:1}.IssueLabel:hover{text-decoration:none}.IssueLabel--big{padding-right:10px;padding-left:10px;line-height:22px}.labels{position:relative}.label,.Label{display:inline-block;padding:0 7px;font-size:12px;font-weight:500;line-height:18px;border-radius:2em;background-color:initial!important;border:1px solid transparent;border-color:var(--color-label-border)}.label:hover,.Label:hover{text-decoration:none}.Label--large{padding-right:10px;padding-left:10px;line-height:22px}.Label--inline{display:inline;padding:.1667em .5em;font-size:.9em}.Label--primary{color:var(--color-label-primary-text);border-color:var(--color-label-primary-border)}.Label--secondary{color:var(--color-label-secondary-text);border-color:var(--color-label-secondary-border)}.Label--info{color:var(--color-label-info-text);border-color:var(--color-label-info-border)}.Label--success{color:var(--color-label-success-text);border-color:var(--color-label-success-border)}.Label--warning{color:var(--color-label-warning-text);border-color:var(--color-label-warning-border)}.Label--danger{color:var(--color-label-danger-text);border-color:var(--color-label-danger-border)}.state,.State{display:inline-block;padding:5px 12px;font-size:14px;font-weight:500;line-height:20px;text-align:center;white-space:nowrap;border-radius:2em}.state,.State,.State--draft{color:var(--color-pr-state-draft-text);background-color:var(--color-pr-state-draft-bg);border:1px solid var(--color-pr-state-draft-border)}.State--open{color:var(--color-pr-state-open-text);background-color:var(--color-pr-state-open-bg);border-color:var(--color-pr-state-open-border)}.State--merged{color:var(--color-pr-state-merged-text);background-color:var(--color-pr-state-merged-bg);border-color:var(--color-pr-state-merged-border)}.State--closed{color:var(--color-pr-state-closed-text);background-color:var(--color-pr-state-closed-bg);border-color:var(--color-pr-state-closed-border)}.State--small{padding:0 10px;font-size:12px;line-height:24px}.State--small .octicon{width:1em}.Counter{display:inline-block;min-width:20px;padding:0 6px;font-size:12px;font-weight:500;line-height:18px;color:var(--color-counter-text);text-align:center;background-color:var(--color-counter-bg);border:1px solid transparent;border-radius:2em}.Counter:empty{display:none}.Counter .octicon{vertical-align:text-top;opacity:.8}.Counter--primary{color:var(--color-counter-primary-text);background-color:var(--color-counter-primary-bg)}.Counter--secondary{color:var(--color-counter-secondary-text)}.diffstat{font-size:12px;font-weight:600;color:var(--color-text-secondary);white-space:nowrap;cursor:default}.diffstat-block-added,.diffstat-block-deleted,.diffstat-block-neutral{display:inline-block;width:8px;height:8px;margin-left:1px;outline-offset:-1px}.diffstat-block-deleted{background-color:var(--color-diffstat-deletion-bg);outline:1px solid var(--color-diffstat-deletion-border)}.diffstat-block-added{background-color:var(--color-diffstat-addition-bg);outline:1px solid var(--color-diffstat-addition-border)}.diffstat-block-neutral{background-color:var(--color-diffstat-neutral-bg);outline:1px solid var(--color-diffstat-neutral-border)}.AnimatedEllipsis{display:inline-block;overflow:hidden;vertical-align:bottom}.AnimatedEllipsis:after{display:inline-block;content:"...";animation:AnimatedEllipsis-keyframes 1.2s steps(4,jump-none) infinite}@keyframes AnimatedEllipsis-keyframes{0%{transform:translateX(-100%)}}.markdown-body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;font-size:16px;line-height:1.5;word-wrap:break-word}.markdown-body kbd{display:inline-block;padding:3px 5px;font:11px SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;line-height:10px;color:var(--color-auto-gray-7);vertical-align:middle;background-color:var(--color-bg-secondary);border-bottom-color:var(--color-border-tertiary);border:1px solid var(--color-border-tertiary);border-radius:6px;box-shadow:inset 0 -1px 0 var(--color-border-tertiary)}.markdown-body:after,.markdown-body:before{display:table;content:""}.markdown-body:after{clear:both}.markdown-body>:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .absent{color:var(--color-text-danger)}.markdown-body .anchor{float:left;padding-right:4px;margin-left:-20px;line-height:1}.markdown-body .anchor:focus{outline:none}.markdown-body blockquote,.markdown-body details,.markdown-body dl,.markdown-body ol,.markdown-body p,.markdown-body pre,.markdown-body table,.markdown-body ul{margin-top:0;margin-bottom:16px}.markdown-body hr{height:.25em;padding:0;margin:24px 0;background-color:var(--color-border-primary);border:0}.markdown-body blockquote{padding:0 1em;color:var(--color-text-tertiary);border-left:.25em solid var(--color-markdown-blockquote-border)}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:24px;margin-bottom:16px;font-weight:600;line-height:1.25}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:var(--color-text-primary);vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1 code,.markdown-body h1 tt,.markdown-body h2 code,.markdown-body h2 tt,.markdown-body h3 code,.markdown-body h3 tt,.markdown-body h4 code,.markdown-body h4 tt,.markdown-body h5 code,.markdown-body h5 tt,.markdown-body h6 code,.markdown-body h6 tt{font-size:inherit}.markdown-body h1{font-size:2em}.markdown-body h1,.markdown-body h2{padding-bottom:.3em;border-bottom:1px solid var(--color-border-secondary)}.markdown-body h2{font-size:1.5em}.markdown-body h3{font-size:1.25em}.markdown-body h4{font-size:1em}.markdown-body h5{font-size:.875em}.markdown-body h6{font-size:.85em;color:var(--color-text-tertiary)}.markdown-body ol,.markdown-body ul{padding-left:2em}.markdown-body ol.no-list,.markdown-body ul.no-list{padding:0;list-style-type:none}.markdown-body ol ol,.markdown-body ol ul,.markdown-body ul ol,.markdown-body ul ul{margin-top:0;margin-bottom:0}.markdown-body li>p{margin-top:16px}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{padding:0 16px;margin-bottom:16px}.markdown-body table{display:block;width:100%;width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;overflow:auto}.markdown-body table th{font-weight:600}.markdown-body table td,.markdown-body table th{padding:6px 13px;border:1px solid var(--color-markdown-table-border)}.markdown-body table tr{background-color:var(--color-bg-primary);border-top:1px solid var(--color-markdown-table-tr-border)}.markdown-body table tr:nth-child(2n){background-color:var(--color-bg-tertiary)}.markdown-body table img{background-color:initial}.markdown-body img{max-width:100%;box-sizing:initial;background-color:var(--color-bg-primary)}.markdown-body img[align=right]{padding-left:20px}.markdown-body img[align=left]{padding-right:20px}.markdown-body .emoji{max-width:none;vertical-align:text-top;background-color:initial}.markdown-body span.frame{display:block;overflow:hidden}.markdown-body span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid var(--color-markdown-frame-border)}.markdown-body span.frame span img{display:block;float:left}.markdown-body span.frame span span{display:block;padding:5px 0 0;clear:both;color:var(--color-text-primary)}.markdown-body span.align-center{display:block;overflow:hidden;clear:both}.markdown-body span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown-body span.align-center span img{margin:0 auto;text-align:center}.markdown-body span.align-right{display:block;overflow:hidden;clear:both}.markdown-body span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown-body span.align-right span img{margin:0;text-align:right}.markdown-body span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown-body span.float-left span{margin:13px 0 0}.markdown-body span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown-body span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown-body code,.markdown-body tt{padding:.2em .4em;margin:0;font-size:85%;background-color:var(--color-markdown-code-bg);border-radius:6px}.markdown-body code br,.markdown-body tt br{display:none}.markdown-body del code{text-decoration:inherit}.markdown-body pre{word-wrap:normal}.markdown-body pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:transparent;border:0}.markdown-body .highlight{margin-bottom:16px}.markdown-body .highlight pre{margin-bottom:0;word-break:normal}.markdown-body .highlight pre,.markdown-body pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:var(--color-bg-tertiary);border-radius:6px}.markdown-body pre code,.markdown-body pre tt{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:initial;border:0}.markdown-body .csv-data td,.markdown-body .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown-body .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:var(--color-bg-primary);border:0}.markdown-body .csv-data tr{border-top:0}.markdown-body .csv-data th{font-weight:600;background:var(--color-bg-tertiary);border-top:0}.Popover{position:absolute;z-index:100}.Popover-message{position:relative;width:232px;margin-right:auto;margin-left:auto}.Popover-message:after,.Popover-message:before{position:absolute;left:50%;display:inline-block;content:""}.Popover-message:before{top:-16px;margin-left:-9px;border:8px solid transparent;border-bottom:8px solid var(--color-border-overlay)}.Popover-message:after{top:-14px;margin-left:-8px;border:7px solid transparent;border-bottom:7px solid var(--color-bg-overlay)}.Popover-message.Box{background-color:var(--color-bg-overlay)}.Popover-message--bottom-left:after,.Popover-message--bottom-left:before,.Popover-message--bottom-right:after,.Popover-message--bottom-right:before,.Popover-message--bottom:after,.Popover-message--bottom:before{top:auto;border-bottom-color:transparent}.Popover-message--bottom-left:before,.Popover-message--bottom-right:before,.Popover-message--bottom:before{bottom:-16px;border-top-color:var(--color-border-overlay)}.Popover-message--bottom-left:after,.Popover-message--bottom-right:after,.Popover-message--bottom:after{bottom:-14px;border-top-color:var(--color-bg-overlay)}.Popover-message--bottom-right,.Popover-message--top-right{right:-9px;margin-right:0}.Popover-message--bottom-right:after,.Popover-message--bottom-right:before,.Popover-message--top-right:after,.Popover-message--top-right:before{left:auto;margin-left:0}.Popover-message--bottom-right:before,.Popover-message--top-right:before{right:20px}.Popover-message--bottom-right:after,.Popover-message--top-right:after{right:21px}.Popover-message--bottom-left,.Popover-message--top-left{left:-9px;margin-left:0}.Popover-message--bottom-left:after,.Popover-message--bottom-left:before,.Popover-message--top-left:after,.Popover-message--top-left:before{left:24px;margin-left:0}.Popover-message--bottom-left:after,.Popover-message--top-left:after{left:25px}.Popover-message--left-bottom:after,.Popover-message--left-bottom:before,.Popover-message--left-top:after,.Popover-message--left-top:before,.Popover-message--left:after,.Popover-message--left:before,.Popover-message--right-bottom:after,.Popover-message--right-bottom:before,.Popover-message--right-top:after,.Popover-message--right-top:before,.Popover-message--right:after,.Popover-message--right:before{top:50%;left:auto;margin-left:0;border-bottom-color:transparent}.Popover-message--left-bottom:before,.Popover-message--left-top:before,.Popover-message--left:before,.Popover-message--right-bottom:before,.Popover-message--right-top:before,.Popover-message--right:before{margin-top:-9px}.Popover-message--left-bottom:after,.Popover-message--left-top:after,.Popover-message--left:after,.Popover-message--right-bottom:after,.Popover-message--right-top:after,.Popover-message--right:after{margin-top:-8px}.Popover-message--right-bottom:before,.Popover-message--right-top:before,.Popover-message--right:before{right:-16px;border-left-color:var(--color-border-overlay)}.Popover-message--right-bottom:after,.Popover-message--right-top:after,.Popover-message--right:after{right:-14px;border-left-color:var(--color-bg-overlay)}.Popover-message--left-bottom:before,.Popover-message--left-top:before,.Popover-message--left:before{left:-16px;border-right-color:var(--color-border-overlay)}.Popover-message--left-bottom:after,.Popover-message--left-top:after,.Popover-message--left:after{left:-14px;border-right-color:var(--color-bg-overlay)}.Popover-message--left-top:after,.Popover-message--left-top:before,.Popover-message--right-top:after,.Popover-message--right-top:before{top:24px}.Popover-message--left-bottom:after,.Popover-message--left-bottom:before,.Popover-message--right-bottom:after,.Popover-message--right-bottom:before{top:auto}.Popover-message--left-bottom:before,.Popover-message--right-bottom:before{bottom:16px}.Popover-message--left-bottom:after,.Popover-message--right-bottom:after{bottom:17px}@media (min-width:544px){.Popover-message--large{min-width:320px}}.Progress{display:flex;height:8px;overflow:hidden;background-color:var(--color-auto-gray-2);border-radius:6px;outline:1px solid transparent}.Progress--large{height:10px}.Progress--small{height:5px}.Progress-item{outline:2px solid transparent}.Progress-item+.Progress-item{margin-left:2px}.SelectMenu{position:fixed;top:0;right:0;bottom:0;left:0;z-index:99;display:flex;padding:16px;pointer-events:none;flex-direction:column}@media (min-width:544px){.SelectMenu{position:absolute;top:auto;right:auto;bottom:auto;left:auto;padding:0}}.SelectMenu:before{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;content:"";background-color:var(--color-select-menu-backdrop-bg)}@media (min-width:544px){.SelectMenu:before{display:none}}.SelectMenu-modal{position:relative;z-index:99;display:flex;max-height:66%;margin:auto 0;overflow:hidden;pointer-events:auto;flex-direction:column;background-color:var(--color-bg-overlay);border:1px solid var(--color-select-menu-backdrop-border);border-radius:12px;box-shadow:var(--color-select-menu-shadow);animation:SelectMenu-modal-animation .12s cubic-bezier(0,.1,.1,1) backwards}@keyframes SelectMenu-modal-animation{0%{opacity:0;transform:scale(.9)}}@keyframes SelectMenu-modal-animation--sm{0%{opacity:0;transform:translateY(-16px)}}@media (min-width:544px){.SelectMenu-modal{width:300px;height:auto;max-height:480px;margin:8px 0 16px;font-size:12px;border-color:var(--color-border-overlay);border-radius:6px;box-shadow:var(--color-shadow-large);animation-name:SelectMenu-modal-animation--sm}}.SelectMenu-header{display:flex;padding:16px;flex:none;align-items:center;border-bottom:1px solid var(--color-select-menu-border-secondary)}@media (min-width:544px){.SelectMenu-header{padding:7px 7px 7px 16px}}.SelectMenu-title{flex:1;font-size:14px;font-weight:600}@media (min-width:544px){.SelectMenu-title{font-size:inherit}}.SelectMenu-closeButton{padding:16px;margin:-16px;line-height:1;color:var(--color-icon-tertiary);background-color:initial;border:0}@media (min-width:544px){.SelectMenu-closeButton{padding:8px;margin:-8px -7px}}.SelectMenu-filter{padding:16px;margin:0;border-bottom:1px solid var(--color-select-menu-border-secondary)}@media (min-width:544px){.SelectMenu-filter{padding:8px}}.SelectMenu-input{display:block;width:100%}@media (min-width:544px){.SelectMenu-input{font-size:14px}}.SelectMenu-list{position:relative;padding:0;margin:0 0 -1px;flex:auto;overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}.SelectMenu-item,.SelectMenu-list{background-color:var(--color-bg-overlay)}.SelectMenu-item{display:flex;align-items:center;width:100%;padding:16px;overflow:hidden;color:var(--color-text-primary);text-align:left;cursor:pointer;border:0;border-bottom:1px solid var(--color-select-menu-border-secondary)}@media (min-width:544px){.SelectMenu-item{padding-top:7px;padding-bottom:7px}}.SelectMenu-list--borderless .SelectMenu-item{border-bottom:0}.SelectMenu-icon{width:16px;margin-right:8px;flex-shrink:0}.SelectMenu-icon--check{visibility:hidden;transition:transform .12s cubic-bezier(.5,.1,1,.5),visibility 0s linear .12s;transform:scale(0)}.SelectMenu-tabs{display:flex;flex-shrink:0;overflow-x:auto;overflow-y:hidden;box-shadow:inset 0 -1px 0 var(--color-select-menu-border-secondary);-webkit-overflow-scrolling:touch}.SelectMenu-tabs::-webkit-scrollbar{display:none}@media (min-width:544px){.SelectMenu-tabs{padding:8px 8px 0}}.SelectMenu-tab{flex:1;padding:8px 16px;font-size:12px;font-weight:500;color:var(--color-text-tertiary);text-align:center;background-color:initial;border:0;box-shadow:inset 0 -1px 0 var(--color-select-menu-border-secondary)}@media (min-width:544px){.SelectMenu-tab{flex:none;padding:4px 16px;border:solid transparent;border-width:1px 1px 0;border-top-left-radius:6px;border-top-right-radius:6px}}.SelectMenu-tab[aria-selected=true]{z-index:1;color:var(--color-text-primary);cursor:default;background-color:var(--color-bg-overlay);box-shadow:0 0 0 1px var(--color-select-menu-border-secondary)}@media (min-width:544px){.SelectMenu-tab[aria-selected=true]{border-color:var(--color-select-menu-border-secondary);box-shadow:none}}.SelectMenu-message{padding:7px 16px;text-align:center;background-color:var(--color-bg-overlay);border-bottom:1px solid var(--color-select-menu-border-secondary)}.SelectMenu-blankslate,.SelectMenu-loading{padding:24px 16px;text-align:center;background-color:var(--color-bg-overlay)}.SelectMenu-divider{padding:4px 16px;margin:0;font-size:12px;font-weight:500;color:var(--color-text-tertiary);background-color:var(--color-bg-tertiary);border-bottom:1px solid var(--color-select-menu-border-secondary)}.SelectMenu-list--borderless .SelectMenu-divider{border-top:1px solid var(--color-select-menu-border-secondary)}.SelectMenu-list--borderless .SelectMenu-divider:empty{padding:0;border-top:0}.SelectMenu-footer{z-index:0;padding:8px 16px;font-size:12px;color:var(--color-text-tertiary);text-align:center;border-top:1px solid var(--color-select-menu-border-secondary)}@media (min-width:544px){.SelectMenu-footer{padding:7px 16px}}.SelectMenu--hasFilter .SelectMenu-modal{height:80%;max-height:none;margin-top:0}@media (min-width:544px){.SelectMenu--hasFilter .SelectMenu-modal{height:auto;max-height:480px;margin-top:8px}}.SelectMenu-closeButton:focus,.SelectMenu-item:focus,.SelectMenu-tab:focus{outline:0}.SelectMenu-item:hover{text-decoration:none}.SelectMenu-item[aria-checked=true]{font-weight:500;color:var(--color-text-primary)}.SelectMenu-item[aria-checked=true] .SelectMenu-icon--check{visibility:visible;transition:transform .12s cubic-bezier(0,0,.2,1),visibility 0s linear;transform:scale(1)}.SelectMenu-item:disabled,.SelectMenu-item[aria-disabled=true]{color:var(--color-text-disabled)}@media (hover:hover){.SelectMenu-closeButton:hover,body:not(.intent-mouse) .SelectMenu-closeButton:focus{color:var(--color-text-primary)}.SelectMenu-closeButton:active{color:var(--color-text-secondary)}.SelectMenu-item:hover,body:not(.intent-mouse) .SelectMenu-item:focus{background-color:var(--color-state-hover-secondary-bg)}.SelectMenu-item:active{background-color:var(--color-bg-secondary)}body:not(.intent-mouse) .SelectMenu-tab:focus{background-color:var(--color-select-menu-tap-focus-bg)}.SelectMenu-tab:hover{color:var(--color-text-primary)}.SelectMenu-tab:not([aria-selected=true]):active{color:var(--color-text-primary);background-color:var(--color-bg-tertiary)}}@media (hover:none){.SelectMenu-item:active,.SelectMenu-item:focus{background-color:var(--color-bg-secondary)}.SelectMenu-item{-webkit-tap-highlight-color:var(--color-select-menu-tap-highlight)}}.Subhead{display:flex;padding-bottom:8px;margin-bottom:16px;border-bottom:1px solid var(--color-border-secondary);flex-flow:row wrap}.Subhead--spacious{margin-top:40px}.Subhead-heading{font-size:24px;font-weight:400;flex:1 1 auto}.Subhead-heading--danger{font-weight:600;color:var(--color-text-danger)}.Subhead-description{font-size:14px;color:var(--color-text-secondary);flex:1 100%}.Subhead-actions{align-self:center;justify-content:flex-end}.TimelineItem{position:relative;display:flex;padding:16px 0;margin-left:16px}.TimelineItem:before{position:absolute;top:0;bottom:0;left:0;display:block;width:2px;content:"";background-color:var(--color-border-secondary)}.TimelineItem:target .TimelineItem-badge{border-color:var(--color-timeline-target-badge-border);box-shadow:0 0 .2em var(--color-timeline-target-badge-shadow)}.TimelineItem-badge{position:relative;z-index:1;display:flex;width:32px;height:32px;margin-right:8px;margin-left:-15px;color:var(--color-icon-secondary);align-items:center;background-color:var(--color-timeline-badge-bg);border:2px solid var(--color-bg-canvas);border-radius:50%;justify-content:center;flex-shrink:0}.TimelineItem-badge--success{color:var(--color-text-white);background-color:var(--color-btn-primary-bg);border:1px solid var(--color-merge-box-success-indicator-border)}.TimelineItem-body{min-width:0;max-width:100%;margin-top:4px;color:var(--color-timeline-text);flex:auto}.TimelineItem-avatar{position:absolute;left:-72px;z-index:1}.TimelineItem-break{position:relative;z-index:1;height:24px;margin:0 0 -16px -56px;background-color:var(--color-bg-canvas);border:0;border-top:4px solid var(--color-border-primary)}.TimelineItem--condensed{padding-top:4px;padding-bottom:0}.TimelineItem--condensed:last-child{padding-bottom:16px}.TimelineItem--condensed .TimelineItem-badge{height:16px;margin-top:8px;margin-bottom:8px;color:var(--color-icon-secondary);background-color:var(--color-bg-canvas);border:0}.Toast{display:flex;margin:8px;color:var(--color-toast-text);background-color:var(--color-toast-bg);border-radius:6px;box-shadow:inset 0 0 0 1px var(--color-toast-border),var(--color-toast-shadow)}@media (min-width:544px){.Toast{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:450px;margin:16px}}.Toast-icon{display:flex;align-items:center;justify-content:center;width:48px;flex-shrink:0;color:var(--color-toast-icon);background-color:var(--color-toast-icon-bg);border:1px solid var(--color-toast-icon-border);border-right:0;border-top-left-radius:inherit;border-bottom-left-radius:inherit}.Toast-content{padding:16px}.Toast-dismissButton{max-height:54px;padding:16px;color:inherit;background-color:initial;border:0}.Toast-dismissButton:focus,.Toast-dismissButton:hover{outline:none;opacity:.7}.Toast-dismissButton:active{opacity:.5}.Toast--loading{color:var(--color-toast-loading-text);box-shadow:inset 0 0 0 1px var(--color-toast-loading-border),var(--color-toast-shadow)}.Toast--loading .Toast-icon{color:var(--color-toast-loading-icon);background-color:var(--color-toast-loading-icon-bg);border-color:var(--color-toast-loading-icon-border)}.Toast--error{color:var(--color-toast-danger-text);box-shadow:inset 0 0 0 1px var(--color-toast-danger-border),var(--color-toast-shadow)}.Toast--error .Toast-icon{color:var(--color-toast-danger-icon);background-color:var(--color-toast-danger-icon-bg);border-color:var(--color-toast-danger-icon-border)}.Toast--warning{color:var(--color-toast-warning-text);box-shadow:inset 0 0 0 1px var(--color-toast-warning-border),var(--color-toast-shadow)}.Toast--warning .Toast-icon{color:var(--color-toast-warning-icon);background-color:var(--color-toast-warning-icon-bg);border-color:var(--color-toast-warning-icon-border)}.Toast--success{color:var(--color-toast-success-text);box-shadow:inset 0 0 0 1px var(--color-toast-success-border),var(--color-toast-shadow)}.Toast--success .Toast-icon{color:var(--color-toast-success-icon);background-color:var(--color-toast-success-icon-bg);border-color:var(--color-toast-success-icon-border)}.Toast--animateIn{animation:Toast--animateIn .18s cubic-bezier(.22,.61,.36,1) backwards}@keyframes Toast--animateIn{0%{opacity:0;transform:translateY(100%)}}.Toast--animateOut{animation:Toast--animateOut .18s cubic-bezier(.55,.06,.68,.19) forwards}@keyframes Toast--animateOut{to{pointer-events:none;opacity:0;transform:translateY(100%)}}.Toast--spinner{animation:Toast--spinner 1s linear infinite}@keyframes Toast--spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.boxed-group{position:relative;margin-bottom:30px;border-radius:6px}.boxed-group .Counter{color:var(--color-text-white);background-color:rgba(var(--color-auto-gray-8),.5)}.boxed-group.flush .boxed-group-inner{padding:0}.boxed-group.condensed .boxed-group-inner{padding:0;font-size:12px}.boxed-group .heading,.boxed-group>h3{display:block;padding:9px 10px 10px;margin:0;font-size:14px;line-height:17px;background-color:var(--color-bg-tertiary);border:1px solid var(--color-border-primary);border-bottom:0;border-radius:6px 6px 0 0}.boxed-group .heading a,.boxed-group>h3 a{color:inherit}.boxed-group .heading a.boxed-group-breadcrumb,.boxed-group>h3 a.boxed-group-breadcrumb{font-weight:400;color:var(--color-text-secondary);text-decoration:none}.boxed-group .heading .avatar,.boxed-group>h3 .avatar{margin-top:-4px}.boxed-group .tabnav.heading{padding:0}.boxed-group .tabnav.heading .tabnav-tab.selected{border-top:0}.boxed-group .tabnav.heading li:first-child .selected{border-left-color:var(--color-auto-white);border-top-left-radius:6px}.boxed-group .tabnav-tab{border-top:0;border-radius:0}.boxed-group code.heading{font-size:12px}.boxed-group.dangerzone>h3{color:var(--color-text-white);background-color:var(--color-bg-danger-inverse);border:1px solid var(--color-auto-red-8)}.boxed-group.dangerzone .boxed-group-inner{border-top:0}.boxed-group.condensed>h3{padding:6px 6px 7px;font-size:12px}.boxed-group.condensed>h3 .octicon{padding:0 6px 0 2px}.dashboard-sidebar .boxed-group{margin-bottom:20px}.boxed-group .bleed-flush{width:100%;padding:0 10px;margin-left:-10px}.boxed-group .compact{margin-top:10px;margin-bottom:10px}.boxed-group-inner{padding:10px;color:var(--color-text-secondary);background:var(--color-bg-primary);border:1px solid var(--color-border-primary);border-bottom-right-radius:6px;border-bottom-left-radius:6px}.boxed-group-inner .markdown-body{padding:20px 10px 10px;font-size:13px}.boxed-group-inner.markdown-body{padding-top:10px;padding-bottom:10px}.boxed-group-inner.seamless{padding:0}.boxed-group-inner .tabnav{padding-right:10px;padding-left:10px;margin-right:-10px;margin-left:-10px}.boxed-group-inner .help,.boxed-group-inner .tabnav-tab.selected{border-top:1px solid var(--color-border-primary)}.boxed-group-inner .help{padding:1em 10px 1em 35px;margin:1em -10px -10px;clear:both;color:var(--color-text-secondary)}.boxed-group-inner .help .octicon{margin-right:5px;margin-left:-25px}.boxed-group-inner .boxed-group-list+.help{margin-top:0}.boxed-action{float:right;margin-left:10px}.boxed-group-action{position:relative;z-index:2;float:right;margin:5px 10px 0 0}.boxed-group-action.flush{margin-top:0;margin-right:0}.field-with-errors{display:inline}.compact-options{margin:-6px 0 13px}.compact-options>li{display:inline-block;margin:0 12px 0 0;font-weight:600;list-style-type:none}.compact-options>li label{float:left}.compact-options>li .spinner{display:block;float:left;width:16px;height:16px;margin-left:5px}.boxed-group-list{margin:0;list-style:none}.boxed-group-list:first-child>li:first-child{border-top:0}.boxed-group-list>li{display:block;padding:5px 10px;margin-right:-10px;margin-left:-10px;line-height:23px;border-bottom:1px solid var(--color-border-primary)}.boxed-group-list>li:first-child{border-top:1px solid var(--color-border-primary)}.boxed-group-list>li:last-of-type{border-bottom:0}.boxed-group-list>li.selected{background:var(--color-bg-success)}.boxed-group-list>li.approved .btn-sm,.boxed-group-list>li.rejected .btn-sm{display:none}.boxed-group-list>li.rejected a{text-decoration:line-through}.boxed-group-list>li .avatar{margin-top:-2px;margin-right:4px}.boxed-group-list>li .octicon{width:24px;margin-right:4px}.boxed-group-list>li .btn-sm{float:right;margin:-1px 0 0 10px}.boxed-group-list>li .BtnGroup{float:right}.boxed-group-list>li .BtnGroup .btn-sm{float:left}.boxed-group.flush .boxed-group-list li{width:auto;padding-right:0;padding-left:0;margin-left:0}.boxed-group-list.standalone{margin-top:-1px}.boxed-group-list.standalone>li:first-child{border-top:0}.boxed-group-standalone{margin-top:-10px;margin-bottom:-10px}.boxed-group-standalone>li:last-child{border-radius:0 0 6px 6px}.boxed-group-table{width:100%;text-align:left}.boxed-group-table tr:last-child td{border-bottom:0}.boxed-group-table th{background-color:var(--color-bg-secondary)}.boxed-group-table td,.boxed-group-table th{padding:9px;border-bottom:1px solid var(--color-border-secondary)}.boxed-group-table td{vertical-align:top}.ajax-error-message{position:fixed;top:0;left:50%;z-index:9999;width:974px;margin:0 3px 0 -487px;transition:top .5s ease-in-out}.ajax-error-message>.octicon-alert{vertical-align:text-top}.boxed-group-warning{padding:10px 15px;margin:-10px -10px 10px;color:var(--color-fade-black-85);background-color:var(--color-auto-yellow-1);border-color:var(--color-fade-black-15);border-style:solid;border-width:1px 0}.boxed-group-warning .btn-sm{margin:-5px 0}.boxed-group-warning:first-child{border-top:0}.container{width:980px;margin-right:auto;margin-left:auto}.container:after,.container:before{display:table;content:""}.container:after{clear:both}.draft.octicon{color:var(--color-text-tertiary)}.closed.octicon,.reverted.octicon{color:var(--color-text-danger)}.open.octicon{color:var(--color-icon-success)}.merged.octicon{color:var(--color-auto-purple-5)}.progress-bar{display:block;height:15px;overflow:hidden;background-color:var(--color-border-secondary);border-radius:6px}.progress-bar .progress{display:block;height:100%;background-color:var(--color-bg-success-inverse)}.reverse-progress-container{position:relative;height:3px;background-color:var(--color-auto-gray-2);background-image:linear-gradient(90deg,var(--color-auto-green-5),var(--color-auto-blue-6),var(--color-auto-purple-8),var(--color-auto-red-6),var(--color-auto-orange-5));background-size:100% 3px}.reverse-progress-bar{position:absolute;right:0;height:100%;background-color:var(--color-auto-gray-2)}.progress-bar-small{height:10px}.select-menu-button:after{display:inline-block;width:0;height:0;vertical-align:-2px;content:"";border:4px solid transparent;border-top-color:currentcolor}.select-menu-button.icon-only{padding-left:7px}.select-menu-button.primary:after{border-top-color:var(--color-auto-white)}.select-menu-button.primary:after:active{background-color:var(--color-bg-success-inverse)}.select-menu-button-large:after{margin-left:.25em;border-width:.33em}.select-menu .spinner{float:left;margin:4px 0 0 -24px}.select-menu.active .select-menu-modal-holder{display:block}.select-menu.select-menu-modal-right{position:relative}.select-menu.select-menu-modal-right .select-menu-modal-holder{right:0}.select-menu .select-menu-clear-item{display:block}.select-menu .select-menu-clear-item .octicon{color:inherit}.select-menu .select-menu-clear-item+.select-menu-no-results{display:none!important}.select-menu.is-loading .select-menu-loading-overlay{display:block}.select-menu.is-loading .select-menu-modal{min-height:200px}.select-menu.has-error .select-menu-error{display:block}.select-menu-error{display:none}.select-menu-loading-overlay{position:absolute;top:0;z-index:5;display:none;width:100%;height:100%;background-color:var(--color-bg-overlay);border:1px solid transparent;border-radius:5px}.select-menu-loading-overlay .octicon-octoface{position:absolute;top:50%;left:50%;margin:-16px 0 0 -16px}.select-menu-modal-holder{position:absolute;z-index:30;display:none}.select-menu-modal{position:relative;width:300px;margin-top:4px;margin-bottom:20px;overflow:hidden;font-size:12px;color:var(--color-text-primary);background-color:var(--color-bg-overlay);background-clip:padding-box;border:1px solid var(--color-border-overlay);border-radius:6px}.select-menu-modal-narrow{width:200px}.select-menu-divider,.select-menu-header{padding:8px 10px;line-height:16px;background:var(--color-bg-tertiary);border-bottom:1px solid var(--color-select-menu-border-secondary)}.select-menu-divider,.select-menu-header .select-menu-title{font-weight:600;color:var(--color-text-primary)}.select-menu-divider{margin-top:-1px;border-top:1px solid var(--color-select-menu-border-secondary)}.select-menu-header .close-button,.select-menu-header .octicon{display:block;float:right;color:var(--color-icon-tertiary,#c6cbd1);cursor:pointer}.select-menu-header .close-button:hover,.select-menu-header .octicon:hover{color:var(--color-auto-gray-7)}.select-menu-header:focus{outline:none}.select-menu-filters{background-color:var(--color-bg-overlay)}.select-menu-text-filter{padding:10px 10px 0}.select-menu-text-filter:first-child:last-child{padding-bottom:10px;border-bottom:1px solid var(--color-select-menu-border-secondary)}.select-menu-text-filter input{display:block;width:100%;max-width:100%;padding:5px;border:1px solid var(--color-select-menu-border-secondary);border-radius:6px}.select-menu-text-filter input:-ms-input-placeholder{color:var(--color-text-placeholder,#a3aab1)}.select-menu-text-filter input::-ms-input-placeholder{color:var(--color-text-placeholder,#a3aab1)}.select-menu-text-filter input::placeholder{color:var(--color-text-placeholder,#a3aab1)}.select-menu-tabs{padding:10px 10px 0;border-bottom:1px solid var(--color-select-menu-border-secondary)}.select-menu-tabs ul{position:relative;bottom:-1px}.select-menu-tabs .select-menu-tab{display:inline-block}.select-menu-tabs .select-menu-tab-nav,.select-menu-tabs a{display:inline-block;padding:4px 8px 2px;font-size:11px;font-weight:600;color:var(--color-text-tertiary);text-decoration:none;cursor:pointer;background:transparent;border:1px solid transparent;border-radius:6px 6px 0 0}.select-menu-tabs .select-menu-tab-nav:hover,.select-menu-tabs a:hover{color:var(--color-text-primary)}.select-menu-tabs .select-menu-tab-nav.selected,.select-menu-tabs .select-menu-tab-nav[aria-selected=true],.select-menu-tabs a.selected,.select-menu-tabs a[aria-selected=true]{color:var(--color-text-primary);background-color:var(--color-bg-overlay);border-bottom-color:var(--color-select-menu-border-secondary);border-color:var(--color-select-menu-border-secondary) var(--color-select-menu-border-secondary) var(--color-bg-overlay)}.select-menu-list{position:relative;max-height:400px;overflow:auto}.select-menu-list.is-showing-new-item-form .select-menu-new-item-form{display:block}.select-menu-list.is-showing-new-item-form .select-menu-clear-item,.select-menu-list.is-showing-new-item-form .select-menu-no-results{display:none}.select-menu-blankslate{padding:16px;text-align:center}.select-menu-blankslate svg{display:block;margin-right:auto;margin-bottom:9px;margin-left:auto;fill:var(--color-icon-tertiary,#879099)}.select-menu-blankslate h3{font-size:14px;color:var(--color-text-primary)}.select-menu-blankslate p{width:195px;margin-right:auto;margin-bottom:0;margin-left:auto}.select-menu-item{display:block;padding:8px 8px 8px 30px;overflow:hidden;color:inherit;cursor:pointer;border-bottom:1px solid var(--color-select-menu-border-secondary)}.select-menu-item .select-menu-item-text .octicon-x{display:none;float:right;margin:1px 10px 0 0;opacity:.6}.select-menu-item:hover{text-decoration:none}.select-menu-item.disabled,.select-menu-item.disabled.selected,.select-menu-item[aria-disabled=true],.select-menu-item[disabled]{color:var(--color-text-tertiary);cursor:default}.select-menu-item.disabled .description,.select-menu-item.disabled.selected .description,.select-menu-item[aria-disabled=true] .description,.select-menu-item[disabled] .description{color:var(--color-text-tertiary)}.select-menu-item.disabled.opaque,.select-menu-item.disabled.selected.opaque,.select-menu-item[aria-disabled=true].opaque,.select-menu-item[disabled].opaque{opacity:.7}.select-menu-item.disabled .select-menu-item-gravatar,.select-menu-item.disabled.selected .select-menu-item-gravatar,.select-menu-item[aria-disabled=true] .select-menu-item-gravatar,.select-menu-item[disabled] .select-menu-item-gravatar{opacity:.5}.select-menu-item .octicon{vertical-align:middle}.select-menu-item .octicon-check,.select-menu-item .octicon-circle-slash,.select-menu-item input[type=radio]:not(:checked)+.octicon-check,.select-menu-item input[type=radio]:not(:checked)+.octicon-circle-slash{visibility:hidden}.select-menu-item.selected .octicon-circle-slash.select-menu-item-icon{color:var(--color-text-tertiary)!important}.select-menu-item .octicon-circle-slash{color:var(--color-text-tertiary)}.select-menu-item.excluded{background-color:var(--color-bg-tertiary)}.select-menu-item input[type=radio]{display:none}.select-menu-item:focus{outline:none}.select-menu-item:focus .octicon,.select-menu-item:hover .octicon{color:inherit}.select-menu-item.navigation-focus,.select-menu-item.navigation-focus .description-inline,.select-menu-item.navigation-focus.select-menu-action,.select-menu-item.navigation-focus.selected,.select-menu-item.navigation-focus[aria-checked=true],.select-menu-item:focus,.select-menu-item:focus .description-inline,.select-menu-item:focus.select-menu-action,.select-menu-item:focus.selected,.select-menu-item:hover,.select-menu-item:hover .description-inline,.select-menu-item:hover.select-menu-action,.select-menu-item:hover.selected,.select-menu-item[aria-checked=true]:focus,.select-menu-item[aria-checked=true]:hover,.select-menu-item[aria-selected=true] .description-inline,.select-menu-item[aria-selected=true].select-menu-action,.select-menu-item[aria-selected=true]:focus,.select-menu-item[aria-selected=true]:hover{color:var(--color-state-hover-primary-text);background-color:var(--color-state-hover-primary-bg)}.select-menu-item.navigation-focus .description-inline>.octicon,.select-menu-item.navigation-focus.select-menu-action>.octicon,.select-menu-item.navigation-focus.selected>.octicon,.select-menu-item.navigation-focus>.octicon,.select-menu-item.navigation-focus[aria-checked=true]>.octicon,.select-menu-item:focus .description-inline>.octicon,.select-menu-item:focus.select-menu-action>.octicon,.select-menu-item:focus.selected>.octicon,.select-menu-item:focus>.octicon,.select-menu-item:hover .description-inline>.octicon,.select-menu-item:hover.select-menu-action>.octicon,.select-menu-item:hover.selected>.octicon,.select-menu-item:hover>.octicon,.select-menu-item[aria-checked=true]:focus>.octicon,.select-menu-item[aria-checked=true]:hover>.octicon,.select-menu-item[aria-selected=true] .description-inline>.octicon,.select-menu-item[aria-selected=true].select-menu-action>.octicon,.select-menu-item[aria-selected=true]:focus>.octicon,.select-menu-item[aria-selected=true]:hover>.octicon{color:var(--color-state-hover-primary-icon)}.select-menu-item.navigation-focus .description,.select-menu-item.navigation-focus .description-inline .description,.select-menu-item.navigation-focus .description-inline .description-warning,.select-menu-item.navigation-focus .description-inline .select-menu-item-heading-warning,.select-menu-item.navigation-focus .description-warning,.select-menu-item.navigation-focus.select-menu-action .description,.select-menu-item.navigation-focus.select-menu-action .description-warning,.select-menu-item.navigation-focus.select-menu-action .select-menu-item-heading-warning,.select-menu-item.navigation-focus .select-menu-item-heading-warning,.select-menu-item.navigation-focus.selected .description,.select-menu-item.navigation-focus.selected .description-warning,.select-menu-item.navigation-focus.selected .select-menu-item-heading-warning,.select-menu-item.navigation-focus[aria-checked=true] .description,.select-menu-item.navigation-focus[aria-checked=true] .description-warning,.select-menu-item.navigation-focus[aria-checked=true] .select-menu-item-heading-warning,.select-menu-item:focus .description,.select-menu-item:focus .description-inline .description,.select-menu-item:focus .description-inline .description-warning,.select-menu-item:focus .description-inline .select-menu-item-heading-warning,.select-menu-item:focus .description-warning,.select-menu-item:focus.select-menu-action .description,.select-menu-item:focus.select-menu-action .description-warning,.select-menu-item:focus.select-menu-action .select-menu-item-heading-warning,.select-menu-item:focus .select-menu-item-heading-warning,.select-menu-item:focus.selected .description,.select-menu-item:focus.selected .description-warning,.select-menu-item:focus.selected .select-menu-item-heading-warning,.select-menu-item:hover .description,.select-menu-item:hover .description-inline .description,.select-menu-item:hover .description-inline .description-warning,.select-menu-item:hover .description-inline .select-menu-item-heading-warning,.select-menu-item:hover .description-warning,.select-menu-item:hover.select-menu-action .description,.select-menu-item:hover.select-menu-action .description-warning,.select-menu-item:hover.select-menu-action .select-menu-item-heading-warning,.select-menu-item:hover .select-menu-item-heading-warning,.select-menu-item:hover.selected .description,.select-menu-item:hover.selected .description-warning,.select-menu-item:hover.selected .select-menu-item-heading-warning,.select-menu-item[aria-checked=true]:focus .description,.select-menu-item[aria-checked=true]:focus .description-warning,.select-menu-item[aria-checked=true]:focus .select-menu-item-heading-warning,.select-menu-item[aria-checked=true]:hover .description,.select-menu-item[aria-checked=true]:hover .description-warning,.select-menu-item[aria-checked=true]:hover .select-menu-item-heading-warning,.select-menu-item[aria-selected=true] .description-inline .description,.select-menu-item[aria-selected=true] .description-inline .description-warning,.select-menu-item[aria-selected=true] .description-inline .select-menu-item-heading-warning,.select-menu-item[aria-selected=true].select-menu-action .description,.select-menu-item[aria-selected=true].select-menu-action .description-warning,.select-menu-item[aria-selected=true].select-menu-action .select-menu-item-heading-warning,.select-menu-item[aria-selected=true]:focus .description,.select-menu-item[aria-selected=true]:focus .description-warning,.select-menu-item[aria-selected=true]:focus .select-menu-item-heading-warning,.select-menu-item[aria-selected=true]:hover .description,.select-menu-item[aria-selected=true]:hover .description-warning,.select-menu-item[aria-selected=true]:hover .select-menu-item-heading-warning{color:var(--color-state-hover-primary-text)}.select-menu-item.navigation-focus.disabled,.select-menu-item.navigation-focus.disabled .description,.select-menu-item:hover.disabled,.select-menu-item:hover.disabled .description,.select-menu-item[aria-disabled=true]:hover,.select-menu-item[aria-disabled=true]:hover .description,.select-menu-item[aria-selected=true].disabled,.select-menu-item[aria-selected=true].disabled .description,.select-menu-item[disabled]:hover,.select-menu-item[disabled]:hover .description{color:var(--color-text-disabled)}.select-menu-item>.octicon-dash,.select-menu-item[aria-checked=mixed]>.octicon-check{display:none}.select-menu-item[aria-checked=mixed]>.octicon-dash{display:block}.select-menu-item input:checked+.octicon-check{color:inherit;visibility:visible}.select-menu-item.selected,details-menu .select-menu-item[aria-checked=true],details-menu .select-menu-item[aria-selected=true]{color:var(--color-text-primary)}.select-menu-item.selected .description,details-menu .select-menu-item[aria-checked=true] .description,details-menu .select-menu-item[aria-selected=true] .description{color:var(--color-text-secondary)}.select-menu-item.selected>.octicon,details-menu .select-menu-item[aria-checked=true]>.octicon,details-menu .select-menu-item[aria-selected=true]>.octicon{color:var(--color-text-primary)}.select-menu-item.selected .octicon-check,.select-menu-item.selected .octicon-circle-slash,details-menu .select-menu-item[aria-checked=true] .octicon-check,details-menu .select-menu-item[aria-checked=true] .octicon-circle-slash,details-menu .select-menu-item[aria-selected=true] .octicon-check,details-menu .select-menu-item[aria-selected=true] .octicon-circle-slash{color:inherit;visibility:visible}.select-menu-item.selected .select-menu-item-text .octicon-x,details-menu .select-menu-item[aria-checked=true] .select-menu-item-text .octicon-x,details-menu .select-menu-item[aria-selected=true] .select-menu-item-text .octicon-x{display:block;color:inherit}.select-menu.label-select-menu .select-menu-item:active{background-color:initial!important}.select-menu-item a{color:inherit;text-decoration:none}.select-menu-item .hidden-select-button-text{display:none}.select-menu-item .css-truncate-target{max-width:100%}.select-menu-item-icon{float:left;margin-left:-20px}form.select-menu-item>div:first-child{display:none!important}.select-menu-item.last-visible,.select-menu-list:last-child .select-menu-item:last-child{border-bottom:0;border-radius:0 0 6px 6px}.select-menu-action{font-weight:400;color:var(--color-auto-gray-7)}.select-menu-action>.octicon{color:inherit}.select-menu-action:hover{color:var(--color-text-link)}.select-menu-no-results{display:none;padding:9px;color:var(--color-text-secondary);cursor:auto}.select-menu-list.filterable-empty .select-menu-no-results,.select-menu-no-results:only-child{display:block}.select-menu-button-gravatar,.select-menu-item-gravatar{width:20px;overflow:hidden;line-height:0}.select-menu-button-gravatar img,.select-menu-item-gravatar img{display:inline-block;width:20px;height:20px;border-radius:6px}.select-menu-item-gravatar{float:left;width:20px;height:20px;margin-right:8px;border-radius:6px}.select-menu-button-gravatar{float:left;margin-right:5px}.select-menu-item-text{display:block;text-align:left}.select-menu-item-text .description{display:block;max-width:265px;font-size:12px;color:var(--color-text-secondary)}.select-menu-item-text .description-inline{font-size:10px;color:var(--color-text-secondary)}.select-menu-item-text .description-warning{color:var(--color-text-danger)}.select-menu-item-text mark{font-weight:600;color:inherit;background-color:inherit}.select-menu-item-heading{display:block;margin-top:0;margin-bottom:0;font-size:14px;font-weight:600}.select-menu-item-heading.select-menu-item-heading-warning{color:var(--color-text-danger)}.select-menu-item-heading .description{display:inline;font-weight:400}.select-menu-new-item-form{display:none}.select-menu-new-item-form .octicon{color:var(--color-text-link)}.table-list{display:table;width:100%;color:var(--color-text-tertiary);table-layout:fixed;border-bottom:1px solid var(--color-border-primary)}.table-list ol{list-style-type:decimal}.table-list-bordered{border-bottom-color:var(--color-border-primary)}.table-list-bordered .table-list-cell:first-child{border-left:1px solid var(--color-border-primary)}.table-list-bordered .table-list-cell:last-child{border-right:1px solid var(--color-border-primary)}.table-list-item{position:relative;display:table-row;list-style:none}.table-list-item.unread .table-list-cell:first-child{box-shadow:2px 0 0 var(--color-auto-blue-5) inset}.table-list-cell{position:relative;display:table-cell;padding:8px 10px;font-size:12px;vertical-align:top;border-top:1px solid var(--color-border-primary)}.table-list-cell.flush-left{padding-left:0}.table-list-cell.flush-right{padding-right:0}.table-list-cell-checkbox{width:30px;padding-right:0;padding-left:0;text-align:center}.table-list-header{position:relative;margin-top:20px;background-color:var(--color-bg-tertiary);border:1px solid var(--color-border-primary);border-radius:6px 6px 0 0}.table-list-header:before{display:table;content:""}.table-list-header:after{display:table;clear:both;content:""}.table-list-header .btn-link{position:relative;display:inline-block;padding-top:13px;padding-bottom:13px;font-weight:400}.table-list-heading{margin-left:10px}.table-list-header-select-all{float:left;width:30px;padding:12px 10px;margin-right:5px;margin-left:-1px;text-align:center}.table-list-header-meta{display:inline-block;padding-top:13px;padding-bottom:13px;color:var(--color-text-secondary)}.table-list-header-toggle h4{padding:12px 0}.table-list-filters:first-child .table-list-header-toggle:first-child{padding-left:16px}.table-list-header-toggle.states .selected{font-weight:600}.table-list-header-toggle .btn-link{color:var(--color-text-secondary)}.table-list-header-toggle .btn-link .octicon{margin-right:4px}.table-list-header-toggle .btn-link:hover{color:var(--color-text-primary);text-decoration:none}.table-list-header-toggle .btn-link.selected,.table-list-header-toggle .btn-link.selected:hover{color:var(--color-text-primary)}.table-list-header-toggle .btn-link+.btn-link{margin-left:10px}.table-list-header-toggle .btn-link.disabled,.table-list-header-toggle .btn-link:disabled{pointer-events:none;opacity:.5}.table-list-header-toggle .select-menu{position:relative}.table-list-header-toggle .select-menu-item.selected,.table-list-header-toggle .select-menu-item[aria-checked=true]{font-weight:600}.table-list-header-toggle .select-menu-button{padding-right:15px;padding-left:15px}.table-list-header-toggle .select-menu-button.selected,.table-list-header-toggle .select-menu-button.selected:hover,.table-list-header-toggle .select-menu-button:hover{color:var(--color-text-primary)}.table-list-header-toggle .select-menu-modal-holder{right:10px}.table-list-header-toggle .select-menu-modal-holder .select-menu-modal{margin-top:-1px}.table-list-header-next{margin-top:20px;margin-bottom:-1px}.table-list-header-next .table-list-header-select-all{padding-left:14px}.table-list-header-next .select-all-dropdown{padding-top:10px;padding-bottom:10px}.bulk-actions-header{position:-webkit-sticky;position:sticky;top:0;z-index:32;height:50px}.table-list-triage{display:none}.triage-mode .table-list-filters{display:none!important}.triage-mode .table-list-triage{display:block}.Box--overlay{width:448px;margin-right:auto;margin-left:auto;background-color:var(--color-bg-primary);background-clip:padding-box;border-color:var(--color-border-primary);box-shadow:0 0 18px rgba(0,0,0,.4)}.Box--overlay .Box-header{margin:0;border-width:0 0 1px;border-top-left-radius:6px;border-top-right-radius:6px}.Box-overlay--narrow{width:320px}.Box-overlay--wide{width:640px}.Overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:99;overflow-y:auto}.Box-body.scrollable-overlay{max-height:400px;overflow-y:scroll}.Box-body .help{padding-top:8px;margin:0;text-align:center}.Box-body .help,.breadcrumb{color:var(--color-text-secondary)}.breadcrumb{font-size:16px}.breadcrumb .separator{white-space:pre-wrap}.breadcrumb .separator:after,.breadcrumb .separator:before{content:" "}.breadcrumb strong.final-path{color:var(--color-text-primary)}.capped-cards{list-style:none}.capped-cards .capped-card{float:left;width:450px}.capped-card{margin:10px;list-style:none;border:1px solid #dfe2e5;border-radius:6px}.capped-card:after,.capped-card:before{display:table;content:""}.capped-card:after{clear:both}.capped-card:nth-child(odd){margin-left:0}.capped-card:nth-child(2n){margin-right:0}.capped-card h3{padding:10px}.capped-card>p,.capped-card h3{margin:0;line-height:100%;border-bottom:1px solid var(--color-border-secondary)}.capped-card>p{display:block;padding:0 10px 10px;font-size:15px;color:var(--color-text-secondary)}.capped-card-content{display:block;background:var(--color-bg-tertiary)}.capped-card-content:before{display:table;content:""}.capped-card-content:after{display:table;clear:both;content:""}.details-collapse .collapse{position:relative;display:none;height:0;overflow:hidden;transition:height .35s ease-in-out}.details-collapse.open .collapse{display:block;height:auto;overflow:visible}.comment .email-format{line-height:1.5}.previewable-edit .previewable-comment-form{display:none}.previewable-edit .previewable-comment-form:before{display:table;content:""}.previewable-edit .previewable-comment-form:after{display:table;clear:both;content:""}.previewable-edit .previewable-comment-form .tabnav-tabs{display:inline-block}.previewable-edit .previewable-comment-form .form-actions{float:right;margin-right:10px;margin-bottom:10px}.previewable-edit.is-comment-editing .timeline-comment-header{display:none!important}.is-comment-editing .previewable-comment-form{display:block}.is-comment-editing .edit-comment-hide,.is-comment-editing .timeline-comment-actions{display:none}.is-comment-loading .previewable-comment-form{opacity:.5}.comment-show-stale{display:none}.is-comment-stale .comment-show-stale{display:block}.comment-body{width:100%;padding:15px;overflow:visible;font-size:14px}.comment-body .highlight{overflow:visible!important;background-color:initial}.comment-form-textarea{width:100%;max-width:100%;height:100px;min-height:100px;margin:0;line-height:1.6}.comment-form-textarea.dragover{border:1px solid var(--color-auto-blue-5)}.hide-reaction-suggestion:active:after,.hide-reaction-suggestion:active:before,.hide-reaction-suggestion:hover:after,.hide-reaction-suggestion:hover:before{display:none}.reaction-suggestion[data-reaction-suggestion-message]:hover:after,.reaction-suggestion[data-reaction-suggestion-message]:hover:before{display:inline-block}.reaction-suggestion[data-reaction-suggestion-message]:after,.reaction-suggestion[data-reaction-suggestion-message]:before{display:inline-block;text-decoration:none;animation-name:tooltip-appear;animation-duration:.1s;animation-fill-mode:forwards;animation-timing-function:ease-in;animation-delay:0s}.reaction-suggestion[data-reaction-suggestion-message]:after{content:attr(data-reaction-suggestion-message)}.discussion-topic-header{position:relative;padding:10px;word-wrap:break-word}.comment-form-error{padding:16px 8px;margin:8px;color:var(--color-auto-red-9);background-color:var(--color-bg-danger);border:1px solid var(--color-fade-black-15);border-radius:6px}.email-format{line-height:1.5em!important}.email-format div{white-space:pre-wrap}.email-format .email-hidden-reply{display:none;white-space:pre-wrap}.email-format .email-hidden-reply.expanded{display:block}.email-format .email-quoted-reply,.email-format .email-signature-reply{padding:0 15px;margin:15px 0;color:var(--color-text-secondary);border-left:4px solid var(--color-border-primary)}.email-format .email-hidden-toggle a{display:inline-block;height:12px;padding:0 9px;font-size:12px;font-weight:600;line-height:6px;color:var(--color-text-primary);text-decoration:none;vertical-align:middle;background:var(--color-hidden-text-expander-bg);border-radius:1px}.email-format .email-hidden-toggle a:hover{background-color:var(--color-hidden-text-expander-bg-hover)}.email-format .email-hidden-toggle a:active{color:var(--color-text-white);background-color:var(--color-bg-info-inverse)}.comment-email-format div{white-space:normal}.comment-email-format .email-hidden-reply{display:none;white-space:normal}.comment-email-format .email-hidden-reply.expanded{display:block}.comment-email-format blockquote,.comment-email-format p{margin:0}.locked-conversation .preview-tab,.locked-conversation .write-tab{color:#c6cbd1}.preview-tab:focus,.write-tab:focus{outline:1px dotted var(--color-auto-black)}.manual-file-chooser-transparent{min-height:0;overflow:hidden;opacity:.01}.manual-file-chooser-transparent::-webkit-file-upload-button{cursor:pointer}.manual-file-chooser-transparent:focus{opacity:1!important}.commit-form{position:relative;padding:15px;border:1px solid #dfe2e5;border-radius:6px}.commit-form:after,.commit-form:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.commit-form:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:var(--color-auto-white)}.commit-form:before{border-width:8px;border-right-color:#dfe2e5}.commit-form .input-block{margin-top:10px;margin-bottom:10px}.commit-form-avatar{float:left;margin-left:-64px;border-radius:6px}.commit-form-actions:before{display:table;content:""}.commit-form-actions:after{display:table;clear:both;content:""}.commit-form-actions .BtnGroup{margin-right:5px}.merge-commit-message{resize:vertical}.commit-sha{padding:.2em .4em;font-size:90%;font-weight:400;background-color:var(--color-bg-tertiary);border:1px solid var(--color-border-secondary);border-radius:.2em}.commit .commit-title,.commit .commit-title a{color:var(--color-auto-gray-7)}.commit .commit-title.blank,.commit .commit-title.blank a{color:var(--color-text-tertiary)}.commit .commit-title .issue-link{font-weight:600;color:var(--color-text-link)}.commit .sha,.commit .sha-block{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px}.commit.open .commit-desc{display:block}.commit-link{font-weight:400;color:var(--color-text-link)}.commit-ref{position:relative;display:inline-block;padding:0 5px;font:.75em/2 SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;color:var(--color-branch-name-text,#274466);white-space:nowrap;background-color:var(--color-branch-name-bg,#eff7ff);border-radius:6px}.commit-ref .user{color:var(--color-auto-blue-7)}a.commit-ref:hover{text-decoration:none;background-color:var(--color-auto-blue-1)}.commit-desc{display:none}.commit-desc pre{max-width:700px;margin-top:10px;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:11px;line-height:1.45;color:var(--color-auto-gray-7);white-space:pre-wrap}.commit-desc+.commit-branches{padding-top:8px;margin-top:2px;border-top:1px solid var(--color-fade-black-15)}.commit-author-section{color:var(--color-text-primary)}.commit-author-section span.user-mention{font-weight:400}.commit-tease-sha{display:inline-block;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:90%;color:var(--color-auto-gray-7)}.commits-list-item.navigation-focus,.commits-list-item[aria-selected=true]{background:#f6fbff}.commits-list-item .commit-title{margin:0;font-size:15px;font-weight:600;color:var(--color-text-primary)}.commits-list-item .commit-meta{margin-top:1px;font-weight:400;color:var(--color-text-secondary)}.commits-list-item .status .octicon{height:14px;line-height:14px}.commits-list-item .commit-author{color:var(--color-text-secondary)}.commits-list-item .octicon-arrow-right{margin:0 3px}.commits-list-item .btn-outline{margin-top:2px}.commits-list-item .commit-desc pre{margin-top:5px;margin-bottom:10px;color:var(--color-text-secondary)}.commits-list-item .commit-desc pre a{word-break:break-word}.commit-indicator{margin-left:4px}.commit-links-group{margin-right:5px}.commits-list-item+.commits-list-item{border-top:1px solid var(--color-border-primary)}.full-commit{padding:8px 8px 0;margin:10px 0;font-size:14px;background:var(--color-bg-info,#eaf5ff);border:1px solid var(--color-border-primary,var(--color-fade-black-15));border-radius:6px}.full-commit:first-child{margin-top:0}.full-commit p.commit-title{margin:0 0 8px;font-size:18px;font-weight:600;color:var(--color-auto-blue-9)}.full-commit .branches-list{display:inline;margin-right:10px;margin-left:2px;vertical-align:middle;list-style:none}.full-commit .branches-list li{display:inline-block;padding-left:3px;font-weight:600;color:var(--color-auto-gray-7)}.full-commit .branches-list li:before{padding-right:6px;font-weight:400;content:"+"}.full-commit .branches-list li:first-child{padding-left:0}.full-commit .branches-list li:first-child:before{padding-right:0;content:""}.full-commit .branches-list li.loading,.full-commit .branches-list li.pull-request{font-weight:400;color:var(--color-text-tertiary)}.full-commit .branches-list li.pull-request:before{margin-left:-8px;content:""}.full-commit .branches-list li.pull-request-error{margin-bottom:-1px}.full-commit .branches-list li a{color:inherit}.full-commit .commit-meta{padding:8px;margin-right:-8px;margin-left:-8px;background:var(--color-bg-primary);border-top:1px solid var(--color-border-primary,var(--color-fade-black-15));border-bottom-right-radius:6px;border-bottom-left-radius:6px}.full-commit .sha-block{margin-left:16px;font-size:12px;line-height:24px;color:var(--color-text-secondary)}.full-commit .sha-block>.sha,.full-commit .sha-block>a{color:var(--color-auto-gray-7)}.full-commit .sha-block>a{text-decoration:none;border-bottom:1px dotted #c6cbd1}.full-commit .sha-block>a:hover{border-bottom:1px solid var(--color-auto-gray-7)}.full-commit .commit-desc{display:block;margin:-5px 0 10px}.full-commit .commit-desc pre{max-width:100%;overflow:visible;font-size:13px;word-wrap:break-word}.branches-tag-list{display:inline;margin-right:10px;margin-left:2px;vertical-align:middle;list-style:none}.branches-tag-list .more-commit-details,.branches-tag-list.open .hidden-text-expander{display:none}.branches-tag-list.open .more-commit-details{display:inline-block}.branches-tag-list li{display:inline-block;padding-left:3px}.branches-tag-list li:first-child{padding-left:0;font-weight:600;color:var(--color-auto-gray-7)}.branches-tag-list li.loading{font-weight:400;color:var(--color-text-tertiary)}.branches-tag-list li.abbrev-tags{cursor:pointer}.branches-tag-list li .ellipsis-expander,.branches-tag-list li a{color:inherit}.branches-tag-list li .ellipsis-expander{background-color:#d3e2f4}.branches-tag-list li .ellipsis-expander:hover{background-color:#d6e2f1}.commit-branches{min-height:18px;margin-top:-6px;margin-bottom:8px;font-size:12px;color:var(--color-text-tertiary)}.commit-branches,.commit-branches .octicon{vertical-align:middle}.commit-loader .loader-error{display:none;margin:0;font-size:12px;font-weight:600;color:var(--color-text-danger)}.commit-loader.is-error .loader-loading{display:none}.commit-loader.is-error .loader-error{display:block}.commit-build-statuses{position:relative;display:inline-block;text-align:left}.commit-build-statuses .dropdown-menu{min-width:362.66667px;max-width:544px;padding-top:0;padding-bottom:0}.commit-build-statuses .dropdown-menu .merge-status-list{max-height:170px;border-bottom:0}.commit-build-statuses .dropdown-menu-e,.commit-build-statuses .dropdown-menu-w{top:-11px}.commit-build-statuses .merge-status-item:last-child{border-radius:0 0 6px 6px}.dropdown-signed-commit .dropdown-menu{width:260px;margin-top:8px;font-size:13px;line-height:1.4;white-space:normal}.dropdown-signed-commit .dropdown-menu:after{border-bottom-color:var(--color-auto-gray-1)}.dropdown-signed-commit .dropdown-menu-w{top:-28px;margin-top:0}.dropdown-signed-commit .dropdown-menu-w:after{border-bottom-color:transparent;border-left-color:var(--color-auto-gray-1)}.signed-commit-header{line-height:1.3;white-space:normal;border-collapse:initial;background-color:var(--color-bg-tertiary);border-bottom:1px solid var(--color-border-primary);border-top-left-radius:6px;border-top-right-radius:6px}.signed-commit-header .octicon-verified{color:var(--color-auto-green-5)}.signed-commit-header .octicon-unverified{color:var(--color-auto-gray-4)}.signed-commit-footer{font-size:12px;line-height:1.5}.signed-commit-cert-info{margin-bottom:6px}.signed-commit-cert-info td{vertical-align:top}.signed-commit-cert-info td:first-child{width:44px;padding-right:12px}.signed-commit-badge{display:inline-block;padding:1px 4px;font-size:10px;color:var(--color-text-secondary);vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:none;border:1px solid var(--color-border-primary);border-radius:6px}.signed-commit-badge:hover{text-decoration:none;border-color:#c6cbd1}.signed-commit-badge.verified{color:var(--color-verified-badge-text);background:var(--color-verified-badge-bg);border-color:var(--color-verified-badge-border)}.signed-commit-badge.verified:hover{border-color:var(--color-auto-green-5)}.signed-commit-badge.unverified{color:var(--color-text-warning);background:none;border-color:var(--color-border-warning)}.signed-commit-badge.unverified:hover{border-color:var(--color-auto-yellow-5)}.signed-commit-badge-small{margin-top:-2px;margin-right:3px}.signed-commit-badge-medium{padding:3px 8px;font-size:12px;border-radius:6px}.signed-commit-badge-large{padding:5px 12px;margin-right:9px;font-size:13px;line-height:20px;border-radius:6px}.signed-commit-verified-label{color:#1e7e34;white-space:nowrap}.signed-commit-signer-name{font-size:14px;text-align:left}.signed-commit-signer-name .signer{display:block;font-weight:600;color:var(--color-text-primary)}.table-of-contents{margin:15px 0}.table-of-contents li{padding:7px 0;list-style-type:none}.table-of-contents li+li{border-top:1px solid var(--color-border-secondary)}.table-of-contents li>.octicon{margin-right:3px}.table-of-contents .toc-diff-stats{padding-left:20px;line-height:26px}.table-of-contents .toc-diff-stats .octicon{float:left;margin-top:3px;margin-left:-20px;color:#c6cbd1}.table-of-contents .toc-diff-stats .btn-link{font-weight:600}.table-of-contents .toc-diff-stats+.content{padding-top:5px}.table-of-contents .octicon-diff-removed{color:var(--color-text-danger)}.table-of-contents .octicon-diff-renamed{color:var(--color-text-tertiary)}.table-of-contents .octicon-diff-modified{color:var(--color-auto-yellow-7)}.table-of-contents .octicon-diff-added{color:var(--color-auto-green-5)}@media (min-width:768px){.toc-select .select-menu-modal{min-width:420px}}.toc-select .select-menu-item .css-truncate{max-width:290px}.toc-select .select-menu-item-heading,.toc-select .select-menu-item-text{color:var(--color-text-primary)}.toc-select .select-menu-item-icon.octicon-diff-removed{color:var(--color-text-danger)}.toc-select .select-menu-item-icon.octicon-diff-renamed{color:var(--color-text-tertiary)}.toc-select .select-menu-item-icon.octicon-diff-modified{color:var(--color-auto-yellow-7)}.toc-select .select-menu-item-icon.octicon-diff-added{color:var(--color-auto-green-5)}.toc-select .navigation-focus .color-text-danger,.toc-select .navigation-focus .color-text-success,.toc-select .navigation-focus .color-text-tertiary,.toc-select .navigation-focus .diffstat,.toc-select .navigation-focus .octicon-diff-added,.toc-select .navigation-focus .octicon-diff-modified,.toc-select .navigation-focus .octicon-diff-removed,.toc-select .navigation-focus .octicon-diff-renamed,.toc-select .navigation-focus .select-menu-item-heading,.toc-select .navigation-focus .select-menu-item-text,.toc-select[aria-selected=true] .color-text-danger,.toc-select[aria-selected=true] .color-text-success,.toc-select[aria-selected=true] .color-text-tertiary,.toc-select[aria-selected=true] .diffstat,.toc-select[aria-selected=true] .octicon-diff-added,.toc-select[aria-selected=true] .octicon-diff-modified,.toc-select[aria-selected=true] .octicon-diff-removed,.toc-select[aria-selected=true] .octicon-diff-renamed,.toc-select[aria-selected=true] .select-menu-item-heading,.toc-select[aria-selected=true] .select-menu-item-text,.toc-select [role^=menuitem]:focus .color-text-danger,.toc-select [role^=menuitem]:focus .color-text-success,.toc-select [role^=menuitem]:focus .color-text-tertiary,.toc-select [role^=menuitem]:focus .diffstat,.toc-select [role^=menuitem]:focus .octicon-diff-added,.toc-select [role^=menuitem]:focus .octicon-diff-modified,.toc-select [role^=menuitem]:focus .octicon-diff-removed,.toc-select [role^=menuitem]:focus .octicon-diff-renamed,.toc-select [role^=menuitem]:focus .select-menu-item-heading,.toc-select [role^=menuitem]:focus .select-menu-item-text,.toc-select [role^=menuitem]:hover .color-text-danger,.toc-select [role^=menuitem]:hover .color-text-success,.toc-select [role^=menuitem]:hover .color-text-tertiary,.toc-select [role^=menuitem]:hover .diffstat,.toc-select [role^=menuitem]:hover .octicon-diff-added,.toc-select [role^=menuitem]:hover .octicon-diff-modified,.toc-select [role^=menuitem]:hover .octicon-diff-removed,.toc-select [role^=menuitem]:hover .octicon-diff-renamed,.toc-select [role^=menuitem]:hover .select-menu-item-heading,.toc-select [role^=menuitem]:hover .select-menu-item-text{color:var(--color-text-white)!important}.conversation-list-heading{height:0;margin:32px 0 16px;font-size:16px;font-weight:400;color:var(--color-text-tertiary);text-align:center;border-bottom:1px solid var(--color-border-primary)}.conversation-list-heading .inner{position:relative;top:-16px;display:inline-block;padding:0 4px;background:var(--color-bg-canvas)}.copyable-terminal{position:relative;padding:10px 55px 10px 10px;background-color:var(--color-bg-tertiary);border-radius:6px}.copyable-terminal-content{overflow:auto}.copyable-terminal-button{position:absolute;top:5px;right:5px}.copyable-terminal-button .zeroclipboard-button{float:right}.copyable-terminal-button .zeroclipboard-button .octicon{padding-left:1px;margin:0 auto}.blob-wrapper{overflow-x:auto;overflow-y:hidden}.blob-wrapper table tr:nth-child(2n){background-color:initial}.page-blob.height-full .blob-wrapper{overflow-y:auto}.page-edit-blob.height-full .CodeMirror{height:300px}.page-edit-blob.height-full .CodeMirror,.page-edit-blob.height-full .CodeMirror-scroll{display:flex;flex-direction:column;flex:1 1 auto}.blob-wrapper-embedded{max-height:240px;overflow-y:auto}.diff-table{width:100%;border-collapse:initial}.diff-table .line-comments{padding:10px;vertical-align:top;border-top:1px solid var(--color-border-primary)}.diff-table .line-comments:first-child+.empty-cell{border-left-width:1px}.diff-table tr:not(:last-child) .line-comments{border-top:1px solid var(--color-border-primary);border-bottom:1px solid var(--color-border-primary)}.blob-num{width:1%;min-width:50px;padding-right:10px;padding-left:10px;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px;line-height:20px;color:var(--color-diff-blob-num-text);text-align:right;white-space:nowrap;vertical-align:top;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.blob-num:hover{color:var(--color-diff-blob-num-hover-text)}.blob-num:before{content:attr(data-line-number)}.blob-num.non-expandable{cursor:default}.blob-num.non-expandable:hover{color:var(--color-diff-blob-num-text)}.blob-code{position:relative;padding-right:10px;padding-left:10px;line-height:20px;vertical-align:top}.blob-code-inner{overflow:visible;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px;color:var(--color-text-primary);word-wrap:normal;white-space:pre}.blob-code-inner .x-first{border-top-left-radius:.2em;border-bottom-left-radius:.2em}.blob-code-inner .x-last{border-top-right-radius:.2em;border-bottom-right-radius:.2em}.blob-code-inner.highlighted,.blob-code-inner .highlighted{background-color:var(--color-blob-line-highlight-bg);box-shadow:inset 2px 0 0 var(--color-blob-line-highlight-border)}.blob-code-inner::selection,.blob-code-inner ::selection{background-color:var(--color-code-selection-bg)}.blob-code-marker:before{padding-right:8px;content:attr(data-code-marker)}.blob-code-marker-addition:before{content:"+ "}.blob-code-marker-deletion:before{content:"- "}.blob-code-marker-context:before{content:" "}.soft-wrap .diff-table{table-layout:fixed}.soft-wrap .blob-code{padding-left:18px;text-indent:-7px}.soft-wrap .blob-code-inner{word-wrap:break-word;white-space:pre-wrap}.soft-wrap .no-nl-marker{display:none}.soft-wrap .add-line-comment{margin-left:-28px}.blob-code-hunk,.blob-num-expandable,.blob-num-hunk{color:var(--color-diff-blob-hunk-text);vertical-align:middle}.blob-num-expandable,.blob-num-hunk{background-color:var(--color-diff-blob-hunk-num-bg)}.blob-code-hunk{padding-top:4px;padding-bottom:4px;background-color:var(--color-diff-blob-hunk-line-bg);border-width:1px 0}.blob-expanded .blob-code,.blob-expanded .blob-num{background-color:var(--color-bg-secondary)}.blob-expanded+tr:not(.blob-expanded) .blob-code,.blob-expanded+tr:not(.blob-expanded) .blob-num,.blob-expanded .blob-num-hunk,tr:not(.blob-expanded)+.blob-expanded .blob-code,tr:not(.blob-expanded)+.blob-expanded .blob-num{border-top:1px solid var(--color-border-secondary)}.blob-num-expandable{padding:0;font-size:12px;text-align:center}.blob-num-expandable .directional-expander{display:block;width:auto;height:auto;margin-right:-1px;color:var(--color-diff-blob-expander-icon);cursor:pointer}.blob-num-expandable .single-expander{padding-top:4px;padding-bottom:4px}.blob-num-expandable .directional-expander:hover{color:var(--color-diff-blob-expander-hover-icon);text-shadow:none;background-color:var(--color-diff-blob-expander-hover-bg);border-color:var(--color-auto-blue-5)}.blob-code-addition{background-color:var(--color-diff-blob-addition-line-bg);outline:1px dotted transparent}.blob-code-addition .x{color:var(--color-auto-gray-9);background-color:var(--color-diff-blob-addition-word-bg)}.blob-num-addition{color:var(--color-diff-blob-addition-num-text);background-color:var(--color-diff-blob-addition-num-bg);border-color:var(--color-auto-green-2)}.blob-num-addition:hover{color:var(--color-diff-blob-addition-num-hover-text)}.blob-code-deletion{background-color:var(--color-diff-blob-deletion-line-bg);outline:1px dashed transparent}.blob-code-deletion .x{color:var(--color-auto-gray-9);background-color:var(--color-diff-blob-deletion-word-bg)}.blob-num-deletion{color:var(--color-diff-blob-deletion-num-text);background-color:var(--color-diff-blob-deletion-num-bg);border-color:var(--color-auto-red-2)}.blob-num-deletion:hover{color:var(--color-diff-blob-deletion-num-hover-text)}.is-selecting,.is-selecting .blob-num{cursor:ns-resize!important}.is-selecting .add-line-comment,.is-selecting a{pointer-events:none;cursor:ns-resize!important}.is-selecting .is-hovered .add-line-comment{opacity:0}.is-selecting.file-diff-split,.is-selecting.file-diff-split .blob-num{cursor:nwse-resize!important}.is-selecting.file-diff-split .add-line-comment,.is-selecting.file-diff-split .empty-cell,.is-selecting.file-diff-split a{pointer-events:none;cursor:nwse-resize!important}.selected-line{position:relative}.selected-line:after{position:absolute;top:0;left:0;display:block;width:100%;height:100%;box-sizing:border-box;pointer-events:none;content:"";background:var(--color-diff-blob-selected-line-highlight-bg);mix-blend-mode:var(--color-diff-blob-selected-line-highlight-mix-blend-mode)}.selected-line.selected-line-top:after{border-top:1px solid var(--color-diff-blob-selected-line-highlight-border)}.selected-line.selected-line-bottom:after{border-bottom:1px solid var(--color-diff-blob-selected-line-highlight-border)}.selected-line.selected-line-left:after,.selected-line:first-child:after{border-left:1px solid var(--color-diff-blob-selected-line-highlight-border)}.selected-line.selected-line-right:after,.selected-line:last-child:after{border-right:1px solid var(--color-diff-blob-selected-line-highlight-border)}.is-commenting .selected-line.blob-code:before{position:absolute;top:0;left:-1px;display:block;width:4px;height:100%;content:"";background:var(--color-bg-info-inverse)}.add-line-comment{position:relative;z-index:5;float:left;width:22px;height:22px;margin:-2px -10px -2px -20px;line-height:21px;color:var(--color-diff-blob-comment-button-icon);text-align:center;text-indent:0;cursor:pointer;background-color:var(--color-diff-blob-comment-button-bg);background-image:linear-gradient(var(--color-diff-blob-comment-button-gradient-bg),var(--color-diff-blob-comment-button-bg));border-radius:6px;box-shadow:0 1px 4px var(--color-fade-black-15);opacity:0;transition:transform .1s ease-in-out;transform:scale(.8)}.add-line-comment:hover{transform:scale(1)}.add-line-comment:focus,.is-hovered .add-line-comment{opacity:1}.add-line-comment .octicon{vertical-align:text-top;pointer-events:none}.add-line-comment.octicon-check{background:#333;opacity:1}.inline-comment-form{border:1px solid #dfe2e5;border-radius:6px}.timeline-inline-comments{width:100%;table-layout:fixed}.show-inline-notes .inline-comments,.timeline-inline-comments .inline-comments{display:table-row}.inline-comments,.inline-comments.is-collapsed{display:none}.inline-comments .line-comments.is-collapsed{visibility:hidden}.inline-comments .line-comments+.blob-num{border-left-width:1px}.inline-comments .timeline-comment{margin-bottom:10px}.comment-holder,.inline-comments .inline-comment-form,.inline-comments .inline-comment-form-container{max-width:780px}.empty-cell+.line-comments,.line-comments+.line-comments{border-left:1px solid var(--color-border-secondary)}.inline-comment-form-container .inline-comment-form,.inline-comment-form-container.open .inline-comment-form-actions{display:none}.inline-comment-form-container .inline-comment-form-actions,.inline-comment-form-container.open .inline-comment-form{display:block}body.full-width .container,body.full-width .container-lg,body.full-width .container-xl,body.split-diff .container,body.split-diff .container-lg,body.split-diff .container-xl{width:100%;max-width:none;padding-right:20px;padding-left:20px}body.full-width .repository-content,body.split-diff .repository-content{width:100%}body.full-width .new-pr-form,body.split-diff .new-pr-form{max-width:980px}.file-diff-split{table-layout:fixed}.file-diff-split .blob-code+.blob-num{border-left:1px solid var(--color-auto-gray-1)}.file-diff-split .blob-code-inner{word-wrap:break-word;white-space:pre-wrap}.file-diff-split .empty-cell{cursor:default;background-color:var(--color-diff-blob-empty-block-bg);border-right-color:var(--color-border-secondary)}@media (max-width:1280px){.file-diff-split .write-selected .comment-form-head{margin-bottom:48px!important}.file-diff-split markdown-toolbar{position:absolute;right:8px;bottom:-40px}}.submodule-diff-stats .octicon-diff-removed{color:var(--color-text-danger)}.submodule-diff-stats .octicon-diff-renamed{color:#677a85}.submodule-diff-stats .octicon-diff-modified{color:#d0b44c}.submodule-diff-stats .octicon-diff-added{color:var(--color-auto-green-5)}.BlobToolbar{left:-17px}.BlobToolbar-dropdown{margin-left:-2px}.pl-token.active,.pl-token:hover{cursor:pointer;background:#ffea7f}.discussion-timeline{position:relative;float:left}.discussion-timeline:before{position:absolute;top:0;bottom:0;left:72px;z-index:0;display:block;width:2px;content:"";background-color:var(--color-auto-gray-2)}.discussion-timeline.team-discussion-timeline:before{bottom:24px;left:20px;z-index:auto;background-color:var(--color-auto-gray-2)}.discussion-timeline.team-discussion-timeline .blankslate{background:var(--color-bg-primary)}.discussion-sidebar-item{padding-top:16px;font-size:12px;color:var(--color-text-secondary)}.discussion-sidebar-item .btn .octicon{margin-right:0}.discussion-sidebar-item .muted-icon{color:var(--color-auto-gray-4)}.discussion-sidebar-item .muted-icon:hover{color:var(--color-text-link);text-decoration:none;cursor:pointer}.discussion-sidebar-item+.discussion-sidebar-item{margin-top:16px;border-top:1px solid var(--color-border-secondary)}.discussion-sidebar-item .select-menu{position:relative}.discussion-sidebar-item .select-menu-modal-holder{top:25px;right:-1px;left:auto}.discussion-sidebar-heading{margin-bottom:8px;font-size:12px;color:var(--color-text-secondary)}.discussion-sidebar-toggle{padding:4px 0;margin:-4px 0 4px}.discussion-sidebar-toggle .octicon{float:right;color:var(--color-auto-gray-4)}.discussion-sidebar-toggle:hover{color:var(--color-text-link);text-decoration:none;cursor:pointer}.discussion-sidebar-toggle:hover .octicon{color:inherit}button.discussion-sidebar-toggle{display:block;width:100%;font-weight:600;text-align:left;background:none;border:0}.sidebar-progress-bar .progress-bar{height:8px;margin-bottom:2px;border-radius:6px}.sidebar-assignee .css-truncate-target{max-width:110px}.sidebar-assignee .assignee{font-weight:600;color:var(--color-text-secondary);vertical-align:middle}.sidebar-assignee .assignee:hover{color:var(--color-text-link);text-decoration:none}.sidebar-assignee .reviewers-status-icon{width:14px}.sidebar-assignee .octicon{margin-top:2px}.thread-subscribe-form.is-error .thread-subscribe-button{color:var(--color-text-danger)}.sidebar-notifications{position:relative}.sidebar-notifications .thread-subscription-status{padding:0;margin:0;border:0}.sidebar-notifications .thread-subscription-status .thread-subscribe-form{display:block}.sidebar-notifications .thread-subscription-status .reason{padding:0;margin:4px 0 0}.sidebar-notifications .thread-subscription-status .btn-sm{display:block;width:100%}.participation .participant-avatar{float:left;margin:4px 0 0 4px}.participation a{color:var(--color-text-secondary)}.participation a:hover{color:var(--color-text-link);text-decoration:none}.participation-avatars{margin-left:-4px}.participation-avatars:before{display:table;content:""}.participation-avatars:after{display:table;clear:both;content:""}.participation-more{float:left;margin:8px 4px 0}.inline-comment-form .form-actions,.timeline-new-comment .form-actions{padding:0 8px 8px}.inline-comment-form:before{display:table;content:""}.inline-comment-form:after{display:table;clear:both;content:""}.inline-comment-form .tabnav-tabs{display:inline-block}.inline-comment-form .form-actions{float:right}.gh-header-actions{float:right;margin-top:4px}.gh-header-actions .btn-sm{float:left;margin-left:4px}.gh-header-actions .btn-sm .octicon{margin-right:0}.gh-header{background-color:var(--color-bg-canvas)}.gh-header .gh-header-sticky{height:1px}.gh-header .gh-header-sticky .meta{font-size:12px}.gh-header .gh-header-sticky .gh-header-shadow,.gh-header .gh-header-sticky .sticky-content{display:none}.gh-header .gh-header-sticky.is-stuck{z-index:110;height:60px}.gh-header .gh-header-sticky.is-stuck .sticky-content{display:block}.gh-header .gh-header-sticky.is-stuck .css-truncate-target{max-width:150px}.gh-header .gh-header-sticky.is-stuck+.gh-header-shadow{position:fixed;top:0;right:0;left:0;z-index:109;display:block;height:60px;content:"";background-color:var(--color-bg-primary);border-bottom:1px solid var(--color-border-primary)}.gh-header .gh-header-edit{display:none}.gh-header .gh-header-meta .base-ref{display:inline-block}.gh-header .gh-header-meta .commit-ref-dropdown,.gh-header.open .gh-header-show{display:none}.gh-header.open .gh-header-edit{display:block}.gh-header.open .gh-header-meta .base-ref{display:none}.gh-header.open .gh-header-meta .commit-ref-dropdown{display:inline-block;margin-top:-4px;vertical-align:top}.gh-header-title{margin-right:150px;margin-bottom:0;font-weight:400;line-height:1.125;word-wrap:break-word}.gh-header-no-access .gh-header-title{margin-right:0}.gh-header-number{font-weight:300;color:var(--color-text-tertiary)}.gh-header-meta{padding-bottom:8px;margin-top:8px;font-size:14px;color:var(--color-text-secondary);border-bottom:1px solid var(--color-border-primary)}.gh-header.issue .gh-header-meta{margin-bottom:16px}.gh-header.pull .gh-header-meta{padding-bottom:0;border-bottom:0}.gh-header-meta .commit-ref .css-truncate-target,.gh-header-meta .commit-ref:hover .css-truncate-target{max-width:780px!important}.gh-header-meta .State{margin-right:8px}.gh-header-meta .avatar{float:left;margin-top:-4px;margin-right:4px}.timeline-comment-wrapper{position:relative;padding-left:56px;margin-top:16px;margin-bottom:16px}.timeline-comment-avatar{float:left;margin-left:-56px;border-radius:6px}.timeline-comment-avatar .avatar{width:40px;height:40px}.timeline-comment-avatar .avatar-child{width:20px;height:20px}.discussions-timeline-scroll-target{width:100%;padding-top:60px;margin-top:-60px;pointer-events:none!important}.discussions-timeline-scroll-target>*{pointer-events:auto}.timeline-comment{position:relative;color:var(--color-text-primary);background-color:var(--color-bg-primary);border:1px solid var(--color-border-primary);border-radius:6px}.timeline-comment.will-transition-once{transition:border-color .65s ease-in-out}.timeline-comment.will-transition-once .timeline-comment-header{transition:background-color .65s ease,border-bottom-color .65s ease-in-out}.timeline-comment.will-transition-once .timeline-comment-label{transition:border-color .65s ease-in-out}.timeline-comment.will-transition-once:after,.timeline-comment.will-transition-once:before{transition:border-right-color .65s ease-in-out}.timeline-comment.current-user{border-color:var(--color-box-border-info)}.timeline-comment.current-user .timeline-comment-header{background-color:var(--color-box-bg-info);border-bottom-color:var(--color-box-border-info)}.timeline-comment.current-user .timeline-comment-label{border-color:var(--color-box-border-info)}.timeline-comment.current-user .previewable-comment-form .comment-form-head.tabnav{color:var(--color-box-border-info);background-color:var(--color-box-bg-info);border-bottom-color:var(--color-box-border-info)}.timeline-comment.is-internal,.timeline-comment.unread-item{border-color:var(--color-box-border-warning)}.timeline-comment.is-internal .timeline-comment-header,.timeline-comment.unread-item .timeline-comment-header{background-color:var(--color-box-bg-warning);border-bottom-color:var(--color-box-border-warning)}.timeline-comment.is-internal .timeline-comment-label,.timeline-comment.unread-item .timeline-comment-label{border-color:var(--color-box-border-warning)}.timeline-comment.is-internal .previewable-comment-form .comment-form-head.tabnav,.timeline-comment.unread-item .previewable-comment-form .comment-form-head.tabnav{color:var(--color-box-border-warning);background-color:var(--color-box-bg-warning);border-bottom-color:var(--color-box-border-warning)}.timeline-comment:empty{display:none}.timeline-comment .comment+.comment{border-top:1px solid var(--color-border-primary)}.timeline-comment .comment+.comment:after,.timeline-comment .comment+.comment:before{display:none}.timeline-comment .comment+.comment .timeline-comment-header{border-top-left-radius:0;border-top-right-radius:0}.timeline-comment--caret:after,.timeline-comment--caret:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.timeline-comment--caret:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:var(--color-auto-gray-1)}.timeline-comment--caret:before{border-width:8px;border-right-color:var(--color-auto-gray-3)}.is-pending .timeline-comment--caret:after,.is-pending .timeline-comment--caret:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.is-pending .timeline-comment--caret:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:var(--color-auto-yellow-0)}.is-pending .timeline-comment--caret:before{border-width:8px;border-right-color:var(--color-border-warning)}.timeline-comment--caret.current-user:after,.timeline-comment--caret.current-user:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.timeline-comment--caret.current-user:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:var(--color-current-user-tip-bg)}.timeline-comment--caret.current-user:before{border-width:8px;border-right-color:var(--color-current-user-tip-border)}.timeline-comment--caret.is-internal:after,.timeline-comment--caret.is-internal:before,.timeline-comment--caret.unread-item:after,.timeline-comment--caret.unread-item:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.timeline-comment--caret.is-internal:after,.timeline-comment--caret.unread-item:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:var(--color-box-bg-warning)}.timeline-comment--caret.is-internal:before,.timeline-comment--caret.unread-item:before{border-width:8px;border-right-color:var(--color-box-border-warning)}.timeline-comment--caret.timeline-comment--caret-nw:after,.timeline-comment--caret.timeline-comment--caret-nw:before{transform:rotate(90deg)}.timeline-comment--caret.timeline-comment--caret-nw:before{top:-16px;left:8px}.timeline-comment--caret.timeline-comment--caret-nw:after{top:-15px;left:7px}.page-responsive .timeline-comment--caret:after,.page-responsive .timeline-comment--caret:before{display:none}@media (min-width:768px){.page-responsive .timeline-comment--caret:after,.page-responsive .timeline-comment--caret:before{display:block}}:target .timeline-comment--caret:before{filter:drop-shadow(-.28em 0 0 var(--color-auto-blue-2));border-right-color:var(--color-auto-blue-4)}:target .timeline-comment{border-color:var(--color-auto-blue-4);box-shadow:0 0 0 .2em var(--color-auto-blue-2)}.review-comment:target{border:1px solid var(--color-auto-blue-4);border-radius:6px;box-shadow:0 0 0 .2em var(--color-auto-blue-2)}.timeline-comment-header{display:flex;align-items:center;padding-right:16px;padding-left:16px;color:var(--color-text-secondary);flex-direction:row-reverse;background-color:var(--color-bg-tertiary);border-bottom:1px solid var(--color-border-primary);border-top-left-radius:6px;border-top-right-radius:6px}.timeline-comment-header:only-child{border-bottom:0;border-radius:6px}.timeline-comment-header .author{color:var(--color-text-secondary)}.timeline-comment-header code{word-break:break-all}.comment-type-icon{color:inherit}.timeline-comment-label{float:right;padding:2px 4px;margin-left:8px;cursor:default;border:1px solid var(--color-fade-black-15);border-radius:6px}.timeline-comment-label-spammy{color:var(--color-text-danger);border-color:var(--color-border-danger)}.timeline-comment-header-text{min-width:0;padding-top:8px;padding-bottom:8px;margin-bottom:1px;flex:1 1 auto}.timeline-comment-header-text code a{color:var(--color-text-secondary)}.timeline-comment-actions{float:right;margin-left:8px}.timeline-comment-actions .show-more-popover.dropdown-menu-sw{right:-6px;margin-top:-5px}.timeline-comment-action{display:inline-block;padding:8px 4px;color:var(--color-text-tertiary)}.timeline-comment-action:focus,.timeline-comment-action:hover{color:var(--color-text-link);text-decoration:none;opacity:1}.timeline-comment-action .octicon-check{height:16px}.timeline-comment-action.disabled{color:var(--color-auto-gray-3);cursor:default}.timeline-comment-action.disabled:hover{color:var(--color-auto-gray-3)}.compare-tab-comments .timeline-comment-actions{display:none}.timeline-new-comment{margin-bottom:0}.timeline-new-comment .comment-form-head{margin-bottom:8px}.timeline-new-comment .previewable-comment-form .comment-body{padding:4px 4px 16px;border-bottom:1px solid var(--color-border-primary)}.comment-form-head .toolbar-commenting{float:right}.discussion-item-icon{float:left;width:32px;height:32px;margin-top:-5px;margin-left:-39px;line-height:28px;color:var(--color-icon-secondary);text-align:center;background-color:var(--color-timeline-badge-bg);border:2px solid var(--color-bg-canvas);border-radius:50%}.discussion-item-header{color:var(--color-text-secondary);word-wrap:break-word}.discussion-item-header .discussion-item-private{vertical-align:-1px}.discussion-item-header:last-child{padding-bottom:0}.discussion-item-header .commit-ref{font-size:85%;vertical-align:initial}.discussion-item-header .btn-outline{float:right;padding:4px 8px;margin-top:-4px;margin-left:8px}.discussion-item-private{color:var(--color-text-secondary)}.previewable-comment-form .comment-form-head.tabnav{padding:8px 8px 0;background:var(--color-bg-tertiary);border-radius:6px 6px 0 0}.page-responsive .previewable-comment-form .comment-form-head.tabnav .toolbar-commenting{background:var(--color-bg-primary)}@media (min-width:1012px){.page-responsive .previewable-comment-form .comment-form-head.tabnav .toolbar-commenting{background:transparent}}@media (min-width:768px){.page-responsive .previewable-comment-form .comment-form-head.tabnav{background:var(--color-bg-tertiary)}}.previewable-comment-form .comment{border:0}.previewable-comment-form .comment-body{padding:4px 4px 16px;background-color:initial;border-bottom:1px solid var(--color-border-primary)}.previewable-comment-form .timeline-comment .timeline-comment-actions{display:none}.new-discussion-timeline .composer .timeline-comment{margin-bottom:8px}.new-discussion-timeline .composer .timeline-comment:after{border-right-color:var(--color-text-white)}.new-discussion-timeline .composer .comment-form-head.tabnav{padding-top:0;background-color:var(--color-bg-primary)}.composer.composer-responsive{padding-left:0}.composer.composer-responsive .discussion-topic-header{padding:0}.composer.composer-responsive .timeline-comment{border:0}.composer.composer-responsive .timeline-comment:after,.composer.composer-responsive .timeline-comment:before{display:none}.composer.composer-responsive .previewable-comment-form .write-content{margin:0}@media (min-width:768px){.composer.composer-responsive{padding-left:56px}.composer.composer-responsive .timeline-comment{border:1px solid var(--color-border-primary)}.composer.composer-responsive .timeline-comment:after,.composer.composer-responsive .timeline-comment:before{position:absolute;top:11px;right:100%;left:-16px;display:block;width:0;height:0;pointer-events:none;content:" ";border-color:transparent;border-style:solid solid outset}.composer.composer-responsive .timeline-comment:after{margin-top:1px;margin-left:2px;border-width:7px;border-right-color:var(--color-auto-white)}.composer.composer-responsive .timeline-comment:before{border-width:8px;border-right-color:var(--color-auto-gray-3)}}.discussion-timeline-actions{background-color:var(--color-bg-canvas);border-top:2px solid var(--color-border-primary)}.discussion-timeline-actions .merge-pr{padding-top:0;border-top:0}.discussion-timeline-actions .thread-subscription-status{margin-top:16px}.pagination-loader-container{background-color:var(--color-bg-canvas);background-image:url(/images/modules/pulls/progressive-disclosure-line.svg);background-repeat:repeat-x;background-position:50%;background-size:16px}[data-color-mode=dark][data-dark-theme*=dark] .pagination-loader-container{background-image:url(/images/modules/pulls/progressive-disclosure-line-dark.svg)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark] .pagination-loader-container{background-image:url(/images/modules/pulls/progressive-disclosure-line-dark.svg)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark] .pagination-loader-container{background-image:url(/images/modules/pulls/progressive-disclosure-line-dark.svg)}}:target .timeline-comment-group .timeline-comment{border-color:var(--color-auto-blue-4);box-shadow:0 0 0 .2em var(--color-auto-blue-2)}.is-pending .form-actions{margin-right:8px;margin-bottom:4px}.is-pending .comment-form-head.tabnav,.is-pending .file,.is-pending .file-header,.is-pending .tabnav-tab.selected{border-color:var(--color-border-warning)}.is-pending .comment-form-head.tabnav,.is-pending .file-header{background-color:var(--color-auto-yellow-0)}.discussion-item-icon-gray{background-color:var(--color-auto-gray-2)!important}.footer-octicon{color:var(--color-footer-invertocat-octicon)}.footer-octicon:hover{color:var(--color-footer-invertocat-octicon-hover)}.team-mention,.user-mention{font-weight:600;color:var(--color-text-primary);white-space:nowrap}@media (max-width:543px){.notifications-component-menu-modal{margin:calc(10vh - 16px) 0}}@media (min-width:544px){.notifications-component-dialog,.notifications-component-dialog-modal,.notifications-component-menu-modal{width:100%}}@media (min-width:768px){.notifications-component-dialog,.notifications-component-dialog-modal,.notifications-component-menu-modal{min-width:300px}}.notifications-component-dialog:not([hidden])+.notifications-component-dialog-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:80;display:block;cursor:default;content:" ";background:transparent;background:var(--color-fade-black-50)}@media (min-width:544px){.notifications-component-dialog:not([hidden])+.notifications-component-dialog-overlay{display:none}}.notifications-component-dialog{z-index:99;animation:none}@keyframes notifications-component-dialog-animation--sm{0%{opacity:0;transform:translateX(16px)}}@media (min-width:544px){.notifications-component-dialog{position:absolute;top:auto;right:auto;bottom:auto;left:auto;max-height:none;padding-top:0;margin:0;transform:none}}.notifications-component-dialog .notifications-component-dialog-modal{animation:none}.pagehead{position:relative;padding-top:24px;padding-bottom:24px;margin-bottom:24px;border-bottom:1px solid var(--color-border-primary)}.pagehead.admin{background:url(/images/modules/pagehead/background-yellowhatch-v3.png) 0 0 repeat-x}.pagehead ul.pagehead-actions{position:relative;z-index:31;float:right;margin:0}.pagehead .path-divider{margin:0 .25em}.pagehead h1{min-height:32px;margin-top:0;margin-bottom:0;font-size:20px;font-weight:400}.pagehead h1 .avatar{margin-top:-2px;margin-right:9px;margin-bottom:-2px}.pagehead .underline-nav{height:69px;margin-top:-20px;margin-bottom:-20px}.pagehead-heading{color:inherit}.pagehead-actions>li{float:left;margin:0 10px 0 0;font-size:11px;color:var(--color-text-primary);list-style-type:none}.pagehead-actions>li:last-child{margin-right:0}.pagehead-actions .octicon-mute{color:var(--color-text-danger)}.pagehead-actions .select-menu{position:relative}.pagehead-actions .select-menu:before{display:table;content:""}.pagehead-actions .select-menu:after{display:table;clear:both;content:""}.pagehead-actions .select-menu-modal-holder{top:100%}.pagehead-tabs-item{float:left;padding:8px 15px 11px;color:var(--color-text-secondary);white-space:nowrap;border:1px solid transparent;border-top:3px solid transparent;border-radius:6px 6px 0 0}.pagehead-tabs-item .octicon{color:var(--color-fade-black-30)}.pagehead-tabs-item:hover{color:var(--color-text-primary);text-decoration:none}.pagehead-tabs-item.selected{font-weight:600;color:var(--color-text-primary);background-color:var(--color-bg-primary);border-left-color:var(--color-border-primary);border-bottom-color:transparent;border-right-color:var(--color-border-primary);border-top-color:var(--color-auto-orange-6)}.pagehead-tabs-item.selected>.octicon{color:inherit}.reponav{position:relative;top:1px;margin-top:-5px}.reponav:after,.reponav:before{display:table;content:""}.reponav:after{clear:both}.reponav-item{float:left;padding:7px 15px 8px;color:var(--color-text-secondary);white-space:nowrap;border:1px solid transparent;border-top:3px solid transparent;border-radius:6px 6px 0 0}.reponav-item .octicon{color:var(--color-fade-black-30)}.reponav-item:focus,.reponav-item:hover{color:var(--color-text-primary);text-decoration:none}.reponav-item.selected{color:var(--color-text-primary);background-color:var(--color-bg-primary);border-left-color:var(--color-border-primary);border-bottom-color:transparent;border-right-color:var(--color-border-primary);border-top-color:var(--color-auto-orange-6)}.reponav-item.selected .octicon{color:inherit}.reponav-wrapper{position:relative;z-index:2;overflow-y:hidden;background-color:var(--color-bg-canvas-inverse)}.reponav-wrapper .reponav{top:0;padding-right:8px;padding-left:8px;margin-top:0;-webkit-overflow-scrolling:touch;overflow-x:auto;color:hsla(0,0%,100%,.75)}.reponav-wrapper .reponav-item{display:inline-block;float:none;padding:4px 8px 16px;color:var(--color-text-secondary);border:0}.reponav-wrapper .reponav-item.selected{font-weight:600;color:var(--color-text-primary);background-color:initial;border:0}.steps{display:table;width:100%;padding:0;margin:30px auto 0;overflow:hidden;list-style:none;border:1px solid #dfe2e5;border-radius:6px;box-shadow:0 1px 3px rgba(27,31,35,.05)}.steps li{display:table-cell;width:33.3%;padding:10px 15px;color:#c6cbd1;cursor:default;background-color:var(--color-bg-secondary);border-left:1px solid #dfe2e5}.steps li.current{color:var(--color-text-primary);background-color:var(--color-bg-primary)}.steps li.current .octicon{color:var(--color-text-link)}.steps li .octicon{float:left;margin-right:15px;margin-bottom:5px}.steps li .step{display:block}.steps li:first-child{border-left:0}.steps .complete{color:var(--color-text-secondary)}.steps .complete .octicon{color:var(--color-auto-green-5)}.prose-diff .anchor{display:none}.prose-diff .show-rich-diff{color:var(--color-text-link);text-decoration:none;cursor:pointer}.prose-diff .show-rich-diff:hover{text-decoration:underline}.prose-diff.collapsed .rich-diff-level-zero.expandable{cursor:pointer}.prose-diff.collapsed .rich-diff-level-zero.expandable .vicinity{display:block}.prose-diff.collapsed .rich-diff-level-zero.expandable .unchanged:not(.vicinity){display:none}.prose-diff.collapsed .rich-diff-level-zero.expandable .octicon{display:block;margin:20px auto;color:var(--color-icon-tertiary)}.prose-diff.collapsed .rich-diff-level-zero.expandable:hover .octicon{color:var(--color-icon-secondary)}.prose-diff.collapsed .rich-diff-level-zero.expandable:only-child:before{font-size:18px;color:var(--color-text-tertiary);content:"Sorry, no visible changes to display."}.prose-diff.collapsed .rich-diff-level-zero.expandable:only-child:hover:before{color:var(--color-text-primary)}.prose-diff.collapsed .rich-diff-level-zero.expandable>.removed,.prose-diff.collapsed .rich-diff-level-zero.expandable>del{display:none;text-decoration:none}.prose-diff .markdown-body{padding:30px 30px 30px 15px}.prose-diff .markdown-body>ins{box-shadow:inset 4px 0 0 var(--color-diff-addition-border)}.prose-diff .markdown-body>del{text-decoration:none;box-shadow:inset 4px 0 0 var(--color-diff-deletion-border)}.prose-diff .markdown-body>del,.prose-diff .markdown-body>ins{display:block;border-radius:0}.prose-diff .markdown-body>del>.rich-diff-level-one,.prose-diff .markdown-body>del>.rich-diff-level-zero,.prose-diff .markdown-body>ins>.rich-diff-level-one,.prose-diff .markdown-body>ins>.rich-diff-level-zero{margin-left:15px}.prose-diff .markdown-body>del:first-child *,.prose-diff .markdown-body>ins:first-child *{margin-top:0}.prose-diff .rich-diff-level-zero.added{box-shadow:inset 4px 0 0 var(--color-diff-addition-border)}.prose-diff .rich-diff-level-zero.removed{box-shadow:inset 4px 0 0 var(--color-diff-deletion-border)}.prose-diff .rich-diff-level-zero.changed{box-shadow:inset 4px 0 0 var(--color-diff-change-border)}.prose-diff .rich-diff-level-zero.unchanged,.prose-diff .rich-diff-level-zero.vicinity{margin-left:15px}.prose-diff .rich-diff-level-zero.added,.prose-diff .rich-diff-level-zero.changed,.prose-diff .rich-diff-level-zero.removed{display:block;border-radius:0}.prose-diff .rich-diff-level-zero.added>.rich-diff-level-one,.prose-diff .rich-diff-level-zero.changed>.rich-diff-level-one,.prose-diff .rich-diff-level-zero.removed>.rich-diff-level-one{margin-left:15px}.prose-diff .rich-diff-level-zero.added:first-child *,.prose-diff .rich-diff-level-zero.changed:first-child *,.prose-diff .rich-diff-level-zero.removed:first-child *{margin-top:0}.prose-diff :not(.changed)>:not(.github-user-ins):not(.github-user-del)>.removed,.prose-diff :not(.changed)>:not(.github-user-ins):not(.github-user-del)>del{text-decoration:none}.prose-diff .changed .removed,.prose-diff .changed .removed>div,.prose-diff .changed .removed code,.prose-diff .changed .removed pre,.prose-diff .changed del,.prose-diff .changed del>div,.prose-diff .changed del code,.prose-diff .changed del pre{color:var(--color-diff-deletion-text);text-decoration:line-through;background:var(--color-diff-deletion-bg)}.prose-diff .changed .added,.prose-diff .changed ins,.prose-diff .changed ins code,.prose-diff .changed ins pre{color:var(--color-diff-addition-text);background:var(--color-diff-addition-bg);border-bottom:1px solid var(--color-diff-addition-border)}.prose-diff>.markdown-body .github-user-ins{text-decoration:underline}.prose-diff>.markdown-body .github-user-del{text-decoration:line-through}.prose-diff>.markdown-body li ul.added{background:var(--color-diff-addition-bg)}.prose-diff>.markdown-body li ul.removed{color:var(--color-diff-deletion-text);background:var(--color-diff-deletion-bg)}.prose-diff>.markdown-body li ul.removed:not(.github-user-ins){text-decoration:line-through}.prose-diff>.markdown-body li.added.moved-down .octicon,.prose-diff>.markdown-body li.added.moved-up .octicon{margin-right:5px;margin-left:5px;color:var(--color-icon-tertiary)}.prose-diff>.markdown-body li.added.moved{background:var(--color-diff-change-bg)}.prose-diff>.markdown-body li.removed.moved{display:none}.prose-diff>.markdown-body pre{padding:10px 20px}.prose-diff>.markdown-body td.changed,.prose-diff>.markdown-body th.changed{background:var(--color-diff-change-bg);border-left-color:var(--color-border-tertiary)}.prose-diff>.markdown-body :not(li.moved).removed{color:var(--color-diff-deletion-text);text-decoration:line-through;background:var(--color-diff-deletion-bg)}.prose-diff>.markdown-body :not(.github-user-ins):not(li.moved).removed{text-decoration:line-through}.prose-diff>.markdown-body :not(li.moved).added,.prose-diff>.markdown-body li:not(.moved).added{background:var(--color-diff-addition-bg)}.prose-diff>.markdown-body :not(.github-user-del):not(li.moved).added li:not(.moved):not(.github-user-del).added{text-decoration:none}.prose-diff>.markdown-body li:not(.moved).removed{color:var(--color-diff-deletion-text);background:var(--color-diff-deletion-bg)}.prose-diff>.markdown-body li:not(.moved):not(.github-user-ins).removed{text-decoration:line-through}.prose-diff>.markdown-body .added,.prose-diff>.markdown-body ins,.prose-diff>.markdown-body ins+.added{border-top:0;border-bottom:0}.prose-diff>.markdown-body .added:not(.github-user-del):not(.github-user-ins),.prose-diff>.markdown-body ins+.added:not(.github-user-del):not(.github-user-ins),.prose-diff>.markdown-body ins:not(.github-user-del):not(.github-user-ins){text-decoration:none}.prose-diff>.markdown-body img.added,.prose-diff>.markdown-body img.removed{border-style:solid;border-width:1px}.prose-diff>.markdown-body ins>div:not(.github-user-del):not(.github-user-ins),.prose-diff>.markdown-body ins code:not(.github-user-del):not(.github-user-ins),.prose-diff>.markdown-body ins pre:not(.github-user-del):not(.github-user-ins){text-decoration:none}.prose-diff>.markdown-body ul>del,.prose-diff>.markdown-body ul>ins{display:block;padding:0}.prose-diff>.markdown-body .added>li,.prose-diff>.markdown-body .removed>li{margin-top:0;margin-bottom:0}a.added_href,a.changed_href,b.changed_tag,code.changed_tag,em.changed_tag,i.changed_tag,span.changed_tag,span.removed_href,strong.changed_tag{border-bottom:1px dotted var(--color-border-tertiary);border-radius:0}.diff-view .file-type-prose .rich-diff{display:none}.diff-view .display-rich-diff .rich-diff{display:block}.diff-view .display-rich-diff .file-diff{display:none}.protip{margin-top:20px;color:var(--color-text-secondary);text-align:center}.protip strong{color:var(--color-text-primary)}.protip code{padding:2px;background-color:var(--color-bg-tertiary);border-radius:6px}.add-reaction-btn{opacity:0;transition:opacity .1s ease-in-out}.page-responsive .add-reaction-btn{opacity:1}@media (min-width:768px){.page-responsive .add-reaction-btn{opacity:0}}.add-reaction-plus-icon{margin-right:-1px}.reaction-popover-container[open] .add-reaction-btn{opacity:1}.add-reactions-options-item{margin-top:-1px;margin-right:-1px;line-height:29px;border:1px solid transparent}.add-reactions-options-item .emoji{display:inline-block;transition:transform .15s cubic-bezier(.2,0,.13,2)}.add-reactions-options-item:focus .emoji,.add-reactions-options-item:hover .emoji{text-decoration:none!important;transform:scale(1.2)!important}.add-reactions-options-item:active{background-color:var(--color-auto-blue-1)}.page-responsive .add-reactions-options-item{height:20vw}@media (min-width:544px){.page-responsive .add-reactions-options-item{height:auto}}.comment-reactions{display:none}.comment-reactions:before{display:table;content:""}.comment-reactions:after{display:table;clear:both;content:""}.comment-reactions .reaction-popover-container .reactions-menu{z-index:100}.page-responsive .comment-reactions{display:flex}@media (min-width:768px){.page-responsive .comment-reactions{display:none}.page-responsive .comment-reactions.has-reactions{display:flex}}.comment-reactions.has-reactions{display:block;border-top:1px solid var(--color-border-primary)}.comment-reactions.has-reactions .add-reaction-btn:focus,.comment-reactions.has-reactions:hover .add-reaction-btn{opacity:1}.comment-reactions .user-has-reacted{background-color:var(--color-bg-info)}.comment-reactions .add-reaction-btn{border-right:0}.reaction-summary-item{float:left;padding:9px 15px 7px;line-height:18px;border-right:1px solid var(--color-border-primary)}.reaction-summary-item:focus,.reaction-summary-item:hover{text-decoration:none}.comment-reactions-options .reaction-summary-item:first-child,.render-container{border-bottom-left-radius:6px}.render-container{padding:30px;line-height:0;text-align:center;background:var(--color-bg-tertiary);border-bottom-right-radius:6px}.render-container .render-viewer{display:none;width:100%;height:100%;border:0}.render-container .octospinner,.render-container .render-fullscreen,.render-container .render-viewer-error,.render-container .render-viewer-fatal,.render-container .render-viewer-invalid{display:none}.render-container.is-render-automatic .octospinner,.render-container.is-render-requested.is-render-failed .render-viewer-error,.render-container.is-render-requested .octospinner{display:inline-block}.render-container.is-render-requested.is-render-failed .octospinner,.render-container.is-render-requested.is-render-failed .render-viewer,.render-container.is-render-requested.is-render-failed .render-viewer-fatal,.render-container.is-render-requested.is-render-failed .render-viewer-invalid{display:none}.render-container.is-render-requested.is-render-failed-fatal .render-viewer-fatal{display:inline-block}.render-container.is-render-requested.is-render-failed-fatal .octospinner,.render-container.is-render-requested.is-render-failed-fatal .render-viewer,.render-container.is-render-requested.is-render-failed-fatal .render-viewer-error,.render-container.is-render-requested.is-render-failed-fatal .render-viewer-invalid{display:none}.render-container.is-render-requested.is-render-failed-invalid .render-viewer-invalid{display:inline-block}.render-container.is-render-requested.is-render-failed-invalid .octospinner,.render-container.is-render-requested.is-render-failed-invalid .render-viewer,.render-container.is-render-requested.is-render-failed-invalid .render-viewer-error,.render-container.is-render-requested.is-render-failed-invalid .render-viewer-fatal{display:none}.render-container.is-render-ready.is-render-requested:not(.is-render-failed){height:500px;padding:0;background:none}.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-viewer{display:block}.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-fullscreen{display:flex}.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .octospinner,.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-viewer-error,.render-container.is-render-ready.is-render-requested:not(.is-render-failed) .render-viewer-fatal{display:none}.render-notice{padding:20px 15px;font-size:14px;color:var(--color-auto-gray-7);background-color:var(--color-bg-tertiary);border-color:var(--color-fade-black-15)}.Skeleton{color:transparent;background-image:linear-gradient(270deg,rgba(0,0,0,.1),rgba(0,0,0,.05),rgba(0,0,0,.05),rgba(0,0,0,.1));background-size:400% 100%;animation:skeleton-loading 8s ease-in-out infinite}.Skeleton *{visibility:hidden}.Skeleton--text{-webkit-clip-path:inset(4px 0 4px 0 round 3px 3px 3px 3px);clip-path:inset(4px 0 4px 0 round 3px 3px 3px 3px)}.is-error .Skeleton{display:none}@keyframes skeleton-loading{0%{background-position:200% 0}to{background-position:-200% 0}}.authors-2 .AvatarStack{min-width:36px!important}.authors-3 .AvatarStack{min-width:46px!important}.navigation-focus .AvatarStack-body,[aria-selected=true] .AvatarStack-body{background:#f6fbff}.blame-commit .AvatarStack{margin-top:3px}.content-attachment{border-left:.25em solid #dfe2e5}.max--md{height:188px}[open] .max--md{height:auto}.max--md .content-attachment-content--gradient,.max--md .Details-content--closed{position:absolute;right:-1px;bottom:0;left:0;z-index:1;display:block;content:""}.max--md .content-attachment-content--gradient{height:88px;background:linear-gradient(180deg,hsla(0,0%,100%,0),#fff calc(100% - 28px))}.content-attachment-details[open] .max--md .content-attachment-content--gradient{background:none}[hidden]{display:none!important}.tracked-in-parent-pill{position:relative;cursor:default}.tracked-in-parent-pill-truncated{position:absolute;left:100%;display:none;white-space:nowrap;background:var(--color-bg-primary);border-left-width:0!important;border-top-left-radius:0!important;border-bottom-left-radius:0!important}.tracked-in-parent-pill:hover .tracked-in-parent-pill-truncated{display:block}.alert-label{color:var(--color-text-white)}.graph-canvas .alert-label--critical{fill:var(--color-auto-red-6)}.graph-canvas .alert-label--high{fill:var(--color-auto-orange-8)}.graph-canvas .alert-label--moderate{fill:var(--color-auto-yellow-8)}.graph-canvas .alert-label--low{fill:var(--color-auto-gray-9)}.advisory-form{background-color:var(--color-bg-tertiary);border-top:1px solid var(--color-border-primary)}.advisory-form .form-actions,.advisory-form .form-control,.advisory-form .previewable-comment-form{background-color:var(--color-bg-primary)}.advisory-credit-window-min{min-height:72px}.advisory-credit-window-max{max-height:370px}.emoji-tab.UnderlineNav-item{margin-right:4px}.emoji-tab[role=tab][aria-selected=true]{font-weight:600;color:var(--color-text-primary);border-bottom-color:var(--color-auto-orange-6)}.emoji-tab[role=tab][aria-selected=true] .UnderlineNav-octicon{color:var(--color-text-tertiary)}.selected-emoji{z-index:100;background-color:var(--color-bg-info-inverse)}.emoji-picker-container .emoji-picker-tab g-emoji{margin-right:auto;margin-left:3px}.emoji-tab .emoji-icon{width:auto}.emoji-picker-container{z-index:1;width:395px}.emoji-picker-tab{height:136px;padding-top:8px}.emoji-picker-emoji-width{width:32px;height:28px}.emoji-picker-tab .btn-outline:not(:hover){background-color:initial}.emoji-picker-list{list-style:none}.notification-shelf{z-index:34}.notification-shelf.is-stuck{z-index:999}.notifications-focus{width:100%}.notifications-focus .notifications-list .selected{background-color:var(--color-bg-info)!important;box-shadow:2px 0 0 var(--color-border-info) inset}.notifications-v2 .archived-notifications-tab .notifications-list-item.notification-archived{display:block}.notifications-v2 .archived-notifications-tab .notifications-list-item.notification-read,.notifications-v2 .archived-notifications-tab .notifications-list-item.notification-unread{display:none}@media (max-width:767px){.notifications-v2 .commit-ref .css-truncate-target{word-break:break-all;white-space:normal}}.notifications-v2 .mixed-notifications-tab .notifications-list-item.notification-archived,.notifications-v2 .mixed-notifications-tab .notifications-list-item.notification-read,.notifications-v2 .mixed-notifications-tab .notifications-list-item.notification-unread{display:block!important}@media (max-width:543px){.notifications-v2 .Box{border-right:0;border-left:0;border-radius:0}}@media (max-width:543px){.notifications-v2 .Box .Box-header{border-right:0!important;border-left:0!important;border-radius:0!important}}@media (max-width:767px){.notifications-v2 .AvatarStack--right{width:auto!important;min-width:auto!important;margin-left:53px!important}}@media (max-width:767px){.notifications-v2 .AvatarStack--right .AvatarStack-body{position:relative!important;right:unset!important;margin-right:8px;flex-direction:row!important}}@media (max-width:767px){.notifications-v2 .AvatarStack-body .avatar{position:relative!important;margin-right:-11px!important;margin-left:0!important;border-right:1px solid #fff!important;border-left:0!important}}.notifications-v2 .thread-subscription-status{background-color:initial!important}.notifications-v2 .notification-action-mark-archived,.notifications-v2 .notification-action-mark-unread,.notifications-v2 .notification-action-star,.notifications-v2 .notification-action-unsubscribe{display:block!important}.notifications-v2 .notification-action-mark-read,.notifications-v2 .notification-action-mark-unarchived,.notifications-v2 .notification-action-subscribe,.notifications-v2 .notification-action-unstar,.notifications-v2 .notification-is-starred-icon,.notifications-v2 .notification-unsubscribed .notification-action-unsubscribe{display:none!important}.notifications-v2 .notification-unread .notification-action-mark-read,.notifications-v2 .notification-unsubscribed .notification-action-subscribe{display:block!important}.notifications-v2 .notification-archived .notification-action-mark-archived,.notifications-v2 .notification-archived .notification-action-mark-read,.notifications-v2 .notification-archived .notification-action-mark-unread,.notifications-v2 .notification-unread .notification-action-mark-unread{display:none!important}.notifications-v2 .notification-archived .notification-action-mark-unarchived{display:block!important}.notifications-v2 .notification-starred .notification-action-star{display:none!important}.notifications-v2 .notification-starred .notification-is-starred-icon{display:inline-block!important}.notifications-v2 .notification-starred .notification-action-unstar{display:block!important}.notifications-v2 .unwatch-suggestions-alert.flash .octicon{margin-right:4px}.notification-navigation .menu-item{color:var(--color-text-tertiary)}.notification-navigation .menu-item:before{display:none}.notification-navigation .menu-item .octicon{color:var(--color-text-secondary)}.notification-navigation .menu-item.selected{background-color:var(--color-bg-info)}.notification-navigation .menu-item.selected .octicon{color:var(--color-text-link)!important}.notification-navigation .notification-configure-filters .octicon{color:var(--color-text-tertiary)!important}.notification-navigation .notification-configure-filters:hover .octicon{color:var(--color-text-link)!important}.notifications-list-item .notification-list-item-link{color:var(--color-text-tertiary)!important}.notifications-list-item.notification-archived,.notifications-list-item.notification-read{background-color:var(--color-notifications-row-read-bg)!important}.notifications-list-item.notification-unread{background-color:var(--color-notifications-row-bg)!important}.notifications-list-item.notification-unread .notification-list-item-link{color:var(--color-text-primary)!important}.notifications-list-item.notification-unread .notification-list-item-unread-indicator{background-color:var(--color-bg-info-inverse)}.notifications-list-item:hover{background-color:var(--color-bg-info)!important;box-shadow:2px 0 0 var(--color-auto-blue-5) inset}.notifications-list-item:hover .notification-list-item-link{color:var(--color-text-primary)!important}.notifications-list-item:hover .notification-list-item-actions{display:flex!important}@media (max-width:767px){.notifications-list-item:hover .notification-list-item-actions{display:none!important}}.notifications-list-item:hover .notification-list-item-actions .btn{color:var(--color-text-secondary)!important;background-color:var(--color-bg-info)!important;border:0!important}.notifications-list-item:hover .notification-list-item-actions .btn .octicon{color:var(--color-notifications-button-text)!important}.notifications-list-item:hover .notification-list-item-actions .btn:hover{background-color:var(--color-notifications-button-hover-bg)!important}.notifications-list-item:hover .notification-list-item-actions .btn:hover .octicon{color:var(--color-notifications-button-hover-text)!important}.notifications-list-item:hover .notification-list-item-hide-on-hover{visibility:hidden!important}.notifications-list-item:hover .AvatarStack-body{background:var(--color-bg-info)}.notifications-list-item.navigation-focus{background-color:var(--color-bg-info)!important;box-shadow:2px 0 0 var(--color-auto-blue-5) inset}.notifications-list-item.navigation-focus .notification-list-item-link{color:var(--color-text-primary)!important}.notifications-list-item:last-child{border-bottom:0!important}.notifications-list-item .Label{font-size:12px}.notifications-list-item .notification-list-item-unread-indicator{width:8px;height:8px;background:none}.notifications-list-item.notification-archived{display:none}.notifications-v2 .thread-subscribe-form{display:none!important}.notifications .read .avatar img{opacity:.5}.notifications .read .undo{display:block}.notifications .read .delete{visibility:hidden}.notifications .read.navigation-focus,.notifications .read[aria-selected=true]{background-color:#f5f9fc}.notifications .muted .unmute{display:block}.notifications .muted .mute,.notifications .unmute{display:none}.notification-thread-subscription:first-child{border-top:1px solid var(--color-border-tertiary)}.notification-subscription-filters-repo .no-results{display:none}.notifications-list{float:left;width:100%}.thread-subscription-status{padding:10px;margin:40px 0 20px;color:var(--color-text-secondary);border:1px solid var(--color-border-primary);border-radius:6px}.thread-subscription-status .btn-sm>.octicon{margin-right:1px}.thread-subscription-status .reason{margin:0 10px}.thread-subscription-status .reason,.thread-subscription-status .thread-subscribe-form{display:inline-block;vertical-align:middle}.subscription .loading{opacity:.5}.progress-pjax-loader{z-index:99999;height:2px!important;background:transparent;opacity:0;transition:opacity .4s linear .4s}.progress-pjax-loader.is-loading{opacity:1;transition:none}.progress-pjax-loader>.progress-pjax-loader-bar{background-color:var(--color-auto-blue-3);box-shadow:0 0 10px rgba(121,184,255,.7);transition:width .4s ease}.shelf{padding-top:20px;margin-bottom:20px;background-color:var(--color-bg-primary);border-bottom:1px solid var(--color-border-secondary)}.shelf .container{position:relative}.shelf-title{margin:0;font-size:30px;font-weight:400}.shelf-content{width:800px;margin:50px auto;text-align:center}.shelf-lead{margin-top:10px;margin-bottom:30px;font-size:18px;color:var(--color-text-secondary)}.shelf-dismiss{position:absolute;top:0;right:20px;font-size:12px;color:var(--color-text-tertiary)}.shelf-dismiss:hover{color:var(--color-text-link);text-decoration:none}.shelf-dismiss .close-button{width:28px;height:28px;padding:3px 5px;color:var(--color-fade-fg-70);border:1px solid var(--color-fade-fg-15);border-radius:28px}.shelf-dismiss .close-button:hover{color:var(--color-text-primary);border-color:var(--color-fade-fg-30)}.shelf-cta{padding:10px 50px;font-size:16px}.intro-shelf{margin-top:0;background-image:linear-gradient(180deg,var(--color-intro-shelf-gradient-out),var(--color-intro-shelf-gradient-in)),linear-gradient(70deg,var(--color-intro-shelf-gradient-left) 32%,var(--color-intro-shelf-gradient-right))}.intro-shelf .shelf-lead{color:var(--color-text-secondary)}.orgs-help-shelf{padding-top:20px;padding-bottom:20px;margin-top:-20px;margin-bottom:20px}.orgs-help-shelf .orgs-help-title{font-size:30px;font-weight:400}.orgs-help-shelf-content{width:800px;margin:50px auto;text-align:center}.orgs-help-shelf-content .orgs-help-lead{padding-right:45px;padding-left:45px;font-size:18px}.orgs-help-shelf-content .orgs-help-divider{display:block;width:150px;margin:40px auto;content:"";border-top:1px solid var(--color-border-tertiary)}.orgs-help-lead{margin-top:10px;margin-bottom:30px;color:var(--color-text-secondary)}.orgs-help-items{margin-bottom:40px}.orgs-help-item-octicon{width:70px;height:70px;margin:0 auto 15px;text-align:center;background-color:var(--color-bg-primary);border:1px solid var(--color-border-primary);border-radius:50px}.orgs-help-item-octicon .octicon{margin-top:20px;color:var(--color-text-link)}.orgs-help-item-title{margin-bottom:10px;font-weight:400}.orgs-help-item-content{margin-top:0;font-size:14px;color:var(--color-text-secondary)}.orgs-help-dismiss{float:right;margin-top:5px;margin-right:10px;font-size:12px;color:var(--color-text-secondary)}.orgs-help-dismiss:hover{color:var(--color-text-link);text-decoration:none}.orgs-help-dismiss .octicon{position:relative;top:1px}.orgs-help-title{margin-top:0;margin-bottom:0}.business-sso,.org-sso{width:340px;margin:0 auto}.business-sso .sso-title,.org-sso .sso-title{font-size:24px;font-weight:300;letter-spacing:-.5px}.business-sso .business-sso-panel,.business-sso .org-sso-panel,.org-sso .business-sso-panel,.org-sso .org-sso-panel{padding:20px;background-color:var(--color-bg-primary);border:1px solid var(--color-border-primary);border-radius:6px}.business-sso .sso-recovery-callout,.org-sso .sso-recovery-callout{padding:15px 10px;text-align:center;border:1px solid var(--color-border-secondary);border-radius:6px}.sso-modal{padding:16px}.sso-modal .business-sso,.sso-modal .org-sso{width:auto}.sso-modal .business-sso .business-sso-panel,.sso-modal .org-sso .org-sso-panel{border:0}.sso-modal .sso-prompt-error,.sso-modal .sso-prompt-success,.sso-modal.success .sso-prompt-default{display:none}.sso-modal.success .sso-prompt-success{display:block}.sso-modal.error .sso-prompt-default{display:none}.sso-modal.error .sso-prompt-error{display:block}.sso-modal.error .flash-error{margin-right:-35px;margin-left:-35px;border-right:0;border-left:0;border-radius:0}.tag-input-container{position:relative}.tag-input-container .suggester{position:absolute;z-index:100;width:100%;margin-top:-1px}.tag-input-container ul{list-style:none}.tag-input input{float:left;padding-left:2px;margin:0;background:none;border:0;box-shadow:none}.tag-input input:focus{box-shadow:none}.task-list-item{list-style-type:none}.task-list-item label{font-weight:400}.task-list-item.enabled label{cursor:pointer}.task-list-item+.task-list-item{margin-top:3px}.task-list-item .handle{display:none}.task-list-item-checkbox{margin:0 .2em .25em -1.6em;vertical-align:middle}.convert-to-issue-button{top:2px;right:4px;padding:0 2px;margin-right:8px;background-color:var(--color-bg-tertiary)}.convert-to-issue-button .octicon{fill:var(--color-text-primary)}.convert-to-issue-button:focus .octicon,.convert-to-issue-button:hover .octicon{fill:var(--color-text-link)}.reorderable-task-lists .markdown-body .contains-task-list{padding:0}.reorderable-task-lists .markdown-body li:not(.task-list-item){margin-left:26px}.reorderable-task-lists .markdown-body ol:not(.contains-task-list) li,.reorderable-task-lists .markdown-body ul:not(.contains-task-list) li{margin-left:0}.reorderable-task-lists .markdown-body .task-list-item{padding:2px 15px 2px 42px;margin-right:-15px;margin-left:-15px;line-height:1.5;border:0}.reorderable-task-lists .markdown-body .task-list-item+.task-list-item{margin-top:0}.reorderable-task-lists .markdown-body .task-list-item .handle{display:block;float:left;width:20px;padding:2px 0 0 2px;margin-left:-43px;opacity:0}.reorderable-task-lists .markdown-body .task-list-item .drag-handle{fill:var(--color-icon-primary)}.reorderable-task-lists .markdown-body .task-list-item.hovered>.handle{opacity:1}.reorderable-task-lists .markdown-body .task-list-item.is-dragging{opacity:0}.review-comment-contents .markdown-body .task-list-item{padding-left:42px;margin-right:-12px;margin-left:-12px;border-top-left-radius:6px;border-bottom-left-radius:6px}.convert-to-issue-enabled .task-list-item .contains-task-list{padding:4px 15px 0 43px;margin:0 -15px 0 -42px}.convert-to-issue-enabled .task-list-item.hovered{background-color:var(--color-bg-tertiary)}.convert-to-issue-enabled .task-list-item.hovered .contains-task-list{background-color:var(--color-bg-canvas)}.convert-to-issue-enabled .task-list-item.hovered>.convert-to-issue-button{z-index:20;width:auto;height:auto;overflow:visible;clip:auto}.convert-to-issue-enabled .task-list-item.hovered>.convert-to-issue-button svg{overflow:visible}.convert-to-issue-enabled .task-list-item.is-loading{color:var(--color-text-tertiary);background-color:var(--color-bg-info);border-top:1px solid var(--color-bg-info);border-bottom:1px solid var(--color-bg-canvas);border-left:1px solid var(--color-bg-canvas)}.convert-to-issue-enabled .task-list-item.is-loading ul{color:var(--color-text-primary);background-color:var(--color-bg-canvas)}.convert-to-issue-enabled .task-list-item.is-loading>.handle{opacity:0}.toolbar-commenting .dropdown-menu-s{width:100px}.toolbar-commenting .dropdown-item{font-weight:600;line-height:1em;background:none;border:0}.toolbar-commenting .dropdown-item:hover{color:var(--color-text-link)}.toolbar-commenting .dropdown-item:focus{color:var(--color-text-link);outline:none}.toolbar-item{display:block;float:left;padding:4px;font-size:14px;color:var(--color-text-secondary);cursor:pointer;background:none;border:0}.toolbar-item.dropdown,.toolbar-item.select-menu{padding:0}.toolbar-item .select-menu-modal{margin-top:2px}.toolbar-item .select-menu-item{padding-left:8px}.toolbar-item .menu-target{display:block;padding:4px;color:var(--color-text-secondary);background:none;border:0}.toolbar-item .menu-target:hover,.toolbar-item:hover{color:var(--color-text-link)}.toolbar-item .menu-target:focus,.toolbar-item:focus{color:var(--color-text-link);outline:none}.toolbar-item:disabled{color:var(--color-text-disabled)}.topic-tag{display:inline-block;padding:.3em .9em;margin:0 .5em .5em 0;white-space:nowrap;background-color:var(--color-bg-info);border-radius:6px}.topic-tag-link:hover{text-decoration:none;background-color:#def}.topic-tag-outline{background:var(--color-bg-primary);box-shadow:inset 0 0 0 1px var(--color-auto-blue-2)}.delete-topic-button,.delete-topic-link{display:inline-block;width:26px;color:var(--color-text-tertiary);background-color:var(--color-bg-info);border:0;border-left:1px solid #b4d9ff;border-top-right-radius:6px;border-bottom-right-radius:6px}.delete-topic-button:hover,.delete-topic-link:hover{background-color:#def}.delete-topic-link{padding-right:8px;padding-left:8px;margin-left:8px;line-height:1.75}.delete-topic-link:hover{text-decoration:none}.invalid-topic .delete-topic-button{color:var(--color-auto-red-9);background-color:var(--color-bg-danger);border-left-color:var(--color-auto-red-3)}.invalid-topic .delete-topic-button:hover{background-color:#ffc8ce}.topic-tag-action{align-items:center;padding-left:.8em;margin:.4em .4em 0 0;background-color:var(--color-bg-info);border-radius:6px}.topic-tag-action.invalid-topic{color:var(--color-auto-red-9);background-color:var(--color-bg-danger);border-color:var(--color-auto-red-3)}.topic-tag-action .add-topic-button,.topic-tag-action .remove-topic-button{display:inline-block;width:26px;font-size:14px;color:var(--color-text-tertiary);background-color:var(--color-bg-info);border:0;border-left:1px solid #b4d9ff}.topic-tag-action .add-topic-button:hover,.topic-tag-action .remove-topic-button:hover{color:var(--color-text-white)}.topic-tag-action .add-topic-button:hover{background-color:var(--color-auto-green-5)}.topic-tag-action .remove-topic-button{border-right:0;border-top-right-radius:6px;border-bottom-right-radius:6px}.topic-tag-action .remove-topic-button:hover{background-color:var(--color-auto-red-5)}.topic-input-container .tag-input{width:908px;cursor:text}.topic-input-container .tag-input.org-repo-tag-input{width:100%}.topic-input-container .tag-input .tag-input-inner{min-height:26px;background-image:none}.topic-input-container .topic-tag{margin-top:2px}.topic .css-truncate-target{max-width:75%}.topic-list .topic-list-item+.topic-list-item{border-top:1px solid var(--color-border-primary)}.topic-box .starred{color:var(--color-auto-yellow-5);border:0}.topic-box .unstarred{color:var(--color-auto-gray-3);border:0}.user-status-suggestions{height:98px;transition:height .1s ease-out,opacity .2s ease-in}.user-status-suggestions.collapsed{height:0;opacity:0}.user-status-container,.user-status-container .team-mention,.user-status-container .user-mention{white-space:normal}.user-status-container{word-break:break-word;word-wrap:break-word}.user-status-container .input-group-button .btn{width:46px;height:34px;line-height:0}.user-status-container .input-group-button g-emoji{font-size:1.3em;line-height:18px}.user-status-container .team-mention,.user-status-container .user-mention{white-space:normal}.user-status-container img.emoji{width:18px;height:18px}.emoji-status-width{width:20px}.user-status-org-button .user-status-org-detail{color:var(--color-text-secondary)}.user-status-org-button:focus .user-status-org-detail,.user-status-org-button:hover .user-status-org-detail{color:var(--color-text-white)}.user-status-org-button.selected{color:var(--color-text-white);background-color:var(--color-bg-info-inverse)}.user-status-org-button.selected .user-status-org-detail{color:var(--color-text-white)}.user-status-limited-availability-compact{width:8px;height:8px;background-color:var(--color-auto-yellow-3)}.user-status-message-wrapper{color:var(--color-text-primary)}.toggle-user-status-edit:focus .user-status-message-wrapper,.toggle-user-status-edit:hover .user-status-message-wrapper{color:var(--color-text-link)}.user-status-message-wrapper div{display:inline}.user-status-header g-emoji{font-size:1.25em}.user-status-message-wrapper .g-emoji{display:inline-block}.user-status-limited-availability-container{margin-top:16px;margin-bottom:16px}@media only screen and (max-height:560px){.user-status-suggestions{display:none}.user-status-limited-availability-container{margin-top:8px;margin-bottom:8px}}.user-status-circle-badge-container{position:absolute;bottom:0;left:100%;z-index:2;width:38px;height:38px;margin-bottom:32px;margin-left:-40px}.user-status-circle-badge-container .user-status-emoji-container{width:20px;height:20px;margin-right:0!important}.user-status-circle-badge-container .user-status-message-wrapper{width:0;padding-top:0!important;overflow:hidden;line-height:20px;opacity:0;transition:.1s ease}.user-status-circle-badge-container .user-status-busy{background-color:var(--color-bg-canvas)!important;background-image:linear-gradient(var(--color-bg-warning),var(--color-bg-warning))}.user-status-circle-badge-container:hover{width:auto;max-width:544px}.user-status-circle-badge-container:hover .user-status-emoji-container{margin-right:8px!important}.user-status-circle-badge-container:hover .user-status-message-wrapper{width:100%;opacity:1}.user-status-circle-badge-container:hover .user-status-circle-badge{box-shadow:var(--color-shadow-medium)}.user-status-circle-badge-container .user-status-message-wrapper .team-mention,.user-status-circle-badge-container .user-status-message-wrapper .user-mention{white-space:nowrap}.user-status-circle-badge{background-color:var(--color-bg-primary);border:1px solid var(--color-border-primary);border-radius:2em;box-shadow:var(--color-shadow-small)}@media (min-width:1012px){.hx_actions-sidebar{max-width:320px}}.hx_text-blue-light{color:var(--color-auto-blue-4)!important}.hx_actions_timer_input{-moz-appearance:textfield}.hx_actions_timer_input::-webkit-inner-spin-button,.hx_actions_timer_input::-webkit-outer-spin-button{-webkit-appearance:none}.hx_anim-fade-out{animation-name:hx-fade-out;animation-duration:1s;animation-timing-function:ease-out;animation-fill-mode:forwards}@keyframes hx-fade-out{0%{opacity:1}to{opacity:0}}.anim-rotate{animation:rotate 1s linear infinite}@keyframes rotate{to{transform:rotate(1turn)}}.AvatarStack--large{min-width:44px;height:32px}.AvatarStack--large.AvatarStack--two{min-width:48px}.AvatarStack--large.AvatarStack--three-plus{min-width:52px}.AvatarStack--large .AvatarStack-body .avatar{width:32px;height:32px;margin-right:-28px}.AvatarStack--large .AvatarStack-body:hover .avatar{margin-right:4px}.AvatarStack--large .avatar.avatar-more:before{width:32px}.AvatarStack--large .avatar.avatar-more:after{width:30px}.AvatarStack--large .avatar.avatar-more:after,.AvatarStack--large .avatar.avatar-more:before{height:32px}.hx_avatar_stack_commit .AvatarStack{height:24px;min-width:24px}.hx_avatar_stack_commit .AvatarStack .avatar{width:24px;height:24px}.hx_avatar_stack_commit .AvatarStack.AvatarStack--two{min-width:40px}.hx_avatar_stack_commit .AvatarStack.AvatarStack--three-plus{min-width:44px}.hx_avatar_stack_commit .AvatarStack-body{background-color:var(--color-bg-info)}.hx_flex-avatar-stack{display:flex;align-items:center}.hx_flex-avatar-stack-item{min-width:0;max-width:24px}.hx_flex-avatar-stack-item .avatar{display:block;border:2px solid var(--color-bg-primary);background-color:var(--color-bg-primary);box-shadow:none}.hx_flex-avatar-stack-item:last-of-type{flex-shrink:0;max-width:none}.Box-row--focus-gray.navigation-focus .AvatarStack-body{background-color:var(--color-bg-tertiary)}.AvatarStack-body:not(:hover){background-color:initial}.AvatarStack--three-plus.AvatarStack--three-plus .avatar-more{display:none}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body .avatar:nth-child(n+4){display:flex;opacity:1}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover) .avatar:nth-of-type(n+6){display:none;opacity:0}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body>.avatar:first-of-type{z-index:5}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body>.avatar:nth-of-type(2){z-index:4}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body>.avatar:nth-of-type(3){z-index:3}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body>.avatar:nth-of-type(4){z-index:2}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body>.avatar:nth-of-type(5){z-index:1}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover)>.avatar-more+.avatar:nth-of-type(3) img{opacity:.5}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover)>.avatar-more~.avatar:nth-of-type(4) img{opacity:.33}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover)>.avatar-more~.avatar:nth-of-type(5) img{opacity:.25}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover)>.avatar-more+.avatar:nth-of-type(3){margin-right:0;margin-left:-6px}.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover)>.avatar-more~.avatar:nth-of-type(4),.AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover)>.avatar-more~.avatar:nth-of-type(5){margin-right:0;margin-left:-18px}.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--right .AvatarStack-body:not(:hover)>.avatar-more+.avatar:nth-of-type(3){margin-right:-6px;margin-left:0}.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--right .AvatarStack-body:not(:hover)>.avatar-more~.avatar:nth-of-type(4),.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--right .AvatarStack-body:not(:hover)>.avatar-more~.avatar:nth-of-type(5){margin-right:-18px;margin-left:0}.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--large .AvatarStack-body:not(:hover)>.avatar-more+.avatar:nth-of-type(3){margin-right:0;margin-left:-2px}.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--large .AvatarStack-body:not(:hover)>.avatar-more~.avatar:nth-of-type(4),.AvatarStack--three-plus.AvatarStack--three-plus.AvatarStack--large .AvatarStack-body:not(:hover)>.avatar-more~.avatar:nth-of-type(5){margin-right:0;margin-left:-30px}.hx_avatar_stack_commit .AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover)>.avatar-more+.avatar:nth-of-type(3){margin-right:0;margin-left:-10px}.hx_avatar_stack_commit .AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover)>.avatar-more~.avatar:nth-of-type(4),.hx_avatar_stack_commit .AvatarStack--three-plus.AvatarStack--three-plus .AvatarStack-body:not(:hover)>.avatar-more~.avatar:nth-of-type(5){margin-right:0;margin-left:-21px}.hx_badge-search-container{cursor:text}.hx_badge-search-container .hx_badge-input{border:0;outline:0;box-shadow:none}.hx_badge-search-container .hx_badge-input:focus{border:0!important;box-shadow:none!important}.hx_badge-search-container .hx_badge-input:-ms-input-placeholder{font-size:12px}.hx_badge-search-container .hx_badge-input::-ms-input-placeholder{font-size:12px}.hx_badge-search-container .hx_badge-input::placeholder{font-size:12px}.hx_badge-search-container .hx_badge-input-inline{height:30px}.hx_badge{cursor:pointer}.hx_badge[aria-pressed=true]{color:var(--color-text-white)!important;background-color:var(--color-bg-info-inverse)!important;border-color:var(--color-border-info)!important}.hx_badge-align{height:40px!important}.hx_Box--firstRowRounded0 .Box-row:first-of-type{border-top-left-radius:0;border-top-right-radius:0}.Box-row:first-of-type{border-top-color:transparent}.hx_Box-row--with-top-border:first-of-type{border-top-color:inherit}.Box--overlay [data-close-dialog],.Box-overlay--narrow [data-close-dialog],.Box-overlay--wide [data-close-dialog]{z-index:1}@media (hover:hover){.hx_menuitem--focus{background-color:var(--color-bg-secondary)}}@media (-webkit-min-device-pixel-ratio:2) and (min-resolution:0.001dpcm){g-emoji{font-size:1.25em}}.hx_create-pr-button:hover{border-right-width:0}.hx_create-pr-button:hover+.BtnGroup-parent .BtnGroup-item{border-left-width:1px}summary[type=button].btn{-webkit-appearance:none}.form-control:-webkit-autofill{box-shadow:inset 0 0 0 32px var(--color-input-bg)!important}.form-control:-webkit-autofill:focus{box-shadow:inset 0 0 0 32px var(--color-input-bg),var(--color-state-focus-shadow)!important}.form-control:-webkit-autofill{-webkit-text-fill-color:var(--color-text-primary)}.hx_color-repo-private-icon{color:var(--color-icon-warning)}.hx_bg-black-fade-15{background-color:var(--color-fade-black-15)}[data-color-mode=light][data-light-theme*=light]{--color-calendar-halloween-graph-day-L1-bg:#ffee4a;--color-calendar-halloween-graph-day-L2-bg:#ffc501;--color-calendar-halloween-graph-day-L3-bg:#fe9600;--color-calendar-halloween-graph-day-L4-bg:#03001c}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-calendar-halloween-graph-day-L1-bg:#ffee4a;--color-calendar-halloween-graph-day-L2-bg:#ffc501;--color-calendar-halloween-graph-day-L3-bg:#fe9600;--color-calendar-halloween-graph-day-L4-bg:#03001c}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-calendar-halloween-graph-day-L1-bg:#ffee4a;--color-calendar-halloween-graph-day-L2-bg:#ffc501;--color-calendar-halloween-graph-day-L3-bg:#fe9600;--color-calendar-halloween-graph-day-L4-bg:#03001c}}[data-color-mode=dark][data-dark-theme*=dark]{--color-calendar-halloween-graph-day-L1-bg:#631c03;--color-calendar-halloween-graph-day-L2-bg:#bd561d;--color-calendar-halloween-graph-day-L3-bg:#fa7a18;--color-calendar-halloween-graph-day-L4-bg:#fddf68}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-calendar-halloween-graph-day-L1-bg:#631c03;--color-calendar-halloween-graph-day-L2-bg:#bd561d;--color-calendar-halloween-graph-day-L3-bg:#fa7a18;--color-calendar-halloween-graph-day-L4-bg:#fddf68}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-calendar-halloween-graph-day-L1-bg:#631c03;--color-calendar-halloween-graph-day-L2-bg:#bd561d;--color-calendar-halloween-graph-day-L3-bg:#fa7a18;--color-calendar-halloween-graph-day-L4-bg:#fddf68}}[data-color-mode=light][data-light-theme*=light]{--color-workflow-card-connector:var(--color-scale-gray-3)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-workflow-card-connector:var(--color-scale-gray-3)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-workflow-card-connector:var(--color-scale-gray-3)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-workflow-card-connector:var(--color-scale-gray-5)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-workflow-card-connector:var(--color-scale-gray-5)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-workflow-card-connector:var(--color-scale-gray-5)}}[data-color-mode=light][data-light-theme*=light]{--color-workflow-card-connector-bg:var(--color-scale-gray-3)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-workflow-card-connector-bg:var(--color-scale-gray-3)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-workflow-card-connector-bg:var(--color-scale-gray-3)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-workflow-card-connector-bg:var(--color-scale-gray-5)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-workflow-card-connector-bg:var(--color-scale-gray-5)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-workflow-card-connector-bg:var(--color-scale-gray-5)}}[data-color-mode=light][data-light-theme*=light]{--color-workflow-card-connector-inactive:var(--color-border-primary)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-workflow-card-connector-inactive:var(--color-border-primary)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-workflow-card-connector-inactive:var(--color-border-primary)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-workflow-card-connector-inactive:var(--color-border-primary)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-workflow-card-connector-inactive:var(--color-border-primary)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-workflow-card-connector-inactive:var(--color-border-primary)}}[data-color-mode=light][data-light-theme*=light]{--color-workflow-card-connector-inactive-bg:var(--color-border-primary)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-workflow-card-connector-inactive-bg:var(--color-border-primary)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-workflow-card-connector-inactive-bg:var(--color-border-primary)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-workflow-card-connector-inactive-bg:var(--color-border-primary)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-workflow-card-connector-inactive-bg:var(--color-border-primary)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-workflow-card-connector-inactive-bg:var(--color-border-primary)}}[data-color-mode=light][data-light-theme*=light]{--color-workflow-card-connector-highlight:var(--color-scale-blue-4)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-workflow-card-connector-highlight:var(--color-scale-blue-4)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-workflow-card-connector-highlight:var(--color-scale-blue-4)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-workflow-card-connector-highlight:var(--color-scale-blue-5)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-workflow-card-connector-highlight:var(--color-scale-blue-5)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-workflow-card-connector-highlight:var(--color-scale-blue-5)}}[data-color-mode=light][data-light-theme*=light]{--color-workflow-card-connector-highlight-bg:var(--color-scale-blue-4)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-workflow-card-connector-highlight-bg:var(--color-scale-blue-4)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-workflow-card-connector-highlight-bg:var(--color-scale-blue-4)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-workflow-card-connector-highlight-bg:var(--color-scale-blue-5)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-workflow-card-connector-highlight-bg:var(--color-scale-blue-5)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-workflow-card-connector-highlight-bg:var(--color-scale-blue-5)}}[data-color-mode=light][data-light-theme*=light]{--color-workflow-card-bg:var(--color-scale-white)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-workflow-card-bg:var(--color-scale-white)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-workflow-card-bg:var(--color-scale-white)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-workflow-card-bg:var(--color-scale-gray-7)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-workflow-card-bg:var(--color-scale-gray-7)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-workflow-card-bg:var(--color-scale-gray-7)}}[data-color-mode=light][data-light-theme*=light]{--color-workflow-card-inactive-bg:var(--color-bg-canvas-inset)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-workflow-card-inactive-bg:var(--color-bg-canvas-inset)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-workflow-card-inactive-bg:var(--color-bg-canvas-inset)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-workflow-card-inactive-bg:var(--color-bg-canvas-inset)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-workflow-card-inactive-bg:var(--color-bg-canvas-inset)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-workflow-card-inactive-bg:var(--color-bg-canvas-inset)}}[data-color-mode=light][data-light-theme*=light]{--color-workflow-card-header-shadow:transparent}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-workflow-card-header-shadow:transparent}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-workflow-card-header-shadow:transparent}}[data-color-mode=dark][data-dark-theme*=dark]{--color-workflow-card-header-shadow:rgba(27,31,35,0.04)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-workflow-card-header-shadow:rgba(27,31,35,0.04)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-workflow-card-header-shadow:rgba(27,31,35,0.04)}}[data-color-mode=light][data-light-theme*=light]{--color-workflow-card-progress-complete-bg:var(--color-scale-blue-4)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-workflow-card-progress-complete-bg:var(--color-scale-blue-4)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-workflow-card-progress-complete-bg:var(--color-scale-blue-4)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-workflow-card-progress-complete-bg:var(--color-scale-blue-5)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-workflow-card-progress-complete-bg:var(--color-scale-blue-5)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-workflow-card-progress-complete-bg:var(--color-scale-blue-5)}}[data-color-mode=light][data-light-theme*=light]{--color-workflow-card-progress-incomplete-bg:var(--color-scale-gray-2)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-workflow-card-progress-incomplete-bg:var(--color-scale-gray-2)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-workflow-card-progress-incomplete-bg:var(--color-scale-gray-2)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-workflow-card-progress-incomplete-bg:var(--color-scale-gray-6)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-workflow-card-progress-incomplete-bg:var(--color-scale-gray-6)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-workflow-card-progress-incomplete-bg:var(--color-scale-gray-6)}}[data-color-mode=light][data-light-theme*=light]{--color-checks-donut-error:var(--color-scale-red-6)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-checks-donut-error:var(--color-scale-red-6)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-checks-donut-error:var(--color-scale-red-6)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-checks-donut-error:var(--color-scale-red-4)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-checks-donut-error:var(--color-scale-red-4)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-checks-donut-error:var(--color-scale-red-4)}}[data-color-mode=light][data-light-theme*=light]{--color-checks-donut-pending:var(--color-scale-yellow-7)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-checks-donut-pending:var(--color-scale-yellow-7)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-checks-donut-pending:var(--color-scale-yellow-7)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-checks-donut-pending:var(--color-scale-yellow-3)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-checks-donut-pending:var(--color-scale-yellow-3)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-checks-donut-pending:var(--color-scale-yellow-3)}}[data-color-mode=light][data-light-theme*=light]{--color-checks-donut-success:var(--color-scale-green-5)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-checks-donut-success:var(--color-scale-green-5)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-checks-donut-success:var(--color-scale-green-5)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-checks-donut-success:var(--color-scale-green-4)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-checks-donut-success:var(--color-scale-green-4)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-checks-donut-success:var(--color-scale-green-4)}}[data-color-mode=light][data-light-theme*=light]{--color-checks-donut-neutral:var(--color-scale-gray-4)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-checks-donut-neutral:var(--color-scale-gray-4)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-checks-donut-neutral:var(--color-scale-gray-4)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-checks-donut-neutral:var(--color-scale-gray-3)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-checks-donut-neutral:var(--color-scale-gray-3)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-checks-donut-neutral:var(--color-scale-gray-3)}}[data-color-mode=light][data-light-theme*=light]{--color-discussions-answer-border:var(--color-scale-green-5)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-discussions-answer-border:var(--color-scale-green-5)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-discussions-answer-border:var(--color-scale-green-5)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-discussions-answer-border:rgba(var(--color-scale-green-3),0.3)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-discussions-answer-border:rgba(var(--color-scale-green-3),0.3)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-discussions-answer-border:rgba(var(--color-scale-green-3),0.3)}}[data-color-mode=light][data-light-theme*=light]{--color-discussions-answer-icon:var(--color-scale-green-6)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-discussions-answer-icon:var(--color-scale-green-6)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-discussions-answer-icon:var(--color-scale-green-6)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-discussions-answer-icon:var(--color-scale-green-3)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-discussions-answer-icon:var(--color-scale-green-3)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-discussions-answer-icon:var(--color-scale-green-3)}}[data-color-mode=light][data-light-theme*=light]{--color-discussions-answer-text:var(--color-scale-green-6)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-discussions-answer-text:var(--color-scale-green-6)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-discussions-answer-text:var(--color-scale-green-6)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-discussions-answer-text:var(--color-scale-green-3)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-discussions-answer-text:var(--color-scale-green-3)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-discussions-answer-text:var(--color-scale-green-3)}}[data-color-mode=light][data-light-theme*=light]{--color-discussions-state-answered-icon:var(--color-scale-white)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-discussions-state-answered-icon:var(--color-scale-white)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-discussions-state-answered-icon:var(--color-scale-white)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-discussions-state-answered-icon:var(--color-scale-green-3)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-discussions-state-answered-icon:var(--color-scale-green-3)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-discussions-state-answered-icon:var(--color-scale-green-3)}}[data-color-mode=light][data-light-theme*=light]{--color-bg-discussions-row-emoji-box:rgba(209,213,218,0.5)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-bg-discussions-row-emoji-box:rgba(209,213,218,0.5)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-bg-discussions-row-emoji-box:rgba(209,213,218,0.5)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-bg-discussions-row-emoji-box:var(--color-scale-gray-6)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-bg-discussions-row-emoji-box:var(--color-scale-gray-6)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-bg-discussions-row-emoji-box:var(--color-scale-gray-6)}}[data-color-mode=light][data-light-theme*=light]{--color-upvote-icon-bg:var(--color-scale-blue-1)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-upvote-icon-bg:var(--color-scale-blue-1)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-upvote-icon-bg:var(--color-scale-blue-1)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-upvote-icon-bg:var(--color-scale-blue-8)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-upvote-icon-bg:var(--color-scale-blue-8)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-upvote-icon-bg:var(--color-scale-blue-8)}}[data-color-mode=light][data-light-theme*=light]{--color-downvote-icon-bg:var(--color-scale-red-1)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-downvote-icon-bg:var(--color-scale-red-1)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-downvote-icon-bg:var(--color-scale-red-1)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-downvote-icon-bg:var(--color-scale-red-8)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-downvote-icon-bg:var(--color-scale-red-8)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-downvote-icon-bg:var(--color-scale-red-8)}}[data-color-mode=light][data-light-theme*=light]{--color-search-hover-hl:var(--color-scale-white)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-search-hover-hl:var(--color-scale-white)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-search-hover-hl:var(--color-scale-white)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-search-hover-hl:var(--color-scale-gray-8)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-search-hover-hl:var(--color-scale-gray-8)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-search-hover-hl:var(--color-scale-gray-8)}}[data-color-mode=light][data-light-theme*=light]{--color-notifications-button-text:var(--color-text-secondary)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-notifications-button-text:var(--color-text-secondary)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-notifications-button-text:var(--color-text-secondary)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-notifications-button-text:var(--color-text-white)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-notifications-button-text:var(--color-text-white)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-notifications-button-text:var(--color-text-white)}}[data-color-mode=light][data-light-theme*=light]{--color-notifications-button-hover-text:var(--color-text-primary)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-notifications-button-hover-text:var(--color-text-primary)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-notifications-button-hover-text:var(--color-text-primary)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-notifications-button-hover-text:var(--color-text-white)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-notifications-button-hover-text:var(--color-text-white)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-notifications-button-hover-text:var(--color-text-white)}}[data-color-mode=light][data-light-theme*=light]{--color-notifications-button-hover-bg:var(--color-auto-gray-2)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-notifications-button-hover-bg:var(--color-auto-gray-2)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-notifications-button-hover-bg:var(--color-auto-gray-2)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-notifications-button-hover-bg:var(--color-auto-blue-5)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-notifications-button-hover-bg:var(--color-auto-blue-5)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-notifications-button-hover-bg:var(--color-auto-blue-5)}}[data-color-mode=light][data-light-theme*=light]{--color-notifications-row-read-bg:var(--color-bg-tertiary)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-notifications-row-read-bg:var(--color-bg-tertiary)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-notifications-row-read-bg:var(--color-bg-tertiary)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-notifications-row-read-bg:var(--color-bg-primary)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-notifications-row-read-bg:var(--color-bg-primary)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-notifications-row-read-bg:var(--color-bg-primary)}}[data-color-mode=light][data-light-theme*=light]{--color-notifications-row-bg:var(--color-auto-white)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-notifications-row-bg:var(--color-auto-white)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-notifications-row-bg:var(--color-auto-white)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-notifications-row-bg:var(--color-bg-tertiary)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-notifications-row-bg:var(--color-bg-tertiary)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-notifications-row-bg:var(--color-bg-tertiary)}}[data-color-mode=light][data-light-theme*=light]{--color-timeline-merged-bg:var(--color-auto-purple-5)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-timeline-merged-bg:var(--color-auto-purple-5)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-timeline-merged-bg:var(--color-auto-purple-5)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-timeline-merged-bg:var(--color-auto-purple-3)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-timeline-merged-bg:var(--color-auto-purple-3)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-timeline-merged-bg:var(--color-auto-purple-3)}}[data-color-mode=light][data-light-theme*=light]{--color-current-user-tip-bg:var(--color-box-bg-info)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-current-user-tip-bg:var(--color-box-bg-info)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-current-user-tip-bg:var(--color-box-bg-info)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-current-user-tip-bg:#112034}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-current-user-tip-bg:#112034}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-current-user-tip-bg:#112034}}[data-color-mode=light][data-light-theme*=light]{--color-current-user-tip-border:#d4e2f8}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-current-user-tip-border:#d4e2f8}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-current-user-tip-border:#d4e2f8}}[data-color-mode=dark][data-dark-theme*=dark]{--color-current-user-tip-border:#1f477e}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-current-user-tip-border:#1f477e}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-current-user-tip-border:#1f477e}}[data-color-mode=light][data-light-theme*=light]{--color-gist-editor-bg:var(--color-scale-white)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-gist-editor-bg:var(--color-scale-white)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-gist-editor-bg:var(--color-scale-white)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-gist-editor-bg:var(--color-bg-secondary)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-gist-editor-bg:var(--color-bg-secondary)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-gist-editor-bg:var(--color-bg-secondary)}}.hx_color-icon-directory{color:var(--color-files-explorer-icon)}:checked+.hx_theme-toggle{border-color:var(--color-state-hover-primary-border)}.hx_comment-box--tip:after{border-right-color:var(--color-bg-canvas)!important}.hx_keyword-hl{background-color:var(--color-search-keyword-hl)}@media (max-width:543px){[data-color-mode=dark][data-dark-theme*=dark]{--color-text-primary:var(--color-scale-gray-0);--color-bg-canvas:var(--color-scale-black);--color-bg-primary:var(--color-scale-gray-8)}}@media (max-width:543px) and (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-text-primary:var(--color-scale-gray-0);--color-bg-canvas:var(--color-scale-black);--color-bg-primary:var(--color-scale-gray-8)}}@media (max-width:543px) and (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-text-primary:var(--color-scale-gray-0);--color-bg-canvas:var(--color-scale-black);--color-bg-primary:var(--color-scale-gray-8)}}[data-color-mode=light][data-light-theme*=light]{--color-profile-color-modes-toggle-track-border:var(--color-scale-gray-3)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-profile-color-modes-toggle-track-border:var(--color-scale-gray-3)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-profile-color-modes-toggle-track-border:var(--color-scale-gray-3)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-profile-color-modes-toggle-track-border:var(--color-scale-purple-8)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-profile-color-modes-toggle-track-border:var(--color-scale-purple-8)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-profile-color-modes-toggle-track-border:var(--color-scale-purple-8)}}[data-color-mode=light][data-light-theme*=light]{--color-profile-color-modes-toggle-track-bg:var(--color-scale-white)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-profile-color-modes-toggle-track-bg:var(--color-scale-white)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-profile-color-modes-toggle-track-bg:var(--color-scale-white)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-profile-color-modes-toggle-track-bg:var(--color-scale-purple-9)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-profile-color-modes-toggle-track-bg:var(--color-scale-purple-9)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-profile-color-modes-toggle-track-bg:var(--color-scale-purple-9)}}[data-color-mode=light][data-light-theme*=light]{--color-profile-color-modes-toggle-thumb-bg:var(--color-scale-gray-8)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-profile-color-modes-toggle-thumb-bg:var(--color-scale-gray-8)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-profile-color-modes-toggle-thumb-bg:var(--color-scale-gray-8)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-profile-color-modes-toggle-thumb-bg:var(--color-scale-purple-6)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-profile-color-modes-toggle-thumb-bg:var(--color-scale-purple-6)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-profile-color-modes-toggle-thumb-bg:var(--color-scale-purple-6)}}[data-color-mode=light][data-light-theme*=light]{--color-profile-color-modes-toggle-moon:var(--color-scale-yellow-4)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{--color-profile-color-modes-toggle-moon:var(--color-scale-yellow-4)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{--color-profile-color-modes-toggle-moon:var(--color-scale-yellow-4)}}[data-color-mode=dark][data-dark-theme*=dark]{--color-profile-color-modes-toggle-moon:var(--color-scale-yellow-0)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{--color-profile-color-modes-toggle-moon:var(--color-scale-yellow-0)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{--color-profile-color-modes-toggle-moon:var(--color-scale-yellow-0)}}@media (min-width:1280px){.hx_UnderlineNav-with-profile-color-modes-banner{overflow:visible;padding-top:8px;align-items:flex-end}}.profile-color-modes{display:none;position:relative;padding-right:32px}@media (min-width:1280px){.profile-color-modes{display:block}}.profile-color-modes-toggle{position:absolute;top:12px;right:0}.profile-color-modes-toggle-track{width:42px;height:24px;border-radius:24px;border:3px solid var(--color-profile-color-modes-toggle-track-border);background-color:var(--color-profile-color-modes-toggle-track-bg)}.profile-color-modes-toggle-thumb{position:absolute;top:-2px;left:-2px;width:28px;height:28px;border-radius:50%;background-color:var(--color-profile-color-modes-toggle-thumb-bg);transition:transform .3s cubic-bezier(.4,.03,0,1);cursor:pointer}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-toggle-thumb{transform:translateX(18px)}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-toggle-thumb{transform:translateX(18px)}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-toggle-thumb{transform:translateX(18px)}}.profile-color-modes-popover{opacity:.01;transition:opacity .5s cubic-bezier(.4,.03,0,1)}.profile-color-modes-popover.shown{opacity:1}.profile-color-modes-illu-group{stroke:var(--color-auto-gray-3)}.profile-color-modes-illu-frame{opacity:0}[data-color-mode=light][data-light-theme*=light] .profile-color-modes-illu-frame:nth-child(8){animation:profile-light-color-modes-illu-anim-frame-show 0s forwards,profile-light-color-modes-illu-anim-frame-hide 0s .3s forwards}[data-color-mode=light][data-light-theme*=light] .profile-color-modes-illu-frame:nth-child(9){animation:profile-light-color-modes-illu-anim-frame-show 0s .3s forwards,profile-light-color-modes-illu-anim-frame-hide 0s .36s forwards}[data-color-mode=light][data-light-theme*=light] .profile-color-modes-illu-frame:nth-child(10){animation:profile-light-color-modes-illu-anim-frame-show 0s .36s forwards}@keyframes profile-light-color-modes-illu-anim-frame-show{0%{opacity:0;animation-timing-function:ease-out}to{opacity:1}}@keyframes profile-light-color-modes-illu-anim-frame-hide{0%{opacity:1;animation-timing-function:ease-in}to{opacity:0}}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light] .profile-color-modes-illu-frame:nth-child(8){animation:profile-light-color-modes-illu-anim-frame-show 0s forwards,profile-light-color-modes-illu-anim-frame-hide 0s .3s forwards}[data-color-mode=auto][data-light-theme*=light] .profile-color-modes-illu-frame:nth-child(9){animation:profile-light-color-modes-illu-anim-frame-show 0s .3s forwards,profile-light-color-modes-illu-anim-frame-hide 0s .36s forwards}[data-color-mode=auto][data-light-theme*=light] .profile-color-modes-illu-frame:nth-child(10){animation:profile-light-color-modes-illu-anim-frame-show 0s .36s forwards}@keyframes profile-light-color-modes-illu-anim-frame-show{0%{opacity:0;animation-timing-function:ease-out}to{opacity:1}}@keyframes profile-light-color-modes-illu-anim-frame-hide{0%{opacity:1;animation-timing-function:ease-in}to{opacity:0}}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light] .profile-color-modes-illu-frame:nth-child(8){animation:profile-light-color-modes-illu-anim-frame-show 0s forwards,profile-light-color-modes-illu-anim-frame-hide 0s .3s forwards}[data-color-mode=auto][data-dark-theme*=light] .profile-color-modes-illu-frame:nth-child(9){animation:profile-light-color-modes-illu-anim-frame-show 0s .3s forwards,profile-light-color-modes-illu-anim-frame-hide 0s .36s forwards}[data-color-mode=auto][data-dark-theme*=light] .profile-color-modes-illu-frame:nth-child(10){animation:profile-light-color-modes-illu-anim-frame-show 0s .36s forwards}@keyframes profile-light-color-modes-illu-anim-frame-show{0%{opacity:0;animation-timing-function:ease-out}to{opacity:1}}@keyframes profile-light-color-modes-illu-anim-frame-hide{0%{opacity:1;animation-timing-function:ease-in}to{opacity:0}}}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-red{stroke:var(--color-scale-red-5)}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-orange{stroke:var(--color-scale-orange-3)}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-purple{stroke:var(--color-scale-purple-5)}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-green{stroke:var(--color-scale-green-3)}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-blue{stroke:var(--color-scale-blue-4)}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-group{animation:profile-color-modes-illu-anim .2s cubic-bezier(.72,.08,1,.68) backwards}@keyframes profile-color-modes-illu-anim{0%{stroke:var(--color-scale-gray-6)}}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame{animation:profile-color-modes-illu-anim-frame-show 0s forwards,profile-color-modes-illu-anim-frame-hide 0s forwards}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:first-child{opacity:1;animation:profile-color-modes-illu-anim-frame-hide 0s forwards}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(8){animation:profile-color-modes-illu-anim-frame-show 0s forwards}@keyframes profile-color-modes-illu-anim-frame-show{0%{opacity:0;animation-timing-function:ease-out}to{opacity:1}}@keyframes profile-color-modes-illu-anim-frame-hide{0%{opacity:1;animation-timing-function:ease-in}to{opacity:0}}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-red{animation-delay:.4s;animation-duration:.1s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-orange{animation-delay:.5s;animation-duration:.1s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-purple{animation-delay:.6s;animation-duration:.1s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-blue{animation-delay:.7s;animation-duration:.1s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-green{animation-delay:.8s;animation-duration:.2s;animation-timing-function:cubic-bezier(.47,2.92,.84,-1.5)}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:first-child{animation-delay:1.8s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(2){animation-delay:1.8s,2.58s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(3){animation-delay:2.58s,2.66s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(4){animation-delay:2.66s,2.78s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(5){animation-delay:2.78s,2.84s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(6){animation-delay:2.84s,3.44s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(7){animation-delay:3.44s,3.56s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(8){animation-delay:3.56s}[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(9),[data-color-mode=dark][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(10){animation:none}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-red{stroke:var(--color-scale-red-5)}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-orange{stroke:var(--color-scale-orange-3)}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-purple{stroke:var(--color-scale-purple-5)}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-green{stroke:var(--color-scale-green-3)}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-blue{stroke:var(--color-scale-blue-4)}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-group{animation:profile-color-modes-illu-anim .2s cubic-bezier(.72,.08,1,.68) backwards}@keyframes profile-color-modes-illu-anim{0%{stroke:var(--color-scale-gray-6)}}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame{animation:profile-color-modes-illu-anim-frame-show 0s forwards,profile-color-modes-illu-anim-frame-hide 0s forwards}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:first-child{opacity:1;animation:profile-color-modes-illu-anim-frame-hide 0s forwards}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:nth-child(8){animation:profile-color-modes-illu-anim-frame-show 0s forwards}@keyframes profile-color-modes-illu-anim-frame-show{0%{opacity:0;animation-timing-function:ease-out}to{opacity:1}}@keyframes profile-color-modes-illu-anim-frame-hide{0%{opacity:1;animation-timing-function:ease-in}to{opacity:0}}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-red{animation-delay:.4s;animation-duration:.1s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-orange{animation-delay:.5s;animation-duration:.1s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-purple{animation-delay:.6s;animation-duration:.1s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-blue{animation-delay:.7s;animation-duration:.1s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-green{animation-delay:.8s;animation-duration:.2s;animation-timing-function:cubic-bezier(.47,2.92,.84,-1.5)}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:first-child{animation-delay:1.8s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:nth-child(2){animation-delay:1.8s,2.58s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:nth-child(3){animation-delay:2.58s,2.66s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:nth-child(4){animation-delay:2.66s,2.78s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:nth-child(5){animation-delay:2.78s,2.84s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:nth-child(6){animation-delay:2.84s,3.44s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:nth-child(7){animation-delay:3.44s,3.56s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:nth-child(8){animation-delay:3.56s}[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:nth-child(9),[data-color-mode=auto][data-light-theme*=dark] .profile-color-modes-illu-frame:nth-child(10){animation:none}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-red{stroke:var(--color-scale-red-5)}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-orange{stroke:var(--color-scale-orange-3)}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-purple{stroke:var(--color-scale-purple-5)}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-green{stroke:var(--color-scale-green-3)}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-blue{stroke:var(--color-scale-blue-4)}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-group{animation:profile-color-modes-illu-anim .2s cubic-bezier(.72,.08,1,.68) backwards}@keyframes profile-color-modes-illu-anim{0%{stroke:var(--color-scale-gray-6)}}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame{animation:profile-color-modes-illu-anim-frame-show 0s forwards,profile-color-modes-illu-anim-frame-hide 0s forwards}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:first-child{opacity:1;animation:profile-color-modes-illu-anim-frame-hide 0s forwards}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(8){animation:profile-color-modes-illu-anim-frame-show 0s forwards}@keyframes profile-color-modes-illu-anim-frame-show{0%{opacity:0;animation-timing-function:ease-out}to{opacity:1}}@keyframes profile-color-modes-illu-anim-frame-hide{0%{opacity:1;animation-timing-function:ease-in}to{opacity:0}}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-red{animation-delay:.4s;animation-duration:.1s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-orange{animation-delay:.5s;animation-duration:.1s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-purple{animation-delay:.6s;animation-duration:.1s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-blue{animation-delay:.7s;animation-duration:.1s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-green{animation-delay:.8s;animation-duration:.2s;animation-timing-function:cubic-bezier(.47,2.92,.84,-1.5)}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:first-child{animation-delay:1.8s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(2){animation-delay:1.8s,2.58s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(3){animation-delay:2.58s,2.66s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(4){animation-delay:2.66s,2.78s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(5){animation-delay:2.78s,2.84s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(6){animation-delay:2.84s,3.44s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(7){animation-delay:3.44s,3.56s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(8){animation-delay:3.56s}[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(9),[data-color-mode=auto][data-dark-theme*=dark] .profile-color-modes-illu-frame:nth-child(10){animation:none}}.profile-color-modes.isInitialToggle .profile-color-modes-illu-frame,.profile-color-modes.isInitialToggle .profile-color-modes-illu-group{animation-duration:0s;animation-delay:0s}::-webkit-calendar-picker-indicator{filter:invert(50%)}.hx_dropdown-menu-nw.hx_dropdown-menu-nw{left:auto;right:0;top:auto;bottom:100%;margin-bottom:3px}.hx_dropdown-menu-nw.hx_dropdown-menu-nw:before{top:auto;bottom:-8px;left:auto;right:9px;border-top:8px solid var(--color-border-overlay);border-right:8px solid transparent;border-bottom:0;border-left:8px solid transparent}.hx_dropdown-menu-nw.hx_dropdown-menu-nw:after{top:auto;bottom:-7px;left:auto;right:10px;border-top:7px solid var(--color-bg-overlay);border-right:7px solid transparent;border-bottom:0;border-left:7px solid transparent}body:not(.intent-mouse) .hx_focus-input:focus+.hx_focus-target{box-shadow:var(--color-btn-shadow-input-focus)}.is-auto-complete-loading .form-control{padding-right:30px;background-image:url(/images/spinners/octocat-spinner-32.gif);background-size:16px}.hx_breadcrumb-header .header-search-wrapper{height:32px}.hx_breadcrumb-header .feature-preview-indicator,.hx_breadcrumb-header .notification-indicator .mail-status{background-image:none;background-color:var(--color-bg-info-inverse)}.hx_breadcrumb-header .Header-current-page,.hx_breadcrumb-header .Header-link{color:var(--color-header-logo)}.hx_breadcrumb-header-crumbs .Header-link,.hx_breadcrumb-header-logo{transition:opacity .1s ease-out}.hx_breadcrumb-header-crumbs .Header-link:hover,.hx_breadcrumb-header-logo:hover{color:var(--color-header-text);opacity:.75}.Header-button{background-color:var(--color-scale-gray-8);border-radius:6px;border:1px solid var(--color-scale-gray-6);transition:background-color .2s cubic-bezier(.3,0,.5,1)}.Header-button .octicon{color:var(--color-header-logo)}.Header-button:active,.Header-button:focus,.Header-button:hover{background-color:initial}.Header-button:active .octicon,.Header-button:focus .octicon,.Header-button:hover .octicon{color:var(--color-header-text);box-shadow:none}.hx_breadcrumb-header-dropdown:after,.hx_breadcrumb-header-dropdown:before{display:none}.hx_breadcrumb-header-dropdown .dropdown-item{transition:background-color 60ms ease-out;line-height:40px}.hx_breadcrumb-header-dropdown .dropdown-item:hover{color:var(--color-text-primary);background-color:var(--color-bg-tertiary)}.icon-sponsor,.icon-sponsoring{transition:transform .15s cubic-bezier(.2,0,.13,2);transform:scale(1)}.btn:focus .icon-sponsor,.btn:focus .icon-sponsoring,.btn:hover .icon-sponsor,.btn:hover .icon-sponsoring,.Label:focus .icon-sponsor,.Label:focus .icon-sponsoring,.Label:hover .icon-sponsor,.Label:hover .icon-sponsoring{transform:scale(1.1)}.icon-sponsor{overflow:visible!important}.hx_hit-commit em,.hx_hit-highlighting-wrapper em,.hx_hit-issue em,.hx_hit-marketplace em,.hx_hit-package em,.hx_hit-repo em,.hx_hit-user em,.hx_hit-wiki em{font-style:normal;font-weight:600}.SelectMenu-list.select-menu-list{max-height:none}@media (max-width:543px){.SelectMenu-modal{width:unset!important}}.SelectMenu--hasFilter .SelectMenu-list{contain:content}.SelectMenu-item:disabled,.SelectMenu-item[aria-disabled=true]{color:var(--color-auto-gray-4);pointer-events:none}.SelectMenu .SelectMenu-item .is-filtering{color:var(--color-text-secondary)}.SelectMenu .SelectMenu-item .is-filtering b{color:var(--color-text-primary)}.Box--responsive{margin-right:-15px;margin-left:-15px;border-left:0;border-right:0;border-radius:0}.Box--responsive .Box-row--unread{position:relative;box-shadow:none}.Box--responsive .Box-row--unread:before{width:8px;height:8px;color:var(--color-text-white);background-image:linear-gradient(#54a3ff,#006eed);background-clip:padding-box;border-radius:50%;content:"";display:inline-block;top:36px;left:20px;position:absolute}.Box--responsive .Box-header{border-left-width:0;border-right-width:0;border-radius:0}@media (min-width:544px){.Box--responsive{margin-right:0;margin-left:0;border:1px solid var(--color-border-primary);border-radius:6px}.Box--responsive .Box-header{border-left-width:1px;border-right-width:1px;border-top-left-radius:6px;border-top-right-radius:6px}.Box--responsive .Box-row--unread{box-shadow:2px 0 0 var(--color-auto-blue-5) inset}.Box--responsive .Box-row--unread:before{display:none}}@media (max-width:767px){.page-responsive .dropdown-item,.page-responsive .dropdown-menu{padding-top:8px;padding-bottom:8px}.page-responsive .hx_dropdown-fullscreen[open]>summary:before{background-color:var(--color-fade-black-50)}.page-responsive .hx_dropdown-fullscreen .dropdown-menu{position:fixed;top:auto;right:16px!important;bottom:20%;left:16px!important;width:auto!important;max-height:calc(80% - 16px);max-width:none!important;margin:0!important;overflow-y:auto;transform:none;-webkit-overflow-scrolling:touch;animation:dropdown-menu-animation .24s cubic-bezier(0,.1,.1,1) backwards}.page-responsive .hx_dropdown-fullscreen .dropdown-menu:after,.page-responsive .hx_dropdown-fullscreen .dropdown-menu:before{display:none}@keyframes dropdown-menu-animation{0%{opacity:0;transform:scale(.9)}}.page-responsive .hx_dropdown-fullscreen .dropdown-item{padding-top:16px;padding-bottom:16px}}.page-responsive .pagination>*{display:none}.page-responsive .pagination>.next_page,.page-responsive .pagination>.previous_page,.page-responsive .pagination>:first-child,.page-responsive .pagination>:last-child{display:inline-block}@media (min-width:544px){.page-responsive .pagination>.current,.page-responsive .pagination>.gap,.page-responsive .pagination>:nth-child(2),.page-responsive .pagination>:nth-last-child(2){display:inline-block}}@media (min-width:768px){.page-responsive .pagination>*{display:inline-block}}@media (max-width:767px){.page-responsive .Popover{position:fixed;top:auto!important;left:0!important;right:0!important;bottom:0!important}.page-responsive .Popover-message{margin:8px;width:auto!important}.page-responsive .Popover-message>.btn-octicon{padding:12px!important}.page-responsive .Popover-message:after,.page-responsive .Popover-message:before{display:none}}.hx_rsm-close-button{display:none!important}@media (max-width:767px){.page-responsive .hx_rsm[open]>summary:before{background-color:var(--color-fade-black-50)}.page-responsive .hx_rsm-modal,.page-responsive .hx_rsm .select-menu-modal{position:fixed!important;display:flex;flex-direction:column;margin:0;width:auto;height:80%;top:75px;left:16px;right:16px!important}.page-responsive .hx_rsm--auto-height .select-menu-modal{height:auto;max-height:calc(80% - 16px);top:auto;bottom:20%}.page-responsive .hx_rsm .select-menu-header,.page-responsive .hx_rsm .select-menu-text-filter.select-menu-text-filter{padding:16px;border-top-left-radius:inherit;border-top-right-radius:inherit}.page-responsive .hx_rsm-content,.page-responsive .hx_rsm .js-project-menu-container,.page-responsive .hx_rsm tab-container{display:flex;flex-direction:column;flex:auto;min-height:0}.page-responsive .hx_rsm .select-menu-list{flex:auto;max-height:none;-webkit-overflow-scrolling:touch}.page-responsive .hx_rsm-content>.select-menu-item{flex-shrink:0}.page-responsive .hx_rsm .select-menu-item{padding-top:16px;padding-bottom:16px;padding-left:40px}.page-responsive .hx_rsm-close-button,.page-responsive .hx_rsm .close-button{display:block!important;position:relative}.page-responsive .hx_rsm-close-button:before,.page-responsive .hx_rsm .close-button:before{content:"";position:absolute;top:-16px;left:-16px;right:-16px;bottom:-16px}.page-responsive .hx_rsm-close-button .octicon-x,.page-responsive .hx_rsm .close-button .octicon-x{color:var(--color-text-tertiary)}.page-responsive .hx_rsm .select-menu-loading-overlay{animation-delay:1s}.page-responsive .hx_rsm-trigger:before,.page-responsive .hx_rsm .select-menu-button:before{animation:hx_rsm-trigger-animation .24s cubic-bezier(0,0,.2,1) backwards}@keyframes hx_rsm-trigger-animation{0%{opacity:0}}.page-responsive .hx_rsm-modal,.page-responsive .hx_rsm .select-menu-modal{animation:hx_rsm-modal-animation .24s cubic-bezier(0,.1,.1,1) .12s backwards}@keyframes hx_rsm-modal-animation{0%{opacity:0;transform:scale(.9)}}.page-responsive .hx_rsm-dialog{height:auto;max-height:80%;max-width:none;transform:none}.page-responsive .hx_rsm-dialog-content{flex:1;min-height:0}}@media (max-width:767px) and (max-height:500px){.page-responsive .hx_rsm-modal,.page-responsive .hx_rsm .select-menu-modal{height:auto;bottom:16px}}.select-menu-modal{border-color:var(--color-border-overlay);box-shadow:var(--color-shadow-large)}.select-menu-filters,.select-menu-header{background:var(--color-bg-overlay)}.select-menu-text-filter input{padding:5px 12px}.select-menu-item{text-align:left;background-color:var(--color-bg-overlay);border-top:0;border-right:0;border-left:0}.hx_Subhead--responsive{padding-bottom:0;justify-content:flex-end}.hx_Subhead--responsive .Subhead-heading{order:1;margin-bottom:8px}.hx_Subhead--responsive .Subhead-actions{order:2;margin-bottom:8px;margin-left:4px}.hx_Subhead--responsive .Subhead-description{order:3;margin-top:-8px;margin-bottom:16px}.preview-selected .tabnav--responsive{border-bottom:1px solid var(--color-border-primary)}.tabnav--responsive .tabnav-tabs{z-index:1}@media (max-width:767px){.tabnav--responsive .tabnav-tab{background-color:var(--color-bg-secondary);border:1px solid var(--color-border-primary);border-left:0;border-radius:0}.tabnav--responsive .tabnav-tab:first-child{border-left:1px solid var(--color-border-primary)}.tabnav--responsive .tabnav-tab.selected,.tabnav--responsive .tabnav-tab[aria-selected=true]{border-bottom:0;background-color:var(--color-bg-primary)}}@media (max-width:767px){.hx_sm-hide-drag-drop textarea{border-bottom:1px solid var(--color-border-primary);border-bottom-left-radius:6px;border-bottom-right-radius:6px}.hx_sm-hide-drag-drop .hx_drag-and-drop{display:none!important}}@media (hover:none){.tooltipped:hover:after,.tooltipped:hover:before{display:none}}@media (hover:none){.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{visibility:visible!important}}.hx_UnderlineNav .UnderlineNav-item{padding:7px 12px 8px!important;margin:0}.hx_underlinenav-item{display:flex;align-items:center}.hx_underlinenav-item .UnderlineNav-octicon{margin-right:6px}.hx_underlinenav-item [data-content]:before{content:attr(data-content);display:block;font-weight:600;height:0;visibility:hidden}.min-width-lg{min-width:1012px}.min-width-xl{min-width:1280px}.min-height-0{min-height:0!important}.ws-pre-wrap{white-space:pre-wrap}.cursor-pointer{cursor:pointer}.cursor-default{cursor:default}.color-inherit{color:inherit!important}.starring-container.on .starred,.starring-container .unstarred{display:block}.starring-container.on .unstarred,.starring-container .starred{display:none}.starring-container.loading{opacity:.5}.user-following-container .follow,.user-following-container.on .unfollow{display:inline-block}.user-following-container.on .follow,.user-following-container .unfollow{display:none}.user-following-container.loading{opacity:.5}.btn-states .btn-state-alternate,.btn-states:hover .btn-state-default{display:none}.btn-states:hover .btn-state-alternate{display:inline-block}.hidden-when-empty:empty{display:none!important}.cm-atom,.cm-number{color:var(--color-auto-blue-6)}auto-check .is-autocheck-errored,auto-check .is-autocheck-loading,auto-check .is-autocheck-successful{padding-right:30px}auto-check .is-autocheck-loading{background-image:url(/images/spinners/octocat-spinner-16px.gif)}auto-check .is-autocheck-successful{background-image:url(/images/modules/ajax/success.png)}auto-check .is-autocheck-errored{background-image:url(/images/modules/ajax/error.png)}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){auto-check .is-autocheck-errored,auto-check .is-autocheck-loading,auto-check .is-autocheck-successful{background-size:16px 16px}auto-check .is-autocheck-loading{background-image:url(/images/spinners/octocat-spinner-32.gif)}auto-check .is-autocheck-successful{background-image:url(/images/modules/ajax/success@2x.png)}auto-check .is-autocheck-errored{background-image:url(/images/modules/ajax/error@2x.png)}}.hx_Box--overlay--wide.hx_Box--overlay--wide{width:800px}.hx_text-body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji!important}.autocomplete-item{background-color:initial}.ColorSwatch{display:inline-block;width:1em;height:1em;vertical-align:middle;border:1px solid var(--color-fade-black-15);border-radius:6px}.ColorSwatch,.label-select-menu .color{border-radius:2em}.details-overlay[open]>.dropdown-item:hover{color:inherit;background:var(--color-bg-primary)}remote-input[loading] .form-control{padding-right:30px;background-image:url(/images/spinners/octocat-spinner-32.gif);background-size:16px}.hx_form-control-spinner{display:none;position:absolute;top:24px;right:24px}@media (min-width:767px){.hx_form-control-spinner{top:18px;right:18px}}.hx_form-control-spinner-wrapper{position:relative}.hx_form-control-spinner-wrapper .is-loading.form-control{padding-right:28px}.hx_form-control-spinner-wrapper .is-loading+.hx_form-control-spinner{display:block}.radio-label .octicon{color:var(--color-auto-gray-4)}.radio-input:disabled{position:relative}.radio-input:disabled+.radio-label{color:var(--color-text-tertiary);cursor:default;background-color:#eff3f6}.BorderGrid{display:table;border-collapse:collapse;border-style:hidden;table-layout:fixed;width:100%;margin-top:-16px;margin-bottom:-16px}.BorderGrid .BorderGrid-cell{padding-top:16px;padding-bottom:16px}.BorderGrid--spacious{margin-top:-24px;margin-bottom:-24px}.BorderGrid--spacious .BorderGrid-cell{padding-top:24px;padding-bottom:24px}.BorderGrid-row{display:table-row}.BorderGrid-cell{display:table-cell;border:1px solid var(--color-border-secondary)}.Link--muted:hover [class*=color-text],.Link--primary:hover [class*=color-text],.Link--secondary:hover [class*=color-text]{color:inherit!important}.drag-and-drop{border-color:var(--color-border-primary)}.input-sm{min-height:28px}.flash .btn .octicon{color:var(--color-text-tertiary)}.UnderlineNav-item.selected .UnderlineNav-octicon,.UnderlineNav-item[aria-current]:not([aria-current=false]) .UnderlineNav-octicon,.UnderlineNav-item[role=tab][aria-selected=true] .UnderlineNav-octicon{color:inherit}.text-semibold{font-weight:500!important}.text-light{font-weight:300!important}.break-line-anywhere{line-break:anywhere!important}.form-checkbox input[type=checkbox],.form-checkbox input[type=radio]{margin-top:4px}.suggester li:focus .octicon,.suggester li:hover .octicon,.suggester li[aria-selected=true] .octicon{color:inherit}.status-indicator-failed:before,.status-indicator-success:before{content:none}.hx_status-indicator .status-indicator-spinner{display:none}.hx_status-indicator.status-indicator-loading{background-image:none}.hx_status-indicator.status-indicator-loading .status-indicator-spinner{display:inline-block}.markdown-title code{padding:2px 4px;background-color:var(--color-markdown-code-bg);font-size:.9em;line-height:1;border-radius:6px}.Label--outline.color-bg-warning{color:var(--color-auto-yellow-9);border-color:var(--color-auto-yellow-6)}.label.color-bg-info-inverse{color:var(--color-text-link);border-color:var(--color-border-info)}.select-menu-item:hover .Label{color:inherit;border-color:currentColor}.IssueLabel--big.lh-condensed{display:inline-block;padding:0 10px;font-size:12px;font-weight:500;line-height:22px!important;border:1px solid transparent;border-radius:2em}.hx_IssueLabel{--perceived-lightness:calc((var(--label-r)*0.2126 + var(--label-g)*0.7152 + var(--label-b)*0.0722)/255);--lightness-switch:max(0,min(calc((var(--perceived-lightness) - var(--lightness-threshold))*-1000),1))}[data-color-mode=light][data-light-theme*=light] .hx_IssueLabel{--lightness-threshold:0.453;--border-threshold:0.96;--border-alpha:max(0,min(calc((var(--perceived-lightness) - var(--border-threshold))*100),1));background:rgb(var(--label-r),var(--label-g),var(--label-b));color:hsl(0,0%,calc(var(--lightness-switch)*100%));border-color:hsla(var(--label-h),calc(var(--label-s)*1%),calc((var(--label-l) - 25)*1%),var(--border-alpha))}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light] .hx_IssueLabel{--lightness-threshold:0.453;--border-threshold:0.96;--border-alpha:max(0,min(calc((var(--perceived-lightness) - var(--border-threshold))*100),1));background:rgb(var(--label-r),var(--label-g),var(--label-b));color:hsl(0,0%,calc(var(--lightness-switch)*100%));border-color:hsla(var(--label-h),calc(var(--label-s)*1%),calc((var(--label-l) - 25)*1%),var(--border-alpha))}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light] .hx_IssueLabel{--lightness-threshold:0.453;--border-threshold:0.96;--border-alpha:max(0,min(calc((var(--perceived-lightness) - var(--border-threshold))*100),1));background:rgb(var(--label-r),var(--label-g),var(--label-b));color:hsl(0,0%,calc(var(--lightness-switch)*100%));border-color:hsla(var(--label-h),calc(var(--label-s)*1%),calc((var(--label-l) - 25)*1%),var(--border-alpha))}}[data-color-mode=dark][data-dark-theme*=dark] .hx_IssueLabel{--lightness-threshold:0.6;--background-alpha:0.18;--border-alpha:0.3;--lighten-by:calc((var(--lightness-threshold) - var(--perceived-lightness))*100*var(--lightness-switch));background:rgba(var(--label-r),var(--label-g),var(--label-b),var(--background-alpha));color:hsl(var(--label-h),calc(var(--label-s)*1%),calc((var(--label-l) + var(--lighten-by))*1%));border-color:hsla(var(--label-h),calc(var(--label-s)*1%),calc((var(--label-l) + var(--lighten-by))*1%),var(--border-alpha))}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark] .hx_IssueLabel{--lightness-threshold:0.6;--background-alpha:0.18;--border-alpha:0.3;--lighten-by:calc((var(--lightness-threshold) - var(--perceived-lightness))*100*var(--lightness-switch));background:rgba(var(--label-r),var(--label-g),var(--label-b),var(--background-alpha));color:hsl(var(--label-h),calc(var(--label-s)*1%),calc((var(--label-l) + var(--lighten-by))*1%));border-color:hsla(var(--label-h),calc(var(--label-s)*1%),calc((var(--label-l) + var(--lighten-by))*1%),var(--border-alpha))}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark] .hx_IssueLabel{--lightness-threshold:0.6;--background-alpha:0.18;--border-alpha:0.3;--lighten-by:calc((var(--lightness-threshold) - var(--perceived-lightness))*100*var(--lightness-switch));background:rgba(var(--label-r),var(--label-g),var(--label-b),var(--background-alpha));color:hsl(var(--label-h),calc(var(--label-s)*1%),calc((var(--label-l) + var(--lighten-by))*1%));border-color:hsla(var(--label-h),calc(var(--label-s)*1%),calc((var(--label-l) + var(--lighten-by))*1%),var(--border-alpha))}}.signed-commit-badge-large,.signed-commit-badge-medium,.signed-commit-badge-small{display:inline-block;padding:0 7px;font-size:12px;font-weight:500;line-height:18px;border-radius:2em;border:1px solid transparent;border-color:var(--color-border-primary)}.signed-commit-badge-small{margin-top:0}.signed-commit-badge-large{padding-right:10px;padding-left:10px;line-height:22px}.timeline-comment-label{display:inline-block;padding:0 7px;font-size:12px;font-weight:500;line-height:18px;border-radius:2em;border:1px solid transparent;border-color:var(--color-border-primary)}.timeline-comment-label.text-bold{font-weight:500!important}.delete-topic-button,.topic-tag,.topic-tag-action{display:inline-block;font-size:12px;font-weight:500;line-height:18px;border:1px solid transparent;border-radius:2em;padding:0 10px;line-height:22px;color:var(--color-topic-tag-text);background-color:var(--color-topic-tag-bg)}.delete-topic-button:hover,.topic-tag-action:hover,.topic-tag:hover{background-color:var(--color-topic-tag-hover-bg)}.delete-topic-button:active,.topic-tag-action:active,.topic-tag:active{background-color:var(--color-topic-tag-active-bg)}.topic-tag{margin:0 .125em .333em 0}.topic-tag-action{display:inline-flex;padding-right:0;margin:.6em .5em 0 0}.delete-topic-button,.topic-tag-action .add-topic-button,.topic-tag-action .remove-topic-button{width:24px;padding:0;height:24px;color:var(--color-text-link);border-left:0;border-radius:2em;display:flex;align-items:center;justify-content:center}.rounded-1{border-radius:6px!important}.rounded-top-1{border-top-left-radius:6px!important}.rounded-right-1,.rounded-top-1{border-top-right-radius:6px!important}.rounded-bottom-1,.rounded-right-1{border-bottom-right-radius:6px!important}.rounded-bottom-1,.rounded-left-1{border-bottom-left-radius:6px!important}.rounded-left-1{border-top-left-radius:6px!important}.branch-action-item.color-border-tertiary{border-color:var(--color-border-primary)!important}.user-profile-nav .UnderlineNav-item{margin-right:0!important;line-height:30px;white-space:nowrap}.user-status-container .input-group-button .btn{height:32px}.tree-finder-input{min-height:32px}.IssueLabel.sidebar-labels-style{display:inline-block!important;width:-webkit-min-content!important;width:-moz-min-content!important;width:min-content!important;margin:2px 2px 2px 0}.notification-list-item-actions .btn{box-shadow:none}.pagehead-tabs-item,.reponav-item{border-radius:4px 4px 0 0}.pagehead-tabs-item.selected,.reponav-item.selected{border-top-color:#f9826c}.reponav-item .hx_reponav_item_counter{min-width:0;line-height:1.25}.auto-search-group>.octicon{top:8px}.subnav-search>button.mt-2{margin-top:6px!important}.completeness-indicator-success{background-color:var(--color-btn-primary-bg);color:var(--color-text-white)}.pagination-loader-container button.color-bg-primary.border-0{border-top-left-radius:6px;border-top-right-radius:6px}.avatar-user{border-radius:50%!important}image-crop .handle:before{border-radius:50%}image-crop.image-crop-user .crop-outline{outline:none}image-crop.image-crop-user .crop-box{border-radius:50%;box-shadow:0 0 0 500px rgba(0,0,0,.3)}.user-profile-mini-vcard,.user-profile-sticky-bar:after{height:48px}.hx_remove-comment-thread-vertical-line:after{display:none!important}@media (max-width:543px){.minimized-comment.hx_make-comment-take-up-space-on-sm-screens>details>div{padding-left:0!important}}@media (max-width:543px){.minimized-comment.hx_center-show-toggle-button-on-sm-screens>details>summary>div{flex-direction:column}.minimized-comment.hx_center-show-toggle-button-on-sm-screens>details>summary>div .review-comment-contents{align-left:flex-start}}.hx_add-margin-to-comment-textfield .write-content{margin:8px!important}@media (max-width:543px){.hx_make-reply-from-action-buttons-small .form-actions button{padding:3px 8px;font-size:12px;line-height:20px}.hx_make-reply-from-action-buttons-small .form-actions button .octicon{vertical-align:text-top}}@media (max-width:543px){.hx_remove-tab-side-borders-at-small-sizes .tabnav-tab:first-of-type{border-left:0}.hx_remove-tab-side-borders-at-small-sizes .tabnav-tab:last-of-type{border-right:0}}.hx_remove-border-bottom-on-last-post .review-comment:last-of-type{border-bottom:0!important}.hx_details-with-rotating-caret[open]>.btn-link .hx_dropdown-caret-rotatable{border-width:0 4px 4px;border-top-color:transparent;border-bottom-color:var(--color-bg-info-inverse)}
+/*# sourceMappingURL=behaviors-2b19d1c654dee11a4cf9c92988147e5e.css.map */
\ No newline at end of file
diff --git a/assets/css/github-frameworks.css b/assets/css/github-frameworks.css
new file mode 100644
index 0000000..6569104
--- /dev/null
+++ b/assets/css/github-frameworks.css
@@ -0,0 +1,14 @@
+/*!
+ * @primer/css/core
+ * http://primer.style/css
+ *
+ * Released under MIT license. Copyright (c) 2019 GitHub Inc.
+ */.octicon{display:inline-block;vertical-align:text-top;fill:currentColor}
+
+/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}summary{display:list-item}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:initial}[hidden],template{display:none!important}a{background-color:initial}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background-color:#ff0;color:var(--color-text-primary)}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:initial;height:0;overflow:visible}button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:600}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}:root,[data-color-mode=light][data-light-theme=light]{--color-scale-black:#1b1f23;--color-scale-white:#fff;--color-scale-gray-0:#fafbfc;--color-scale-gray-1:#f6f8fa;--color-scale-gray-2:#e1e4e8;--color-scale-gray-3:#d1d5da;--color-scale-gray-4:#959da5;--color-scale-gray-5:#6a737d;--color-scale-gray-6:#586069;--color-scale-gray-7:#444d56;--color-scale-gray-8:#2f363d;--color-scale-gray-9:#24292e;--color-scale-blue-0:#f1f8ff;--color-scale-blue-1:#dbedff;--color-scale-blue-2:#c8e1ff;--color-scale-blue-3:#79b8ff;--color-scale-blue-4:#2188ff;--color-scale-blue-5:#0366d6;--color-scale-blue-6:#005cc5;--color-scale-blue-7:#044289;--color-scale-blue-8:#032f62;--color-scale-blue-9:#05264c;--color-scale-green-0:#f0fff4;--color-scale-green-1:#dcffe4;--color-scale-green-2:#bef5cb;--color-scale-green-3:#85e89d;--color-scale-green-4:#34d058;--color-scale-green-5:#28a745;--color-scale-green-6:#22863a;--color-scale-green-7:#176f2c;--color-scale-green-8:#165c26;--color-scale-green-9:#144620;--color-scale-yellow-0:#fffdef;--color-scale-yellow-1:#fffbdd;--color-scale-yellow-2:#fff5b1;--color-scale-yellow-3:#ffea7f;--color-scale-yellow-4:#ffdf5d;--color-scale-yellow-5:#ffd33d;--color-scale-yellow-6:#f9c513;--color-scale-yellow-7:#dbab09;--color-scale-yellow-8:#b08800;--color-scale-yellow-9:#735c0f;--color-scale-orange-0:#fff8f2;--color-scale-orange-1:#ffebda;--color-scale-orange-2:#ffd1ac;--color-scale-orange-3:#ffab70;--color-scale-orange-4:#fb8532;--color-scale-orange-5:#f66a0a;--color-scale-orange-6:#e36209;--color-scale-orange-7:#d15704;--color-scale-orange-8:#c24e00;--color-scale-orange-9:#a04100;--color-scale-red-0:#ffeef0;--color-scale-red-1:#ffdce0;--color-scale-red-2:#fdaeb7;--color-scale-red-3:#f97583;--color-scale-red-4:#ea4a5a;--color-scale-red-5:#d73a49;--color-scale-red-6:#cb2431;--color-scale-red-7:#b31d28;--color-scale-red-8:#9e1c23;--color-scale-red-9:#86181d;--color-scale-purple-0:#f5f0ff;--color-scale-purple-1:#e6dcfd;--color-scale-purple-2:#d1bcf9;--color-scale-purple-3:#b392f0;--color-scale-purple-4:#8a63d2;--color-scale-purple-5:#6f42c1;--color-scale-purple-6:#5a32a3;--color-scale-purple-7:#4c2889;--color-scale-purple-8:#3a1d6e;--color-scale-purple-9:#29134e;--color-scale-pink-0:#ffeef8;--color-scale-pink-1:#fedbf0;--color-scale-pink-2:#f9b3dd;--color-scale-pink-3:#f692ce;--color-scale-pink-4:#ec6cb9;--color-scale-pink-5:#ea4aaa;--color-scale-pink-6:#d03592;--color-scale-pink-7:#b93a86;--color-scale-pink-8:#99306f;--color-scale-pink-9:#6d224f;--color-auto-black:#1b1f23;--color-auto-white:#fff;--color-auto-gray-0:#fafbfc;--color-auto-gray-1:#f6f8fa;--color-auto-gray-2:#e1e4e8;--color-auto-gray-3:#d1d5da;--color-auto-gray-4:#959da5;--color-auto-gray-5:#6a737d;--color-auto-gray-6:#586069;--color-auto-gray-7:#444d56;--color-auto-gray-8:#2f363d;--color-auto-gray-9:#24292e;--color-auto-blue-0:#f1f8ff;--color-auto-blue-1:#dbedff;--color-auto-blue-2:#c8e1ff;--color-auto-blue-3:#79b8ff;--color-auto-blue-4:#2188ff;--color-auto-blue-5:#0366d6;--color-auto-blue-6:#005cc5;--color-auto-blue-7:#044289;--color-auto-blue-8:#032f62;--color-auto-blue-9:#05264c;--color-auto-green-0:#f0fff4;--color-auto-green-1:#dcffe4;--color-auto-green-2:#bef5cb;--color-auto-green-3:#85e89d;--color-auto-green-4:#34d058;--color-auto-green-5:#28a745;--color-auto-green-6:#22863a;--color-auto-green-7:#176f2c;--color-auto-green-8:#165c26;--color-auto-green-9:#144620;--color-auto-yellow-0:#fffdef;--color-auto-yellow-1:#fffbdd;--color-auto-yellow-2:#fff5b1;--color-auto-yellow-3:#ffea7f;--color-auto-yellow-4:#ffdf5d;--color-auto-yellow-5:#ffd33d;--color-auto-yellow-6:#f9c513;--color-auto-yellow-7:#dbab09;--color-auto-yellow-8:#b08800;--color-auto-yellow-9:#735c0f;--color-auto-orange-0:#fff8f2;--color-auto-orange-1:#ffebda;--color-auto-orange-2:#ffd1ac;--color-auto-orange-3:#ffab70;--color-auto-orange-4:#fb8532;--color-auto-orange-5:#f66a0a;--color-auto-orange-6:#e36209;--color-auto-orange-7:#d15704;--color-auto-orange-8:#c24e00;--color-auto-orange-9:#a04100;--color-auto-red-0:#ffeef0;--color-auto-red-1:#ffdce0;--color-auto-red-2:#fdaeb7;--color-auto-red-3:#f97583;--color-auto-red-4:#ea4a5a;--color-auto-red-5:#d73a49;--color-auto-red-6:#cb2431;--color-auto-red-7:#b31d28;--color-auto-red-8:#9e1c23;--color-auto-red-9:#86181d;--color-auto-purple-0:#f5f0ff;--color-auto-purple-1:#e6dcfd;--color-auto-purple-2:#d1bcf9;--color-auto-purple-3:#b392f0;--color-auto-purple-4:#8a63d2;--color-auto-purple-5:#6f42c1;--color-auto-purple-6:#5a32a3;--color-auto-purple-7:#4c2889;--color-auto-purple-8:#3a1d6e;--color-auto-purple-9:#29134e;--color-auto-pink-0:#ffeef8;--color-auto-pink-1:#fedbf0;--color-auto-pink-2:#f9b3dd;--color-auto-pink-3:#f692ce;--color-auto-pink-4:#ec6cb9;--color-auto-pink-5:#ea4aaa;--color-auto-pink-6:#d03592;--color-auto-pink-7:#b93a86;--color-auto-pink-8:#99306f;--color-auto-pink-9:#6d224f;--color-text-primary:#24292e;--color-text-secondary:#586069;--color-text-tertiary:#6a737d;--color-text-placeholder:#6a737d;--color-text-disabled:#959da5;--color-text-inverse:#fff;--color-text-link:#0366d6;--color-text-danger:#cb2431;--color-text-success:#22863a;--color-text-warning:#b08800;--color-text-white:#fff;--color-icon-primary:#24292e;--color-icon-secondary:#586069;--color-icon-tertiary:#959da5;--color-icon-info:#0366d6;--color-icon-danger:#d73a49;--color-icon-success:#22863a;--color-icon-warning:#b08800;--color-border-primary:#e1e4e8;--color-border-secondary:#eaecef;--color-border-tertiary:#d1d5da;--color-border-overlay:#e1e4e8;--color-border-inverse:#fff;--color-border-info:#0366d6;--color-border-danger:#d73a49;--color-border-success:#34d058;--color-border-warning:#f9c513;--color-bg-canvas:#fff;--color-bg-canvas-mobile:#fff;--color-bg-canvas-inverse:#24292e;--color-bg-canvas-inset:#f6f8fa;--color-bg-primary:#fff;--color-bg-secondary:#fafbfc;--color-bg-tertiary:#f6f8fa;--color-bg-overlay:#fff;--color-bg-backdrop:rgba(27,31,35,0.5);--color-bg-info:#f1f8ff;--color-bg-info-inverse:#0366d6;--color-bg-danger:#ffeef0;--color-bg-danger-inverse:#d73a49;--color-bg-success:#dcffe4;--color-bg-success-inverse:#28a745;--color-bg-warning:#fff5b1;--color-bg-warning-inverse:#ffd33d;--color-shadow-small:0 1px 0 rgba(27,31,35,0.04);--color-shadow-medium:0 3px 6px rgba(149,157,165,0.15);--color-shadow-large:0 8px 24px rgba(149,157,165,0.2);--color-shadow-extra-large:0 12px 48px rgba(149,157,165,0.3);--color-shadow-highlight:inset 0 1px 0 hsla(0,0%,100%,0.25);--color-shadow-inset:inset 0 1px 0 rgba(225,228,232,0.2);--color-state-hover-primary-bg:#0366d6;--color-state-hover-primary-border:#0366d6;--color-state-hover-primary-text:#fff;--color-state-hover-primary-icon:#fff;--color-state-hover-secondary-bg:#f6f8fa;--color-state-hover-secondary-border:#f6f8fa;--color-state-selected-primary-bg:#0366d6;--color-state-selected-primary-border:#0366d6;--color-state-selected-primary-text:#fff;--color-state-selected-primary-icon:#fff;--color-state-focus-border:#0366d6;--color-state-focus-shadow:0 0 0 3px rgba(3,102,214,0.3);--color-fade-fg-10:rgba(27,31,35,0.1);--color-fade-fg-15:rgba(27,31,35,0.15);--color-fade-fg-30:rgba(27,31,35,0.3);--color-fade-fg-50:rgba(27,31,35,0.5);--color-fade-fg-70:rgba(27,31,35,0.7);--color-fade-fg-85:rgba(27,31,35,0.85);--color-fade-black-10:rgba(27,31,35,0.1);--color-fade-black-15:rgba(27,31,35,0.15);--color-fade-black-30:rgba(27,31,35,0.3);--color-fade-black-50:rgba(27,31,35,0.5);--color-fade-black-70:rgba(27,31,35,0.7);--color-fade-black-85:rgba(27,31,35,0.85);--color-fade-white-10:hsla(0,0%,100%,0.1);--color-fade-white-15:hsla(0,0%,100%,0.15);--color-fade-white-30:hsla(0,0%,100%,0.3);--color-fade-white-50:hsla(0,0%,100%,0.5);--color-fade-white-70:hsla(0,0%,100%,0.7);--color-fade-white-85:hsla(0,0%,100%,0.85);--color-alert-info-text:#24292e;--color-alert-info-icon:rgba(4,66,137,0.6);--color-alert-info-bg:#dbedff;--color-alert-info-border:rgba(4,66,137,0.2);--color-alert-warn-text:#24292e;--color-alert-warn-icon:#b08800;--color-alert-warn-bg:#fffbdd;--color-alert-warn-border:rgba(176,136,0,0.2);--color-alert-error-text:#24292e;--color-alert-error-icon:rgba(158,28,35,0.6);--color-alert-error-bg:#ffe3e6;--color-alert-error-border:rgba(158,28,35,0.2);--color-alert-success-text:#24292e;--color-alert-success-icon:rgba(23,111,44,0.8);--color-alert-success-bg:#dcffe4;--color-alert-success-border:rgba(23,111,44,0.2);--color-autocomplete-shadow:0 3px 6px rgba(149,157,165,0.15);--color-autocomplete-row-border:#eaecef;--color-blankslate-icon:#a3aab1;--color-btn-text:#24292e;--color-btn-bg:#fafbfc;--color-btn-border:rgba(27,31,35,0.15);--color-btn-shadow:0 1px 0 rgba(27,31,35,0.04);--color-btn-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.25);--color-btn-hover-bg:#f3f4f6;--color-btn-hover-border:rgba(27,31,35,0.15);--color-btn-selected-bg:#edeff2;--color-btn-focus-bg:#fafbfc;--color-btn-focus-border:rgba(27,31,35,0.15);--color-btn-focus-shadow:0 0 0 3px rgba(3,102,214,0.3);--color-btn-shadow-active:inset 0 0.15em 0.3em rgba(27,31,35,0.15);--color-btn-shadow-input-focus:0 0 0 0.2em rgba(3,102,214,0.3);--color-btn-primary-text:#fff;--color-btn-primary-bg:#2ea44f;--color-btn-primary-border:rgba(27,31,35,0.15);--color-btn-primary-shadow:0 1px 0 rgba(27,31,35,0.1);--color-btn-primary-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.03);--color-btn-primary-hover-bg:#2c974b;--color-btn-primary-hover-border:rgba(27,31,35,0.15);--color-btn-primary-selected-bg:#2a8f47;--color-btn-primary-selected-shadow:inset 0 1px 0 rgba(20,70,32,0.2);--color-btn-primary-disabled-text:hsla(0,0%,100%,0.8);--color-btn-primary-disabled-bg:#94d3a2;--color-btn-primary-disabled-border:rgba(27,31,35,0.1);--color-btn-primary-focus-bg:#2ea44f;--color-btn-primary-focus-border:rgba(27,31,35,0.15);--color-btn-primary-focus-shadow:0 0 0 3px rgba(46,164,79,0.4);--color-btn-primary-icon:hsla(0,0%,100%,0.8);--color-btn-primary-counter-bg:hsla(0,0%,100%,0.2);--color-btn-outline-text:#0366d6;--color-btn-outline-hover-text:#fff;--color-btn-outline-hover-bg:#0366d6;--color-btn-outline-hover-border:rgba(27,31,35,0.15);--color-btn-outline-hover-shadow:0 1px 0 rgba(27,31,35,0.1);--color-btn-outline-hover-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.03);--color-btn-outline-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-outline-selected-text:#fff;--color-btn-outline-selected-bg:#035fc7;--color-btn-outline-selected-border:rgba(27,31,35,0.15);--color-btn-outline-selected-shadow:inset 0 1px 0 rgba(5,38,76,0.2);--color-btn-outline-disabled-text:rgba(3,102,214,0.5);--color-btn-outline-disabled-bg:#fafbfc;--color-btn-outline-disabled-counter-bg:rgba(3,102,214,0.05);--color-btn-outline-focus-border:rgba(27,31,35,0.15);--color-btn-outline-focus-shadow:0 0 0 3px rgba(0,92,197,0.4);--color-btn-outline-counter-bg:rgba(3,102,214,0.1);--color-btn-danger-text:#d73a49;--color-btn-danger-hover-text:#fff;--color-btn-danger-hover-bg:#cb2431;--color-btn-danger-hover-border:rgba(27,31,35,0.15);--color-btn-danger-hover-shadow:0 1px 0 rgba(27,31,35,0.1);--color-btn-danger-hover-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.03);--color-btn-danger-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-danger-selected-text:#fff;--color-btn-danger-selected-bg:#d42d3d;--color-btn-danger-selected-border:rgba(27,31,35,0.15);--color-btn-danger-selected-shadow:inset 0 1px 0 rgba(134,24,29,0.2);--color-btn-danger-disabled-text:rgba(215,58,73,0.5);--color-btn-danger-disabled-bg:#fafbfc;--color-btn-danger-disabled-counter-bg:rgba(215,58,73,0.05);--color-btn-danger-focus-border:rgba(27,31,35,0.15);--color-btn-danger-focus-shadow:0 0 0 3px rgba(203,36,49,0.4);--color-btn-danger-counter-bg:rgba(215,58,73,0.1);--color-btn-danger-icon:#d73a49;--color-btn-danger-hover-icon:#fff;--color-btn-counter-bg:rgba(27,31,35,0.08);--color-counter-text:#24292e;--color-counter-bg:rgba(209,213,218,0.5);--color-counter-primary-text:#fff;--color-counter-primary-bg:#6a737d;--color-counter-secondary-text:#6a737d;--color-dropdown-shadow:0 8px 24px rgba(149,157,165,0.2);--color-label-border:#e1e4e8;--color-label-primary-text:#24292e;--color-label-primary-border:#6a737d;--color-label-secondary-text:#586069;--color-label-secondary-border:#e1e4e8;--color-label-info-text:#0366d6;--color-label-info-border:#0366d6;--color-label-success-text:#22863a;--color-label-success-border:#28a745;--color-label-warning-text:#735c0f;--color-label-warning-border:#b08800;--color-label-danger-text:#d73a49;--color-label-danger-border:#cb2431;--color-label-orange-text:#c24e00;--color-label-orange-border:#f66a0a;--color-input-bg:#fff;--color-input-contrast-bg:#fafbfc;--color-input-border:#e1e4e8;--color-input-shadow:inset 0 1px 2px rgba(27,31,35,0.075);--color-input-disabled-bg:#fff;--color-input-disabled-border:#e1e4e8;--color-input-warning-border:#f9c513;--color-input-error-border:#cb2431;--color-input-tooltip-success-text:#144620;--color-input-tooltip-success-bg:#dcffe4;--color-input-tooltip-success-border:#34d058;--color-input-tooltip-warning-text:#735c0f;--color-input-tooltip-warning-bg:#fff5b1;--color-input-tooltip-warning-border:#f9c513;--color-input-tooltip-error-text:#86181d;--color-input-tooltip-error-bg:#ffeef0;--color-input-tooltip-error-border:#f97583;--color-avatar-bg:#fff;--color-avatar-border:transparent;--color-avatar-stack-fade:#d1d5da;--color-avatar-stack-fade-more:#e1e4e8;--color-avatar-child-shadow:-2px -2px 0 hsla(0,0%,100%,0.8);--color-toast-text:#24292e;--color-toast-bg:#fff;--color-toast-border:#e1e4e8;--color-toast-shadow:0 8px 24px rgba(149,157,165,0.2);--color-toast-icon:#fff;--color-toast-icon-bg:#0366d6;--color-toast-icon-border:transparent;--color-toast-success-text:#24292e;--color-toast-success-border:#e1e4e8;--color-toast-success-icon:#fff;--color-toast-success-icon-bg:#28a745;--color-toast-success-icon-border:transparent;--color-toast-warning-text:#24292e;--color-toast-warning-border:#e1e4e8;--color-toast-warning-icon:#24292e;--color-toast-warning-icon-bg:#ffd33d;--color-toast-warning-icon-border:transparent;--color-toast-danger-text:#24292e;--color-toast-danger-border:#e1e4e8;--color-toast-danger-icon:#fff;--color-toast-danger-icon-bg:#d73a49;--color-toast-danger-icon-border:transparent;--color-toast-loading-text:#24292e;--color-toast-loading-border:#e1e4e8;--color-toast-loading-icon:#fff;--color-toast-loading-icon-bg:#586069;--color-toast-loading-icon-border:transparent;--color-timeline-text:#444d56;--color-timeline-badge-bg:#e1e4e8;--color-timeline-target-badge-border:#2188ff;--color-timeline-target-badge-shadow:#c8e1ff;--color-select-menu-border-secondary:#eaecef;--color-select-menu-shadow:0 0 18px rgba(27,31,35,0.4);--color-select-menu-backdrop-bg:rgba(27,31,35,0.5);--color-select-menu-backdrop-border:transparent;--color-select-menu-tap-highlight:rgba(209,213,218,0.5);--color-select-menu-tap-focus-bg:#dbedff;--color-box-blue-border:#c8e1ff;--color-box-row-yellow-bg:#fffbdd;--color-box-row-blue-bg:#f1f8ff;--color-box-header-blue-bg:#f1f8ff;--color-box-header-blue-border:#c8e1ff;--color-box-border-info:rgba(3,102,214,0.2);--color-box-bg-info:#f1f8ff;--color-box-border-warning:rgba(255,211,61,0.4);--color-box-bg-warning:#fffdef;--color-branch-name-text:#586069;--color-branch-name-icon:#a8bbd0;--color-branch-name-bg:#eaf5ff;--color-branch-name-link-text:#0366d6;--color-branch-name-link-icon:#a8bbd0;--color-branch-name-link-bg:#eaf5ff;--color-markdown-code-bg:rgba(27,31,35,0.05);--color-markdown-frame-border:#dfe2e5;--color-markdown-blockquote-border:#dfe2e5;--color-markdown-table-border:#dfe2e5;--color-markdown-table-tr-border:#c6cbd1;--color-menu-heading-text:#24292e;--color-menu-border-active:#f9826c;--color-menu-bg-active:transparent;--color-sidenav-selected-bg:#fff;--color-sidenav-border-active:#f9826c;--color-header-text:hsla(0,0%,100%,0.7);--color-header-bg:#24292e;--color-header-logo:#fff;--color-filter-item-bar-bg:#eff3f6;--color-hidden-text-expander-bg:#dfe2e5;--color-hidden-text-expander-bg-hover:#c6cbd1;--color-drag-and-drop-border:#c3c8cf;--color-upload-enabled-border:#dfe2e5;--color-upload-enabled-border-focused:#4a9eff;--color-previewable-comment-form-border:#c3c8cf;--color-underlinenav-border:rgba(209,213,218,0);--color-underlinenav-border-hover:#d1d5da;--color-underlinenav-border-active:#f9826c;--color-underlinenav-text:#24292e;--color-underlinenav-text-hover:#24292e;--color-underlinenav-text-active:#24292e;--color-underlinenav-icon:#959da5;--color-underlinenav-icon-hover:#959da5;--color-underlinenav-icon-active:#24292e;--color-underlinenav-counter-text:#24292e;--color-verified-badge-text:#22863a;--color-verified-badge-bg:#fff;--color-verified-badge-border:#e1e4e8;--color-social-count-bg:#fff;--color-tooltip-text:#fff;--color-tooltip-bg:#24292e;--color-header-search-bg:#24292e;--color-header-search-border:#444d56;--color-search-keyword-hl:#fffbdd;--color-diffstat-neutral-bg:#d1d5da;--color-diffstat-neutral-border:#d1d5da;--color-diffstat-deletion-bg:#d73a49;--color-diffstat-deletion-border:#d73a49;--color-diffstat-addition-bg:#28a745;--color-diffstat-addition-border:#28a745;--color-mktg-success:#2ebc4f;--color-mktg-info:#1074e7;--color-mktg-bg-shade-gradient-top:rgba(27,31,35,0.065);--color-mktg-bg-shade-gradient-bottom:rgba(27,31,35,0);--color-mktg-btn-bg:#3076df;--color-mktg-btn-border:#3076df;--color-mktg-btn-text:#fff;--color-mktg-btn-icon:#fff;--color-mktg-btn-focus-shadow:0 0 0 3px rgba(48,118,223,0.3);--color-mktg-btn-hover-bg:#0366d6;--color-mktg-btn-hover-border:#0366d6;--color-mktg-btn-disabled-bg:rgba(48,118,223,0.5);--color-mktg-btn-disabled-border:transparent;--color-mktg-btn-disabled-text:#fff;--color-mktg-btn-disabled-icon:#fff;--color-mktg-btn-primary-bg:#5eb85c;--color-mktg-btn-primary-border:#5eb85c;--color-mktg-btn-primary-text:#fff;--color-mktg-btn-primary-icon:#fff;--color-mktg-btn-primary-focus-shadow:0 0 0 3px rgba(94,184,92,0.3);--color-mktg-btn-primary-hover-bg:#28a745;--color-mktg-btn-primary-hover-border:#28a745;--color-mktg-btn-primary-disabled-bg:rgba(94,184,92,0.5);--color-mktg-btn-primary-disabled-border:transparent;--color-mktg-btn-primary-disabled-text:#fff;--color-mktg-btn-primary-disabled-icon:#fff;--color-mktg-btn-outline-bg:transparent;--color-mktg-btn-outline-border:rgba(42,103,195,0.5);--color-mktg-btn-outline-text:#3076df;--color-mktg-btn-outline-icon:#3076df;--color-mktg-btn-outline-focus-shadow:0 0 0 3px rgba(42,103,195,0.3);--color-mktg-btn-outline-hover-bg:transparent;--color-mktg-btn-outline-hover-border:#0366d6;--color-mktg-btn-outline-hover-text:#0366d6;--color-mktg-btn-outline-hover-icon:#0366d6;--color-mktg-btn-outline-disabled-bg:transparent;--color-mktg-btn-outline-disabled-border:rgba(42,103,195,0.2);--color-mktg-btn-outline-disabled-text:rgba(48,118,223,0.5);--color-mktg-btn-outline-disabled-icon:rgba(48,118,223,0.5);--color-mktg-btn-dark-bg:transparent;--color-mktg-btn-dark-border:hsla(0,0%,100%,0.5);--color-mktg-btn-dark-text:#fff;--color-mktg-btn-dark-icon:#fff;--color-mktg-btn-dark-focus-shadow:0 0 0 3px hsla(0,0%,100%,0.3);--color-mktg-btn-dark-hover-bg:#fff;--color-mktg-btn-dark-hover-border:#fff;--color-mktg-btn-dark-hover-text:#444d56;--color-mktg-btn-dark-hover-icon:#444d56;--color-mktg-btn-dark-disabled-bg:transparent;--color-mktg-btn-dark-disabled-border:hsla(0,0%,100%,0.2);--color-mktg-btn-dark-disabled-text:hsla(0,0%,100%,0.5);--color-mktg-btn-dark-disabled-icon:hsla(0,0%,100%,0.5);--color-files-explorer-icon:#79b8ff;--color-hl-author-bg:#f1f8ff;--color-hl-author-border:#c8e1ff;--color-logo-subdued:#d1d5da;--color-discussion-border:#a2cbac;--color-discussion-bg-success:#28a745;--color-actions-workflow-table-sticky-bg:hsla(0,0%,100%,0.95);--color-repo-language-color-border:rgba(27,31,35,0.1);--color-code-selection-bg:#c8e1ff;--color-highlight-text:#442c12;--color-highlight-bg:#fff0bb;--color-blob-line-highlight-bg:#fffbdd;--color-blob-line-highlight-border:transparent;--color-diff-addition-text:#22863a;--color-diff-addition-bg:#e6ffed;--color-diff-addition-border:#34d058;--color-diff-deletion-text:#cb2431;--color-diff-deletion-bg:#ffeef0;--color-diff-deletion-border:#d73a49;--color-diff-change-text:#b08800;--color-diff-change-bg:#fff5b1;--color-diff-change-border:#f9c513;--color-diff-blob-num-text:rgba(27,31,35,0.3);--color-diff-blob-num-hover-text:rgba(27,31,35,0.6);--color-diff-blob-addition-num-text:rgba(27,31,35,0.3);--color-diff-blob-addition-num-hover-text:rgba(27,31,35,0.6);--color-diff-blob-addition-num-bg:#cdffd8;--color-diff-blob-addition-line-bg:#e6ffed;--color-diff-blob-addition-word-bg:#acf2bd;--color-diff-blob-deletion-num-text:rgba(27,31,35,0.3);--color-diff-blob-deletion-num-hover-text:rgba(27,31,35,0.6);--color-diff-blob-deletion-num-bg:#ffdce0;--color-diff-blob-deletion-line-bg:#ffeef0;--color-diff-blob-deletion-word-bg:#fdb8c0;--color-diff-blob-hunk-text:rgba(27,31,35,0.7);--color-diff-blob-hunk-num-bg:#dbedff;--color-diff-blob-hunk-line-bg:#f1f8ff;--color-diff-blob-empty-block-bg:#fafbfc;--color-diff-blob-selected-line-highlight-bg:rgba(255,223,93,0.2);--color-diff-blob-selected-line-highlight-border:#ffd33d;--color-diff-blob-selected-line-highlight-mix-blend-mode:multiply;--color-diff-blob-expander-icon:#586069;--color-diff-blob-expander-hover-icon:#fff;--color-diff-blob-expander-hover-bg:#0366d6;--color-diff-blob-comment-button-icon:#fff;--color-diff-blob-comment-button-bg:#0366d6;--color-diff-blob-comment-button-gradient-bg:#0372ef;--color-global-nav-logo:#fff;--color-global-nav-bg:#24292e;--color-global-nav-text:#fff;--color-global-nav-icon:#fff;--color-global-nav-input-bg:#fafbfc;--color-global-nav-input-border:#fafbfc;--color-global-nav-input-icon:#d1d5da;--color-global-nav-input-placeholder:#959da5;--color-calendar-graph-day-bg:#ebedf0;--color-calendar-graph-day-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-bg:#9be9a8;--color-calendar-graph-day-L2-bg:#40c463;--color-calendar-graph-day-L3-bg:#30a14e;--color-calendar-graph-day-L4-bg:#216e39;--color-calendar-graph-day-L4-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L3-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L2-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-border:rgba(27,31,35,0.06);--color-footer-invertocat-octicon:#d1d5da;--color-footer-invertocat-octicon-hover:#6a737d;--color-pr-state-draft-text:#fff;--color-pr-state-draft-bg:#6a737d;--color-pr-state-draft-border:transparent;--color-pr-state-open-text:#fff;--color-pr-state-open-bg:#28a745;--color-pr-state-open-border:transparent;--color-pr-state-merged-text:#fff;--color-pr-state-merged-bg:#6f42c1;--color-pr-state-merged-border:transparent;--color-pr-state-closed-text:#fff;--color-pr-state-closed-bg:#d73a49;--color-pr-state-closed-border:transparent;--color-topic-tag-text:#0366d6;--color-topic-tag-bg:#f1f8ff;--color-topic-tag-hover-bg:#def;--color-topic-tag-active-bg:#e7f3ff;--color-merge-box-success-icon-bg:#28a745;--color-merge-box-success-icon-text:#fff;--color-merge-box-success-icon-border:transparent;--color-merge-box-success-indicator-bg:#28a745;--color-merge-box-success-indicator-border:transparent;--color-merge-box-merged-icon-bg:#6f42c1;--color-merge-box-merged-icon-text:#fff;--color-merge-box-merged-icon-border:transparent;--color-merge-box-merged-box-border:#6f42c1;--color-merge-box-neutral-icon-bg:#6a737d;--color-merge-box-neutral-icon-text:#fff;--color-merge-box-neutral-icon-border:transparent;--color-merge-box-neutral-indicator-bg:#6a737d;--color-merge-box-neutral-indicator-border:transparent;--color-merge-box-warning-icon-bg:#dbab09;--color-merge-box-warning-icon-text:#fff;--color-merge-box-warning-icon-border:transparent;--color-merge-box-warning-box-border:#ffd33d;--color-merge-box-warning-merge-highlight:transparent;--color-merge-box-error-icon-bg:#d73a49;--color-merge-box-error-icon-text:#fff;--color-merge-box-error-icon-border:transparent;--color-merge-box-error-indicator-bg:#d73a49;--color-merge-box-error-indicator-border:transparent;--color-project-card-bg:#fff;--color-project-header-bg:#24292e;--color-project-sidebar-bg:#fff;--color-project-gradient-in:#fff;--color-project-gradient-out:hsla(0,0%,100%,0);--color-checks-bg:#24292e;--color-checks-run-border-width:0px;--color-checks-container-border-width:0px;--color-checks-text-primary:#fafbfc;--color-checks-text-secondary:#959da5;--color-checks-text-link:#79b8ff;--color-checks-btn-icon:#d1d5da;--color-checks-btn-hover-icon:#fafbfc;--color-checks-btn-hover-bg:hsla(0,0%,100%,0.125);--color-checks-input-text:#f6f8fa;--color-checks-input-placeholder-text:#959da5;--color-checks-input-focus-text:#959da5;--color-checks-input-bg:#2f363d;--color-checks-input-shadow:none;--color-checks-dropdown-text:#d1d5da;--color-checks-dropdown-bg:#2f363d;--color-checks-dropdown-border:#444d56;--color-checks-dropdown-hover-text:#fafbfc;--color-checks-dropdown-hover-bg:#444d56;--color-checks-dropdown-btn-hover-text:#fafbfc;--color-checks-dropdown-btn-hover-bg:#2f363d;--color-checks-scrollbar-thumb-bg:#586069;--color-checks-header-label-text:#e1e4e8;--color-checks-header-label-open-text:#fafbfc;--color-checks-header-border:#2f363d;--color-checks-header-icon:#959da5;--color-checks-line-text:#e1e4e8;--color-checks-line-num-text:rgba(149,157,165,0.75);--color-checks-line-timestamp-text:#959da5;--color-checks-line-hover-bg:#2f363d;--color-checks-line-selected-bg:rgba(33,136,255,0.15);--color-checks-line-selected-num-text:#79b8ff;--color-checks-line-dt-fm-text:#24292e;--color-checks-line-dt-fm-bg:#ffd33d;--color-checks-gate-bg:rgba(249,197,19,0.15);--color-checks-gate-text:#e1e4e8;--color-checks-gate-waiting-text:#d1d5da;--color-checks-step-header-open-bg:#2f363d;--color-checks-step-error-text:#f97583;--color-checks-step-warning-text:#ffea7f;--color-checks-logline-text:#959da5;--color-checks-logline-num-text:rgba(149,157,165,0.75);--color-checks-logline-debug-text:#b392f0;--color-checks-logline-error-text:#e1e4e8;--color-checks-logline-error-num-text:#f97583;--color-checks-logline-error-bg:rgba(203,36,49,0.15);--color-checks-logline-warning-text:#e1e4e8;--color-checks-logline-warning-num-text:#ffea7f;--color-checks-logline-warning-bg:rgba(249,197,19,0.15);--color-checks-logline-command-text:#79b8ff;--color-checks-logline-section-text:#85e89d;--color-intro-shelf-gradient-left:#f1f8ff;--color-intro-shelf-gradient-right:#dcffe4;--color-intro-shelf-gradient-in:#fff;--color-intro-shelf-gradient-out:hsla(0,0%,100%,0);--color-marketing-icon-primary:#2188ff;--color-marketing-icon-secondary:#79b8ff;--color-prettylights-syntax-comment:#6a737d;--color-prettylights-syntax-constant:#005cc5;--color-prettylights-syntax-entity:#6f42c1;--color-prettylights-syntax-storage-modifier-import:#24292e;--color-prettylights-syntax-entity-tag:#22863a;--color-prettylights-syntax-keyword:#d73a49;--color-prettylights-syntax-string:#032f62;--color-prettylights-syntax-variable:#e36209;--color-prettylights-syntax-brackethighlighter-unmatched:#b31d28;--color-prettylights-syntax-invalid-illegal-text:#fafbfc;--color-prettylights-syntax-invalid-illegal-bg:#b31d28;--color-prettylights-syntax-carriage-return-text:#fafbfc;--color-prettylights-syntax-carriage-return-bg:#d73a49;--color-prettylights-syntax-string-regexp:#22863a;--color-prettylights-syntax-markup-list:#735c0f;--color-prettylights-syntax-markup-heading:#005cc5;--color-prettylights-syntax-markup-italic:#24292e;--color-prettylights-syntax-markup-bold:#24292e;--color-prettylights-syntax-markup-deleted-text:#b31d28;--color-prettylights-syntax-markup-deleted-bg:#ffeef0;--color-prettylights-syntax-markup-inserted-text:#22863a;--color-prettylights-syntax-markup-inserted-bg:#f0fff4;--color-prettylights-syntax-markup-changed-text:#e36209;--color-prettylights-syntax-markup-changed-bg:#ffebda;--color-prettylights-syntax-markup-ignored-text:#f6f8fa;--color-prettylights-syntax-markup-ignored-bg:#005cc5;--color-prettylights-syntax-meta-diff-range:#6f42c1;--color-prettylights-syntax-brackethighlighter-angle:#586069;--color-prettylights-syntax-sublimelinter-gutter-mark:#959da5;--color-prettylights-syntax-constant-other-reference-link:#032f62;--color-codemirror-text:#24292e;--color-codemirror-bg:#fff;--color-codemirror-gutters-bg:#fff;--color-codemirror-guttermarker-text:#fff;--color-codemirror-guttermarker-subtle-text:#d1d5da;--color-codemirror-linenumber-text:#959da5;--color-codemirror-cursor:#24292e;--color-codemirror-selection-bg:#c8e1ff;--color-codemirror-activeline-bg:#fafbfc;--color-codemirror-matchingbracket-text:#24292e;--color-codemirror-lines-bg:#fff;--color-codemirror-syntax-comment:#6a737d;--color-codemirror-syntax-constant:#005cc5;--color-codemirror-syntax-entity:#6f42c1;--color-codemirror-syntax-keyword:#d73a49;--color-codemirror-syntax-storage:#d73a49;--color-codemirror-syntax-string:#032f62;--color-codemirror-syntax-support:#005cc5;--color-codemirror-syntax-variable:#e36209;--color-ansi-black:#24292e;--color-ansi-black-bright:#2f363d;--color-ansi-white:#e1e4e8;--color-ansi-white-bright:#e1e4e8;--color-ansi-gray:#959da5;--color-ansi-red:#f97583;--color-ansi-red-bright:#fdaeb7;--color-ansi-green:#85e89d;--color-ansi-green-bright:#bef5cb;--color-ansi-yellow:#ffea7f;--color-ansi-yellow-bright:#fff5b1;--color-ansi-blue:#79b8ff;--color-ansi-blue-bright:#c8e1ff;--color-ansi-magenta:#b392f0;--color-ansi-magenta-bright:#d1bcf9;--color-ansi-cyan:#76e3ea;--color-ansi-cyan-bright:#b3f0ff}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme=light]{--color-scale-black:#1b1f23;--color-scale-white:#fff;--color-scale-gray-0:#fafbfc;--color-scale-gray-1:#f6f8fa;--color-scale-gray-2:#e1e4e8;--color-scale-gray-3:#d1d5da;--color-scale-gray-4:#959da5;--color-scale-gray-5:#6a737d;--color-scale-gray-6:#586069;--color-scale-gray-7:#444d56;--color-scale-gray-8:#2f363d;--color-scale-gray-9:#24292e;--color-scale-blue-0:#f1f8ff;--color-scale-blue-1:#dbedff;--color-scale-blue-2:#c8e1ff;--color-scale-blue-3:#79b8ff;--color-scale-blue-4:#2188ff;--color-scale-blue-5:#0366d6;--color-scale-blue-6:#005cc5;--color-scale-blue-7:#044289;--color-scale-blue-8:#032f62;--color-scale-blue-9:#05264c;--color-scale-green-0:#f0fff4;--color-scale-green-1:#dcffe4;--color-scale-green-2:#bef5cb;--color-scale-green-3:#85e89d;--color-scale-green-4:#34d058;--color-scale-green-5:#28a745;--color-scale-green-6:#22863a;--color-scale-green-7:#176f2c;--color-scale-green-8:#165c26;--color-scale-green-9:#144620;--color-scale-yellow-0:#fffdef;--color-scale-yellow-1:#fffbdd;--color-scale-yellow-2:#fff5b1;--color-scale-yellow-3:#ffea7f;--color-scale-yellow-4:#ffdf5d;--color-scale-yellow-5:#ffd33d;--color-scale-yellow-6:#f9c513;--color-scale-yellow-7:#dbab09;--color-scale-yellow-8:#b08800;--color-scale-yellow-9:#735c0f;--color-scale-orange-0:#fff8f2;--color-scale-orange-1:#ffebda;--color-scale-orange-2:#ffd1ac;--color-scale-orange-3:#ffab70;--color-scale-orange-4:#fb8532;--color-scale-orange-5:#f66a0a;--color-scale-orange-6:#e36209;--color-scale-orange-7:#d15704;--color-scale-orange-8:#c24e00;--color-scale-orange-9:#a04100;--color-scale-red-0:#ffeef0;--color-scale-red-1:#ffdce0;--color-scale-red-2:#fdaeb7;--color-scale-red-3:#f97583;--color-scale-red-4:#ea4a5a;--color-scale-red-5:#d73a49;--color-scale-red-6:#cb2431;--color-scale-red-7:#b31d28;--color-scale-red-8:#9e1c23;--color-scale-red-9:#86181d;--color-scale-purple-0:#f5f0ff;--color-scale-purple-1:#e6dcfd;--color-scale-purple-2:#d1bcf9;--color-scale-purple-3:#b392f0;--color-scale-purple-4:#8a63d2;--color-scale-purple-5:#6f42c1;--color-scale-purple-6:#5a32a3;--color-scale-purple-7:#4c2889;--color-scale-purple-8:#3a1d6e;--color-scale-purple-9:#29134e;--color-scale-pink-0:#ffeef8;--color-scale-pink-1:#fedbf0;--color-scale-pink-2:#f9b3dd;--color-scale-pink-3:#f692ce;--color-scale-pink-4:#ec6cb9;--color-scale-pink-5:#ea4aaa;--color-scale-pink-6:#d03592;--color-scale-pink-7:#b93a86;--color-scale-pink-8:#99306f;--color-scale-pink-9:#6d224f;--color-auto-black:#1b1f23;--color-auto-white:#fff;--color-auto-gray-0:#fafbfc;--color-auto-gray-1:#f6f8fa;--color-auto-gray-2:#e1e4e8;--color-auto-gray-3:#d1d5da;--color-auto-gray-4:#959da5;--color-auto-gray-5:#6a737d;--color-auto-gray-6:#586069;--color-auto-gray-7:#444d56;--color-auto-gray-8:#2f363d;--color-auto-gray-9:#24292e;--color-auto-blue-0:#f1f8ff;--color-auto-blue-1:#dbedff;--color-auto-blue-2:#c8e1ff;--color-auto-blue-3:#79b8ff;--color-auto-blue-4:#2188ff;--color-auto-blue-5:#0366d6;--color-auto-blue-6:#005cc5;--color-auto-blue-7:#044289;--color-auto-blue-8:#032f62;--color-auto-blue-9:#05264c;--color-auto-green-0:#f0fff4;--color-auto-green-1:#dcffe4;--color-auto-green-2:#bef5cb;--color-auto-green-3:#85e89d;--color-auto-green-4:#34d058;--color-auto-green-5:#28a745;--color-auto-green-6:#22863a;--color-auto-green-7:#176f2c;--color-auto-green-8:#165c26;--color-auto-green-9:#144620;--color-auto-yellow-0:#fffdef;--color-auto-yellow-1:#fffbdd;--color-auto-yellow-2:#fff5b1;--color-auto-yellow-3:#ffea7f;--color-auto-yellow-4:#ffdf5d;--color-auto-yellow-5:#ffd33d;--color-auto-yellow-6:#f9c513;--color-auto-yellow-7:#dbab09;--color-auto-yellow-8:#b08800;--color-auto-yellow-9:#735c0f;--color-auto-orange-0:#fff8f2;--color-auto-orange-1:#ffebda;--color-auto-orange-2:#ffd1ac;--color-auto-orange-3:#ffab70;--color-auto-orange-4:#fb8532;--color-auto-orange-5:#f66a0a;--color-auto-orange-6:#e36209;--color-auto-orange-7:#d15704;--color-auto-orange-8:#c24e00;--color-auto-orange-9:#a04100;--color-auto-red-0:#ffeef0;--color-auto-red-1:#ffdce0;--color-auto-red-2:#fdaeb7;--color-auto-red-3:#f97583;--color-auto-red-4:#ea4a5a;--color-auto-red-5:#d73a49;--color-auto-red-6:#cb2431;--color-auto-red-7:#b31d28;--color-auto-red-8:#9e1c23;--color-auto-red-9:#86181d;--color-auto-purple-0:#f5f0ff;--color-auto-purple-1:#e6dcfd;--color-auto-purple-2:#d1bcf9;--color-auto-purple-3:#b392f0;--color-auto-purple-4:#8a63d2;--color-auto-purple-5:#6f42c1;--color-auto-purple-6:#5a32a3;--color-auto-purple-7:#4c2889;--color-auto-purple-8:#3a1d6e;--color-auto-purple-9:#29134e;--color-auto-pink-0:#ffeef8;--color-auto-pink-1:#fedbf0;--color-auto-pink-2:#f9b3dd;--color-auto-pink-3:#f692ce;--color-auto-pink-4:#ec6cb9;--color-auto-pink-5:#ea4aaa;--color-auto-pink-6:#d03592;--color-auto-pink-7:#b93a86;--color-auto-pink-8:#99306f;--color-auto-pink-9:#6d224f;--color-text-primary:#24292e;--color-text-secondary:#586069;--color-text-tertiary:#6a737d;--color-text-placeholder:#6a737d;--color-text-disabled:#959da5;--color-text-inverse:#fff;--color-text-link:#0366d6;--color-text-danger:#cb2431;--color-text-success:#22863a;--color-text-warning:#b08800;--color-text-white:#fff;--color-icon-primary:#24292e;--color-icon-secondary:#586069;--color-icon-tertiary:#959da5;--color-icon-info:#0366d6;--color-icon-danger:#d73a49;--color-icon-success:#22863a;--color-icon-warning:#b08800;--color-border-primary:#e1e4e8;--color-border-secondary:#eaecef;--color-border-tertiary:#d1d5da;--color-border-overlay:#e1e4e8;--color-border-inverse:#fff;--color-border-info:#0366d6;--color-border-danger:#d73a49;--color-border-success:#34d058;--color-border-warning:#f9c513;--color-bg-canvas:#fff;--color-bg-canvas-mobile:#fff;--color-bg-canvas-inverse:#24292e;--color-bg-canvas-inset:#f6f8fa;--color-bg-primary:#fff;--color-bg-secondary:#fafbfc;--color-bg-tertiary:#f6f8fa;--color-bg-overlay:#fff;--color-bg-backdrop:rgba(27,31,35,0.5);--color-bg-info:#f1f8ff;--color-bg-info-inverse:#0366d6;--color-bg-danger:#ffeef0;--color-bg-danger-inverse:#d73a49;--color-bg-success:#dcffe4;--color-bg-success-inverse:#28a745;--color-bg-warning:#fff5b1;--color-bg-warning-inverse:#ffd33d;--color-shadow-small:0 1px 0 rgba(27,31,35,0.04);--color-shadow-medium:0 3px 6px rgba(149,157,165,0.15);--color-shadow-large:0 8px 24px rgba(149,157,165,0.2);--color-shadow-extra-large:0 12px 48px rgba(149,157,165,0.3);--color-shadow-highlight:inset 0 1px 0 hsla(0,0%,100%,0.25);--color-shadow-inset:inset 0 1px 0 rgba(225,228,232,0.2);--color-state-hover-primary-bg:#0366d6;--color-state-hover-primary-border:#0366d6;--color-state-hover-primary-text:#fff;--color-state-hover-primary-icon:#fff;--color-state-hover-secondary-bg:#f6f8fa;--color-state-hover-secondary-border:#f6f8fa;--color-state-selected-primary-bg:#0366d6;--color-state-selected-primary-border:#0366d6;--color-state-selected-primary-text:#fff;--color-state-selected-primary-icon:#fff;--color-state-focus-border:#0366d6;--color-state-focus-shadow:0 0 0 3px rgba(3,102,214,0.3);--color-fade-fg-10:rgba(27,31,35,0.1);--color-fade-fg-15:rgba(27,31,35,0.15);--color-fade-fg-30:rgba(27,31,35,0.3);--color-fade-fg-50:rgba(27,31,35,0.5);--color-fade-fg-70:rgba(27,31,35,0.7);--color-fade-fg-85:rgba(27,31,35,0.85);--color-fade-black-10:rgba(27,31,35,0.1);--color-fade-black-15:rgba(27,31,35,0.15);--color-fade-black-30:rgba(27,31,35,0.3);--color-fade-black-50:rgba(27,31,35,0.5);--color-fade-black-70:rgba(27,31,35,0.7);--color-fade-black-85:rgba(27,31,35,0.85);--color-fade-white-10:hsla(0,0%,100%,0.1);--color-fade-white-15:hsla(0,0%,100%,0.15);--color-fade-white-30:hsla(0,0%,100%,0.3);--color-fade-white-50:hsla(0,0%,100%,0.5);--color-fade-white-70:hsla(0,0%,100%,0.7);--color-fade-white-85:hsla(0,0%,100%,0.85);--color-alert-info-text:#24292e;--color-alert-info-icon:rgba(4,66,137,0.6);--color-alert-info-bg:#dbedff;--color-alert-info-border:rgba(4,66,137,0.2);--color-alert-warn-text:#24292e;--color-alert-warn-icon:#b08800;--color-alert-warn-bg:#fffbdd;--color-alert-warn-border:rgba(176,136,0,0.2);--color-alert-error-text:#24292e;--color-alert-error-icon:rgba(158,28,35,0.6);--color-alert-error-bg:#ffe3e6;--color-alert-error-border:rgba(158,28,35,0.2);--color-alert-success-text:#24292e;--color-alert-success-icon:rgba(23,111,44,0.8);--color-alert-success-bg:#dcffe4;--color-alert-success-border:rgba(23,111,44,0.2);--color-autocomplete-shadow:0 3px 6px rgba(149,157,165,0.15);--color-autocomplete-row-border:#eaecef;--color-blankslate-icon:#a3aab1;--color-btn-text:#24292e;--color-btn-bg:#fafbfc;--color-btn-border:rgba(27,31,35,0.15);--color-btn-shadow:0 1px 0 rgba(27,31,35,0.04);--color-btn-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.25);--color-btn-hover-bg:#f3f4f6;--color-btn-hover-border:rgba(27,31,35,0.15);--color-btn-selected-bg:#edeff2;--color-btn-focus-bg:#fafbfc;--color-btn-focus-border:rgba(27,31,35,0.15);--color-btn-focus-shadow:0 0 0 3px rgba(3,102,214,0.3);--color-btn-shadow-active:inset 0 0.15em 0.3em rgba(27,31,35,0.15);--color-btn-shadow-input-focus:0 0 0 0.2em rgba(3,102,214,0.3);--color-btn-primary-text:#fff;--color-btn-primary-bg:#2ea44f;--color-btn-primary-border:rgba(27,31,35,0.15);--color-btn-primary-shadow:0 1px 0 rgba(27,31,35,0.1);--color-btn-primary-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.03);--color-btn-primary-hover-bg:#2c974b;--color-btn-primary-hover-border:rgba(27,31,35,0.15);--color-btn-primary-selected-bg:#2a8f47;--color-btn-primary-selected-shadow:inset 0 1px 0 rgba(20,70,32,0.2);--color-btn-primary-disabled-text:hsla(0,0%,100%,0.8);--color-btn-primary-disabled-bg:#94d3a2;--color-btn-primary-disabled-border:rgba(27,31,35,0.1);--color-btn-primary-focus-bg:#2ea44f;--color-btn-primary-focus-border:rgba(27,31,35,0.15);--color-btn-primary-focus-shadow:0 0 0 3px rgba(46,164,79,0.4);--color-btn-primary-icon:hsla(0,0%,100%,0.8);--color-btn-primary-counter-bg:hsla(0,0%,100%,0.2);--color-btn-outline-text:#0366d6;--color-btn-outline-hover-text:#fff;--color-btn-outline-hover-bg:#0366d6;--color-btn-outline-hover-border:rgba(27,31,35,0.15);--color-btn-outline-hover-shadow:0 1px 0 rgba(27,31,35,0.1);--color-btn-outline-hover-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.03);--color-btn-outline-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-outline-selected-text:#fff;--color-btn-outline-selected-bg:#035fc7;--color-btn-outline-selected-border:rgba(27,31,35,0.15);--color-btn-outline-selected-shadow:inset 0 1px 0 rgba(5,38,76,0.2);--color-btn-outline-disabled-text:rgba(3,102,214,0.5);--color-btn-outline-disabled-bg:#fafbfc;--color-btn-outline-disabled-counter-bg:rgba(3,102,214,0.05);--color-btn-outline-focus-border:rgba(27,31,35,0.15);--color-btn-outline-focus-shadow:0 0 0 3px rgba(0,92,197,0.4);--color-btn-outline-counter-bg:rgba(3,102,214,0.1);--color-btn-danger-text:#d73a49;--color-btn-danger-hover-text:#fff;--color-btn-danger-hover-bg:#cb2431;--color-btn-danger-hover-border:rgba(27,31,35,0.15);--color-btn-danger-hover-shadow:0 1px 0 rgba(27,31,35,0.1);--color-btn-danger-hover-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.03);--color-btn-danger-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-danger-selected-text:#fff;--color-btn-danger-selected-bg:#d42d3d;--color-btn-danger-selected-border:rgba(27,31,35,0.15);--color-btn-danger-selected-shadow:inset 0 1px 0 rgba(134,24,29,0.2);--color-btn-danger-disabled-text:rgba(215,58,73,0.5);--color-btn-danger-disabled-bg:#fafbfc;--color-btn-danger-disabled-counter-bg:rgba(215,58,73,0.05);--color-btn-danger-focus-border:rgba(27,31,35,0.15);--color-btn-danger-focus-shadow:0 0 0 3px rgba(203,36,49,0.4);--color-btn-danger-counter-bg:rgba(215,58,73,0.1);--color-btn-danger-icon:#d73a49;--color-btn-danger-hover-icon:#fff;--color-btn-counter-bg:rgba(27,31,35,0.08);--color-counter-text:#24292e;--color-counter-bg:rgba(209,213,218,0.5);--color-counter-primary-text:#fff;--color-counter-primary-bg:#6a737d;--color-counter-secondary-text:#6a737d;--color-dropdown-shadow:0 8px 24px rgba(149,157,165,0.2);--color-label-border:#e1e4e8;--color-label-primary-text:#24292e;--color-label-primary-border:#6a737d;--color-label-secondary-text:#586069;--color-label-secondary-border:#e1e4e8;--color-label-info-text:#0366d6;--color-label-info-border:#0366d6;--color-label-success-text:#22863a;--color-label-success-border:#28a745;--color-label-warning-text:#735c0f;--color-label-warning-border:#b08800;--color-label-danger-text:#d73a49;--color-label-danger-border:#cb2431;--color-label-orange-text:#c24e00;--color-label-orange-border:#f66a0a;--color-input-bg:#fff;--color-input-contrast-bg:#fafbfc;--color-input-border:#e1e4e8;--color-input-shadow:inset 0 1px 2px rgba(27,31,35,0.075);--color-input-disabled-bg:#fff;--color-input-disabled-border:#e1e4e8;--color-input-warning-border:#f9c513;--color-input-error-border:#cb2431;--color-input-tooltip-success-text:#144620;--color-input-tooltip-success-bg:#dcffe4;--color-input-tooltip-success-border:#34d058;--color-input-tooltip-warning-text:#735c0f;--color-input-tooltip-warning-bg:#fff5b1;--color-input-tooltip-warning-border:#f9c513;--color-input-tooltip-error-text:#86181d;--color-input-tooltip-error-bg:#ffeef0;--color-input-tooltip-error-border:#f97583;--color-avatar-bg:#fff;--color-avatar-border:transparent;--color-avatar-stack-fade:#d1d5da;--color-avatar-stack-fade-more:#e1e4e8;--color-avatar-child-shadow:-2px -2px 0 hsla(0,0%,100%,0.8);--color-toast-text:#24292e;--color-toast-bg:#fff;--color-toast-border:#e1e4e8;--color-toast-shadow:0 8px 24px rgba(149,157,165,0.2);--color-toast-icon:#fff;--color-toast-icon-bg:#0366d6;--color-toast-icon-border:transparent;--color-toast-success-text:#24292e;--color-toast-success-border:#e1e4e8;--color-toast-success-icon:#fff;--color-toast-success-icon-bg:#28a745;--color-toast-success-icon-border:transparent;--color-toast-warning-text:#24292e;--color-toast-warning-border:#e1e4e8;--color-toast-warning-icon:#24292e;--color-toast-warning-icon-bg:#ffd33d;--color-toast-warning-icon-border:transparent;--color-toast-danger-text:#24292e;--color-toast-danger-border:#e1e4e8;--color-toast-danger-icon:#fff;--color-toast-danger-icon-bg:#d73a49;--color-toast-danger-icon-border:transparent;--color-toast-loading-text:#24292e;--color-toast-loading-border:#e1e4e8;--color-toast-loading-icon:#fff;--color-toast-loading-icon-bg:#586069;--color-toast-loading-icon-border:transparent;--color-timeline-text:#444d56;--color-timeline-badge-bg:#e1e4e8;--color-timeline-target-badge-border:#2188ff;--color-timeline-target-badge-shadow:#c8e1ff;--color-select-menu-border-secondary:#eaecef;--color-select-menu-shadow:0 0 18px rgba(27,31,35,0.4);--color-select-menu-backdrop-bg:rgba(27,31,35,0.5);--color-select-menu-backdrop-border:transparent;--color-select-menu-tap-highlight:rgba(209,213,218,0.5);--color-select-menu-tap-focus-bg:#dbedff;--color-box-blue-border:#c8e1ff;--color-box-row-yellow-bg:#fffbdd;--color-box-row-blue-bg:#f1f8ff;--color-box-header-blue-bg:#f1f8ff;--color-box-header-blue-border:#c8e1ff;--color-box-border-info:rgba(3,102,214,0.2);--color-box-bg-info:#f1f8ff;--color-box-border-warning:rgba(255,211,61,0.4);--color-box-bg-warning:#fffdef;--color-branch-name-text:#586069;--color-branch-name-icon:#a8bbd0;--color-branch-name-bg:#eaf5ff;--color-branch-name-link-text:#0366d6;--color-branch-name-link-icon:#a8bbd0;--color-branch-name-link-bg:#eaf5ff;--color-markdown-code-bg:rgba(27,31,35,0.05);--color-markdown-frame-border:#dfe2e5;--color-markdown-blockquote-border:#dfe2e5;--color-markdown-table-border:#dfe2e5;--color-markdown-table-tr-border:#c6cbd1;--color-menu-heading-text:#24292e;--color-menu-border-active:#f9826c;--color-menu-bg-active:transparent;--color-sidenav-selected-bg:#fff;--color-sidenav-border-active:#f9826c;--color-header-text:hsla(0,0%,100%,0.7);--color-header-bg:#24292e;--color-header-logo:#fff;--color-filter-item-bar-bg:#eff3f6;--color-hidden-text-expander-bg:#dfe2e5;--color-hidden-text-expander-bg-hover:#c6cbd1;--color-drag-and-drop-border:#c3c8cf;--color-upload-enabled-border:#dfe2e5;--color-upload-enabled-border-focused:#4a9eff;--color-previewable-comment-form-border:#c3c8cf;--color-underlinenav-border:rgba(209,213,218,0);--color-underlinenav-border-hover:#d1d5da;--color-underlinenav-border-active:#f9826c;--color-underlinenav-text:#24292e;--color-underlinenav-text-hover:#24292e;--color-underlinenav-text-active:#24292e;--color-underlinenav-icon:#959da5;--color-underlinenav-icon-hover:#959da5;--color-underlinenav-icon-active:#24292e;--color-underlinenav-counter-text:#24292e;--color-verified-badge-text:#22863a;--color-verified-badge-bg:#fff;--color-verified-badge-border:#e1e4e8;--color-social-count-bg:#fff;--color-tooltip-text:#fff;--color-tooltip-bg:#24292e;--color-header-search-bg:#24292e;--color-header-search-border:#444d56;--color-search-keyword-hl:#fffbdd;--color-diffstat-neutral-bg:#d1d5da;--color-diffstat-neutral-border:#d1d5da;--color-diffstat-deletion-bg:#d73a49;--color-diffstat-deletion-border:#d73a49;--color-diffstat-addition-bg:#28a745;--color-diffstat-addition-border:#28a745;--color-mktg-success:#2ebc4f;--color-mktg-info:#1074e7;--color-mktg-bg-shade-gradient-top:rgba(27,31,35,0.065);--color-mktg-bg-shade-gradient-bottom:rgba(27,31,35,0);--color-mktg-btn-bg:#3076df;--color-mktg-btn-border:#3076df;--color-mktg-btn-text:#fff;--color-mktg-btn-icon:#fff;--color-mktg-btn-focus-shadow:0 0 0 3px rgba(48,118,223,0.3);--color-mktg-btn-hover-bg:#0366d6;--color-mktg-btn-hover-border:#0366d6;--color-mktg-btn-disabled-bg:rgba(48,118,223,0.5);--color-mktg-btn-disabled-border:transparent;--color-mktg-btn-disabled-text:#fff;--color-mktg-btn-disabled-icon:#fff;--color-mktg-btn-primary-bg:#5eb85c;--color-mktg-btn-primary-border:#5eb85c;--color-mktg-btn-primary-text:#fff;--color-mktg-btn-primary-icon:#fff;--color-mktg-btn-primary-focus-shadow:0 0 0 3px rgba(94,184,92,0.3);--color-mktg-btn-primary-hover-bg:#28a745;--color-mktg-btn-primary-hover-border:#28a745;--color-mktg-btn-primary-disabled-bg:rgba(94,184,92,0.5);--color-mktg-btn-primary-disabled-border:transparent;--color-mktg-btn-primary-disabled-text:#fff;--color-mktg-btn-primary-disabled-icon:#fff;--color-mktg-btn-outline-bg:transparent;--color-mktg-btn-outline-border:rgba(42,103,195,0.5);--color-mktg-btn-outline-text:#3076df;--color-mktg-btn-outline-icon:#3076df;--color-mktg-btn-outline-focus-shadow:0 0 0 3px rgba(42,103,195,0.3);--color-mktg-btn-outline-hover-bg:transparent;--color-mktg-btn-outline-hover-border:#0366d6;--color-mktg-btn-outline-hover-text:#0366d6;--color-mktg-btn-outline-hover-icon:#0366d6;--color-mktg-btn-outline-disabled-bg:transparent;--color-mktg-btn-outline-disabled-border:rgba(42,103,195,0.2);--color-mktg-btn-outline-disabled-text:rgba(48,118,223,0.5);--color-mktg-btn-outline-disabled-icon:rgba(48,118,223,0.5);--color-mktg-btn-dark-bg:transparent;--color-mktg-btn-dark-border:hsla(0,0%,100%,0.5);--color-mktg-btn-dark-text:#fff;--color-mktg-btn-dark-icon:#fff;--color-mktg-btn-dark-focus-shadow:0 0 0 3px hsla(0,0%,100%,0.3);--color-mktg-btn-dark-hover-bg:#fff;--color-mktg-btn-dark-hover-border:#fff;--color-mktg-btn-dark-hover-text:#444d56;--color-mktg-btn-dark-hover-icon:#444d56;--color-mktg-btn-dark-disabled-bg:transparent;--color-mktg-btn-dark-disabled-border:hsla(0,0%,100%,0.2);--color-mktg-btn-dark-disabled-text:hsla(0,0%,100%,0.5);--color-mktg-btn-dark-disabled-icon:hsla(0,0%,100%,0.5);--color-files-explorer-icon:#79b8ff;--color-hl-author-bg:#f1f8ff;--color-hl-author-border:#c8e1ff;--color-logo-subdued:#d1d5da;--color-discussion-border:#a2cbac;--color-discussion-bg-success:#28a745;--color-actions-workflow-table-sticky-bg:hsla(0,0%,100%,0.95);--color-repo-language-color-border:rgba(27,31,35,0.1);--color-code-selection-bg:#c8e1ff;--color-highlight-text:#442c12;--color-highlight-bg:#fff0bb;--color-blob-line-highlight-bg:#fffbdd;--color-blob-line-highlight-border:transparent;--color-diff-addition-text:#22863a;--color-diff-addition-bg:#e6ffed;--color-diff-addition-border:#34d058;--color-diff-deletion-text:#cb2431;--color-diff-deletion-bg:#ffeef0;--color-diff-deletion-border:#d73a49;--color-diff-change-text:#b08800;--color-diff-change-bg:#fff5b1;--color-diff-change-border:#f9c513;--color-diff-blob-num-text:rgba(27,31,35,0.3);--color-diff-blob-num-hover-text:rgba(27,31,35,0.6);--color-diff-blob-addition-num-text:rgba(27,31,35,0.3);--color-diff-blob-addition-num-hover-text:rgba(27,31,35,0.6);--color-diff-blob-addition-num-bg:#cdffd8;--color-diff-blob-addition-line-bg:#e6ffed;--color-diff-blob-addition-word-bg:#acf2bd;--color-diff-blob-deletion-num-text:rgba(27,31,35,0.3);--color-diff-blob-deletion-num-hover-text:rgba(27,31,35,0.6);--color-diff-blob-deletion-num-bg:#ffdce0;--color-diff-blob-deletion-line-bg:#ffeef0;--color-diff-blob-deletion-word-bg:#fdb8c0;--color-diff-blob-hunk-text:rgba(27,31,35,0.7);--color-diff-blob-hunk-num-bg:#dbedff;--color-diff-blob-hunk-line-bg:#f1f8ff;--color-diff-blob-empty-block-bg:#fafbfc;--color-diff-blob-selected-line-highlight-bg:rgba(255,223,93,0.2);--color-diff-blob-selected-line-highlight-border:#ffd33d;--color-diff-blob-selected-line-highlight-mix-blend-mode:multiply;--color-diff-blob-expander-icon:#586069;--color-diff-blob-expander-hover-icon:#fff;--color-diff-blob-expander-hover-bg:#0366d6;--color-diff-blob-comment-button-icon:#fff;--color-diff-blob-comment-button-bg:#0366d6;--color-diff-blob-comment-button-gradient-bg:#0372ef;--color-global-nav-logo:#fff;--color-global-nav-bg:#24292e;--color-global-nav-text:#fff;--color-global-nav-icon:#fff;--color-global-nav-input-bg:#fafbfc;--color-global-nav-input-border:#fafbfc;--color-global-nav-input-icon:#d1d5da;--color-global-nav-input-placeholder:#959da5;--color-calendar-graph-day-bg:#ebedf0;--color-calendar-graph-day-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-bg:#9be9a8;--color-calendar-graph-day-L2-bg:#40c463;--color-calendar-graph-day-L3-bg:#30a14e;--color-calendar-graph-day-L4-bg:#216e39;--color-calendar-graph-day-L4-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L3-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L2-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-border:rgba(27,31,35,0.06);--color-footer-invertocat-octicon:#d1d5da;--color-footer-invertocat-octicon-hover:#6a737d;--color-pr-state-draft-text:#fff;--color-pr-state-draft-bg:#6a737d;--color-pr-state-draft-border:transparent;--color-pr-state-open-text:#fff;--color-pr-state-open-bg:#28a745;--color-pr-state-open-border:transparent;--color-pr-state-merged-text:#fff;--color-pr-state-merged-bg:#6f42c1;--color-pr-state-merged-border:transparent;--color-pr-state-closed-text:#fff;--color-pr-state-closed-bg:#d73a49;--color-pr-state-closed-border:transparent;--color-topic-tag-text:#0366d6;--color-topic-tag-bg:#f1f8ff;--color-topic-tag-hover-bg:#def;--color-topic-tag-active-bg:#e7f3ff;--color-merge-box-success-icon-bg:#28a745;--color-merge-box-success-icon-text:#fff;--color-merge-box-success-icon-border:transparent;--color-merge-box-success-indicator-bg:#28a745;--color-merge-box-success-indicator-border:transparent;--color-merge-box-merged-icon-bg:#6f42c1;--color-merge-box-merged-icon-text:#fff;--color-merge-box-merged-icon-border:transparent;--color-merge-box-merged-box-border:#6f42c1;--color-merge-box-neutral-icon-bg:#6a737d;--color-merge-box-neutral-icon-text:#fff;--color-merge-box-neutral-icon-border:transparent;--color-merge-box-neutral-indicator-bg:#6a737d;--color-merge-box-neutral-indicator-border:transparent;--color-merge-box-warning-icon-bg:#dbab09;--color-merge-box-warning-icon-text:#fff;--color-merge-box-warning-icon-border:transparent;--color-merge-box-warning-box-border:#ffd33d;--color-merge-box-warning-merge-highlight:transparent;--color-merge-box-error-icon-bg:#d73a49;--color-merge-box-error-icon-text:#fff;--color-merge-box-error-icon-border:transparent;--color-merge-box-error-indicator-bg:#d73a49;--color-merge-box-error-indicator-border:transparent;--color-project-card-bg:#fff;--color-project-header-bg:#24292e;--color-project-sidebar-bg:#fff;--color-project-gradient-in:#fff;--color-project-gradient-out:hsla(0,0%,100%,0);--color-checks-bg:#24292e;--color-checks-run-border-width:0px;--color-checks-container-border-width:0px;--color-checks-text-primary:#fafbfc;--color-checks-text-secondary:#959da5;--color-checks-text-link:#79b8ff;--color-checks-btn-icon:#d1d5da;--color-checks-btn-hover-icon:#fafbfc;--color-checks-btn-hover-bg:hsla(0,0%,100%,0.125);--color-checks-input-text:#f6f8fa;--color-checks-input-placeholder-text:#959da5;--color-checks-input-focus-text:#959da5;--color-checks-input-bg:#2f363d;--color-checks-input-shadow:none;--color-checks-dropdown-text:#d1d5da;--color-checks-dropdown-bg:#2f363d;--color-checks-dropdown-border:#444d56;--color-checks-dropdown-hover-text:#fafbfc;--color-checks-dropdown-hover-bg:#444d56;--color-checks-dropdown-btn-hover-text:#fafbfc;--color-checks-dropdown-btn-hover-bg:#2f363d;--color-checks-scrollbar-thumb-bg:#586069;--color-checks-header-label-text:#e1e4e8;--color-checks-header-label-open-text:#fafbfc;--color-checks-header-border:#2f363d;--color-checks-header-icon:#959da5;--color-checks-line-text:#e1e4e8;--color-checks-line-num-text:rgba(149,157,165,0.75);--color-checks-line-timestamp-text:#959da5;--color-checks-line-hover-bg:#2f363d;--color-checks-line-selected-bg:rgba(33,136,255,0.15);--color-checks-line-selected-num-text:#79b8ff;--color-checks-line-dt-fm-text:#24292e;--color-checks-line-dt-fm-bg:#ffd33d;--color-checks-gate-bg:rgba(249,197,19,0.15);--color-checks-gate-text:#e1e4e8;--color-checks-gate-waiting-text:#d1d5da;--color-checks-step-header-open-bg:#2f363d;--color-checks-step-error-text:#f97583;--color-checks-step-warning-text:#ffea7f;--color-checks-logline-text:#959da5;--color-checks-logline-num-text:rgba(149,157,165,0.75);--color-checks-logline-debug-text:#b392f0;--color-checks-logline-error-text:#e1e4e8;--color-checks-logline-error-num-text:#f97583;--color-checks-logline-error-bg:rgba(203,36,49,0.15);--color-checks-logline-warning-text:#e1e4e8;--color-checks-logline-warning-num-text:#ffea7f;--color-checks-logline-warning-bg:rgba(249,197,19,0.15);--color-checks-logline-command-text:#79b8ff;--color-checks-logline-section-text:#85e89d;--color-intro-shelf-gradient-left:#f1f8ff;--color-intro-shelf-gradient-right:#dcffe4;--color-intro-shelf-gradient-in:#fff;--color-intro-shelf-gradient-out:hsla(0,0%,100%,0);--color-marketing-icon-primary:#2188ff;--color-marketing-icon-secondary:#79b8ff;--color-prettylights-syntax-comment:#6a737d;--color-prettylights-syntax-constant:#005cc5;--color-prettylights-syntax-entity:#6f42c1;--color-prettylights-syntax-storage-modifier-import:#24292e;--color-prettylights-syntax-entity-tag:#22863a;--color-prettylights-syntax-keyword:#d73a49;--color-prettylights-syntax-string:#032f62;--color-prettylights-syntax-variable:#e36209;--color-prettylights-syntax-brackethighlighter-unmatched:#b31d28;--color-prettylights-syntax-invalid-illegal-text:#fafbfc;--color-prettylights-syntax-invalid-illegal-bg:#b31d28;--color-prettylights-syntax-carriage-return-text:#fafbfc;--color-prettylights-syntax-carriage-return-bg:#d73a49;--color-prettylights-syntax-string-regexp:#22863a;--color-prettylights-syntax-markup-list:#735c0f;--color-prettylights-syntax-markup-heading:#005cc5;--color-prettylights-syntax-markup-italic:#24292e;--color-prettylights-syntax-markup-bold:#24292e;--color-prettylights-syntax-markup-deleted-text:#b31d28;--color-prettylights-syntax-markup-deleted-bg:#ffeef0;--color-prettylights-syntax-markup-inserted-text:#22863a;--color-prettylights-syntax-markup-inserted-bg:#f0fff4;--color-prettylights-syntax-markup-changed-text:#e36209;--color-prettylights-syntax-markup-changed-bg:#ffebda;--color-prettylights-syntax-markup-ignored-text:#f6f8fa;--color-prettylights-syntax-markup-ignored-bg:#005cc5;--color-prettylights-syntax-meta-diff-range:#6f42c1;--color-prettylights-syntax-brackethighlighter-angle:#586069;--color-prettylights-syntax-sublimelinter-gutter-mark:#959da5;--color-prettylights-syntax-constant-other-reference-link:#032f62;--color-codemirror-text:#24292e;--color-codemirror-bg:#fff;--color-codemirror-gutters-bg:#fff;--color-codemirror-guttermarker-text:#fff;--color-codemirror-guttermarker-subtle-text:#d1d5da;--color-codemirror-linenumber-text:#959da5;--color-codemirror-cursor:#24292e;--color-codemirror-selection-bg:#c8e1ff;--color-codemirror-activeline-bg:#fafbfc;--color-codemirror-matchingbracket-text:#24292e;--color-codemirror-lines-bg:#fff;--color-codemirror-syntax-comment:#6a737d;--color-codemirror-syntax-constant:#005cc5;--color-codemirror-syntax-entity:#6f42c1;--color-codemirror-syntax-keyword:#d73a49;--color-codemirror-syntax-storage:#d73a49;--color-codemirror-syntax-string:#032f62;--color-codemirror-syntax-support:#005cc5;--color-codemirror-syntax-variable:#e36209;--color-ansi-black:#24292e;--color-ansi-black-bright:#2f363d;--color-ansi-white:#e1e4e8;--color-ansi-white-bright:#e1e4e8;--color-ansi-gray:#959da5;--color-ansi-red:#f97583;--color-ansi-red-bright:#fdaeb7;--color-ansi-green:#85e89d;--color-ansi-green-bright:#bef5cb;--color-ansi-yellow:#ffea7f;--color-ansi-yellow-bright:#fff5b1;--color-ansi-blue:#79b8ff;--color-ansi-blue-bright:#c8e1ff;--color-ansi-magenta:#b392f0;--color-ansi-magenta-bright:#d1bcf9;--color-ansi-cyan:#76e3ea;--color-ansi-cyan-bright:#b3f0ff}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme=light]{--color-scale-black:#1b1f23;--color-scale-white:#fff;--color-scale-gray-0:#fafbfc;--color-scale-gray-1:#f6f8fa;--color-scale-gray-2:#e1e4e8;--color-scale-gray-3:#d1d5da;--color-scale-gray-4:#959da5;--color-scale-gray-5:#6a737d;--color-scale-gray-6:#586069;--color-scale-gray-7:#444d56;--color-scale-gray-8:#2f363d;--color-scale-gray-9:#24292e;--color-scale-blue-0:#f1f8ff;--color-scale-blue-1:#dbedff;--color-scale-blue-2:#c8e1ff;--color-scale-blue-3:#79b8ff;--color-scale-blue-4:#2188ff;--color-scale-blue-5:#0366d6;--color-scale-blue-6:#005cc5;--color-scale-blue-7:#044289;--color-scale-blue-8:#032f62;--color-scale-blue-9:#05264c;--color-scale-green-0:#f0fff4;--color-scale-green-1:#dcffe4;--color-scale-green-2:#bef5cb;--color-scale-green-3:#85e89d;--color-scale-green-4:#34d058;--color-scale-green-5:#28a745;--color-scale-green-6:#22863a;--color-scale-green-7:#176f2c;--color-scale-green-8:#165c26;--color-scale-green-9:#144620;--color-scale-yellow-0:#fffdef;--color-scale-yellow-1:#fffbdd;--color-scale-yellow-2:#fff5b1;--color-scale-yellow-3:#ffea7f;--color-scale-yellow-4:#ffdf5d;--color-scale-yellow-5:#ffd33d;--color-scale-yellow-6:#f9c513;--color-scale-yellow-7:#dbab09;--color-scale-yellow-8:#b08800;--color-scale-yellow-9:#735c0f;--color-scale-orange-0:#fff8f2;--color-scale-orange-1:#ffebda;--color-scale-orange-2:#ffd1ac;--color-scale-orange-3:#ffab70;--color-scale-orange-4:#fb8532;--color-scale-orange-5:#f66a0a;--color-scale-orange-6:#e36209;--color-scale-orange-7:#d15704;--color-scale-orange-8:#c24e00;--color-scale-orange-9:#a04100;--color-scale-red-0:#ffeef0;--color-scale-red-1:#ffdce0;--color-scale-red-2:#fdaeb7;--color-scale-red-3:#f97583;--color-scale-red-4:#ea4a5a;--color-scale-red-5:#d73a49;--color-scale-red-6:#cb2431;--color-scale-red-7:#b31d28;--color-scale-red-8:#9e1c23;--color-scale-red-9:#86181d;--color-scale-purple-0:#f5f0ff;--color-scale-purple-1:#e6dcfd;--color-scale-purple-2:#d1bcf9;--color-scale-purple-3:#b392f0;--color-scale-purple-4:#8a63d2;--color-scale-purple-5:#6f42c1;--color-scale-purple-6:#5a32a3;--color-scale-purple-7:#4c2889;--color-scale-purple-8:#3a1d6e;--color-scale-purple-9:#29134e;--color-scale-pink-0:#ffeef8;--color-scale-pink-1:#fedbf0;--color-scale-pink-2:#f9b3dd;--color-scale-pink-3:#f692ce;--color-scale-pink-4:#ec6cb9;--color-scale-pink-5:#ea4aaa;--color-scale-pink-6:#d03592;--color-scale-pink-7:#b93a86;--color-scale-pink-8:#99306f;--color-scale-pink-9:#6d224f;--color-auto-black:#1b1f23;--color-auto-white:#fff;--color-auto-gray-0:#fafbfc;--color-auto-gray-1:#f6f8fa;--color-auto-gray-2:#e1e4e8;--color-auto-gray-3:#d1d5da;--color-auto-gray-4:#959da5;--color-auto-gray-5:#6a737d;--color-auto-gray-6:#586069;--color-auto-gray-7:#444d56;--color-auto-gray-8:#2f363d;--color-auto-gray-9:#24292e;--color-auto-blue-0:#f1f8ff;--color-auto-blue-1:#dbedff;--color-auto-blue-2:#c8e1ff;--color-auto-blue-3:#79b8ff;--color-auto-blue-4:#2188ff;--color-auto-blue-5:#0366d6;--color-auto-blue-6:#005cc5;--color-auto-blue-7:#044289;--color-auto-blue-8:#032f62;--color-auto-blue-9:#05264c;--color-auto-green-0:#f0fff4;--color-auto-green-1:#dcffe4;--color-auto-green-2:#bef5cb;--color-auto-green-3:#85e89d;--color-auto-green-4:#34d058;--color-auto-green-5:#28a745;--color-auto-green-6:#22863a;--color-auto-green-7:#176f2c;--color-auto-green-8:#165c26;--color-auto-green-9:#144620;--color-auto-yellow-0:#fffdef;--color-auto-yellow-1:#fffbdd;--color-auto-yellow-2:#fff5b1;--color-auto-yellow-3:#ffea7f;--color-auto-yellow-4:#ffdf5d;--color-auto-yellow-5:#ffd33d;--color-auto-yellow-6:#f9c513;--color-auto-yellow-7:#dbab09;--color-auto-yellow-8:#b08800;--color-auto-yellow-9:#735c0f;--color-auto-orange-0:#fff8f2;--color-auto-orange-1:#ffebda;--color-auto-orange-2:#ffd1ac;--color-auto-orange-3:#ffab70;--color-auto-orange-4:#fb8532;--color-auto-orange-5:#f66a0a;--color-auto-orange-6:#e36209;--color-auto-orange-7:#d15704;--color-auto-orange-8:#c24e00;--color-auto-orange-9:#a04100;--color-auto-red-0:#ffeef0;--color-auto-red-1:#ffdce0;--color-auto-red-2:#fdaeb7;--color-auto-red-3:#f97583;--color-auto-red-4:#ea4a5a;--color-auto-red-5:#d73a49;--color-auto-red-6:#cb2431;--color-auto-red-7:#b31d28;--color-auto-red-8:#9e1c23;--color-auto-red-9:#86181d;--color-auto-purple-0:#f5f0ff;--color-auto-purple-1:#e6dcfd;--color-auto-purple-2:#d1bcf9;--color-auto-purple-3:#b392f0;--color-auto-purple-4:#8a63d2;--color-auto-purple-5:#6f42c1;--color-auto-purple-6:#5a32a3;--color-auto-purple-7:#4c2889;--color-auto-purple-8:#3a1d6e;--color-auto-purple-9:#29134e;--color-auto-pink-0:#ffeef8;--color-auto-pink-1:#fedbf0;--color-auto-pink-2:#f9b3dd;--color-auto-pink-3:#f692ce;--color-auto-pink-4:#ec6cb9;--color-auto-pink-5:#ea4aaa;--color-auto-pink-6:#d03592;--color-auto-pink-7:#b93a86;--color-auto-pink-8:#99306f;--color-auto-pink-9:#6d224f;--color-text-primary:#24292e;--color-text-secondary:#586069;--color-text-tertiary:#6a737d;--color-text-placeholder:#6a737d;--color-text-disabled:#959da5;--color-text-inverse:#fff;--color-text-link:#0366d6;--color-text-danger:#cb2431;--color-text-success:#22863a;--color-text-warning:#b08800;--color-text-white:#fff;--color-icon-primary:#24292e;--color-icon-secondary:#586069;--color-icon-tertiary:#959da5;--color-icon-info:#0366d6;--color-icon-danger:#d73a49;--color-icon-success:#22863a;--color-icon-warning:#b08800;--color-border-primary:#e1e4e8;--color-border-secondary:#eaecef;--color-border-tertiary:#d1d5da;--color-border-overlay:#e1e4e8;--color-border-inverse:#fff;--color-border-info:#0366d6;--color-border-danger:#d73a49;--color-border-success:#34d058;--color-border-warning:#f9c513;--color-bg-canvas:#fff;--color-bg-canvas-mobile:#fff;--color-bg-canvas-inverse:#24292e;--color-bg-canvas-inset:#f6f8fa;--color-bg-primary:#fff;--color-bg-secondary:#fafbfc;--color-bg-tertiary:#f6f8fa;--color-bg-overlay:#fff;--color-bg-backdrop:rgba(27,31,35,0.5);--color-bg-info:#f1f8ff;--color-bg-info-inverse:#0366d6;--color-bg-danger:#ffeef0;--color-bg-danger-inverse:#d73a49;--color-bg-success:#dcffe4;--color-bg-success-inverse:#28a745;--color-bg-warning:#fff5b1;--color-bg-warning-inverse:#ffd33d;--color-shadow-small:0 1px 0 rgba(27,31,35,0.04);--color-shadow-medium:0 3px 6px rgba(149,157,165,0.15);--color-shadow-large:0 8px 24px rgba(149,157,165,0.2);--color-shadow-extra-large:0 12px 48px rgba(149,157,165,0.3);--color-shadow-highlight:inset 0 1px 0 hsla(0,0%,100%,0.25);--color-shadow-inset:inset 0 1px 0 rgba(225,228,232,0.2);--color-state-hover-primary-bg:#0366d6;--color-state-hover-primary-border:#0366d6;--color-state-hover-primary-text:#fff;--color-state-hover-primary-icon:#fff;--color-state-hover-secondary-bg:#f6f8fa;--color-state-hover-secondary-border:#f6f8fa;--color-state-selected-primary-bg:#0366d6;--color-state-selected-primary-border:#0366d6;--color-state-selected-primary-text:#fff;--color-state-selected-primary-icon:#fff;--color-state-focus-border:#0366d6;--color-state-focus-shadow:0 0 0 3px rgba(3,102,214,0.3);--color-fade-fg-10:rgba(27,31,35,0.1);--color-fade-fg-15:rgba(27,31,35,0.15);--color-fade-fg-30:rgba(27,31,35,0.3);--color-fade-fg-50:rgba(27,31,35,0.5);--color-fade-fg-70:rgba(27,31,35,0.7);--color-fade-fg-85:rgba(27,31,35,0.85);--color-fade-black-10:rgba(27,31,35,0.1);--color-fade-black-15:rgba(27,31,35,0.15);--color-fade-black-30:rgba(27,31,35,0.3);--color-fade-black-50:rgba(27,31,35,0.5);--color-fade-black-70:rgba(27,31,35,0.7);--color-fade-black-85:rgba(27,31,35,0.85);--color-fade-white-10:hsla(0,0%,100%,0.1);--color-fade-white-15:hsla(0,0%,100%,0.15);--color-fade-white-30:hsla(0,0%,100%,0.3);--color-fade-white-50:hsla(0,0%,100%,0.5);--color-fade-white-70:hsla(0,0%,100%,0.7);--color-fade-white-85:hsla(0,0%,100%,0.85);--color-alert-info-text:#24292e;--color-alert-info-icon:rgba(4,66,137,0.6);--color-alert-info-bg:#dbedff;--color-alert-info-border:rgba(4,66,137,0.2);--color-alert-warn-text:#24292e;--color-alert-warn-icon:#b08800;--color-alert-warn-bg:#fffbdd;--color-alert-warn-border:rgba(176,136,0,0.2);--color-alert-error-text:#24292e;--color-alert-error-icon:rgba(158,28,35,0.6);--color-alert-error-bg:#ffe3e6;--color-alert-error-border:rgba(158,28,35,0.2);--color-alert-success-text:#24292e;--color-alert-success-icon:rgba(23,111,44,0.8);--color-alert-success-bg:#dcffe4;--color-alert-success-border:rgba(23,111,44,0.2);--color-autocomplete-shadow:0 3px 6px rgba(149,157,165,0.15);--color-autocomplete-row-border:#eaecef;--color-blankslate-icon:#a3aab1;--color-btn-text:#24292e;--color-btn-bg:#fafbfc;--color-btn-border:rgba(27,31,35,0.15);--color-btn-shadow:0 1px 0 rgba(27,31,35,0.04);--color-btn-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.25);--color-btn-hover-bg:#f3f4f6;--color-btn-hover-border:rgba(27,31,35,0.15);--color-btn-selected-bg:#edeff2;--color-btn-focus-bg:#fafbfc;--color-btn-focus-border:rgba(27,31,35,0.15);--color-btn-focus-shadow:0 0 0 3px rgba(3,102,214,0.3);--color-btn-shadow-active:inset 0 0.15em 0.3em rgba(27,31,35,0.15);--color-btn-shadow-input-focus:0 0 0 0.2em rgba(3,102,214,0.3);--color-btn-primary-text:#fff;--color-btn-primary-bg:#2ea44f;--color-btn-primary-border:rgba(27,31,35,0.15);--color-btn-primary-shadow:0 1px 0 rgba(27,31,35,0.1);--color-btn-primary-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.03);--color-btn-primary-hover-bg:#2c974b;--color-btn-primary-hover-border:rgba(27,31,35,0.15);--color-btn-primary-selected-bg:#2a8f47;--color-btn-primary-selected-shadow:inset 0 1px 0 rgba(20,70,32,0.2);--color-btn-primary-disabled-text:hsla(0,0%,100%,0.8);--color-btn-primary-disabled-bg:#94d3a2;--color-btn-primary-disabled-border:rgba(27,31,35,0.1);--color-btn-primary-focus-bg:#2ea44f;--color-btn-primary-focus-border:rgba(27,31,35,0.15);--color-btn-primary-focus-shadow:0 0 0 3px rgba(46,164,79,0.4);--color-btn-primary-icon:hsla(0,0%,100%,0.8);--color-btn-primary-counter-bg:hsla(0,0%,100%,0.2);--color-btn-outline-text:#0366d6;--color-btn-outline-hover-text:#fff;--color-btn-outline-hover-bg:#0366d6;--color-btn-outline-hover-border:rgba(27,31,35,0.15);--color-btn-outline-hover-shadow:0 1px 0 rgba(27,31,35,0.1);--color-btn-outline-hover-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.03);--color-btn-outline-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-outline-selected-text:#fff;--color-btn-outline-selected-bg:#035fc7;--color-btn-outline-selected-border:rgba(27,31,35,0.15);--color-btn-outline-selected-shadow:inset 0 1px 0 rgba(5,38,76,0.2);--color-btn-outline-disabled-text:rgba(3,102,214,0.5);--color-btn-outline-disabled-bg:#fafbfc;--color-btn-outline-disabled-counter-bg:rgba(3,102,214,0.05);--color-btn-outline-focus-border:rgba(27,31,35,0.15);--color-btn-outline-focus-shadow:0 0 0 3px rgba(0,92,197,0.4);--color-btn-outline-counter-bg:rgba(3,102,214,0.1);--color-btn-danger-text:#d73a49;--color-btn-danger-hover-text:#fff;--color-btn-danger-hover-bg:#cb2431;--color-btn-danger-hover-border:rgba(27,31,35,0.15);--color-btn-danger-hover-shadow:0 1px 0 rgba(27,31,35,0.1);--color-btn-danger-hover-inset-shadow:inset 0 1px 0 hsla(0,0%,100%,0.03);--color-btn-danger-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-danger-selected-text:#fff;--color-btn-danger-selected-bg:#d42d3d;--color-btn-danger-selected-border:rgba(27,31,35,0.15);--color-btn-danger-selected-shadow:inset 0 1px 0 rgba(134,24,29,0.2);--color-btn-danger-disabled-text:rgba(215,58,73,0.5);--color-btn-danger-disabled-bg:#fafbfc;--color-btn-danger-disabled-counter-bg:rgba(215,58,73,0.05);--color-btn-danger-focus-border:rgba(27,31,35,0.15);--color-btn-danger-focus-shadow:0 0 0 3px rgba(203,36,49,0.4);--color-btn-danger-counter-bg:rgba(215,58,73,0.1);--color-btn-danger-icon:#d73a49;--color-btn-danger-hover-icon:#fff;--color-btn-counter-bg:rgba(27,31,35,0.08);--color-counter-text:#24292e;--color-counter-bg:rgba(209,213,218,0.5);--color-counter-primary-text:#fff;--color-counter-primary-bg:#6a737d;--color-counter-secondary-text:#6a737d;--color-dropdown-shadow:0 8px 24px rgba(149,157,165,0.2);--color-label-border:#e1e4e8;--color-label-primary-text:#24292e;--color-label-primary-border:#6a737d;--color-label-secondary-text:#586069;--color-label-secondary-border:#e1e4e8;--color-label-info-text:#0366d6;--color-label-info-border:#0366d6;--color-label-success-text:#22863a;--color-label-success-border:#28a745;--color-label-warning-text:#735c0f;--color-label-warning-border:#b08800;--color-label-danger-text:#d73a49;--color-label-danger-border:#cb2431;--color-label-orange-text:#c24e00;--color-label-orange-border:#f66a0a;--color-input-bg:#fff;--color-input-contrast-bg:#fafbfc;--color-input-border:#e1e4e8;--color-input-shadow:inset 0 1px 2px rgba(27,31,35,0.075);--color-input-disabled-bg:#fff;--color-input-disabled-border:#e1e4e8;--color-input-warning-border:#f9c513;--color-input-error-border:#cb2431;--color-input-tooltip-success-text:#144620;--color-input-tooltip-success-bg:#dcffe4;--color-input-tooltip-success-border:#34d058;--color-input-tooltip-warning-text:#735c0f;--color-input-tooltip-warning-bg:#fff5b1;--color-input-tooltip-warning-border:#f9c513;--color-input-tooltip-error-text:#86181d;--color-input-tooltip-error-bg:#ffeef0;--color-input-tooltip-error-border:#f97583;--color-avatar-bg:#fff;--color-avatar-border:transparent;--color-avatar-stack-fade:#d1d5da;--color-avatar-stack-fade-more:#e1e4e8;--color-avatar-child-shadow:-2px -2px 0 hsla(0,0%,100%,0.8);--color-toast-text:#24292e;--color-toast-bg:#fff;--color-toast-border:#e1e4e8;--color-toast-shadow:0 8px 24px rgba(149,157,165,0.2);--color-toast-icon:#fff;--color-toast-icon-bg:#0366d6;--color-toast-icon-border:transparent;--color-toast-success-text:#24292e;--color-toast-success-border:#e1e4e8;--color-toast-success-icon:#fff;--color-toast-success-icon-bg:#28a745;--color-toast-success-icon-border:transparent;--color-toast-warning-text:#24292e;--color-toast-warning-border:#e1e4e8;--color-toast-warning-icon:#24292e;--color-toast-warning-icon-bg:#ffd33d;--color-toast-warning-icon-border:transparent;--color-toast-danger-text:#24292e;--color-toast-danger-border:#e1e4e8;--color-toast-danger-icon:#fff;--color-toast-danger-icon-bg:#d73a49;--color-toast-danger-icon-border:transparent;--color-toast-loading-text:#24292e;--color-toast-loading-border:#e1e4e8;--color-toast-loading-icon:#fff;--color-toast-loading-icon-bg:#586069;--color-toast-loading-icon-border:transparent;--color-timeline-text:#444d56;--color-timeline-badge-bg:#e1e4e8;--color-timeline-target-badge-border:#2188ff;--color-timeline-target-badge-shadow:#c8e1ff;--color-select-menu-border-secondary:#eaecef;--color-select-menu-shadow:0 0 18px rgba(27,31,35,0.4);--color-select-menu-backdrop-bg:rgba(27,31,35,0.5);--color-select-menu-backdrop-border:transparent;--color-select-menu-tap-highlight:rgba(209,213,218,0.5);--color-select-menu-tap-focus-bg:#dbedff;--color-box-blue-border:#c8e1ff;--color-box-row-yellow-bg:#fffbdd;--color-box-row-blue-bg:#f1f8ff;--color-box-header-blue-bg:#f1f8ff;--color-box-header-blue-border:#c8e1ff;--color-box-border-info:rgba(3,102,214,0.2);--color-box-bg-info:#f1f8ff;--color-box-border-warning:rgba(255,211,61,0.4);--color-box-bg-warning:#fffdef;--color-branch-name-text:#586069;--color-branch-name-icon:#a8bbd0;--color-branch-name-bg:#eaf5ff;--color-branch-name-link-text:#0366d6;--color-branch-name-link-icon:#a8bbd0;--color-branch-name-link-bg:#eaf5ff;--color-markdown-code-bg:rgba(27,31,35,0.05);--color-markdown-frame-border:#dfe2e5;--color-markdown-blockquote-border:#dfe2e5;--color-markdown-table-border:#dfe2e5;--color-markdown-table-tr-border:#c6cbd1;--color-menu-heading-text:#24292e;--color-menu-border-active:#f9826c;--color-menu-bg-active:transparent;--color-sidenav-selected-bg:#fff;--color-sidenav-border-active:#f9826c;--color-header-text:hsla(0,0%,100%,0.7);--color-header-bg:#24292e;--color-header-logo:#fff;--color-filter-item-bar-bg:#eff3f6;--color-hidden-text-expander-bg:#dfe2e5;--color-hidden-text-expander-bg-hover:#c6cbd1;--color-drag-and-drop-border:#c3c8cf;--color-upload-enabled-border:#dfe2e5;--color-upload-enabled-border-focused:#4a9eff;--color-previewable-comment-form-border:#c3c8cf;--color-underlinenav-border:rgba(209,213,218,0);--color-underlinenav-border-hover:#d1d5da;--color-underlinenav-border-active:#f9826c;--color-underlinenav-text:#24292e;--color-underlinenav-text-hover:#24292e;--color-underlinenav-text-active:#24292e;--color-underlinenav-icon:#959da5;--color-underlinenav-icon-hover:#959da5;--color-underlinenav-icon-active:#24292e;--color-underlinenav-counter-text:#24292e;--color-verified-badge-text:#22863a;--color-verified-badge-bg:#fff;--color-verified-badge-border:#e1e4e8;--color-social-count-bg:#fff;--color-tooltip-text:#fff;--color-tooltip-bg:#24292e;--color-header-search-bg:#24292e;--color-header-search-border:#444d56;--color-search-keyword-hl:#fffbdd;--color-diffstat-neutral-bg:#d1d5da;--color-diffstat-neutral-border:#d1d5da;--color-diffstat-deletion-bg:#d73a49;--color-diffstat-deletion-border:#d73a49;--color-diffstat-addition-bg:#28a745;--color-diffstat-addition-border:#28a745;--color-mktg-success:#2ebc4f;--color-mktg-info:#1074e7;--color-mktg-bg-shade-gradient-top:rgba(27,31,35,0.065);--color-mktg-bg-shade-gradient-bottom:rgba(27,31,35,0);--color-mktg-btn-bg:#3076df;--color-mktg-btn-border:#3076df;--color-mktg-btn-text:#fff;--color-mktg-btn-icon:#fff;--color-mktg-btn-focus-shadow:0 0 0 3px rgba(48,118,223,0.3);--color-mktg-btn-hover-bg:#0366d6;--color-mktg-btn-hover-border:#0366d6;--color-mktg-btn-disabled-bg:rgba(48,118,223,0.5);--color-mktg-btn-disabled-border:transparent;--color-mktg-btn-disabled-text:#fff;--color-mktg-btn-disabled-icon:#fff;--color-mktg-btn-primary-bg:#5eb85c;--color-mktg-btn-primary-border:#5eb85c;--color-mktg-btn-primary-text:#fff;--color-mktg-btn-primary-icon:#fff;--color-mktg-btn-primary-focus-shadow:0 0 0 3px rgba(94,184,92,0.3);--color-mktg-btn-primary-hover-bg:#28a745;--color-mktg-btn-primary-hover-border:#28a745;--color-mktg-btn-primary-disabled-bg:rgba(94,184,92,0.5);--color-mktg-btn-primary-disabled-border:transparent;--color-mktg-btn-primary-disabled-text:#fff;--color-mktg-btn-primary-disabled-icon:#fff;--color-mktg-btn-outline-bg:transparent;--color-mktg-btn-outline-border:rgba(42,103,195,0.5);--color-mktg-btn-outline-text:#3076df;--color-mktg-btn-outline-icon:#3076df;--color-mktg-btn-outline-focus-shadow:0 0 0 3px rgba(42,103,195,0.3);--color-mktg-btn-outline-hover-bg:transparent;--color-mktg-btn-outline-hover-border:#0366d6;--color-mktg-btn-outline-hover-text:#0366d6;--color-mktg-btn-outline-hover-icon:#0366d6;--color-mktg-btn-outline-disabled-bg:transparent;--color-mktg-btn-outline-disabled-border:rgba(42,103,195,0.2);--color-mktg-btn-outline-disabled-text:rgba(48,118,223,0.5);--color-mktg-btn-outline-disabled-icon:rgba(48,118,223,0.5);--color-mktg-btn-dark-bg:transparent;--color-mktg-btn-dark-border:hsla(0,0%,100%,0.5);--color-mktg-btn-dark-text:#fff;--color-mktg-btn-dark-icon:#fff;--color-mktg-btn-dark-focus-shadow:0 0 0 3px hsla(0,0%,100%,0.3);--color-mktg-btn-dark-hover-bg:#fff;--color-mktg-btn-dark-hover-border:#fff;--color-mktg-btn-dark-hover-text:#444d56;--color-mktg-btn-dark-hover-icon:#444d56;--color-mktg-btn-dark-disabled-bg:transparent;--color-mktg-btn-dark-disabled-border:hsla(0,0%,100%,0.2);--color-mktg-btn-dark-disabled-text:hsla(0,0%,100%,0.5);--color-mktg-btn-dark-disabled-icon:hsla(0,0%,100%,0.5);--color-files-explorer-icon:#79b8ff;--color-hl-author-bg:#f1f8ff;--color-hl-author-border:#c8e1ff;--color-logo-subdued:#d1d5da;--color-discussion-border:#a2cbac;--color-discussion-bg-success:#28a745;--color-actions-workflow-table-sticky-bg:hsla(0,0%,100%,0.95);--color-repo-language-color-border:rgba(27,31,35,0.1);--color-code-selection-bg:#c8e1ff;--color-highlight-text:#442c12;--color-highlight-bg:#fff0bb;--color-blob-line-highlight-bg:#fffbdd;--color-blob-line-highlight-border:transparent;--color-diff-addition-text:#22863a;--color-diff-addition-bg:#e6ffed;--color-diff-addition-border:#34d058;--color-diff-deletion-text:#cb2431;--color-diff-deletion-bg:#ffeef0;--color-diff-deletion-border:#d73a49;--color-diff-change-text:#b08800;--color-diff-change-bg:#fff5b1;--color-diff-change-border:#f9c513;--color-diff-blob-num-text:rgba(27,31,35,0.3);--color-diff-blob-num-hover-text:rgba(27,31,35,0.6);--color-diff-blob-addition-num-text:rgba(27,31,35,0.3);--color-diff-blob-addition-num-hover-text:rgba(27,31,35,0.6);--color-diff-blob-addition-num-bg:#cdffd8;--color-diff-blob-addition-line-bg:#e6ffed;--color-diff-blob-addition-word-bg:#acf2bd;--color-diff-blob-deletion-num-text:rgba(27,31,35,0.3);--color-diff-blob-deletion-num-hover-text:rgba(27,31,35,0.6);--color-diff-blob-deletion-num-bg:#ffdce0;--color-diff-blob-deletion-line-bg:#ffeef0;--color-diff-blob-deletion-word-bg:#fdb8c0;--color-diff-blob-hunk-text:rgba(27,31,35,0.7);--color-diff-blob-hunk-num-bg:#dbedff;--color-diff-blob-hunk-line-bg:#f1f8ff;--color-diff-blob-empty-block-bg:#fafbfc;--color-diff-blob-selected-line-highlight-bg:rgba(255,223,93,0.2);--color-diff-blob-selected-line-highlight-border:#ffd33d;--color-diff-blob-selected-line-highlight-mix-blend-mode:multiply;--color-diff-blob-expander-icon:#586069;--color-diff-blob-expander-hover-icon:#fff;--color-diff-blob-expander-hover-bg:#0366d6;--color-diff-blob-comment-button-icon:#fff;--color-diff-blob-comment-button-bg:#0366d6;--color-diff-blob-comment-button-gradient-bg:#0372ef;--color-global-nav-logo:#fff;--color-global-nav-bg:#24292e;--color-global-nav-text:#fff;--color-global-nav-icon:#fff;--color-global-nav-input-bg:#fafbfc;--color-global-nav-input-border:#fafbfc;--color-global-nav-input-icon:#d1d5da;--color-global-nav-input-placeholder:#959da5;--color-calendar-graph-day-bg:#ebedf0;--color-calendar-graph-day-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-bg:#9be9a8;--color-calendar-graph-day-L2-bg:#40c463;--color-calendar-graph-day-L3-bg:#30a14e;--color-calendar-graph-day-L4-bg:#216e39;--color-calendar-graph-day-L4-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L3-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L2-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-border:rgba(27,31,35,0.06);--color-footer-invertocat-octicon:#d1d5da;--color-footer-invertocat-octicon-hover:#6a737d;--color-pr-state-draft-text:#fff;--color-pr-state-draft-bg:#6a737d;--color-pr-state-draft-border:transparent;--color-pr-state-open-text:#fff;--color-pr-state-open-bg:#28a745;--color-pr-state-open-border:transparent;--color-pr-state-merged-text:#fff;--color-pr-state-merged-bg:#6f42c1;--color-pr-state-merged-border:transparent;--color-pr-state-closed-text:#fff;--color-pr-state-closed-bg:#d73a49;--color-pr-state-closed-border:transparent;--color-topic-tag-text:#0366d6;--color-topic-tag-bg:#f1f8ff;--color-topic-tag-hover-bg:#def;--color-topic-tag-active-bg:#e7f3ff;--color-merge-box-success-icon-bg:#28a745;--color-merge-box-success-icon-text:#fff;--color-merge-box-success-icon-border:transparent;--color-merge-box-success-indicator-bg:#28a745;--color-merge-box-success-indicator-border:transparent;--color-merge-box-merged-icon-bg:#6f42c1;--color-merge-box-merged-icon-text:#fff;--color-merge-box-merged-icon-border:transparent;--color-merge-box-merged-box-border:#6f42c1;--color-merge-box-neutral-icon-bg:#6a737d;--color-merge-box-neutral-icon-text:#fff;--color-merge-box-neutral-icon-border:transparent;--color-merge-box-neutral-indicator-bg:#6a737d;--color-merge-box-neutral-indicator-border:transparent;--color-merge-box-warning-icon-bg:#dbab09;--color-merge-box-warning-icon-text:#fff;--color-merge-box-warning-icon-border:transparent;--color-merge-box-warning-box-border:#ffd33d;--color-merge-box-warning-merge-highlight:transparent;--color-merge-box-error-icon-bg:#d73a49;--color-merge-box-error-icon-text:#fff;--color-merge-box-error-icon-border:transparent;--color-merge-box-error-indicator-bg:#d73a49;--color-merge-box-error-indicator-border:transparent;--color-project-card-bg:#fff;--color-project-header-bg:#24292e;--color-project-sidebar-bg:#fff;--color-project-gradient-in:#fff;--color-project-gradient-out:hsla(0,0%,100%,0);--color-checks-bg:#24292e;--color-checks-run-border-width:0px;--color-checks-container-border-width:0px;--color-checks-text-primary:#fafbfc;--color-checks-text-secondary:#959da5;--color-checks-text-link:#79b8ff;--color-checks-btn-icon:#d1d5da;--color-checks-btn-hover-icon:#fafbfc;--color-checks-btn-hover-bg:hsla(0,0%,100%,0.125);--color-checks-input-text:#f6f8fa;--color-checks-input-placeholder-text:#959da5;--color-checks-input-focus-text:#959da5;--color-checks-input-bg:#2f363d;--color-checks-input-shadow:none;--color-checks-dropdown-text:#d1d5da;--color-checks-dropdown-bg:#2f363d;--color-checks-dropdown-border:#444d56;--color-checks-dropdown-hover-text:#fafbfc;--color-checks-dropdown-hover-bg:#444d56;--color-checks-dropdown-btn-hover-text:#fafbfc;--color-checks-dropdown-btn-hover-bg:#2f363d;--color-checks-scrollbar-thumb-bg:#586069;--color-checks-header-label-text:#e1e4e8;--color-checks-header-label-open-text:#fafbfc;--color-checks-header-border:#2f363d;--color-checks-header-icon:#959da5;--color-checks-line-text:#e1e4e8;--color-checks-line-num-text:rgba(149,157,165,0.75);--color-checks-line-timestamp-text:#959da5;--color-checks-line-hover-bg:#2f363d;--color-checks-line-selected-bg:rgba(33,136,255,0.15);--color-checks-line-selected-num-text:#79b8ff;--color-checks-line-dt-fm-text:#24292e;--color-checks-line-dt-fm-bg:#ffd33d;--color-checks-gate-bg:rgba(249,197,19,0.15);--color-checks-gate-text:#e1e4e8;--color-checks-gate-waiting-text:#d1d5da;--color-checks-step-header-open-bg:#2f363d;--color-checks-step-error-text:#f97583;--color-checks-step-warning-text:#ffea7f;--color-checks-logline-text:#959da5;--color-checks-logline-num-text:rgba(149,157,165,0.75);--color-checks-logline-debug-text:#b392f0;--color-checks-logline-error-text:#e1e4e8;--color-checks-logline-error-num-text:#f97583;--color-checks-logline-error-bg:rgba(203,36,49,0.15);--color-checks-logline-warning-text:#e1e4e8;--color-checks-logline-warning-num-text:#ffea7f;--color-checks-logline-warning-bg:rgba(249,197,19,0.15);--color-checks-logline-command-text:#79b8ff;--color-checks-logline-section-text:#85e89d;--color-intro-shelf-gradient-left:#f1f8ff;--color-intro-shelf-gradient-right:#dcffe4;--color-intro-shelf-gradient-in:#fff;--color-intro-shelf-gradient-out:hsla(0,0%,100%,0);--color-marketing-icon-primary:#2188ff;--color-marketing-icon-secondary:#79b8ff;--color-prettylights-syntax-comment:#6a737d;--color-prettylights-syntax-constant:#005cc5;--color-prettylights-syntax-entity:#6f42c1;--color-prettylights-syntax-storage-modifier-import:#24292e;--color-prettylights-syntax-entity-tag:#22863a;--color-prettylights-syntax-keyword:#d73a49;--color-prettylights-syntax-string:#032f62;--color-prettylights-syntax-variable:#e36209;--color-prettylights-syntax-brackethighlighter-unmatched:#b31d28;--color-prettylights-syntax-invalid-illegal-text:#fafbfc;--color-prettylights-syntax-invalid-illegal-bg:#b31d28;--color-prettylights-syntax-carriage-return-text:#fafbfc;--color-prettylights-syntax-carriage-return-bg:#d73a49;--color-prettylights-syntax-string-regexp:#22863a;--color-prettylights-syntax-markup-list:#735c0f;--color-prettylights-syntax-markup-heading:#005cc5;--color-prettylights-syntax-markup-italic:#24292e;--color-prettylights-syntax-markup-bold:#24292e;--color-prettylights-syntax-markup-deleted-text:#b31d28;--color-prettylights-syntax-markup-deleted-bg:#ffeef0;--color-prettylights-syntax-markup-inserted-text:#22863a;--color-prettylights-syntax-markup-inserted-bg:#f0fff4;--color-prettylights-syntax-markup-changed-text:#e36209;--color-prettylights-syntax-markup-changed-bg:#ffebda;--color-prettylights-syntax-markup-ignored-text:#f6f8fa;--color-prettylights-syntax-markup-ignored-bg:#005cc5;--color-prettylights-syntax-meta-diff-range:#6f42c1;--color-prettylights-syntax-brackethighlighter-angle:#586069;--color-prettylights-syntax-sublimelinter-gutter-mark:#959da5;--color-prettylights-syntax-constant-other-reference-link:#032f62;--color-codemirror-text:#24292e;--color-codemirror-bg:#fff;--color-codemirror-gutters-bg:#fff;--color-codemirror-guttermarker-text:#fff;--color-codemirror-guttermarker-subtle-text:#d1d5da;--color-codemirror-linenumber-text:#959da5;--color-codemirror-cursor:#24292e;--color-codemirror-selection-bg:#c8e1ff;--color-codemirror-activeline-bg:#fafbfc;--color-codemirror-matchingbracket-text:#24292e;--color-codemirror-lines-bg:#fff;--color-codemirror-syntax-comment:#6a737d;--color-codemirror-syntax-constant:#005cc5;--color-codemirror-syntax-entity:#6f42c1;--color-codemirror-syntax-keyword:#d73a49;--color-codemirror-syntax-storage:#d73a49;--color-codemirror-syntax-string:#032f62;--color-codemirror-syntax-support:#005cc5;--color-codemirror-syntax-variable:#e36209;--color-ansi-black:#24292e;--color-ansi-black-bright:#2f363d;--color-ansi-white:#e1e4e8;--color-ansi-white-bright:#e1e4e8;--color-ansi-gray:#959da5;--color-ansi-red:#f97583;--color-ansi-red-bright:#fdaeb7;--color-ansi-green:#85e89d;--color-ansi-green-bright:#bef5cb;--color-ansi-yellow:#ffea7f;--color-ansi-yellow-bright:#fff5b1;--color-ansi-blue:#79b8ff;--color-ansi-blue-bright:#c8e1ff;--color-ansi-magenta:#b392f0;--color-ansi-magenta-bright:#d1bcf9;--color-ansi-cyan:#76e3ea;--color-ansi-cyan-bright:#b3f0ff}}[data-color-mode=dark][data-dark-theme=dark]{--color-scale-black:#010409;--color-scale-white:#f0f6fc;--color-scale-gray-0:#f0f6fc;--color-scale-gray-1:#c9d1d9;--color-scale-gray-2:#b1bac4;--color-scale-gray-3:#8b949e;--color-scale-gray-4:#6e7681;--color-scale-gray-5:#484f58;--color-scale-gray-6:#30363d;--color-scale-gray-7:#21262d;--color-scale-gray-8:#161b22;--color-scale-gray-9:#0d1117;--color-scale-blue-0:#cae8ff;--color-scale-blue-1:#a5d6ff;--color-scale-blue-2:#79c0ff;--color-scale-blue-3:#58a6ff;--color-scale-blue-4:#388bfd;--color-scale-blue-5:#1f6feb;--color-scale-blue-6:#1158c7;--color-scale-blue-7:#0d419d;--color-scale-blue-8:#0c2d6b;--color-scale-blue-9:#051d4d;--color-scale-green-0:#aff5b4;--color-scale-green-1:#7ee787;--color-scale-green-2:#56d364;--color-scale-green-3:#3fb950;--color-scale-green-4:#2ea043;--color-scale-green-5:#238636;--color-scale-green-6:#196c2e;--color-scale-green-7:#0f5323;--color-scale-green-8:#033a16;--color-scale-green-9:#04260f;--color-scale-yellow-0:#f8e3a1;--color-scale-yellow-1:#f2cc60;--color-scale-yellow-2:#e3b341;--color-scale-yellow-3:#d29922;--color-scale-yellow-4:#bb8009;--color-scale-yellow-5:#9e6a03;--color-scale-yellow-6:#845306;--color-scale-yellow-7:#693e00;--color-scale-yellow-8:#4b2900;--color-scale-yellow-9:#341a00;--color-scale-orange-0:#ffdfb6;--color-scale-orange-1:#ffc680;--color-scale-orange-2:#ffa657;--color-scale-orange-3:#f0883e;--color-scale-orange-4:#db6d28;--color-scale-orange-5:#bd561d;--color-scale-orange-6:#9b4215;--color-scale-orange-7:#762d0a;--color-scale-orange-8:#5a1e02;--color-scale-orange-9:#3d1300;--color-scale-red-0:#ffdcd7;--color-scale-red-1:#ffc1ba;--color-scale-red-2:#ffa198;--color-scale-red-3:#ff7b72;--color-scale-red-4:#f85149;--color-scale-red-5:#da3633;--color-scale-red-6:#b62324;--color-scale-red-7:#8e1519;--color-scale-red-8:#67060c;--color-scale-red-9:#490202;--color-scale-purple-0:#eddeff;--color-scale-purple-1:#e2c5ff;--color-scale-purple-2:#d2a8ff;--color-scale-purple-3:#bc8cff;--color-scale-purple-4:#a371f7;--color-scale-purple-5:#8957e5;--color-scale-purple-6:#6e40c9;--color-scale-purple-7:#553098;--color-scale-purple-8:#3c1e70;--color-scale-purple-9:#271052;--color-scale-pink-0:#ffdaec;--color-scale-pink-1:#ffbedd;--color-scale-pink-2:#ff9bce;--color-scale-pink-3:#f778ba;--color-scale-pink-4:#db61a2;--color-scale-pink-5:#bf4b8a;--color-scale-pink-6:#9e3670;--color-scale-pink-7:#7d2457;--color-scale-pink-8:#5e103e;--color-scale-pink-9:#42062a;--color-auto-black:#f0f6fc;--color-auto-white:#010409;--color-auto-gray-0:#0d1117;--color-auto-gray-1:#161b22;--color-auto-gray-2:#21262d;--color-auto-gray-3:#30363d;--color-auto-gray-4:#484f58;--color-auto-gray-5:#6e7681;--color-auto-gray-6:#8b949e;--color-auto-gray-7:#b1bac4;--color-auto-gray-8:#c9d1d9;--color-auto-gray-9:#f0f6fc;--color-auto-blue-0:#051d4d;--color-auto-blue-1:#0c2d6b;--color-auto-blue-2:#0d419d;--color-auto-blue-3:#1158c7;--color-auto-blue-4:#1f6feb;--color-auto-blue-5:#388bfd;--color-auto-blue-6:#58a6ff;--color-auto-blue-7:#79c0ff;--color-auto-blue-8:#a5d6ff;--color-auto-blue-9:#cae8ff;--color-auto-green-0:#04260f;--color-auto-green-1:#033a16;--color-auto-green-2:#0f5323;--color-auto-green-3:#196c2e;--color-auto-green-4:#238636;--color-auto-green-5:#2ea043;--color-auto-green-6:#3fb950;--color-auto-green-7:#56d364;--color-auto-green-8:#7ee787;--color-auto-green-9:#aff5b4;--color-auto-yellow-0:#341a00;--color-auto-yellow-1:#4b2900;--color-auto-yellow-2:#693e00;--color-auto-yellow-3:#845306;--color-auto-yellow-4:#9e6a03;--color-auto-yellow-5:#bb8009;--color-auto-yellow-6:#d29922;--color-auto-yellow-7:#e3b341;--color-auto-yellow-8:#f2cc60;--color-auto-yellow-9:#f8e3a1;--color-auto-orange-0:#3d1300;--color-auto-orange-1:#5a1e02;--color-auto-orange-2:#762d0a;--color-auto-orange-3:#9b4215;--color-auto-orange-4:#bd561d;--color-auto-orange-5:#db6d28;--color-auto-orange-6:#f0883e;--color-auto-orange-7:#ffa657;--color-auto-orange-8:#ffc680;--color-auto-orange-9:#ffdfb6;--color-auto-red-0:#490202;--color-auto-red-1:#67060c;--color-auto-red-2:#8e1519;--color-auto-red-3:#b62324;--color-auto-red-4:#da3633;--color-auto-red-5:#f85149;--color-auto-red-6:#ff7b72;--color-auto-red-7:#ffa198;--color-auto-red-8:#ffc1ba;--color-auto-red-9:#ffdcd7;--color-auto-purple-0:#271052;--color-auto-purple-1:#3c1e70;--color-auto-purple-2:#553098;--color-auto-purple-3:#6e40c9;--color-auto-purple-4:#8957e5;--color-auto-purple-5:#a371f7;--color-auto-purple-6:#bc8cff;--color-auto-purple-7:#d2a8ff;--color-auto-purple-8:#e2c5ff;--color-auto-purple-9:#eddeff;--color-auto-pink-0:#42062a;--color-auto-pink-1:#5e103e;--color-auto-pink-2:#7d2457;--color-auto-pink-3:#9e3670;--color-auto-pink-4:#bf4b8a;--color-auto-pink-5:#db61a2;--color-auto-pink-6:#f778ba;--color-auto-pink-7:#ff9bce;--color-auto-pink-8:#ffbedd;--color-auto-pink-9:#ffdaec;--color-text-primary:#c9d1d9;--color-text-secondary:#8b949e;--color-text-tertiary:#8b949e;--color-text-placeholder:#484f58;--color-text-disabled:#484f58;--color-text-inverse:#0d1117;--color-text-link:#58a6ff;--color-text-danger:#f85149;--color-text-success:#56d364;--color-text-warning:#e3b341;--color-text-white:#f0f6fc;--color-icon-primary:#c9d1d9;--color-icon-secondary:#6e7681;--color-icon-tertiary:#484f58;--color-icon-info:#79c0ff;--color-icon-danger:#f85149;--color-icon-success:#56d364;--color-icon-warning:#e3b341;--color-border-primary:#30363d;--color-border-secondary:#21262d;--color-border-tertiary:#6e7681;--color-border-overlay:#30363d;--color-border-inverse:#f0f6fc;--color-border-info:rgba(56,139,253,0.4);--color-border-danger:rgba(248,81,73,0.4);--color-border-success:rgba(63,185,80,0.4);--color-border-warning:rgba(187,128,9,0.4);--color-bg-canvas:#0d1117;--color-bg-canvas-mobile:#010409;--color-bg-canvas-inverse:#f0f6fc;--color-bg-canvas-inset:#090c10;--color-bg-primary:#0d1117;--color-bg-secondary:#0d1117;--color-bg-tertiary:#161b22;--color-bg-overlay:#21262d;--color-bg-backdrop:rgba(1,4,9,0.8);--color-bg-info:rgba(56,139,253,0.1);--color-bg-info-inverse:#388bfd;--color-bg-danger:rgba(248,81,73,0.1);--color-bg-danger-inverse:#da3633;--color-bg-success:rgba(46,160,67,0.1);--color-bg-success-inverse:#2ea043;--color-bg-warning:rgba(187,128,9,0.1);--color-bg-warning-inverse:#bb8009;--color-shadow-small:0 0 transparent;--color-shadow-medium:0 3px 6px #010409;--color-shadow-large:0 8px 24px #010409;--color-shadow-extra-large:0 12px 48px #010409;--color-shadow-highlight:0 0 transparent;--color-shadow-inset:0 0 transparent;--color-state-hover-primary-bg:#1f6feb;--color-state-hover-primary-border:#388bfd;--color-state-hover-primary-text:#f0f6fc;--color-state-hover-primary-icon:#f0f6fc;--color-state-hover-secondary-bg:#161b22;--color-state-hover-secondary-border:#161b22;--color-state-selected-primary-bg:#1f6feb;--color-state-selected-primary-border:#388bfd;--color-state-selected-primary-text:#f0f6fc;--color-state-selected-primary-icon:#f0f6fc;--color-state-focus-border:#388bfd;--color-state-focus-shadow:0 0 0 3px #0c2d6b;--color-fade-fg-10:rgba(240,246,252,0.1);--color-fade-fg-15:rgba(240,246,252,0.15);--color-fade-fg-30:rgba(240,246,252,0.3);--color-fade-fg-50:rgba(240,246,252,0.5);--color-fade-fg-70:rgba(240,246,252,0.7);--color-fade-fg-85:rgba(240,246,252,0.85);--color-fade-black-10:rgba(1,4,9,0.1);--color-fade-black-15:rgba(1,4,9,0.15);--color-fade-black-30:rgba(1,4,9,0.3);--color-fade-black-50:rgba(1,4,9,0.5);--color-fade-black-70:rgba(1,4,9,0.7);--color-fade-black-85:rgba(1,4,9,0.85);--color-fade-white-10:rgba(240,246,252,0.1);--color-fade-white-15:rgba(240,246,252,0.15);--color-fade-white-30:rgba(240,246,252,0.3);--color-fade-white-50:rgba(240,246,252,0.5);--color-fade-white-70:rgba(240,246,252,0.7);--color-fade-white-85:rgba(240,246,252,0.85);--color-alert-info-text:#79c0ff;--color-alert-info-icon:#79c0ff;--color-alert-info-bg:rgba(56,139,253,0.1);--color-alert-info-border:rgba(56,139,253,0.4);--color-alert-warn-text:#e3b341;--color-alert-warn-icon:#e3b341;--color-alert-warn-bg:rgba(187,128,9,0.1);--color-alert-warn-border:rgba(187,128,9,0.4);--color-alert-error-text:#ff7b72;--color-alert-error-icon:#ff7b72;--color-alert-error-bg:rgba(248,81,73,0.1);--color-alert-error-border:rgba(248,81,73,0.4);--color-alert-success-text:#56d364;--color-alert-success-icon:#56d364;--color-alert-success-bg:rgba(46,160,67,0.1);--color-alert-success-border:rgba(46,160,67,0.4);--color-autocomplete-shadow:0 16px 32px rgba(1,4,9,0.85);--color-autocomplete-row-border:#30363d;--color-blankslate-icon:#535c66;--color-btn-text:#c9d1d9;--color-btn-bg:#21262d;--color-btn-border:#30363d;--color-btn-shadow:0 0 transparent;--color-btn-inset-shadow:0 0 transparent;--color-btn-hover-bg:#30363d;--color-btn-hover-border:#8b949e;--color-btn-selected-bg:#161b22;--color-btn-focus-bg:#21262d;--color-btn-focus-border:#8b949e;--color-btn-focus-shadow:0 0 0 3px rgba(139,148,158,0.3);--color-btn-shadow-active:inset 0 0.15em 0.3em rgba(1,4,9,0.15);--color-btn-shadow-input-focus:0 0 0 0.2em rgba(31,111,235,0.3);--color-btn-primary-text:#fff;--color-btn-primary-bg:#238636;--color-btn-primary-border:#2ea043;--color-btn-primary-shadow:0 0 transparent;--color-btn-primary-inset-shadow:0 0 transparent;--color-btn-primary-hover-bg:#2ea043;--color-btn-primary-hover-border:#3fb950;--color-btn-primary-selected-bg:#238636;--color-btn-primary-selected-shadow:0 0 transparent;--color-btn-primary-disabled-text:rgba(240,246,252,0.5);--color-btn-primary-disabled-bg:rgba(35,134,54,0.6);--color-btn-primary-disabled-border:transparent;--color-btn-primary-focus-bg:#238636;--color-btn-primary-focus-border:#3fb950;--color-btn-primary-focus-shadow:0 0 0 3px rgba(46,164,79,0.4);--color-btn-primary-icon:#f0f6fc;--color-btn-primary-counter-bg:rgba(240,246,252,0.2);--color-btn-outline-text:#58a6ff;--color-btn-outline-hover-text:#58a6ff;--color-btn-outline-hover-bg:#30363d;--color-btn-outline-hover-border:#58a6ff;--color-btn-outline-hover-shadow:0 1px 0 rgba(1,4,9,0.1);--color-btn-outline-hover-inset-shadow:inset 0 1px 0 rgba(240,246,252,0.03);--color-btn-outline-hover-counter-bg:rgba(240,246,252,0.2);--color-btn-outline-selected-text:#f0f6fc;--color-btn-outline-selected-bg:#0d419d;--color-btn-outline-selected-border:rgba(240,246,252,0.1);--color-btn-outline-selected-shadow:0 0 transparent;--color-btn-outline-disabled-text:rgba(88,166,255,0.5);--color-btn-outline-disabled-bg:#0d1117;--color-btn-outline-disabled-counter-bg:rgba(31,111,235,0.05);--color-btn-outline-focus-border:#58a6ff;--color-btn-outline-focus-shadow:0 0 0 3px rgba(17,88,199,0.4);--color-btn-outline-counter-bg:rgba(31,111,235,0.1);--color-btn-danger-text:#f85149;--color-btn-danger-hover-text:#fff;--color-btn-danger-hover-bg:#da3633;--color-btn-danger-hover-border:#f85149;--color-btn-danger-hover-shadow:0 0 transparent;--color-btn-danger-hover-inset-shadow:0 0 transparent;--color-btn-danger-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-danger-selected-text:#fff;--color-btn-danger-selected-bg:#b62324;--color-btn-danger-selected-border:rgba(240,246,252,0.1);--color-btn-danger-selected-shadow:0 0 transparent;--color-btn-danger-disabled-text:rgba(248,81,73,0.5);--color-btn-danger-disabled-bg:#0d1117;--color-btn-danger-disabled-counter-bg:rgba(218,54,51,0.05);--color-btn-danger-focus-border:#f85149;--color-btn-danger-focus-shadow:0 0 0 3px rgba(182,35,36,0.4);--color-btn-danger-counter-bg:rgba(218,54,51,0.1);--color-btn-danger-icon:#f85149;--color-btn-danger-hover-icon:#f0f6fc;--color-btn-counter-bg:#30363d;--color-counter-text:#c9d1d9;--color-counter-bg:#30363d;--color-counter-primary-text:#c9d1d9;--color-counter-primary-bg:#6e7681;--color-counter-secondary-text:#8b949e;--color-dropdown-shadow:0 16px 32px rgba(1,4,9,0.85);--color-label-border:#30363d;--color-label-primary-text:#b1bac4;--color-label-primary-border:#6e7681;--color-label-secondary-text:#8b949e;--color-label-secondary-border:#30363d;--color-label-info-text:#388bfd;--color-label-info-border:rgba(56,139,253,0.4);--color-label-success-text:#3fb950;--color-label-success-border:rgba(46,160,67,0.4);--color-label-warning-text:#e3b341;--color-label-warning-border:rgba(242,211,91,0.4);--color-label-danger-text:#f85149;--color-label-danger-border:rgba(248,81,73,0.4);--color-label-orange-text:#db6d28;--color-label-orange-border:rgba(219,109,40,0.4);--color-input-bg:#0d1117;--color-input-contrast-bg:rgba(1,4,9,0.5);--color-input-border:#21262d;--color-input-shadow:0 0 transparent;--color-input-disabled-bg:#161b22;--color-input-disabled-border:#30363d;--color-input-warning-border:#d29922;--color-input-error-border:#f85149;--color-input-tooltip-success-text:#56d364;--color-input-tooltip-success-bg:#101f1b;--color-input-tooltip-success-border:#1c532b;--color-input-tooltip-warning-text:#e3b341;--color-input-tooltip-warning-bg:#1e1c16;--color-input-tooltip-warning-border:#5d4411;--color-input-tooltip-error-text:#ff7b72;--color-input-tooltip-error-bg:#25171c;--color-input-tooltip-error-border:#792e2e;--color-avatar-bg:rgba(240,246,252,0.1);--color-avatar-border:rgba(240,246,252,0.1);--color-avatar-stack-fade:#30363d;--color-avatar-stack-fade-more:#21262d;--color-avatar-child-shadow:-2px -2px 0 #0d1117;--color-toast-text:#79c0ff;--color-toast-bg:#010409;--color-toast-border:#214981;--color-toast-shadow:0 8px 24px #010409;--color-toast-icon:#79c0ff;--color-toast-icon-bg:#121d2e;--color-toast-icon-border:#214981;--color-toast-success-text:#56d364;--color-toast-success-border:#1c532c;--color-toast-success-icon:#56d364;--color-toast-success-icon-bg:#111f1c;--color-toast-success-icon-border:#1c532c;--color-toast-warning-text:#e3b341;--color-toast-warning-border:#5e4411;--color-toast-warning-icon:#e3b341;--color-toast-warning-icon-bg:#1f1c16;--color-toast-warning-icon-border:#5e4411;--color-toast-danger-text:#ff7b72;--color-toast-danger-border:#792e2e;--color-toast-danger-icon:#ff7b72;--color-toast-danger-icon-bg:#25171c;--color-toast-danger-icon-border:#792e2e;--color-toast-loading-text:#c9d1d9;--color-toast-loading-border:#30363d;--color-toast-loading-icon:#f0f6fc;--color-toast-loading-icon-bg:#30363d;--color-toast-loading-icon-border:#30363d;--color-timeline-text:#b1bac4;--color-timeline-badge-bg:#0d1117;--color-timeline-target-badge-border:#1f6feb;--color-timeline-target-badge-shadow:#0d419d;--color-select-menu-border-secondary:#30363d;--color-select-menu-shadow:0 0 18px rgba(1,4,9,0.4);--color-select-menu-backdrop-bg:rgba(1,4,9,0.5);--color-select-menu-backdrop-border:#484f58;--color-select-menu-tap-highlight:rgba(48,54,61,0.5);--color-select-menu-tap-focus-bg:#0c2d6b;--color-box-blue-border:#0d419d;--color-box-row-yellow-bg:rgba(235,196,64,0.1);--color-box-row-blue-bg:rgba(121,192,255,0.1);--color-box-header-blue-bg:#0d1117;--color-box-header-blue-border:#30363d;--color-box-border-info:rgba(56,139,253,0.4);--color-box-bg-info:rgba(56,139,253,0.1);--color-box-border-warning:rgba(187,128,9,0.4);--color-box-bg-warning:rgba(187,128,9,0.1);--color-branch-name-text:#c9d1d9;--color-branch-name-icon:#b1bac4;--color-branch-name-bg:rgba(88,166,255,0.1);--color-branch-name-link-text:#58a6ff;--color-branch-name-link-icon:#58a6ff;--color-branch-name-link-bg:rgba(88,166,255,0.1);--color-markdown-code-bg:rgba(240,246,252,0.15);--color-markdown-frame-border:#3b434b;--color-markdown-blockquote-border:#3b434b;--color-markdown-table-border:#3b434b;--color-markdown-table-tr-border:#272c32;--color-menu-heading-text:#8b949e;--color-menu-border-active:#f78166;--color-menu-bg-active:#161b22;--color-sidenav-selected-bg:#21262d;--color-sidenav-border-active:#f78166;--color-header-text:rgba(240,246,252,0.7);--color-header-bg:#161b22;--color-header-logo:#f0f6fc;--color-filter-item-bar-bg:#12161c;--color-hidden-text-expander-bg:#21262d;--color-hidden-text-expander-bg-hover:#30363d;--color-drag-and-drop-border:#25292f;--color-upload-enabled-border:#3b434b;--color-upload-enabled-border-focused:#4487ee;--color-previewable-comment-form-border:#25292f;--color-underlinenav-border:rgba(48,54,61,0);--color-underlinenav-border-hover:#30363d;--color-underlinenav-border-active:#f78166;--color-underlinenav-text:#8b949e;--color-underlinenav-text-hover:#c9d1d9;--color-underlinenav-text-active:#c9d1d9;--color-underlinenav-icon:#6e7681;--color-underlinenav-icon-hover:#c9d1d9;--color-underlinenav-icon-active:#c9d1d9;--color-underlinenav-counter-text:#8b949e;--color-verified-badge-text:#3fb950;--color-verified-badge-bg:rgba(63,185,80,0.1);--color-verified-badge-border:rgba(63,185,80,0.4);--color-social-count-bg:#21262d;--color-tooltip-text:#f0f6fc;--color-tooltip-bg:#21262d;--color-header-search-bg:#0d1117;--color-header-search-border:#21262d;--color-search-keyword-hl:rgba(187,128,9,0.4);--color-diffstat-neutral-bg:#30363d;--color-diffstat-neutral-border:rgba(240,246,252,0.1);--color-diffstat-deletion-bg:#da3633;--color-diffstat-deletion-border:#f85149;--color-diffstat-addition-bg:#238636;--color-diffstat-addition-border:#2ea043;--color-mktg-success:#29933d;--color-mktg-info:#2a7bf3;--color-mktg-bg-shade-gradient-top:rgba(1,4,9,0.065);--color-mktg-bg-shade-gradient-bottom:rgba(1,4,9,0);--color-mktg-btn-bg:#1f6feb;--color-mktg-btn-border:#1f6feb;--color-mktg-btn-text:#f0f6fc;--color-mktg-btn-icon:#f0f6fc;--color-mktg-btn-focus-shadow:0 0 0 3px rgba(31,111,235,0.3);--color-mktg-btn-hover-bg:#388bfd;--color-mktg-btn-hover-border:#388bfd;--color-mktg-btn-disabled-bg:rgba(56,139,253,0.5);--color-mktg-btn-disabled-border:transparent;--color-mktg-btn-disabled-text:rgba(240,246,252,0.5);--color-mktg-btn-disabled-icon:rgba(240,246,252,0.5);--color-mktg-btn-primary-bg:#238636;--color-mktg-btn-primary-border:#238636;--color-mktg-btn-primary-text:#f0f6fc;--color-mktg-btn-primary-icon:#f0f6fc;--color-mktg-btn-primary-focus-shadow:0 0 0 3px rgba(35,134,54,0.3);--color-mktg-btn-primary-hover-bg:#2ea043;--color-mktg-btn-primary-hover-border:#2ea043;--color-mktg-btn-primary-disabled-bg:rgba(46,160,67,0.5);--color-mktg-btn-primary-disabled-border:transparent;--color-mktg-btn-primary-disabled-text:rgba(240,246,252,0.5);--color-mktg-btn-primary-disabled-icon:rgba(240,246,252,0.5);--color-mktg-btn-outline-bg:transparent;--color-mktg-btn-outline-border:rgba(56,139,253,0.5);--color-mktg-btn-outline-text:#388bfd;--color-mktg-btn-outline-icon:#388bfd;--color-mktg-btn-outline-focus-shadow:0 0 0 3px rgba(56,139,253,0.3);--color-mktg-btn-outline-hover-bg:transparent;--color-mktg-btn-outline-hover-border:#388bfd;--color-mktg-btn-outline-hover-text:#58a6ff;--color-mktg-btn-outline-hover-icon:#58a6ff;--color-mktg-btn-outline-disabled-bg:transparent;--color-mktg-btn-outline-disabled-border:rgba(56,139,253,0.2);--color-mktg-btn-outline-disabled-text:rgba(56,139,253,0.5);--color-mktg-btn-outline-disabled-icon:rgba(56,139,253,0.5);--color-mktg-btn-dark-bg:transparent;--color-mktg-btn-dark-border:rgba(201,209,217,0.5);--color-mktg-btn-dark-text:#c9d1d9;--color-mktg-btn-dark-icon:#c9d1d9;--color-mktg-btn-dark-focus-shadow:0 0 0 3px rgba(201,209,217,0.3);--color-mktg-btn-dark-hover-bg:rgba(201,209,217,0.5);--color-mktg-btn-dark-hover-border:rgba(201,209,217,0.5);--color-mktg-btn-dark-hover-text:#0d1117;--color-mktg-btn-dark-hover-icon:#0d1117;--color-mktg-btn-dark-disabled-bg:transparent;--color-mktg-btn-dark-disabled-border:rgba(201,209,217,0.2);--color-mktg-btn-dark-disabled-text:rgba(201,209,217,0.5);--color-mktg-btn-dark-disabled-icon:rgba(201,209,217,0.5);--color-files-explorer-icon:#6e7681;--color-hl-author-bg:#051d4d;--color-hl-author-border:#0d419d;--color-logo-subdued:#30363d;--color-discussion-border:#34513b;--color-discussion-bg-success:rgba(46,160,67,0.1);--color-actions-workflow-table-sticky-bg:rgba(13,17,23,0.95);--color-repo-language-color-border:rgba(240,246,252,0.2);--color-code-selection-bg:rgba(121,192,255,0.3);--color-highlight-text:#ffd467;--color-highlight-bg:rgba(204,143,44,0.38);--color-blob-line-highlight-bg:rgba(210,153,34,0.15);--color-blob-line-highlight-border:#e3b341;--color-diff-addition-text:#56d364;--color-diff-addition-bg:rgba(46,160,67,0.2);--color-diff-addition-border:#196c2e;--color-diff-deletion-text:#f85149;--color-diff-deletion-bg:rgba(218,54,51,0.2);--color-diff-deletion-border:#b62324;--color-diff-change-text:#e3b341;--color-diff-change-bg:#341a00;--color-diff-change-border:#9e6a03;--color-diff-blob-num-text:rgba(240,246,252,0.3);--color-diff-blob-num-hover-text:rgba(240,246,252,0.6);--color-diff-blob-addition-num-text:#3fb950;--color-diff-blob-addition-num-hover-text:#7ee787;--color-diff-blob-addition-num-bg:rgba(46,160,67,0.1);--color-diff-blob-addition-line-bg:rgba(46,160,67,0.2);--color-diff-blob-addition-word-bg:rgba(46,160,67,0.55);--color-diff-blob-deletion-num-text:#f85149;--color-diff-blob-deletion-num-hover-text:#ffa198;--color-diff-blob-deletion-num-bg:rgba(218,54,51,0.1);--color-diff-blob-deletion-line-bg:rgba(218,54,51,0.2);--color-diff-blob-deletion-word-bg:rgba(218,54,51,0.5);--color-diff-blob-hunk-text:#8b949e;--color-diff-blob-hunk-num-bg:rgba(88,166,255,0.15);--color-diff-blob-hunk-line-bg:rgba(88,166,255,0.1);--color-diff-blob-empty-block-bg:#161b22;--color-diff-blob-selected-line-highlight-bg:rgba(187,128,9,0.1);--color-diff-blob-selected-line-highlight-border:#bb8009;--color-diff-blob-selected-line-highlight-mix-blend-mode:normal;--color-diff-blob-expander-icon:#8b949e;--color-diff-blob-expander-hover-icon:#f0f6fc;--color-diff-blob-expander-hover-bg:#1f6feb;--color-diff-blob-comment-button-icon:#f0f6fc;--color-diff-blob-comment-button-bg:#1f6feb;--color-diff-blob-comment-button-gradient-bg:#367eed;--color-global-nav-logo:#f0f6fc;--color-global-nav-bg:#161b22;--color-global-nav-text:#c9d1d9;--color-global-nav-icon:#c9d1d9;--color-global-nav-input-bg:#0d1117;--color-global-nav-input-border:#21262d;--color-global-nav-input-icon:#21262d;--color-global-nav-input-placeholder:#484f58;--color-calendar-graph-day-bg:#161b22;--color-calendar-graph-day-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-bg:#003820;--color-calendar-graph-day-L2-bg:#00602d;--color-calendar-graph-day-L3-bg:#10983d;--color-calendar-graph-day-L4-bg:#27d545;--color-calendar-graph-day-L4-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L3-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L2-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L1-border:hsla(0,0%,100%,0.05);--color-footer-invertocat-octicon:#30363d;--color-footer-invertocat-octicon-hover:#6e7681;--color-pr-state-draft-text:#8b949e;--color-pr-state-draft-bg:rgba(139,148,158,0.1);--color-pr-state-draft-border:rgba(139,148,158,0.4);--color-pr-state-open-text:#3fb950;--color-pr-state-open-bg:rgba(63,185,80,0.1);--color-pr-state-open-border:rgba(63,185,80,0.4);--color-pr-state-merged-text:#a371f7;--color-pr-state-merged-bg:rgba(188,140,255,0.1);--color-pr-state-merged-border:rgba(188,140,255,0.4);--color-pr-state-closed-text:#f85149;--color-pr-state-closed-bg:rgba(218,54,51,0.1);--color-pr-state-closed-border:rgba(218,54,51,0.4);--color-topic-tag-text:#58a6ff;--color-topic-tag-bg:rgba(56,139,253,0.1);--color-topic-tag-hover-bg:rgba(56,139,253,0.2);--color-topic-tag-active-bg:rgba(56,139,253,0.15);--color-merge-box-success-icon-bg:rgba(46,160,67,0.1);--color-merge-box-success-icon-text:#3fb950;--color-merge-box-success-icon-border:rgba(46,160,67,0.4);--color-merge-box-success-indicator-bg:#238636;--color-merge-box-success-indicator-border:#2ea043;--color-merge-box-merged-icon-bg:rgba(188,140,255,0.1);--color-merge-box-merged-icon-text:#a371f7;--color-merge-box-merged-icon-border:rgba(188,140,255,0.4);--color-merge-box-merged-box-border:rgba(188,140,255,0.4);--color-merge-box-neutral-icon-bg:rgba(201,209,217,0.1);--color-merge-box-neutral-icon-text:#8b949e;--color-merge-box-neutral-icon-border:rgba(201,209,217,0.4);--color-merge-box-neutral-indicator-bg:#484f58;--color-merge-box-neutral-indicator-border:#6e7681;--color-merge-box-warning-icon-bg:rgba(187,128,9,0.1);--color-merge-box-warning-icon-text:#e3b341;--color-merge-box-warning-icon-border:rgba(187,128,9,0.4);--color-merge-box-warning-box-border:rgba(187,128,9,0.4);--color-merge-box-warning-merge-highlight:rgba(187,128,9,0.1);--color-merge-box-error-icon-bg:rgba(248,81,73,0.1);--color-merge-box-error-icon-text:#f85149;--color-merge-box-error-icon-border:rgba(248,81,73,0.4);--color-merge-box-error-indicator-bg:#da3633;--color-merge-box-error-indicator-border:#f85149;--color-project-card-bg:#161b22;--color-project-header-bg:#0d1117;--color-project-sidebar-bg:#161b22;--color-project-gradient-in:#161b22;--color-project-gradient-out:rgba(22,27,34,0);--color-checks-bg:#090c10;--color-checks-run-border-width:1px;--color-checks-container-border-width:1px;--color-checks-text-primary:#c9d1d9;--color-checks-text-secondary:#8b949e;--color-checks-text-link:#58a6ff;--color-checks-btn-icon:#6e7681;--color-checks-btn-hover-icon:#c9d1d9;--color-checks-btn-hover-bg:#30363d;--color-checks-input-text:#8b949e;--color-checks-input-placeholder-text:#484f58;--color-checks-input-focus-text:#c9d1d9;--color-checks-input-bg:#0d1117;--color-checks-input-shadow:0 0 0 1px #21262d;--color-checks-dropdown-text:#c9d1d9;--color-checks-dropdown-bg:#21262d;--color-checks-dropdown-border:#30363d;--color-checks-dropdown-hover-text:#f0f6fc;--color-checks-dropdown-hover-bg:#1f6feb;--color-checks-dropdown-btn-hover-text:#f0f6fc;--color-checks-dropdown-btn-hover-bg:#161b22;--color-checks-scrollbar-thumb-bg:#30363d;--color-checks-header-label-text:#8b949e;--color-checks-header-label-open-text:#c9d1d9;--color-checks-header-border:#21262d;--color-checks-header-icon:#6e7681;--color-checks-line-text:#8b949e;--color-checks-line-num-text:#8b949e;--color-checks-line-timestamp-text:#8b949e;--color-checks-line-hover-bg:#161b22;--color-checks-line-selected-bg:rgba(56,139,253,0.1);--color-checks-line-selected-num-text:#58a6ff;--color-checks-line-dt-fm-text:#0d1117;--color-checks-line-dt-fm-bg:#d29922;--color-checks-gate-bg:rgba(132,83,6,0.15);--color-checks-gate-text:#8b949e;--color-checks-gate-waiting-text:#e3b341;--color-checks-step-header-open-bg:#161b22;--color-checks-step-error-text:#f85149;--color-checks-step-warning-text:#e3b341;--color-checks-logline-text:#6e7681;--color-checks-logline-num-text:#8b949e;--color-checks-logline-debug-text:#bc8cff;--color-checks-logline-error-text:#8b949e;--color-checks-logline-error-num-text:#8b949e;--color-checks-logline-error-bg:rgba(248,81,73,0.1);--color-checks-logline-warning-text:#8b949e;--color-checks-logline-warning-num-text:#e3b341;--color-checks-logline-warning-bg:rgba(187,128,9,0.1);--color-checks-logline-command-text:#58a6ff;--color-checks-logline-section-text:#56d364;--color-intro-shelf-gradient-left:rgba(56,139,253,0.1);--color-intro-shelf-gradient-right:rgba(46,160,67,0.1);--color-intro-shelf-gradient-in:#0d1117;--color-intro-shelf-gradient-out:rgba(13,17,23,0);--color-marketing-icon-primary:#79c0ff;--color-marketing-icon-secondary:#1f6feb;--color-prettylights-syntax-comment:#8b949e;--color-prettylights-syntax-constant:#79c0ff;--color-prettylights-syntax-entity:#d2a8ff;--color-prettylights-syntax-storage-modifier-import:#c9d1d9;--color-prettylights-syntax-entity-tag:#7ee787;--color-prettylights-syntax-keyword:#ff7b72;--color-prettylights-syntax-string:#a5d6ff;--color-prettylights-syntax-variable:#ffa657;--color-prettylights-syntax-brackethighlighter-unmatched:#f85149;--color-prettylights-syntax-invalid-illegal-text:#f0f6fc;--color-prettylights-syntax-invalid-illegal-bg:#8e1519;--color-prettylights-syntax-carriage-return-text:#f0f6fc;--color-prettylights-syntax-carriage-return-bg:#b62324;--color-prettylights-syntax-string-regexp:#7ee787;--color-prettylights-syntax-markup-list:#f2cc60;--color-prettylights-syntax-markup-heading:#1f6feb;--color-prettylights-syntax-markup-italic:#c9d1d9;--color-prettylights-syntax-markup-bold:#c9d1d9;--color-prettylights-syntax-markup-deleted-text:#ffdcd7;--color-prettylights-syntax-markup-deleted-bg:#67060c;--color-prettylights-syntax-markup-inserted-text:#aff5b4;--color-prettylights-syntax-markup-inserted-bg:#033a16;--color-prettylights-syntax-markup-changed-text:#ffdfb6;--color-prettylights-syntax-markup-changed-bg:#5a1e02;--color-prettylights-syntax-markup-ignored-text:#c9d1d9;--color-prettylights-syntax-markup-ignored-bg:#1158c7;--color-prettylights-syntax-meta-diff-range:#d2a8ff;--color-prettylights-syntax-brackethighlighter-angle:#8b949e;--color-prettylights-syntax-sublimelinter-gutter-mark:#484f58;--color-prettylights-syntax-constant-other-reference-link:#a5d6ff;--color-codemirror-text:#c9d1d9;--color-codemirror-bg:#0d1117;--color-codemirror-gutters-bg:#0d1117;--color-codemirror-guttermarker-text:#0d1117;--color-codemirror-guttermarker-subtle-text:#6e7681;--color-codemirror-linenumber-text:#8b949e;--color-codemirror-cursor:#f0f6fc;--color-codemirror-selection-bg:rgba(121,192,255,0.3);--color-codemirror-activeline-bg:#161b22;--color-codemirror-matchingbracket-text:#c9d1d9;--color-codemirror-lines-bg:#0d1117;--color-codemirror-syntax-comment:#8b949e;--color-codemirror-syntax-constant:#79c0ff;--color-codemirror-syntax-entity:#d2a8ff;--color-codemirror-syntax-keyword:#ff7b72;--color-codemirror-syntax-storage:#ff7b72;--color-codemirror-syntax-string:#a5d6ff;--color-codemirror-syntax-support:#79c0ff;--color-codemirror-syntax-variable:#ffa657;--color-ansi-black:#0d1117;--color-ansi-black-bright:#161b22;--color-ansi-white:#b1bac4;--color-ansi-white-bright:#b1bac4;--color-ansi-gray:#6e7681;--color-ansi-red:#ff7b72;--color-ansi-red-bright:#ffa198;--color-ansi-green:#3fb950;--color-ansi-green-bright:#56d364;--color-ansi-yellow:#d29922;--color-ansi-yellow-bright:#e3b341;--color-ansi-blue:#58a6ff;--color-ansi-blue-bright:#79c0ff;--color-ansi-magenta:#bc8cff;--color-ansi-magenta-bright:#d2a8ff;--color-ansi-cyan:#76e3ea;--color-ansi-cyan-bright:#b3f0ff}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme=dark]{--color-scale-black:#010409;--color-scale-white:#f0f6fc;--color-scale-gray-0:#f0f6fc;--color-scale-gray-1:#c9d1d9;--color-scale-gray-2:#b1bac4;--color-scale-gray-3:#8b949e;--color-scale-gray-4:#6e7681;--color-scale-gray-5:#484f58;--color-scale-gray-6:#30363d;--color-scale-gray-7:#21262d;--color-scale-gray-8:#161b22;--color-scale-gray-9:#0d1117;--color-scale-blue-0:#cae8ff;--color-scale-blue-1:#a5d6ff;--color-scale-blue-2:#79c0ff;--color-scale-blue-3:#58a6ff;--color-scale-blue-4:#388bfd;--color-scale-blue-5:#1f6feb;--color-scale-blue-6:#1158c7;--color-scale-blue-7:#0d419d;--color-scale-blue-8:#0c2d6b;--color-scale-blue-9:#051d4d;--color-scale-green-0:#aff5b4;--color-scale-green-1:#7ee787;--color-scale-green-2:#56d364;--color-scale-green-3:#3fb950;--color-scale-green-4:#2ea043;--color-scale-green-5:#238636;--color-scale-green-6:#196c2e;--color-scale-green-7:#0f5323;--color-scale-green-8:#033a16;--color-scale-green-9:#04260f;--color-scale-yellow-0:#f8e3a1;--color-scale-yellow-1:#f2cc60;--color-scale-yellow-2:#e3b341;--color-scale-yellow-3:#d29922;--color-scale-yellow-4:#bb8009;--color-scale-yellow-5:#9e6a03;--color-scale-yellow-6:#845306;--color-scale-yellow-7:#693e00;--color-scale-yellow-8:#4b2900;--color-scale-yellow-9:#341a00;--color-scale-orange-0:#ffdfb6;--color-scale-orange-1:#ffc680;--color-scale-orange-2:#ffa657;--color-scale-orange-3:#f0883e;--color-scale-orange-4:#db6d28;--color-scale-orange-5:#bd561d;--color-scale-orange-6:#9b4215;--color-scale-orange-7:#762d0a;--color-scale-orange-8:#5a1e02;--color-scale-orange-9:#3d1300;--color-scale-red-0:#ffdcd7;--color-scale-red-1:#ffc1ba;--color-scale-red-2:#ffa198;--color-scale-red-3:#ff7b72;--color-scale-red-4:#f85149;--color-scale-red-5:#da3633;--color-scale-red-6:#b62324;--color-scale-red-7:#8e1519;--color-scale-red-8:#67060c;--color-scale-red-9:#490202;--color-scale-purple-0:#eddeff;--color-scale-purple-1:#e2c5ff;--color-scale-purple-2:#d2a8ff;--color-scale-purple-3:#bc8cff;--color-scale-purple-4:#a371f7;--color-scale-purple-5:#8957e5;--color-scale-purple-6:#6e40c9;--color-scale-purple-7:#553098;--color-scale-purple-8:#3c1e70;--color-scale-purple-9:#271052;--color-scale-pink-0:#ffdaec;--color-scale-pink-1:#ffbedd;--color-scale-pink-2:#ff9bce;--color-scale-pink-3:#f778ba;--color-scale-pink-4:#db61a2;--color-scale-pink-5:#bf4b8a;--color-scale-pink-6:#9e3670;--color-scale-pink-7:#7d2457;--color-scale-pink-8:#5e103e;--color-scale-pink-9:#42062a;--color-auto-black:#f0f6fc;--color-auto-white:#010409;--color-auto-gray-0:#0d1117;--color-auto-gray-1:#161b22;--color-auto-gray-2:#21262d;--color-auto-gray-3:#30363d;--color-auto-gray-4:#484f58;--color-auto-gray-5:#6e7681;--color-auto-gray-6:#8b949e;--color-auto-gray-7:#b1bac4;--color-auto-gray-8:#c9d1d9;--color-auto-gray-9:#f0f6fc;--color-auto-blue-0:#051d4d;--color-auto-blue-1:#0c2d6b;--color-auto-blue-2:#0d419d;--color-auto-blue-3:#1158c7;--color-auto-blue-4:#1f6feb;--color-auto-blue-5:#388bfd;--color-auto-blue-6:#58a6ff;--color-auto-blue-7:#79c0ff;--color-auto-blue-8:#a5d6ff;--color-auto-blue-9:#cae8ff;--color-auto-green-0:#04260f;--color-auto-green-1:#033a16;--color-auto-green-2:#0f5323;--color-auto-green-3:#196c2e;--color-auto-green-4:#238636;--color-auto-green-5:#2ea043;--color-auto-green-6:#3fb950;--color-auto-green-7:#56d364;--color-auto-green-8:#7ee787;--color-auto-green-9:#aff5b4;--color-auto-yellow-0:#341a00;--color-auto-yellow-1:#4b2900;--color-auto-yellow-2:#693e00;--color-auto-yellow-3:#845306;--color-auto-yellow-4:#9e6a03;--color-auto-yellow-5:#bb8009;--color-auto-yellow-6:#d29922;--color-auto-yellow-7:#e3b341;--color-auto-yellow-8:#f2cc60;--color-auto-yellow-9:#f8e3a1;--color-auto-orange-0:#3d1300;--color-auto-orange-1:#5a1e02;--color-auto-orange-2:#762d0a;--color-auto-orange-3:#9b4215;--color-auto-orange-4:#bd561d;--color-auto-orange-5:#db6d28;--color-auto-orange-6:#f0883e;--color-auto-orange-7:#ffa657;--color-auto-orange-8:#ffc680;--color-auto-orange-9:#ffdfb6;--color-auto-red-0:#490202;--color-auto-red-1:#67060c;--color-auto-red-2:#8e1519;--color-auto-red-3:#b62324;--color-auto-red-4:#da3633;--color-auto-red-5:#f85149;--color-auto-red-6:#ff7b72;--color-auto-red-7:#ffa198;--color-auto-red-8:#ffc1ba;--color-auto-red-9:#ffdcd7;--color-auto-purple-0:#271052;--color-auto-purple-1:#3c1e70;--color-auto-purple-2:#553098;--color-auto-purple-3:#6e40c9;--color-auto-purple-4:#8957e5;--color-auto-purple-5:#a371f7;--color-auto-purple-6:#bc8cff;--color-auto-purple-7:#d2a8ff;--color-auto-purple-8:#e2c5ff;--color-auto-purple-9:#eddeff;--color-auto-pink-0:#42062a;--color-auto-pink-1:#5e103e;--color-auto-pink-2:#7d2457;--color-auto-pink-3:#9e3670;--color-auto-pink-4:#bf4b8a;--color-auto-pink-5:#db61a2;--color-auto-pink-6:#f778ba;--color-auto-pink-7:#ff9bce;--color-auto-pink-8:#ffbedd;--color-auto-pink-9:#ffdaec;--color-text-primary:#c9d1d9;--color-text-secondary:#8b949e;--color-text-tertiary:#8b949e;--color-text-placeholder:#484f58;--color-text-disabled:#484f58;--color-text-inverse:#0d1117;--color-text-link:#58a6ff;--color-text-danger:#f85149;--color-text-success:#56d364;--color-text-warning:#e3b341;--color-text-white:#f0f6fc;--color-icon-primary:#c9d1d9;--color-icon-secondary:#6e7681;--color-icon-tertiary:#484f58;--color-icon-info:#79c0ff;--color-icon-danger:#f85149;--color-icon-success:#56d364;--color-icon-warning:#e3b341;--color-border-primary:#30363d;--color-border-secondary:#21262d;--color-border-tertiary:#6e7681;--color-border-overlay:#30363d;--color-border-inverse:#f0f6fc;--color-border-info:rgba(56,139,253,0.4);--color-border-danger:rgba(248,81,73,0.4);--color-border-success:rgba(63,185,80,0.4);--color-border-warning:rgba(187,128,9,0.4);--color-bg-canvas:#0d1117;--color-bg-canvas-mobile:#010409;--color-bg-canvas-inverse:#f0f6fc;--color-bg-canvas-inset:#090c10;--color-bg-primary:#0d1117;--color-bg-secondary:#0d1117;--color-bg-tertiary:#161b22;--color-bg-overlay:#21262d;--color-bg-backdrop:rgba(1,4,9,0.8);--color-bg-info:rgba(56,139,253,0.1);--color-bg-info-inverse:#388bfd;--color-bg-danger:rgba(248,81,73,0.1);--color-bg-danger-inverse:#da3633;--color-bg-success:rgba(46,160,67,0.1);--color-bg-success-inverse:#2ea043;--color-bg-warning:rgba(187,128,9,0.1);--color-bg-warning-inverse:#bb8009;--color-shadow-small:0 0 transparent;--color-shadow-medium:0 3px 6px #010409;--color-shadow-large:0 8px 24px #010409;--color-shadow-extra-large:0 12px 48px #010409;--color-shadow-highlight:0 0 transparent;--color-shadow-inset:0 0 transparent;--color-state-hover-primary-bg:#1f6feb;--color-state-hover-primary-border:#388bfd;--color-state-hover-primary-text:#f0f6fc;--color-state-hover-primary-icon:#f0f6fc;--color-state-hover-secondary-bg:#161b22;--color-state-hover-secondary-border:#161b22;--color-state-selected-primary-bg:#1f6feb;--color-state-selected-primary-border:#388bfd;--color-state-selected-primary-text:#f0f6fc;--color-state-selected-primary-icon:#f0f6fc;--color-state-focus-border:#388bfd;--color-state-focus-shadow:0 0 0 3px #0c2d6b;--color-fade-fg-10:rgba(240,246,252,0.1);--color-fade-fg-15:rgba(240,246,252,0.15);--color-fade-fg-30:rgba(240,246,252,0.3);--color-fade-fg-50:rgba(240,246,252,0.5);--color-fade-fg-70:rgba(240,246,252,0.7);--color-fade-fg-85:rgba(240,246,252,0.85);--color-fade-black-10:rgba(1,4,9,0.1);--color-fade-black-15:rgba(1,4,9,0.15);--color-fade-black-30:rgba(1,4,9,0.3);--color-fade-black-50:rgba(1,4,9,0.5);--color-fade-black-70:rgba(1,4,9,0.7);--color-fade-black-85:rgba(1,4,9,0.85);--color-fade-white-10:rgba(240,246,252,0.1);--color-fade-white-15:rgba(240,246,252,0.15);--color-fade-white-30:rgba(240,246,252,0.3);--color-fade-white-50:rgba(240,246,252,0.5);--color-fade-white-70:rgba(240,246,252,0.7);--color-fade-white-85:rgba(240,246,252,0.85);--color-alert-info-text:#79c0ff;--color-alert-info-icon:#79c0ff;--color-alert-info-bg:rgba(56,139,253,0.1);--color-alert-info-border:rgba(56,139,253,0.4);--color-alert-warn-text:#e3b341;--color-alert-warn-icon:#e3b341;--color-alert-warn-bg:rgba(187,128,9,0.1);--color-alert-warn-border:rgba(187,128,9,0.4);--color-alert-error-text:#ff7b72;--color-alert-error-icon:#ff7b72;--color-alert-error-bg:rgba(248,81,73,0.1);--color-alert-error-border:rgba(248,81,73,0.4);--color-alert-success-text:#56d364;--color-alert-success-icon:#56d364;--color-alert-success-bg:rgba(46,160,67,0.1);--color-alert-success-border:rgba(46,160,67,0.4);--color-autocomplete-shadow:0 16px 32px rgba(1,4,9,0.85);--color-autocomplete-row-border:#30363d;--color-blankslate-icon:#535c66;--color-btn-text:#c9d1d9;--color-btn-bg:#21262d;--color-btn-border:#30363d;--color-btn-shadow:0 0 transparent;--color-btn-inset-shadow:0 0 transparent;--color-btn-hover-bg:#30363d;--color-btn-hover-border:#8b949e;--color-btn-selected-bg:#161b22;--color-btn-focus-bg:#21262d;--color-btn-focus-border:#8b949e;--color-btn-focus-shadow:0 0 0 3px rgba(139,148,158,0.3);--color-btn-shadow-active:inset 0 0.15em 0.3em rgba(1,4,9,0.15);--color-btn-shadow-input-focus:0 0 0 0.2em rgba(31,111,235,0.3);--color-btn-primary-text:#fff;--color-btn-primary-bg:#238636;--color-btn-primary-border:#2ea043;--color-btn-primary-shadow:0 0 transparent;--color-btn-primary-inset-shadow:0 0 transparent;--color-btn-primary-hover-bg:#2ea043;--color-btn-primary-hover-border:#3fb950;--color-btn-primary-selected-bg:#238636;--color-btn-primary-selected-shadow:0 0 transparent;--color-btn-primary-disabled-text:rgba(240,246,252,0.5);--color-btn-primary-disabled-bg:rgba(35,134,54,0.6);--color-btn-primary-disabled-border:transparent;--color-btn-primary-focus-bg:#238636;--color-btn-primary-focus-border:#3fb950;--color-btn-primary-focus-shadow:0 0 0 3px rgba(46,164,79,0.4);--color-btn-primary-icon:#f0f6fc;--color-btn-primary-counter-bg:rgba(240,246,252,0.2);--color-btn-outline-text:#58a6ff;--color-btn-outline-hover-text:#58a6ff;--color-btn-outline-hover-bg:#30363d;--color-btn-outline-hover-border:#58a6ff;--color-btn-outline-hover-shadow:0 1px 0 rgba(1,4,9,0.1);--color-btn-outline-hover-inset-shadow:inset 0 1px 0 rgba(240,246,252,0.03);--color-btn-outline-hover-counter-bg:rgba(240,246,252,0.2);--color-btn-outline-selected-text:#f0f6fc;--color-btn-outline-selected-bg:#0d419d;--color-btn-outline-selected-border:rgba(240,246,252,0.1);--color-btn-outline-selected-shadow:0 0 transparent;--color-btn-outline-disabled-text:rgba(88,166,255,0.5);--color-btn-outline-disabled-bg:#0d1117;--color-btn-outline-disabled-counter-bg:rgba(31,111,235,0.05);--color-btn-outline-focus-border:#58a6ff;--color-btn-outline-focus-shadow:0 0 0 3px rgba(17,88,199,0.4);--color-btn-outline-counter-bg:rgba(31,111,235,0.1);--color-btn-danger-text:#f85149;--color-btn-danger-hover-text:#fff;--color-btn-danger-hover-bg:#da3633;--color-btn-danger-hover-border:#f85149;--color-btn-danger-hover-shadow:0 0 transparent;--color-btn-danger-hover-inset-shadow:0 0 transparent;--color-btn-danger-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-danger-selected-text:#fff;--color-btn-danger-selected-bg:#b62324;--color-btn-danger-selected-border:rgba(240,246,252,0.1);--color-btn-danger-selected-shadow:0 0 transparent;--color-btn-danger-disabled-text:rgba(248,81,73,0.5);--color-btn-danger-disabled-bg:#0d1117;--color-btn-danger-disabled-counter-bg:rgba(218,54,51,0.05);--color-btn-danger-focus-border:#f85149;--color-btn-danger-focus-shadow:0 0 0 3px rgba(182,35,36,0.4);--color-btn-danger-counter-bg:rgba(218,54,51,0.1);--color-btn-danger-icon:#f85149;--color-btn-danger-hover-icon:#f0f6fc;--color-btn-counter-bg:#30363d;--color-counter-text:#c9d1d9;--color-counter-bg:#30363d;--color-counter-primary-text:#c9d1d9;--color-counter-primary-bg:#6e7681;--color-counter-secondary-text:#8b949e;--color-dropdown-shadow:0 16px 32px rgba(1,4,9,0.85);--color-label-border:#30363d;--color-label-primary-text:#b1bac4;--color-label-primary-border:#6e7681;--color-label-secondary-text:#8b949e;--color-label-secondary-border:#30363d;--color-label-info-text:#388bfd;--color-label-info-border:rgba(56,139,253,0.4);--color-label-success-text:#3fb950;--color-label-success-border:rgba(46,160,67,0.4);--color-label-warning-text:#e3b341;--color-label-warning-border:rgba(242,211,91,0.4);--color-label-danger-text:#f85149;--color-label-danger-border:rgba(248,81,73,0.4);--color-label-orange-text:#db6d28;--color-label-orange-border:rgba(219,109,40,0.4);--color-input-bg:#0d1117;--color-input-contrast-bg:rgba(1,4,9,0.5);--color-input-border:#21262d;--color-input-shadow:0 0 transparent;--color-input-disabled-bg:#161b22;--color-input-disabled-border:#30363d;--color-input-warning-border:#d29922;--color-input-error-border:#f85149;--color-input-tooltip-success-text:#56d364;--color-input-tooltip-success-bg:#101f1b;--color-input-tooltip-success-border:#1c532b;--color-input-tooltip-warning-text:#e3b341;--color-input-tooltip-warning-bg:#1e1c16;--color-input-tooltip-warning-border:#5d4411;--color-input-tooltip-error-text:#ff7b72;--color-input-tooltip-error-bg:#25171c;--color-input-tooltip-error-border:#792e2e;--color-avatar-bg:rgba(240,246,252,0.1);--color-avatar-border:rgba(240,246,252,0.1);--color-avatar-stack-fade:#30363d;--color-avatar-stack-fade-more:#21262d;--color-avatar-child-shadow:-2px -2px 0 #0d1117;--color-toast-text:#79c0ff;--color-toast-bg:#010409;--color-toast-border:#214981;--color-toast-shadow:0 8px 24px #010409;--color-toast-icon:#79c0ff;--color-toast-icon-bg:#121d2e;--color-toast-icon-border:#214981;--color-toast-success-text:#56d364;--color-toast-success-border:#1c532c;--color-toast-success-icon:#56d364;--color-toast-success-icon-bg:#111f1c;--color-toast-success-icon-border:#1c532c;--color-toast-warning-text:#e3b341;--color-toast-warning-border:#5e4411;--color-toast-warning-icon:#e3b341;--color-toast-warning-icon-bg:#1f1c16;--color-toast-warning-icon-border:#5e4411;--color-toast-danger-text:#ff7b72;--color-toast-danger-border:#792e2e;--color-toast-danger-icon:#ff7b72;--color-toast-danger-icon-bg:#25171c;--color-toast-danger-icon-border:#792e2e;--color-toast-loading-text:#c9d1d9;--color-toast-loading-border:#30363d;--color-toast-loading-icon:#f0f6fc;--color-toast-loading-icon-bg:#30363d;--color-toast-loading-icon-border:#30363d;--color-timeline-text:#b1bac4;--color-timeline-badge-bg:#0d1117;--color-timeline-target-badge-border:#1f6feb;--color-timeline-target-badge-shadow:#0d419d;--color-select-menu-border-secondary:#30363d;--color-select-menu-shadow:0 0 18px rgba(1,4,9,0.4);--color-select-menu-backdrop-bg:rgba(1,4,9,0.5);--color-select-menu-backdrop-border:#484f58;--color-select-menu-tap-highlight:rgba(48,54,61,0.5);--color-select-menu-tap-focus-bg:#0c2d6b;--color-box-blue-border:#0d419d;--color-box-row-yellow-bg:rgba(235,196,64,0.1);--color-box-row-blue-bg:rgba(121,192,255,0.1);--color-box-header-blue-bg:#0d1117;--color-box-header-blue-border:#30363d;--color-box-border-info:rgba(56,139,253,0.4);--color-box-bg-info:rgba(56,139,253,0.1);--color-box-border-warning:rgba(187,128,9,0.4);--color-box-bg-warning:rgba(187,128,9,0.1);--color-branch-name-text:#c9d1d9;--color-branch-name-icon:#b1bac4;--color-branch-name-bg:rgba(88,166,255,0.1);--color-branch-name-link-text:#58a6ff;--color-branch-name-link-icon:#58a6ff;--color-branch-name-link-bg:rgba(88,166,255,0.1);--color-markdown-code-bg:rgba(240,246,252,0.15);--color-markdown-frame-border:#3b434b;--color-markdown-blockquote-border:#3b434b;--color-markdown-table-border:#3b434b;--color-markdown-table-tr-border:#272c32;--color-menu-heading-text:#8b949e;--color-menu-border-active:#f78166;--color-menu-bg-active:#161b22;--color-sidenav-selected-bg:#21262d;--color-sidenav-border-active:#f78166;--color-header-text:rgba(240,246,252,0.7);--color-header-bg:#161b22;--color-header-logo:#f0f6fc;--color-filter-item-bar-bg:#12161c;--color-hidden-text-expander-bg:#21262d;--color-hidden-text-expander-bg-hover:#30363d;--color-drag-and-drop-border:#25292f;--color-upload-enabled-border:#3b434b;--color-upload-enabled-border-focused:#4487ee;--color-previewable-comment-form-border:#25292f;--color-underlinenav-border:rgba(48,54,61,0);--color-underlinenav-border-hover:#30363d;--color-underlinenav-border-active:#f78166;--color-underlinenav-text:#8b949e;--color-underlinenav-text-hover:#c9d1d9;--color-underlinenav-text-active:#c9d1d9;--color-underlinenav-icon:#6e7681;--color-underlinenav-icon-hover:#c9d1d9;--color-underlinenav-icon-active:#c9d1d9;--color-underlinenav-counter-text:#8b949e;--color-verified-badge-text:#3fb950;--color-verified-badge-bg:rgba(63,185,80,0.1);--color-verified-badge-border:rgba(63,185,80,0.4);--color-social-count-bg:#21262d;--color-tooltip-text:#f0f6fc;--color-tooltip-bg:#21262d;--color-header-search-bg:#0d1117;--color-header-search-border:#21262d;--color-search-keyword-hl:rgba(187,128,9,0.4);--color-diffstat-neutral-bg:#30363d;--color-diffstat-neutral-border:rgba(240,246,252,0.1);--color-diffstat-deletion-bg:#da3633;--color-diffstat-deletion-border:#f85149;--color-diffstat-addition-bg:#238636;--color-diffstat-addition-border:#2ea043;--color-mktg-success:#29933d;--color-mktg-info:#2a7bf3;--color-mktg-bg-shade-gradient-top:rgba(1,4,9,0.065);--color-mktg-bg-shade-gradient-bottom:rgba(1,4,9,0);--color-mktg-btn-bg:#1f6feb;--color-mktg-btn-border:#1f6feb;--color-mktg-btn-text:#f0f6fc;--color-mktg-btn-icon:#f0f6fc;--color-mktg-btn-focus-shadow:0 0 0 3px rgba(31,111,235,0.3);--color-mktg-btn-hover-bg:#388bfd;--color-mktg-btn-hover-border:#388bfd;--color-mktg-btn-disabled-bg:rgba(56,139,253,0.5);--color-mktg-btn-disabled-border:transparent;--color-mktg-btn-disabled-text:rgba(240,246,252,0.5);--color-mktg-btn-disabled-icon:rgba(240,246,252,0.5);--color-mktg-btn-primary-bg:#238636;--color-mktg-btn-primary-border:#238636;--color-mktg-btn-primary-text:#f0f6fc;--color-mktg-btn-primary-icon:#f0f6fc;--color-mktg-btn-primary-focus-shadow:0 0 0 3px rgba(35,134,54,0.3);--color-mktg-btn-primary-hover-bg:#2ea043;--color-mktg-btn-primary-hover-border:#2ea043;--color-mktg-btn-primary-disabled-bg:rgba(46,160,67,0.5);--color-mktg-btn-primary-disabled-border:transparent;--color-mktg-btn-primary-disabled-text:rgba(240,246,252,0.5);--color-mktg-btn-primary-disabled-icon:rgba(240,246,252,0.5);--color-mktg-btn-outline-bg:transparent;--color-mktg-btn-outline-border:rgba(56,139,253,0.5);--color-mktg-btn-outline-text:#388bfd;--color-mktg-btn-outline-icon:#388bfd;--color-mktg-btn-outline-focus-shadow:0 0 0 3px rgba(56,139,253,0.3);--color-mktg-btn-outline-hover-bg:transparent;--color-mktg-btn-outline-hover-border:#388bfd;--color-mktg-btn-outline-hover-text:#58a6ff;--color-mktg-btn-outline-hover-icon:#58a6ff;--color-mktg-btn-outline-disabled-bg:transparent;--color-mktg-btn-outline-disabled-border:rgba(56,139,253,0.2);--color-mktg-btn-outline-disabled-text:rgba(56,139,253,0.5);--color-mktg-btn-outline-disabled-icon:rgba(56,139,253,0.5);--color-mktg-btn-dark-bg:transparent;--color-mktg-btn-dark-border:rgba(201,209,217,0.5);--color-mktg-btn-dark-text:#c9d1d9;--color-mktg-btn-dark-icon:#c9d1d9;--color-mktg-btn-dark-focus-shadow:0 0 0 3px rgba(201,209,217,0.3);--color-mktg-btn-dark-hover-bg:rgba(201,209,217,0.5);--color-mktg-btn-dark-hover-border:rgba(201,209,217,0.5);--color-mktg-btn-dark-hover-text:#0d1117;--color-mktg-btn-dark-hover-icon:#0d1117;--color-mktg-btn-dark-disabled-bg:transparent;--color-mktg-btn-dark-disabled-border:rgba(201,209,217,0.2);--color-mktg-btn-dark-disabled-text:rgba(201,209,217,0.5);--color-mktg-btn-dark-disabled-icon:rgba(201,209,217,0.5);--color-files-explorer-icon:#6e7681;--color-hl-author-bg:#051d4d;--color-hl-author-border:#0d419d;--color-logo-subdued:#30363d;--color-discussion-border:#34513b;--color-discussion-bg-success:rgba(46,160,67,0.1);--color-actions-workflow-table-sticky-bg:rgba(13,17,23,0.95);--color-repo-language-color-border:rgba(240,246,252,0.2);--color-code-selection-bg:rgba(121,192,255,0.3);--color-highlight-text:#ffd467;--color-highlight-bg:rgba(204,143,44,0.38);--color-blob-line-highlight-bg:rgba(210,153,34,0.15);--color-blob-line-highlight-border:#e3b341;--color-diff-addition-text:#56d364;--color-diff-addition-bg:rgba(46,160,67,0.2);--color-diff-addition-border:#196c2e;--color-diff-deletion-text:#f85149;--color-diff-deletion-bg:rgba(218,54,51,0.2);--color-diff-deletion-border:#b62324;--color-diff-change-text:#e3b341;--color-diff-change-bg:#341a00;--color-diff-change-border:#9e6a03;--color-diff-blob-num-text:rgba(240,246,252,0.3);--color-diff-blob-num-hover-text:rgba(240,246,252,0.6);--color-diff-blob-addition-num-text:#3fb950;--color-diff-blob-addition-num-hover-text:#7ee787;--color-diff-blob-addition-num-bg:rgba(46,160,67,0.1);--color-diff-blob-addition-line-bg:rgba(46,160,67,0.2);--color-diff-blob-addition-word-bg:rgba(46,160,67,0.55);--color-diff-blob-deletion-num-text:#f85149;--color-diff-blob-deletion-num-hover-text:#ffa198;--color-diff-blob-deletion-num-bg:rgba(218,54,51,0.1);--color-diff-blob-deletion-line-bg:rgba(218,54,51,0.2);--color-diff-blob-deletion-word-bg:rgba(218,54,51,0.5);--color-diff-blob-hunk-text:#8b949e;--color-diff-blob-hunk-num-bg:rgba(88,166,255,0.15);--color-diff-blob-hunk-line-bg:rgba(88,166,255,0.1);--color-diff-blob-empty-block-bg:#161b22;--color-diff-blob-selected-line-highlight-bg:rgba(187,128,9,0.1);--color-diff-blob-selected-line-highlight-border:#bb8009;--color-diff-blob-selected-line-highlight-mix-blend-mode:normal;--color-diff-blob-expander-icon:#8b949e;--color-diff-blob-expander-hover-icon:#f0f6fc;--color-diff-blob-expander-hover-bg:#1f6feb;--color-diff-blob-comment-button-icon:#f0f6fc;--color-diff-blob-comment-button-bg:#1f6feb;--color-diff-blob-comment-button-gradient-bg:#367eed;--color-global-nav-logo:#f0f6fc;--color-global-nav-bg:#161b22;--color-global-nav-text:#c9d1d9;--color-global-nav-icon:#c9d1d9;--color-global-nav-input-bg:#0d1117;--color-global-nav-input-border:#21262d;--color-global-nav-input-icon:#21262d;--color-global-nav-input-placeholder:#484f58;--color-calendar-graph-day-bg:#161b22;--color-calendar-graph-day-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-bg:#003820;--color-calendar-graph-day-L2-bg:#00602d;--color-calendar-graph-day-L3-bg:#10983d;--color-calendar-graph-day-L4-bg:#27d545;--color-calendar-graph-day-L4-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L3-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L2-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L1-border:hsla(0,0%,100%,0.05);--color-footer-invertocat-octicon:#30363d;--color-footer-invertocat-octicon-hover:#6e7681;--color-pr-state-draft-text:#8b949e;--color-pr-state-draft-bg:rgba(139,148,158,0.1);--color-pr-state-draft-border:rgba(139,148,158,0.4);--color-pr-state-open-text:#3fb950;--color-pr-state-open-bg:rgba(63,185,80,0.1);--color-pr-state-open-border:rgba(63,185,80,0.4);--color-pr-state-merged-text:#a371f7;--color-pr-state-merged-bg:rgba(188,140,255,0.1);--color-pr-state-merged-border:rgba(188,140,255,0.4);--color-pr-state-closed-text:#f85149;--color-pr-state-closed-bg:rgba(218,54,51,0.1);--color-pr-state-closed-border:rgba(218,54,51,0.4);--color-topic-tag-text:#58a6ff;--color-topic-tag-bg:rgba(56,139,253,0.1);--color-topic-tag-hover-bg:rgba(56,139,253,0.2);--color-topic-tag-active-bg:rgba(56,139,253,0.15);--color-merge-box-success-icon-bg:rgba(46,160,67,0.1);--color-merge-box-success-icon-text:#3fb950;--color-merge-box-success-icon-border:rgba(46,160,67,0.4);--color-merge-box-success-indicator-bg:#238636;--color-merge-box-success-indicator-border:#2ea043;--color-merge-box-merged-icon-bg:rgba(188,140,255,0.1);--color-merge-box-merged-icon-text:#a371f7;--color-merge-box-merged-icon-border:rgba(188,140,255,0.4);--color-merge-box-merged-box-border:rgba(188,140,255,0.4);--color-merge-box-neutral-icon-bg:rgba(201,209,217,0.1);--color-merge-box-neutral-icon-text:#8b949e;--color-merge-box-neutral-icon-border:rgba(201,209,217,0.4);--color-merge-box-neutral-indicator-bg:#484f58;--color-merge-box-neutral-indicator-border:#6e7681;--color-merge-box-warning-icon-bg:rgba(187,128,9,0.1);--color-merge-box-warning-icon-text:#e3b341;--color-merge-box-warning-icon-border:rgba(187,128,9,0.4);--color-merge-box-warning-box-border:rgba(187,128,9,0.4);--color-merge-box-warning-merge-highlight:rgba(187,128,9,0.1);--color-merge-box-error-icon-bg:rgba(248,81,73,0.1);--color-merge-box-error-icon-text:#f85149;--color-merge-box-error-icon-border:rgba(248,81,73,0.4);--color-merge-box-error-indicator-bg:#da3633;--color-merge-box-error-indicator-border:#f85149;--color-project-card-bg:#161b22;--color-project-header-bg:#0d1117;--color-project-sidebar-bg:#161b22;--color-project-gradient-in:#161b22;--color-project-gradient-out:rgba(22,27,34,0);--color-checks-bg:#090c10;--color-checks-run-border-width:1px;--color-checks-container-border-width:1px;--color-checks-text-primary:#c9d1d9;--color-checks-text-secondary:#8b949e;--color-checks-text-link:#58a6ff;--color-checks-btn-icon:#6e7681;--color-checks-btn-hover-icon:#c9d1d9;--color-checks-btn-hover-bg:#30363d;--color-checks-input-text:#8b949e;--color-checks-input-placeholder-text:#484f58;--color-checks-input-focus-text:#c9d1d9;--color-checks-input-bg:#0d1117;--color-checks-input-shadow:0 0 0 1px #21262d;--color-checks-dropdown-text:#c9d1d9;--color-checks-dropdown-bg:#21262d;--color-checks-dropdown-border:#30363d;--color-checks-dropdown-hover-text:#f0f6fc;--color-checks-dropdown-hover-bg:#1f6feb;--color-checks-dropdown-btn-hover-text:#f0f6fc;--color-checks-dropdown-btn-hover-bg:#161b22;--color-checks-scrollbar-thumb-bg:#30363d;--color-checks-header-label-text:#8b949e;--color-checks-header-label-open-text:#c9d1d9;--color-checks-header-border:#21262d;--color-checks-header-icon:#6e7681;--color-checks-line-text:#8b949e;--color-checks-line-num-text:#8b949e;--color-checks-line-timestamp-text:#8b949e;--color-checks-line-hover-bg:#161b22;--color-checks-line-selected-bg:rgba(56,139,253,0.1);--color-checks-line-selected-num-text:#58a6ff;--color-checks-line-dt-fm-text:#0d1117;--color-checks-line-dt-fm-bg:#d29922;--color-checks-gate-bg:rgba(132,83,6,0.15);--color-checks-gate-text:#8b949e;--color-checks-gate-waiting-text:#e3b341;--color-checks-step-header-open-bg:#161b22;--color-checks-step-error-text:#f85149;--color-checks-step-warning-text:#e3b341;--color-checks-logline-text:#6e7681;--color-checks-logline-num-text:#8b949e;--color-checks-logline-debug-text:#bc8cff;--color-checks-logline-error-text:#8b949e;--color-checks-logline-error-num-text:#8b949e;--color-checks-logline-error-bg:rgba(248,81,73,0.1);--color-checks-logline-warning-text:#8b949e;--color-checks-logline-warning-num-text:#e3b341;--color-checks-logline-warning-bg:rgba(187,128,9,0.1);--color-checks-logline-command-text:#58a6ff;--color-checks-logline-section-text:#56d364;--color-intro-shelf-gradient-left:rgba(56,139,253,0.1);--color-intro-shelf-gradient-right:rgba(46,160,67,0.1);--color-intro-shelf-gradient-in:#0d1117;--color-intro-shelf-gradient-out:rgba(13,17,23,0);--color-marketing-icon-primary:#79c0ff;--color-marketing-icon-secondary:#1f6feb;--color-prettylights-syntax-comment:#8b949e;--color-prettylights-syntax-constant:#79c0ff;--color-prettylights-syntax-entity:#d2a8ff;--color-prettylights-syntax-storage-modifier-import:#c9d1d9;--color-prettylights-syntax-entity-tag:#7ee787;--color-prettylights-syntax-keyword:#ff7b72;--color-prettylights-syntax-string:#a5d6ff;--color-prettylights-syntax-variable:#ffa657;--color-prettylights-syntax-brackethighlighter-unmatched:#f85149;--color-prettylights-syntax-invalid-illegal-text:#f0f6fc;--color-prettylights-syntax-invalid-illegal-bg:#8e1519;--color-prettylights-syntax-carriage-return-text:#f0f6fc;--color-prettylights-syntax-carriage-return-bg:#b62324;--color-prettylights-syntax-string-regexp:#7ee787;--color-prettylights-syntax-markup-list:#f2cc60;--color-prettylights-syntax-markup-heading:#1f6feb;--color-prettylights-syntax-markup-italic:#c9d1d9;--color-prettylights-syntax-markup-bold:#c9d1d9;--color-prettylights-syntax-markup-deleted-text:#ffdcd7;--color-prettylights-syntax-markup-deleted-bg:#67060c;--color-prettylights-syntax-markup-inserted-text:#aff5b4;--color-prettylights-syntax-markup-inserted-bg:#033a16;--color-prettylights-syntax-markup-changed-text:#ffdfb6;--color-prettylights-syntax-markup-changed-bg:#5a1e02;--color-prettylights-syntax-markup-ignored-text:#c9d1d9;--color-prettylights-syntax-markup-ignored-bg:#1158c7;--color-prettylights-syntax-meta-diff-range:#d2a8ff;--color-prettylights-syntax-brackethighlighter-angle:#8b949e;--color-prettylights-syntax-sublimelinter-gutter-mark:#484f58;--color-prettylights-syntax-constant-other-reference-link:#a5d6ff;--color-codemirror-text:#c9d1d9;--color-codemirror-bg:#0d1117;--color-codemirror-gutters-bg:#0d1117;--color-codemirror-guttermarker-text:#0d1117;--color-codemirror-guttermarker-subtle-text:#6e7681;--color-codemirror-linenumber-text:#8b949e;--color-codemirror-cursor:#f0f6fc;--color-codemirror-selection-bg:rgba(121,192,255,0.3);--color-codemirror-activeline-bg:#161b22;--color-codemirror-matchingbracket-text:#c9d1d9;--color-codemirror-lines-bg:#0d1117;--color-codemirror-syntax-comment:#8b949e;--color-codemirror-syntax-constant:#79c0ff;--color-codemirror-syntax-entity:#d2a8ff;--color-codemirror-syntax-keyword:#ff7b72;--color-codemirror-syntax-storage:#ff7b72;--color-codemirror-syntax-string:#a5d6ff;--color-codemirror-syntax-support:#79c0ff;--color-codemirror-syntax-variable:#ffa657;--color-ansi-black:#0d1117;--color-ansi-black-bright:#161b22;--color-ansi-white:#b1bac4;--color-ansi-white-bright:#b1bac4;--color-ansi-gray:#6e7681;--color-ansi-red:#ff7b72;--color-ansi-red-bright:#ffa198;--color-ansi-green:#3fb950;--color-ansi-green-bright:#56d364;--color-ansi-yellow:#d29922;--color-ansi-yellow-bright:#e3b341;--color-ansi-blue:#58a6ff;--color-ansi-blue-bright:#79c0ff;--color-ansi-magenta:#bc8cff;--color-ansi-magenta-bright:#d2a8ff;--color-ansi-cyan:#76e3ea;--color-ansi-cyan-bright:#b3f0ff}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme=dark]{--color-scale-black:#010409;--color-scale-white:#f0f6fc;--color-scale-gray-0:#f0f6fc;--color-scale-gray-1:#c9d1d9;--color-scale-gray-2:#b1bac4;--color-scale-gray-3:#8b949e;--color-scale-gray-4:#6e7681;--color-scale-gray-5:#484f58;--color-scale-gray-6:#30363d;--color-scale-gray-7:#21262d;--color-scale-gray-8:#161b22;--color-scale-gray-9:#0d1117;--color-scale-blue-0:#cae8ff;--color-scale-blue-1:#a5d6ff;--color-scale-blue-2:#79c0ff;--color-scale-blue-3:#58a6ff;--color-scale-blue-4:#388bfd;--color-scale-blue-5:#1f6feb;--color-scale-blue-6:#1158c7;--color-scale-blue-7:#0d419d;--color-scale-blue-8:#0c2d6b;--color-scale-blue-9:#051d4d;--color-scale-green-0:#aff5b4;--color-scale-green-1:#7ee787;--color-scale-green-2:#56d364;--color-scale-green-3:#3fb950;--color-scale-green-4:#2ea043;--color-scale-green-5:#238636;--color-scale-green-6:#196c2e;--color-scale-green-7:#0f5323;--color-scale-green-8:#033a16;--color-scale-green-9:#04260f;--color-scale-yellow-0:#f8e3a1;--color-scale-yellow-1:#f2cc60;--color-scale-yellow-2:#e3b341;--color-scale-yellow-3:#d29922;--color-scale-yellow-4:#bb8009;--color-scale-yellow-5:#9e6a03;--color-scale-yellow-6:#845306;--color-scale-yellow-7:#693e00;--color-scale-yellow-8:#4b2900;--color-scale-yellow-9:#341a00;--color-scale-orange-0:#ffdfb6;--color-scale-orange-1:#ffc680;--color-scale-orange-2:#ffa657;--color-scale-orange-3:#f0883e;--color-scale-orange-4:#db6d28;--color-scale-orange-5:#bd561d;--color-scale-orange-6:#9b4215;--color-scale-orange-7:#762d0a;--color-scale-orange-8:#5a1e02;--color-scale-orange-9:#3d1300;--color-scale-red-0:#ffdcd7;--color-scale-red-1:#ffc1ba;--color-scale-red-2:#ffa198;--color-scale-red-3:#ff7b72;--color-scale-red-4:#f85149;--color-scale-red-5:#da3633;--color-scale-red-6:#b62324;--color-scale-red-7:#8e1519;--color-scale-red-8:#67060c;--color-scale-red-9:#490202;--color-scale-purple-0:#eddeff;--color-scale-purple-1:#e2c5ff;--color-scale-purple-2:#d2a8ff;--color-scale-purple-3:#bc8cff;--color-scale-purple-4:#a371f7;--color-scale-purple-5:#8957e5;--color-scale-purple-6:#6e40c9;--color-scale-purple-7:#553098;--color-scale-purple-8:#3c1e70;--color-scale-purple-9:#271052;--color-scale-pink-0:#ffdaec;--color-scale-pink-1:#ffbedd;--color-scale-pink-2:#ff9bce;--color-scale-pink-3:#f778ba;--color-scale-pink-4:#db61a2;--color-scale-pink-5:#bf4b8a;--color-scale-pink-6:#9e3670;--color-scale-pink-7:#7d2457;--color-scale-pink-8:#5e103e;--color-scale-pink-9:#42062a;--color-auto-black:#f0f6fc;--color-auto-white:#010409;--color-auto-gray-0:#0d1117;--color-auto-gray-1:#161b22;--color-auto-gray-2:#21262d;--color-auto-gray-3:#30363d;--color-auto-gray-4:#484f58;--color-auto-gray-5:#6e7681;--color-auto-gray-6:#8b949e;--color-auto-gray-7:#b1bac4;--color-auto-gray-8:#c9d1d9;--color-auto-gray-9:#f0f6fc;--color-auto-blue-0:#051d4d;--color-auto-blue-1:#0c2d6b;--color-auto-blue-2:#0d419d;--color-auto-blue-3:#1158c7;--color-auto-blue-4:#1f6feb;--color-auto-blue-5:#388bfd;--color-auto-blue-6:#58a6ff;--color-auto-blue-7:#79c0ff;--color-auto-blue-8:#a5d6ff;--color-auto-blue-9:#cae8ff;--color-auto-green-0:#04260f;--color-auto-green-1:#033a16;--color-auto-green-2:#0f5323;--color-auto-green-3:#196c2e;--color-auto-green-4:#238636;--color-auto-green-5:#2ea043;--color-auto-green-6:#3fb950;--color-auto-green-7:#56d364;--color-auto-green-8:#7ee787;--color-auto-green-9:#aff5b4;--color-auto-yellow-0:#341a00;--color-auto-yellow-1:#4b2900;--color-auto-yellow-2:#693e00;--color-auto-yellow-3:#845306;--color-auto-yellow-4:#9e6a03;--color-auto-yellow-5:#bb8009;--color-auto-yellow-6:#d29922;--color-auto-yellow-7:#e3b341;--color-auto-yellow-8:#f2cc60;--color-auto-yellow-9:#f8e3a1;--color-auto-orange-0:#3d1300;--color-auto-orange-1:#5a1e02;--color-auto-orange-2:#762d0a;--color-auto-orange-3:#9b4215;--color-auto-orange-4:#bd561d;--color-auto-orange-5:#db6d28;--color-auto-orange-6:#f0883e;--color-auto-orange-7:#ffa657;--color-auto-orange-8:#ffc680;--color-auto-orange-9:#ffdfb6;--color-auto-red-0:#490202;--color-auto-red-1:#67060c;--color-auto-red-2:#8e1519;--color-auto-red-3:#b62324;--color-auto-red-4:#da3633;--color-auto-red-5:#f85149;--color-auto-red-6:#ff7b72;--color-auto-red-7:#ffa198;--color-auto-red-8:#ffc1ba;--color-auto-red-9:#ffdcd7;--color-auto-purple-0:#271052;--color-auto-purple-1:#3c1e70;--color-auto-purple-2:#553098;--color-auto-purple-3:#6e40c9;--color-auto-purple-4:#8957e5;--color-auto-purple-5:#a371f7;--color-auto-purple-6:#bc8cff;--color-auto-purple-7:#d2a8ff;--color-auto-purple-8:#e2c5ff;--color-auto-purple-9:#eddeff;--color-auto-pink-0:#42062a;--color-auto-pink-1:#5e103e;--color-auto-pink-2:#7d2457;--color-auto-pink-3:#9e3670;--color-auto-pink-4:#bf4b8a;--color-auto-pink-5:#db61a2;--color-auto-pink-6:#f778ba;--color-auto-pink-7:#ff9bce;--color-auto-pink-8:#ffbedd;--color-auto-pink-9:#ffdaec;--color-text-primary:#c9d1d9;--color-text-secondary:#8b949e;--color-text-tertiary:#8b949e;--color-text-placeholder:#484f58;--color-text-disabled:#484f58;--color-text-inverse:#0d1117;--color-text-link:#58a6ff;--color-text-danger:#f85149;--color-text-success:#56d364;--color-text-warning:#e3b341;--color-text-white:#f0f6fc;--color-icon-primary:#c9d1d9;--color-icon-secondary:#6e7681;--color-icon-tertiary:#484f58;--color-icon-info:#79c0ff;--color-icon-danger:#f85149;--color-icon-success:#56d364;--color-icon-warning:#e3b341;--color-border-primary:#30363d;--color-border-secondary:#21262d;--color-border-tertiary:#6e7681;--color-border-overlay:#30363d;--color-border-inverse:#f0f6fc;--color-border-info:rgba(56,139,253,0.4);--color-border-danger:rgba(248,81,73,0.4);--color-border-success:rgba(63,185,80,0.4);--color-border-warning:rgba(187,128,9,0.4);--color-bg-canvas:#0d1117;--color-bg-canvas-mobile:#010409;--color-bg-canvas-inverse:#f0f6fc;--color-bg-canvas-inset:#090c10;--color-bg-primary:#0d1117;--color-bg-secondary:#0d1117;--color-bg-tertiary:#161b22;--color-bg-overlay:#21262d;--color-bg-backdrop:rgba(1,4,9,0.8);--color-bg-info:rgba(56,139,253,0.1);--color-bg-info-inverse:#388bfd;--color-bg-danger:rgba(248,81,73,0.1);--color-bg-danger-inverse:#da3633;--color-bg-success:rgba(46,160,67,0.1);--color-bg-success-inverse:#2ea043;--color-bg-warning:rgba(187,128,9,0.1);--color-bg-warning-inverse:#bb8009;--color-shadow-small:0 0 transparent;--color-shadow-medium:0 3px 6px #010409;--color-shadow-large:0 8px 24px #010409;--color-shadow-extra-large:0 12px 48px #010409;--color-shadow-highlight:0 0 transparent;--color-shadow-inset:0 0 transparent;--color-state-hover-primary-bg:#1f6feb;--color-state-hover-primary-border:#388bfd;--color-state-hover-primary-text:#f0f6fc;--color-state-hover-primary-icon:#f0f6fc;--color-state-hover-secondary-bg:#161b22;--color-state-hover-secondary-border:#161b22;--color-state-selected-primary-bg:#1f6feb;--color-state-selected-primary-border:#388bfd;--color-state-selected-primary-text:#f0f6fc;--color-state-selected-primary-icon:#f0f6fc;--color-state-focus-border:#388bfd;--color-state-focus-shadow:0 0 0 3px #0c2d6b;--color-fade-fg-10:rgba(240,246,252,0.1);--color-fade-fg-15:rgba(240,246,252,0.15);--color-fade-fg-30:rgba(240,246,252,0.3);--color-fade-fg-50:rgba(240,246,252,0.5);--color-fade-fg-70:rgba(240,246,252,0.7);--color-fade-fg-85:rgba(240,246,252,0.85);--color-fade-black-10:rgba(1,4,9,0.1);--color-fade-black-15:rgba(1,4,9,0.15);--color-fade-black-30:rgba(1,4,9,0.3);--color-fade-black-50:rgba(1,4,9,0.5);--color-fade-black-70:rgba(1,4,9,0.7);--color-fade-black-85:rgba(1,4,9,0.85);--color-fade-white-10:rgba(240,246,252,0.1);--color-fade-white-15:rgba(240,246,252,0.15);--color-fade-white-30:rgba(240,246,252,0.3);--color-fade-white-50:rgba(240,246,252,0.5);--color-fade-white-70:rgba(240,246,252,0.7);--color-fade-white-85:rgba(240,246,252,0.85);--color-alert-info-text:#79c0ff;--color-alert-info-icon:#79c0ff;--color-alert-info-bg:rgba(56,139,253,0.1);--color-alert-info-border:rgba(56,139,253,0.4);--color-alert-warn-text:#e3b341;--color-alert-warn-icon:#e3b341;--color-alert-warn-bg:rgba(187,128,9,0.1);--color-alert-warn-border:rgba(187,128,9,0.4);--color-alert-error-text:#ff7b72;--color-alert-error-icon:#ff7b72;--color-alert-error-bg:rgba(248,81,73,0.1);--color-alert-error-border:rgba(248,81,73,0.4);--color-alert-success-text:#56d364;--color-alert-success-icon:#56d364;--color-alert-success-bg:rgba(46,160,67,0.1);--color-alert-success-border:rgba(46,160,67,0.4);--color-autocomplete-shadow:0 16px 32px rgba(1,4,9,0.85);--color-autocomplete-row-border:#30363d;--color-blankslate-icon:#535c66;--color-btn-text:#c9d1d9;--color-btn-bg:#21262d;--color-btn-border:#30363d;--color-btn-shadow:0 0 transparent;--color-btn-inset-shadow:0 0 transparent;--color-btn-hover-bg:#30363d;--color-btn-hover-border:#8b949e;--color-btn-selected-bg:#161b22;--color-btn-focus-bg:#21262d;--color-btn-focus-border:#8b949e;--color-btn-focus-shadow:0 0 0 3px rgba(139,148,158,0.3);--color-btn-shadow-active:inset 0 0.15em 0.3em rgba(1,4,9,0.15);--color-btn-shadow-input-focus:0 0 0 0.2em rgba(31,111,235,0.3);--color-btn-primary-text:#fff;--color-btn-primary-bg:#238636;--color-btn-primary-border:#2ea043;--color-btn-primary-shadow:0 0 transparent;--color-btn-primary-inset-shadow:0 0 transparent;--color-btn-primary-hover-bg:#2ea043;--color-btn-primary-hover-border:#3fb950;--color-btn-primary-selected-bg:#238636;--color-btn-primary-selected-shadow:0 0 transparent;--color-btn-primary-disabled-text:rgba(240,246,252,0.5);--color-btn-primary-disabled-bg:rgba(35,134,54,0.6);--color-btn-primary-disabled-border:transparent;--color-btn-primary-focus-bg:#238636;--color-btn-primary-focus-border:#3fb950;--color-btn-primary-focus-shadow:0 0 0 3px rgba(46,164,79,0.4);--color-btn-primary-icon:#f0f6fc;--color-btn-primary-counter-bg:rgba(240,246,252,0.2);--color-btn-outline-text:#58a6ff;--color-btn-outline-hover-text:#58a6ff;--color-btn-outline-hover-bg:#30363d;--color-btn-outline-hover-border:#58a6ff;--color-btn-outline-hover-shadow:0 1px 0 rgba(1,4,9,0.1);--color-btn-outline-hover-inset-shadow:inset 0 1px 0 rgba(240,246,252,0.03);--color-btn-outline-hover-counter-bg:rgba(240,246,252,0.2);--color-btn-outline-selected-text:#f0f6fc;--color-btn-outline-selected-bg:#0d419d;--color-btn-outline-selected-border:rgba(240,246,252,0.1);--color-btn-outline-selected-shadow:0 0 transparent;--color-btn-outline-disabled-text:rgba(88,166,255,0.5);--color-btn-outline-disabled-bg:#0d1117;--color-btn-outline-disabled-counter-bg:rgba(31,111,235,0.05);--color-btn-outline-focus-border:#58a6ff;--color-btn-outline-focus-shadow:0 0 0 3px rgba(17,88,199,0.4);--color-btn-outline-counter-bg:rgba(31,111,235,0.1);--color-btn-danger-text:#f85149;--color-btn-danger-hover-text:#fff;--color-btn-danger-hover-bg:#da3633;--color-btn-danger-hover-border:#f85149;--color-btn-danger-hover-shadow:0 0 transparent;--color-btn-danger-hover-inset-shadow:0 0 transparent;--color-btn-danger-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-danger-selected-text:#fff;--color-btn-danger-selected-bg:#b62324;--color-btn-danger-selected-border:rgba(240,246,252,0.1);--color-btn-danger-selected-shadow:0 0 transparent;--color-btn-danger-disabled-text:rgba(248,81,73,0.5);--color-btn-danger-disabled-bg:#0d1117;--color-btn-danger-disabled-counter-bg:rgba(218,54,51,0.05);--color-btn-danger-focus-border:#f85149;--color-btn-danger-focus-shadow:0 0 0 3px rgba(182,35,36,0.4);--color-btn-danger-counter-bg:rgba(218,54,51,0.1);--color-btn-danger-icon:#f85149;--color-btn-danger-hover-icon:#f0f6fc;--color-btn-counter-bg:#30363d;--color-counter-text:#c9d1d9;--color-counter-bg:#30363d;--color-counter-primary-text:#c9d1d9;--color-counter-primary-bg:#6e7681;--color-counter-secondary-text:#8b949e;--color-dropdown-shadow:0 16px 32px rgba(1,4,9,0.85);--color-label-border:#30363d;--color-label-primary-text:#b1bac4;--color-label-primary-border:#6e7681;--color-label-secondary-text:#8b949e;--color-label-secondary-border:#30363d;--color-label-info-text:#388bfd;--color-label-info-border:rgba(56,139,253,0.4);--color-label-success-text:#3fb950;--color-label-success-border:rgba(46,160,67,0.4);--color-label-warning-text:#e3b341;--color-label-warning-border:rgba(242,211,91,0.4);--color-label-danger-text:#f85149;--color-label-danger-border:rgba(248,81,73,0.4);--color-label-orange-text:#db6d28;--color-label-orange-border:rgba(219,109,40,0.4);--color-input-bg:#0d1117;--color-input-contrast-bg:rgba(1,4,9,0.5);--color-input-border:#21262d;--color-input-shadow:0 0 transparent;--color-input-disabled-bg:#161b22;--color-input-disabled-border:#30363d;--color-input-warning-border:#d29922;--color-input-error-border:#f85149;--color-input-tooltip-success-text:#56d364;--color-input-tooltip-success-bg:#101f1b;--color-input-tooltip-success-border:#1c532b;--color-input-tooltip-warning-text:#e3b341;--color-input-tooltip-warning-bg:#1e1c16;--color-input-tooltip-warning-border:#5d4411;--color-input-tooltip-error-text:#ff7b72;--color-input-tooltip-error-bg:#25171c;--color-input-tooltip-error-border:#792e2e;--color-avatar-bg:rgba(240,246,252,0.1);--color-avatar-border:rgba(240,246,252,0.1);--color-avatar-stack-fade:#30363d;--color-avatar-stack-fade-more:#21262d;--color-avatar-child-shadow:-2px -2px 0 #0d1117;--color-toast-text:#79c0ff;--color-toast-bg:#010409;--color-toast-border:#214981;--color-toast-shadow:0 8px 24px #010409;--color-toast-icon:#79c0ff;--color-toast-icon-bg:#121d2e;--color-toast-icon-border:#214981;--color-toast-success-text:#56d364;--color-toast-success-border:#1c532c;--color-toast-success-icon:#56d364;--color-toast-success-icon-bg:#111f1c;--color-toast-success-icon-border:#1c532c;--color-toast-warning-text:#e3b341;--color-toast-warning-border:#5e4411;--color-toast-warning-icon:#e3b341;--color-toast-warning-icon-bg:#1f1c16;--color-toast-warning-icon-border:#5e4411;--color-toast-danger-text:#ff7b72;--color-toast-danger-border:#792e2e;--color-toast-danger-icon:#ff7b72;--color-toast-danger-icon-bg:#25171c;--color-toast-danger-icon-border:#792e2e;--color-toast-loading-text:#c9d1d9;--color-toast-loading-border:#30363d;--color-toast-loading-icon:#f0f6fc;--color-toast-loading-icon-bg:#30363d;--color-toast-loading-icon-border:#30363d;--color-timeline-text:#b1bac4;--color-timeline-badge-bg:#0d1117;--color-timeline-target-badge-border:#1f6feb;--color-timeline-target-badge-shadow:#0d419d;--color-select-menu-border-secondary:#30363d;--color-select-menu-shadow:0 0 18px rgba(1,4,9,0.4);--color-select-menu-backdrop-bg:rgba(1,4,9,0.5);--color-select-menu-backdrop-border:#484f58;--color-select-menu-tap-highlight:rgba(48,54,61,0.5);--color-select-menu-tap-focus-bg:#0c2d6b;--color-box-blue-border:#0d419d;--color-box-row-yellow-bg:rgba(235,196,64,0.1);--color-box-row-blue-bg:rgba(121,192,255,0.1);--color-box-header-blue-bg:#0d1117;--color-box-header-blue-border:#30363d;--color-box-border-info:rgba(56,139,253,0.4);--color-box-bg-info:rgba(56,139,253,0.1);--color-box-border-warning:rgba(187,128,9,0.4);--color-box-bg-warning:rgba(187,128,9,0.1);--color-branch-name-text:#c9d1d9;--color-branch-name-icon:#b1bac4;--color-branch-name-bg:rgba(88,166,255,0.1);--color-branch-name-link-text:#58a6ff;--color-branch-name-link-icon:#58a6ff;--color-branch-name-link-bg:rgba(88,166,255,0.1);--color-markdown-code-bg:rgba(240,246,252,0.15);--color-markdown-frame-border:#3b434b;--color-markdown-blockquote-border:#3b434b;--color-markdown-table-border:#3b434b;--color-markdown-table-tr-border:#272c32;--color-menu-heading-text:#8b949e;--color-menu-border-active:#f78166;--color-menu-bg-active:#161b22;--color-sidenav-selected-bg:#21262d;--color-sidenav-border-active:#f78166;--color-header-text:rgba(240,246,252,0.7);--color-header-bg:#161b22;--color-header-logo:#f0f6fc;--color-filter-item-bar-bg:#12161c;--color-hidden-text-expander-bg:#21262d;--color-hidden-text-expander-bg-hover:#30363d;--color-drag-and-drop-border:#25292f;--color-upload-enabled-border:#3b434b;--color-upload-enabled-border-focused:#4487ee;--color-previewable-comment-form-border:#25292f;--color-underlinenav-border:rgba(48,54,61,0);--color-underlinenav-border-hover:#30363d;--color-underlinenav-border-active:#f78166;--color-underlinenav-text:#8b949e;--color-underlinenav-text-hover:#c9d1d9;--color-underlinenav-text-active:#c9d1d9;--color-underlinenav-icon:#6e7681;--color-underlinenav-icon-hover:#c9d1d9;--color-underlinenav-icon-active:#c9d1d9;--color-underlinenav-counter-text:#8b949e;--color-verified-badge-text:#3fb950;--color-verified-badge-bg:rgba(63,185,80,0.1);--color-verified-badge-border:rgba(63,185,80,0.4);--color-social-count-bg:#21262d;--color-tooltip-text:#f0f6fc;--color-tooltip-bg:#21262d;--color-header-search-bg:#0d1117;--color-header-search-border:#21262d;--color-search-keyword-hl:rgba(187,128,9,0.4);--color-diffstat-neutral-bg:#30363d;--color-diffstat-neutral-border:rgba(240,246,252,0.1);--color-diffstat-deletion-bg:#da3633;--color-diffstat-deletion-border:#f85149;--color-diffstat-addition-bg:#238636;--color-diffstat-addition-border:#2ea043;--color-mktg-success:#29933d;--color-mktg-info:#2a7bf3;--color-mktg-bg-shade-gradient-top:rgba(1,4,9,0.065);--color-mktg-bg-shade-gradient-bottom:rgba(1,4,9,0);--color-mktg-btn-bg:#1f6feb;--color-mktg-btn-border:#1f6feb;--color-mktg-btn-text:#f0f6fc;--color-mktg-btn-icon:#f0f6fc;--color-mktg-btn-focus-shadow:0 0 0 3px rgba(31,111,235,0.3);--color-mktg-btn-hover-bg:#388bfd;--color-mktg-btn-hover-border:#388bfd;--color-mktg-btn-disabled-bg:rgba(56,139,253,0.5);--color-mktg-btn-disabled-border:transparent;--color-mktg-btn-disabled-text:rgba(240,246,252,0.5);--color-mktg-btn-disabled-icon:rgba(240,246,252,0.5);--color-mktg-btn-primary-bg:#238636;--color-mktg-btn-primary-border:#238636;--color-mktg-btn-primary-text:#f0f6fc;--color-mktg-btn-primary-icon:#f0f6fc;--color-mktg-btn-primary-focus-shadow:0 0 0 3px rgba(35,134,54,0.3);--color-mktg-btn-primary-hover-bg:#2ea043;--color-mktg-btn-primary-hover-border:#2ea043;--color-mktg-btn-primary-disabled-bg:rgba(46,160,67,0.5);--color-mktg-btn-primary-disabled-border:transparent;--color-mktg-btn-primary-disabled-text:rgba(240,246,252,0.5);--color-mktg-btn-primary-disabled-icon:rgba(240,246,252,0.5);--color-mktg-btn-outline-bg:transparent;--color-mktg-btn-outline-border:rgba(56,139,253,0.5);--color-mktg-btn-outline-text:#388bfd;--color-mktg-btn-outline-icon:#388bfd;--color-mktg-btn-outline-focus-shadow:0 0 0 3px rgba(56,139,253,0.3);--color-mktg-btn-outline-hover-bg:transparent;--color-mktg-btn-outline-hover-border:#388bfd;--color-mktg-btn-outline-hover-text:#58a6ff;--color-mktg-btn-outline-hover-icon:#58a6ff;--color-mktg-btn-outline-disabled-bg:transparent;--color-mktg-btn-outline-disabled-border:rgba(56,139,253,0.2);--color-mktg-btn-outline-disabled-text:rgba(56,139,253,0.5);--color-mktg-btn-outline-disabled-icon:rgba(56,139,253,0.5);--color-mktg-btn-dark-bg:transparent;--color-mktg-btn-dark-border:rgba(201,209,217,0.5);--color-mktg-btn-dark-text:#c9d1d9;--color-mktg-btn-dark-icon:#c9d1d9;--color-mktg-btn-dark-focus-shadow:0 0 0 3px rgba(201,209,217,0.3);--color-mktg-btn-dark-hover-bg:rgba(201,209,217,0.5);--color-mktg-btn-dark-hover-border:rgba(201,209,217,0.5);--color-mktg-btn-dark-hover-text:#0d1117;--color-mktg-btn-dark-hover-icon:#0d1117;--color-mktg-btn-dark-disabled-bg:transparent;--color-mktg-btn-dark-disabled-border:rgba(201,209,217,0.2);--color-mktg-btn-dark-disabled-text:rgba(201,209,217,0.5);--color-mktg-btn-dark-disabled-icon:rgba(201,209,217,0.5);--color-files-explorer-icon:#6e7681;--color-hl-author-bg:#051d4d;--color-hl-author-border:#0d419d;--color-logo-subdued:#30363d;--color-discussion-border:#34513b;--color-discussion-bg-success:rgba(46,160,67,0.1);--color-actions-workflow-table-sticky-bg:rgba(13,17,23,0.95);--color-repo-language-color-border:rgba(240,246,252,0.2);--color-code-selection-bg:rgba(121,192,255,0.3);--color-highlight-text:#ffd467;--color-highlight-bg:rgba(204,143,44,0.38);--color-blob-line-highlight-bg:rgba(210,153,34,0.15);--color-blob-line-highlight-border:#e3b341;--color-diff-addition-text:#56d364;--color-diff-addition-bg:rgba(46,160,67,0.2);--color-diff-addition-border:#196c2e;--color-diff-deletion-text:#f85149;--color-diff-deletion-bg:rgba(218,54,51,0.2);--color-diff-deletion-border:#b62324;--color-diff-change-text:#e3b341;--color-diff-change-bg:#341a00;--color-diff-change-border:#9e6a03;--color-diff-blob-num-text:rgba(240,246,252,0.3);--color-diff-blob-num-hover-text:rgba(240,246,252,0.6);--color-diff-blob-addition-num-text:#3fb950;--color-diff-blob-addition-num-hover-text:#7ee787;--color-diff-blob-addition-num-bg:rgba(46,160,67,0.1);--color-diff-blob-addition-line-bg:rgba(46,160,67,0.2);--color-diff-blob-addition-word-bg:rgba(46,160,67,0.55);--color-diff-blob-deletion-num-text:#f85149;--color-diff-blob-deletion-num-hover-text:#ffa198;--color-diff-blob-deletion-num-bg:rgba(218,54,51,0.1);--color-diff-blob-deletion-line-bg:rgba(218,54,51,0.2);--color-diff-blob-deletion-word-bg:rgba(218,54,51,0.5);--color-diff-blob-hunk-text:#8b949e;--color-diff-blob-hunk-num-bg:rgba(88,166,255,0.15);--color-diff-blob-hunk-line-bg:rgba(88,166,255,0.1);--color-diff-blob-empty-block-bg:#161b22;--color-diff-blob-selected-line-highlight-bg:rgba(187,128,9,0.1);--color-diff-blob-selected-line-highlight-border:#bb8009;--color-diff-blob-selected-line-highlight-mix-blend-mode:normal;--color-diff-blob-expander-icon:#8b949e;--color-diff-blob-expander-hover-icon:#f0f6fc;--color-diff-blob-expander-hover-bg:#1f6feb;--color-diff-blob-comment-button-icon:#f0f6fc;--color-diff-blob-comment-button-bg:#1f6feb;--color-diff-blob-comment-button-gradient-bg:#367eed;--color-global-nav-logo:#f0f6fc;--color-global-nav-bg:#161b22;--color-global-nav-text:#c9d1d9;--color-global-nav-icon:#c9d1d9;--color-global-nav-input-bg:#0d1117;--color-global-nav-input-border:#21262d;--color-global-nav-input-icon:#21262d;--color-global-nav-input-placeholder:#484f58;--color-calendar-graph-day-bg:#161b22;--color-calendar-graph-day-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-bg:#003820;--color-calendar-graph-day-L2-bg:#00602d;--color-calendar-graph-day-L3-bg:#10983d;--color-calendar-graph-day-L4-bg:#27d545;--color-calendar-graph-day-L4-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L3-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L2-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L1-border:hsla(0,0%,100%,0.05);--color-footer-invertocat-octicon:#30363d;--color-footer-invertocat-octicon-hover:#6e7681;--color-pr-state-draft-text:#8b949e;--color-pr-state-draft-bg:rgba(139,148,158,0.1);--color-pr-state-draft-border:rgba(139,148,158,0.4);--color-pr-state-open-text:#3fb950;--color-pr-state-open-bg:rgba(63,185,80,0.1);--color-pr-state-open-border:rgba(63,185,80,0.4);--color-pr-state-merged-text:#a371f7;--color-pr-state-merged-bg:rgba(188,140,255,0.1);--color-pr-state-merged-border:rgba(188,140,255,0.4);--color-pr-state-closed-text:#f85149;--color-pr-state-closed-bg:rgba(218,54,51,0.1);--color-pr-state-closed-border:rgba(218,54,51,0.4);--color-topic-tag-text:#58a6ff;--color-topic-tag-bg:rgba(56,139,253,0.1);--color-topic-tag-hover-bg:rgba(56,139,253,0.2);--color-topic-tag-active-bg:rgba(56,139,253,0.15);--color-merge-box-success-icon-bg:rgba(46,160,67,0.1);--color-merge-box-success-icon-text:#3fb950;--color-merge-box-success-icon-border:rgba(46,160,67,0.4);--color-merge-box-success-indicator-bg:#238636;--color-merge-box-success-indicator-border:#2ea043;--color-merge-box-merged-icon-bg:rgba(188,140,255,0.1);--color-merge-box-merged-icon-text:#a371f7;--color-merge-box-merged-icon-border:rgba(188,140,255,0.4);--color-merge-box-merged-box-border:rgba(188,140,255,0.4);--color-merge-box-neutral-icon-bg:rgba(201,209,217,0.1);--color-merge-box-neutral-icon-text:#8b949e;--color-merge-box-neutral-icon-border:rgba(201,209,217,0.4);--color-merge-box-neutral-indicator-bg:#484f58;--color-merge-box-neutral-indicator-border:#6e7681;--color-merge-box-warning-icon-bg:rgba(187,128,9,0.1);--color-merge-box-warning-icon-text:#e3b341;--color-merge-box-warning-icon-border:rgba(187,128,9,0.4);--color-merge-box-warning-box-border:rgba(187,128,9,0.4);--color-merge-box-warning-merge-highlight:rgba(187,128,9,0.1);--color-merge-box-error-icon-bg:rgba(248,81,73,0.1);--color-merge-box-error-icon-text:#f85149;--color-merge-box-error-icon-border:rgba(248,81,73,0.4);--color-merge-box-error-indicator-bg:#da3633;--color-merge-box-error-indicator-border:#f85149;--color-project-card-bg:#161b22;--color-project-header-bg:#0d1117;--color-project-sidebar-bg:#161b22;--color-project-gradient-in:#161b22;--color-project-gradient-out:rgba(22,27,34,0);--color-checks-bg:#090c10;--color-checks-run-border-width:1px;--color-checks-container-border-width:1px;--color-checks-text-primary:#c9d1d9;--color-checks-text-secondary:#8b949e;--color-checks-text-link:#58a6ff;--color-checks-btn-icon:#6e7681;--color-checks-btn-hover-icon:#c9d1d9;--color-checks-btn-hover-bg:#30363d;--color-checks-input-text:#8b949e;--color-checks-input-placeholder-text:#484f58;--color-checks-input-focus-text:#c9d1d9;--color-checks-input-bg:#0d1117;--color-checks-input-shadow:0 0 0 1px #21262d;--color-checks-dropdown-text:#c9d1d9;--color-checks-dropdown-bg:#21262d;--color-checks-dropdown-border:#30363d;--color-checks-dropdown-hover-text:#f0f6fc;--color-checks-dropdown-hover-bg:#1f6feb;--color-checks-dropdown-btn-hover-text:#f0f6fc;--color-checks-dropdown-btn-hover-bg:#161b22;--color-checks-scrollbar-thumb-bg:#30363d;--color-checks-header-label-text:#8b949e;--color-checks-header-label-open-text:#c9d1d9;--color-checks-header-border:#21262d;--color-checks-header-icon:#6e7681;--color-checks-line-text:#8b949e;--color-checks-line-num-text:#8b949e;--color-checks-line-timestamp-text:#8b949e;--color-checks-line-hover-bg:#161b22;--color-checks-line-selected-bg:rgba(56,139,253,0.1);--color-checks-line-selected-num-text:#58a6ff;--color-checks-line-dt-fm-text:#0d1117;--color-checks-line-dt-fm-bg:#d29922;--color-checks-gate-bg:rgba(132,83,6,0.15);--color-checks-gate-text:#8b949e;--color-checks-gate-waiting-text:#e3b341;--color-checks-step-header-open-bg:#161b22;--color-checks-step-error-text:#f85149;--color-checks-step-warning-text:#e3b341;--color-checks-logline-text:#6e7681;--color-checks-logline-num-text:#8b949e;--color-checks-logline-debug-text:#bc8cff;--color-checks-logline-error-text:#8b949e;--color-checks-logline-error-num-text:#8b949e;--color-checks-logline-error-bg:rgba(248,81,73,0.1);--color-checks-logline-warning-text:#8b949e;--color-checks-logline-warning-num-text:#e3b341;--color-checks-logline-warning-bg:rgba(187,128,9,0.1);--color-checks-logline-command-text:#58a6ff;--color-checks-logline-section-text:#56d364;--color-intro-shelf-gradient-left:rgba(56,139,253,0.1);--color-intro-shelf-gradient-right:rgba(46,160,67,0.1);--color-intro-shelf-gradient-in:#0d1117;--color-intro-shelf-gradient-out:rgba(13,17,23,0);--color-marketing-icon-primary:#79c0ff;--color-marketing-icon-secondary:#1f6feb;--color-prettylights-syntax-comment:#8b949e;--color-prettylights-syntax-constant:#79c0ff;--color-prettylights-syntax-entity:#d2a8ff;--color-prettylights-syntax-storage-modifier-import:#c9d1d9;--color-prettylights-syntax-entity-tag:#7ee787;--color-prettylights-syntax-keyword:#ff7b72;--color-prettylights-syntax-string:#a5d6ff;--color-prettylights-syntax-variable:#ffa657;--color-prettylights-syntax-brackethighlighter-unmatched:#f85149;--color-prettylights-syntax-invalid-illegal-text:#f0f6fc;--color-prettylights-syntax-invalid-illegal-bg:#8e1519;--color-prettylights-syntax-carriage-return-text:#f0f6fc;--color-prettylights-syntax-carriage-return-bg:#b62324;--color-prettylights-syntax-string-regexp:#7ee787;--color-prettylights-syntax-markup-list:#f2cc60;--color-prettylights-syntax-markup-heading:#1f6feb;--color-prettylights-syntax-markup-italic:#c9d1d9;--color-prettylights-syntax-markup-bold:#c9d1d9;--color-prettylights-syntax-markup-deleted-text:#ffdcd7;--color-prettylights-syntax-markup-deleted-bg:#67060c;--color-prettylights-syntax-markup-inserted-text:#aff5b4;--color-prettylights-syntax-markup-inserted-bg:#033a16;--color-prettylights-syntax-markup-changed-text:#ffdfb6;--color-prettylights-syntax-markup-changed-bg:#5a1e02;--color-prettylights-syntax-markup-ignored-text:#c9d1d9;--color-prettylights-syntax-markup-ignored-bg:#1158c7;--color-prettylights-syntax-meta-diff-range:#d2a8ff;--color-prettylights-syntax-brackethighlighter-angle:#8b949e;--color-prettylights-syntax-sublimelinter-gutter-mark:#484f58;--color-prettylights-syntax-constant-other-reference-link:#a5d6ff;--color-codemirror-text:#c9d1d9;--color-codemirror-bg:#0d1117;--color-codemirror-gutters-bg:#0d1117;--color-codemirror-guttermarker-text:#0d1117;--color-codemirror-guttermarker-subtle-text:#6e7681;--color-codemirror-linenumber-text:#8b949e;--color-codemirror-cursor:#f0f6fc;--color-codemirror-selection-bg:rgba(121,192,255,0.3);--color-codemirror-activeline-bg:#161b22;--color-codemirror-matchingbracket-text:#c9d1d9;--color-codemirror-lines-bg:#0d1117;--color-codemirror-syntax-comment:#8b949e;--color-codemirror-syntax-constant:#79c0ff;--color-codemirror-syntax-entity:#d2a8ff;--color-codemirror-syntax-keyword:#ff7b72;--color-codemirror-syntax-storage:#ff7b72;--color-codemirror-syntax-string:#a5d6ff;--color-codemirror-syntax-support:#79c0ff;--color-codemirror-syntax-variable:#ffa657;--color-ansi-black:#0d1117;--color-ansi-black-bright:#161b22;--color-ansi-white:#b1bac4;--color-ansi-white-bright:#b1bac4;--color-ansi-gray:#6e7681;--color-ansi-red:#ff7b72;--color-ansi-red-bright:#ffa198;--color-ansi-green:#3fb950;--color-ansi-green-bright:#56d364;--color-ansi-yellow:#d29922;--color-ansi-yellow-bright:#e3b341;--color-ansi-blue:#58a6ff;--color-ansi-blue-bright:#79c0ff;--color-ansi-magenta:#bc8cff;--color-ansi-magenta-bright:#d2a8ff;--color-ansi-cyan:#76e3ea;--color-ansi-cyan-bright:#b3f0ff}}[data-color-mode=dark][data-dark-theme=dark_dimmed]{--color-scale-black:#1c2128;--color-scale-white:#cdd9e5;--color-scale-gray-0:#cdd9e5;--color-scale-gray-1:#adbac7;--color-scale-gray-2:#909dab;--color-scale-gray-3:#768390;--color-scale-gray-4:#636e7b;--color-scale-gray-5:#545d68;--color-scale-gray-6:#444c56;--color-scale-gray-7:#373e47;--color-scale-gray-8:#2d333b;--color-scale-gray-9:#22272e;--color-scale-blue-0:#c6e6ff;--color-scale-blue-1:#96d0ff;--color-scale-blue-2:#6cb6ff;--color-scale-blue-3:#539bf5;--color-scale-blue-4:#4184e4;--color-scale-blue-5:#316dca;--color-scale-blue-6:#255ab2;--color-scale-blue-7:#1b4b91;--color-scale-blue-8:#143d79;--color-scale-blue-9:#0f2d5c;--color-scale-green-0:#b4f1b4;--color-scale-green-1:#8ddb8c;--color-scale-green-2:#6bc46d;--color-scale-green-3:#57ab5a;--color-scale-green-4:#46954a;--color-scale-green-5:#347d39;--color-scale-green-6:#2b6a30;--color-scale-green-7:#245829;--color-scale-green-8:#1b4721;--color-scale-green-9:#113417;--color-scale-yellow-0:#fbe090;--color-scale-yellow-1:#eac55f;--color-scale-yellow-2:#daaa3f;--color-scale-yellow-3:#c69026;--color-scale-yellow-4:#ae7c14;--color-scale-yellow-5:#966600;--color-scale-yellow-6:#805400;--color-scale-yellow-7:#6c4400;--color-scale-yellow-8:#593600;--color-scale-yellow-9:#452700;--color-scale-orange-0:#ffddb0;--color-scale-orange-1:#ffbc6f;--color-scale-orange-2:#f69d50;--color-scale-orange-3:#e0823d;--color-scale-orange-4:#cc6b2c;--color-scale-orange-5:#ae5622;--color-scale-orange-6:#94471b;--color-scale-orange-7:#7f3913;--color-scale-orange-8:#682d0f;--color-scale-orange-9:#4d210c;--color-scale-red-0:#ffd8d3;--color-scale-red-1:#ffb8b0;--color-scale-red-2:#ff938a;--color-scale-red-3:#f47067;--color-scale-red-4:#e5534b;--color-scale-red-5:#c93c37;--color-scale-red-6:#ad2e2c;--color-scale-red-7:#922323;--color-scale-red-8:#78191b;--color-scale-red-9:#78191b;--color-scale-purple-0:#eedcff;--color-scale-purple-1:#dcbdfb;--color-scale-purple-2:#dcbdfb;--color-scale-purple-3:#b083f0;--color-scale-purple-4:#986ee2;--color-scale-purple-5:#8256d0;--color-scale-purple-6:#6b44bc;--color-scale-purple-7:#5936a2;--color-scale-purple-8:#472c82;--color-scale-purple-9:#352160;--color-scale-pink-0:#ffd7eb;--color-scale-pink-1:#ffb3d8;--color-scale-pink-2:#fc8dc7;--color-scale-pink-3:#e275ad;--color-scale-pink-4:#c96198;--color-scale-pink-5:#ae4c82;--color-scale-pink-6:#983b6e;--color-scale-pink-7:#7e325a;--color-scale-pink-8:#69264a;--color-scale-pink-9:#551639;--color-auto-black:#cdd9e5;--color-auto-white:#1c2128;--color-auto-gray-0:#22272e;--color-auto-gray-1:#2d333b;--color-auto-gray-2:#373e47;--color-auto-gray-3:#444c56;--color-auto-gray-4:#545d68;--color-auto-gray-5:#636e7b;--color-auto-gray-6:#768390;--color-auto-gray-7:#909dab;--color-auto-gray-8:#adbac7;--color-auto-gray-9:#cdd9e5;--color-auto-blue-0:#0f2d5c;--color-auto-blue-1:#143d79;--color-auto-blue-2:#1b4b91;--color-auto-blue-3:#255ab2;--color-auto-blue-4:#316dca;--color-auto-blue-5:#4184e4;--color-auto-blue-6:#539bf5;--color-auto-blue-7:#6cb6ff;--color-auto-blue-8:#96d0ff;--color-auto-blue-9:#c6e6ff;--color-auto-green-0:#113417;--color-auto-green-1:#1b4721;--color-auto-green-2:#245829;--color-auto-green-3:#2b6a30;--color-auto-green-4:#347d39;--color-auto-green-5:#46954a;--color-auto-green-6:#57ab5a;--color-auto-green-7:#6bc46d;--color-auto-green-8:#8ddb8c;--color-auto-green-9:#b4f1b4;--color-auto-yellow-0:#452700;--color-auto-yellow-1:#593600;--color-auto-yellow-2:#6c4400;--color-auto-yellow-3:#805400;--color-auto-yellow-4:#966600;--color-auto-yellow-5:#ae7c14;--color-auto-yellow-6:#c69026;--color-auto-yellow-7:#daaa3f;--color-auto-yellow-8:#eac55f;--color-auto-yellow-9:#fbe090;--color-auto-orange-0:#4d210c;--color-auto-orange-1:#682d0f;--color-auto-orange-2:#7f3913;--color-auto-orange-3:#94471b;--color-auto-orange-4:#ae5622;--color-auto-orange-5:#cc6b2c;--color-auto-orange-6:#e0823d;--color-auto-orange-7:#f69d50;--color-auto-orange-8:#ffbc6f;--color-auto-orange-9:#ffddb0;--color-auto-red-0:#78191b;--color-auto-red-1:#78191b;--color-auto-red-2:#922323;--color-auto-red-3:#ad2e2c;--color-auto-red-4:#c93c37;--color-auto-red-5:#e5534b;--color-auto-red-6:#f47067;--color-auto-red-7:#ff938a;--color-auto-red-8:#ffb8b0;--color-auto-red-9:#ffd8d3;--color-auto-purple-0:#352160;--color-auto-purple-1:#472c82;--color-auto-purple-2:#5936a2;--color-auto-purple-3:#6b44bc;--color-auto-purple-4:#8256d0;--color-auto-purple-5:#986ee2;--color-auto-purple-6:#b083f0;--color-auto-purple-7:#dcbdfb;--color-auto-purple-8:#dcbdfb;--color-auto-purple-9:#eedcff;--color-auto-pink-0:#551639;--color-auto-pink-1:#69264a;--color-auto-pink-2:#7e325a;--color-auto-pink-3:#983b6e;--color-auto-pink-4:#ae4c82;--color-auto-pink-5:#c96198;--color-auto-pink-6:#e275ad;--color-auto-pink-7:#fc8dc7;--color-auto-pink-8:#ffb3d8;--color-auto-pink-9:#ffd7eb;--color-text-primary:#adbac7;--color-text-secondary:#768390;--color-text-tertiary:#768390;--color-text-placeholder:#545d68;--color-text-disabled:#545d68;--color-text-inverse:#22272e;--color-text-link:#539bf5;--color-text-danger:#e5534b;--color-text-success:#6bc46d;--color-text-warning:#daaa3f;--color-text-white:#cdd9e5;--color-icon-primary:#adbac7;--color-icon-secondary:#636e7b;--color-icon-tertiary:#545d68;--color-icon-info:#6cb6ff;--color-icon-danger:#e5534b;--color-icon-success:#6bc46d;--color-icon-warning:#daaa3f;--color-border-primary:#444c56;--color-border-secondary:#373e47;--color-border-tertiary:#636e7b;--color-border-overlay:#444c56;--color-border-inverse:#cdd9e5;--color-border-info:rgba(65,132,228,0.4);--color-border-danger:rgba(229,83,75,0.4);--color-border-success:rgba(87,171,90,0.4);--color-border-warning:rgba(174,124,20,0.4);--color-bg-canvas:#22272e;--color-bg-canvas-mobile:#1c2128;--color-bg-canvas-inverse:#cdd9e5;--color-bg-canvas-inset:#1e2228;--color-bg-primary:#22272e;--color-bg-secondary:#22272e;--color-bg-tertiary:#2d333b;--color-bg-overlay:#373e47;--color-bg-backdrop:rgba(28,33,40,0.8);--color-bg-info:rgba(65,132,228,0.1);--color-bg-info-inverse:#4184e4;--color-bg-danger:rgba(229,83,75,0.1);--color-bg-danger-inverse:#c93c37;--color-bg-success:rgba(70,149,74,0.1);--color-bg-success-inverse:#46954a;--color-bg-warning:rgba(174,124,20,0.1);--color-bg-warning-inverse:#ae7c14;--color-shadow-small:0 0 transparent;--color-shadow-medium:0 3px 6px #1c2128;--color-shadow-large:0 8px 24px #1c2128;--color-shadow-extra-large:0 12px 48px #1c2128;--color-shadow-highlight:0 0 transparent;--color-shadow-inset:0 0 transparent;--color-state-hover-primary-bg:#316dca;--color-state-hover-primary-border:#4184e4;--color-state-hover-primary-text:#cdd9e5;--color-state-hover-primary-icon:#cdd9e5;--color-state-hover-secondary-bg:#2d333b;--color-state-hover-secondary-border:#2d333b;--color-state-selected-primary-bg:#316dca;--color-state-selected-primary-border:#4184e4;--color-state-selected-primary-text:#cdd9e5;--color-state-selected-primary-icon:#cdd9e5;--color-state-focus-border:#4184e4;--color-state-focus-shadow:0 0 0 3px #143d79;--color-fade-fg-10:rgba(205,217,229,0.1);--color-fade-fg-15:rgba(205,217,229,0.15);--color-fade-fg-30:rgba(205,217,229,0.3);--color-fade-fg-50:rgba(205,217,229,0.5);--color-fade-fg-70:rgba(205,217,229,0.7);--color-fade-fg-85:rgba(205,217,229,0.85);--color-fade-black-10:rgba(28,33,40,0.1);--color-fade-black-15:rgba(28,33,40,0.15);--color-fade-black-30:rgba(28,33,40,0.3);--color-fade-black-50:rgba(28,33,40,0.5);--color-fade-black-70:rgba(28,33,40,0.7);--color-fade-black-85:rgba(28,33,40,0.85);--color-fade-white-10:rgba(205,217,229,0.1);--color-fade-white-15:rgba(205,217,229,0.15);--color-fade-white-30:rgba(205,217,229,0.3);--color-fade-white-50:rgba(205,217,229,0.5);--color-fade-white-70:rgba(205,217,229,0.7);--color-fade-white-85:rgba(205,217,229,0.85);--color-alert-info-text:#6cb6ff;--color-alert-info-icon:#6cb6ff;--color-alert-info-bg:rgba(65,132,228,0.1);--color-alert-info-border:rgba(65,132,228,0.4);--color-alert-warn-text:#daaa3f;--color-alert-warn-icon:#daaa3f;--color-alert-warn-bg:rgba(174,124,20,0.1);--color-alert-warn-border:rgba(174,124,20,0.4);--color-alert-error-text:#f47067;--color-alert-error-icon:#f47067;--color-alert-error-bg:rgba(229,83,75,0.1);--color-alert-error-border:rgba(229,83,75,0.4);--color-alert-success-text:#6bc46d;--color-alert-success-icon:#6bc46d;--color-alert-success-bg:rgba(70,149,74,0.1);--color-alert-success-border:rgba(70,149,74,0.4);--color-autocomplete-shadow:0 16px 32px rgba(28,33,40,0.85);--color-autocomplete-row-border:#444c56;--color-blankslate-icon:#5f6a76;--color-btn-text:#adbac7;--color-btn-bg:#373e47;--color-btn-border:#444c56;--color-btn-shadow:0 0 transparent;--color-btn-inset-shadow:0 0 transparent;--color-btn-hover-bg:#444c56;--color-btn-hover-border:#768390;--color-btn-selected-bg:#2d333b;--color-btn-focus-bg:#373e47;--color-btn-focus-border:#768390;--color-btn-focus-shadow:0 0 0 3px rgba(118,131,144,0.3);--color-btn-shadow-active:inset 0 0.15em 0.3em rgba(28,33,40,0.15);--color-btn-shadow-input-focus:0 0 0 0.2em rgba(49,109,202,0.3);--color-btn-primary-text:#fff;--color-btn-primary-bg:#347d39;--color-btn-primary-border:#46954a;--color-btn-primary-shadow:0 0 transparent;--color-btn-primary-inset-shadow:0 0 transparent;--color-btn-primary-hover-bg:#46954a;--color-btn-primary-hover-border:#57ab5a;--color-btn-primary-selected-bg:#347d39;--color-btn-primary-selected-shadow:0 0 transparent;--color-btn-primary-disabled-text:rgba(205,217,229,0.5);--color-btn-primary-disabled-bg:rgba(52,125,57,0.6);--color-btn-primary-disabled-border:transparent;--color-btn-primary-focus-bg:#347d39;--color-btn-primary-focus-border:#57ab5a;--color-btn-primary-focus-shadow:0 0 0 3px rgba(46,164,79,0.4);--color-btn-primary-icon:#cdd9e5;--color-btn-primary-counter-bg:rgba(205,217,229,0.2);--color-btn-outline-text:#539bf5;--color-btn-outline-hover-text:#539bf5;--color-btn-outline-hover-bg:#444c56;--color-btn-outline-hover-border:#539bf5;--color-btn-outline-hover-shadow:0 1px 0 rgba(28,33,40,0.1);--color-btn-outline-hover-inset-shadow:inset 0 1px 0 rgba(205,217,229,0.03);--color-btn-outline-hover-counter-bg:rgba(205,217,229,0.2);--color-btn-outline-selected-text:#cdd9e5;--color-btn-outline-selected-bg:#1b4b91;--color-btn-outline-selected-border:rgba(205,217,229,0.1);--color-btn-outline-selected-shadow:0 0 transparent;--color-btn-outline-disabled-text:rgba(83,155,245,0.5);--color-btn-outline-disabled-bg:#22272e;--color-btn-outline-disabled-counter-bg:rgba(49,109,202,0.05);--color-btn-outline-focus-border:#539bf5;--color-btn-outline-focus-shadow:0 0 0 3px rgba(37,90,178,0.4);--color-btn-outline-counter-bg:rgba(49,109,202,0.1);--color-btn-danger-text:#e5534b;--color-btn-danger-hover-text:#fff;--color-btn-danger-hover-bg:#c93c37;--color-btn-danger-hover-border:#e5534b;--color-btn-danger-hover-shadow:0 0 transparent;--color-btn-danger-hover-inset-shadow:0 0 transparent;--color-btn-danger-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-danger-selected-text:#fff;--color-btn-danger-selected-bg:#ad2e2c;--color-btn-danger-selected-border:rgba(205,217,229,0.1);--color-btn-danger-selected-shadow:0 0 transparent;--color-btn-danger-disabled-text:rgba(229,83,75,0.5);--color-btn-danger-disabled-bg:#22272e;--color-btn-danger-disabled-counter-bg:rgba(201,60,55,0.05);--color-btn-danger-focus-border:#e5534b;--color-btn-danger-focus-shadow:0 0 0 3px rgba(173,46,44,0.4);--color-btn-danger-counter-bg:rgba(201,60,55,0.1);--color-btn-danger-icon:#e5534b;--color-btn-danger-hover-icon:#cdd9e5;--color-btn-counter-bg:#444c56;--color-counter-text:#adbac7;--color-counter-bg:#444c56;--color-counter-primary-text:#adbac7;--color-counter-primary-bg:#636e7b;--color-counter-secondary-text:#768390;--color-dropdown-shadow:0 16px 32px rgba(28,33,40,0.85);--color-label-border:#444c56;--color-label-primary-text:#909dab;--color-label-primary-border:#636e7b;--color-label-secondary-text:#768390;--color-label-secondary-border:#444c56;--color-label-info-text:#4184e4;--color-label-info-border:rgba(65,132,228,0.4);--color-label-success-text:#57ab5a;--color-label-success-border:rgba(70,149,74,0.4);--color-label-warning-text:#daaa3f;--color-label-warning-border:rgba(242,211,91,0.4);--color-label-danger-text:#e5534b;--color-label-danger-border:rgba(229,83,75,0.4);--color-label-orange-text:#cc6b2c;--color-label-orange-border:rgba(204,107,44,0.4);--color-input-bg:#22272e;--color-input-contrast-bg:rgba(28,33,40,0.5);--color-input-border:#373e47;--color-input-shadow:0 0 transparent;--color-input-disabled-bg:#2d333b;--color-input-disabled-border:#444c56;--color-input-warning-border:#c69026;--color-input-error-border:#e5534b;--color-input-tooltip-success-text:#6bc46d;--color-input-tooltip-success-bg:#263231;--color-input-tooltip-success-border:#335a3b;--color-input-tooltip-warning-text:#daaa3f;--color-input-tooltip-warning-bg:#30302b;--color-input-tooltip-warning-border:#624e22;--color-input-tooltip-error-text:#f47067;--color-input-tooltip-error-bg:#362b31;--color-input-tooltip-error-border:#7c3b3b;--color-avatar-bg:rgba(205,217,229,0.1);--color-avatar-border:rgba(205,217,229,0.1);--color-avatar-stack-fade:#444c56;--color-avatar-stack-fade-more:#373e47;--color-avatar-child-shadow:-2px -2px 0 #22272e;--color-toast-text:#6cb6ff;--color-toast-bg:#1c2128;--color-toast-border:#214981;--color-toast-shadow:0 8px 24px #1c2128;--color-toast-icon:#6cb6ff;--color-toast-icon-bg:#121d2e;--color-toast-icon-border:#214981;--color-toast-success-text:#6bc46d;--color-toast-success-border:#1c532c;--color-toast-success-icon:#6bc46d;--color-toast-success-icon-bg:#111f1c;--color-toast-success-icon-border:#1c532c;--color-toast-warning-text:#daaa3f;--color-toast-warning-border:#5e4411;--color-toast-warning-icon:#daaa3f;--color-toast-warning-icon-bg:#1f1c16;--color-toast-warning-icon-border:#5e4411;--color-toast-danger-text:#f47067;--color-toast-danger-border:#792e2e;--color-toast-danger-icon:#f47067;--color-toast-danger-icon-bg:#25171c;--color-toast-danger-icon-border:#792e2e;--color-toast-loading-text:#adbac7;--color-toast-loading-border:#444c56;--color-toast-loading-icon:#cdd9e5;--color-toast-loading-icon-bg:#444c56;--color-toast-loading-icon-border:#444c56;--color-timeline-text:#909dab;--color-timeline-badge-bg:#22272e;--color-timeline-target-badge-border:#316dca;--color-timeline-target-badge-shadow:#1b4b91;--color-select-menu-border-secondary:#444c56;--color-select-menu-shadow:0 0 18px rgba(28,33,40,0.4);--color-select-menu-backdrop-bg:rgba(28,33,40,0.5);--color-select-menu-backdrop-border:#545d68;--color-select-menu-tap-highlight:rgba(68,76,86,0.5);--color-select-menu-tap-focus-bg:#143d79;--color-box-blue-border:#1b4b91;--color-box-row-yellow-bg:rgba(235,196,64,0.1);--color-box-row-blue-bg:rgba(108,182,255,0.1);--color-box-header-blue-bg:#22272e;--color-box-header-blue-border:#444c56;--color-box-border-info:rgba(65,132,228,0.4);--color-box-bg-info:rgba(65,132,228,0.1);--color-box-border-warning:rgba(174,124,20,0.4);--color-box-bg-warning:rgba(174,124,20,0.1);--color-branch-name-text:#adbac7;--color-branch-name-icon:#909dab;--color-branch-name-bg:rgba(83,155,245,0.1);--color-branch-name-link-text:#539bf5;--color-branch-name-link-icon:#539bf5;--color-branch-name-link-bg:rgba(83,155,245,0.1);--color-markdown-code-bg:rgba(205,217,229,0.15);--color-markdown-frame-border:#4f5964;--color-markdown-blockquote-border:#4f5964;--color-markdown-table-border:#4f5964;--color-markdown-table-tr-border:#3b424b;--color-menu-heading-text:#768390;--color-menu-border-active:#f78166;--color-menu-bg-active:#2d333b;--color-sidenav-selected-bg:#373e47;--color-sidenav-border-active:#f78166;--color-header-text:rgba(205,217,229,0.7);--color-header-bg:#2d333b;--color-header-logo:#cdd9e5;--color-filter-item-bar-bg:#292e35;--color-hidden-text-expander-bg:#373e47;--color-hidden-text-expander-bg-hover:#444c56;--color-drag-and-drop-border:#393f48;--color-upload-enabled-border:#4f5964;--color-upload-enabled-border-focused:#4f84d4;--color-previewable-comment-form-border:#393f48;--color-underlinenav-border:rgba(68,76,86,0);--color-underlinenav-border-hover:#444c56;--color-underlinenav-border-active:#f78166;--color-underlinenav-text:#768390;--color-underlinenav-text-hover:#adbac7;--color-underlinenav-text-active:#adbac7;--color-underlinenav-icon:#636e7b;--color-underlinenav-icon-hover:#adbac7;--color-underlinenav-icon-active:#adbac7;--color-underlinenav-counter-text:#768390;--color-verified-badge-text:#57ab5a;--color-verified-badge-bg:rgba(87,171,90,0.1);--color-verified-badge-border:rgba(87,171,90,0.4);--color-social-count-bg:#373e47;--color-tooltip-text:#cdd9e5;--color-tooltip-bg:#373e47;--color-header-search-bg:#22272e;--color-header-search-border:#373e47;--color-search-keyword-hl:rgba(174,124,20,0.4);--color-diffstat-neutral-bg:#444c56;--color-diffstat-neutral-border:rgba(205,217,229,0.1);--color-diffstat-deletion-bg:#c93c37;--color-diffstat-deletion-border:#e5534b;--color-diffstat-addition-bg:#347d39;--color-diffstat-addition-border:#46954a;--color-mktg-success:#3d8942;--color-mktg-info:#3877d5;--color-mktg-bg-shade-gradient-top:rgba(28,33,40,0.065);--color-mktg-bg-shade-gradient-bottom:rgba(28,33,40,0);--color-mktg-btn-bg:#316dca;--color-mktg-btn-border:#316dca;--color-mktg-btn-text:#cdd9e5;--color-mktg-btn-icon:#cdd9e5;--color-mktg-btn-focus-shadow:0 0 0 3px rgba(49,109,202,0.3);--color-mktg-btn-hover-bg:#4184e4;--color-mktg-btn-hover-border:#4184e4;--color-mktg-btn-disabled-bg:rgba(65,132,228,0.5);--color-mktg-btn-disabled-border:transparent;--color-mktg-btn-disabled-text:rgba(205,217,229,0.5);--color-mktg-btn-disabled-icon:rgba(205,217,229,0.5);--color-mktg-btn-primary-bg:#347d39;--color-mktg-btn-primary-border:#347d39;--color-mktg-btn-primary-text:#cdd9e5;--color-mktg-btn-primary-icon:#cdd9e5;--color-mktg-btn-primary-focus-shadow:0 0 0 3px rgba(52,125,57,0.3);--color-mktg-btn-primary-hover-bg:#46954a;--color-mktg-btn-primary-hover-border:#46954a;--color-mktg-btn-primary-disabled-bg:rgba(70,149,74,0.5);--color-mktg-btn-primary-disabled-border:transparent;--color-mktg-btn-primary-disabled-text:rgba(205,217,229,0.5);--color-mktg-btn-primary-disabled-icon:rgba(205,217,229,0.5);--color-mktg-btn-outline-bg:transparent;--color-mktg-btn-outline-border:rgba(65,132,228,0.5);--color-mktg-btn-outline-text:#4184e4;--color-mktg-btn-outline-icon:#4184e4;--color-mktg-btn-outline-focus-shadow:0 0 0 3px rgba(65,132,228,0.3);--color-mktg-btn-outline-hover-bg:transparent;--color-mktg-btn-outline-hover-border:#4184e4;--color-mktg-btn-outline-hover-text:#539bf5;--color-mktg-btn-outline-hover-icon:#539bf5;--color-mktg-btn-outline-disabled-bg:transparent;--color-mktg-btn-outline-disabled-border:rgba(65,132,228,0.2);--color-mktg-btn-outline-disabled-text:rgba(65,132,228,0.5);--color-mktg-btn-outline-disabled-icon:rgba(65,132,228,0.5);--color-mktg-btn-dark-bg:transparent;--color-mktg-btn-dark-border:rgba(173,186,199,0.5);--color-mktg-btn-dark-text:#adbac7;--color-mktg-btn-dark-icon:#adbac7;--color-mktg-btn-dark-focus-shadow:0 0 0 3px rgba(173,186,199,0.3);--color-mktg-btn-dark-hover-bg:rgba(173,186,199,0.5);--color-mktg-btn-dark-hover-border:rgba(173,186,199,0.5);--color-mktg-btn-dark-hover-text:#22272e;--color-mktg-btn-dark-hover-icon:#22272e;--color-mktg-btn-dark-disabled-bg:transparent;--color-mktg-btn-dark-disabled-border:rgba(173,186,199,0.2);--color-mktg-btn-dark-disabled-text:rgba(173,186,199,0.5);--color-mktg-btn-dark-disabled-icon:rgba(173,186,199,0.5);--color-files-explorer-icon:#636e7b;--color-hl-author-bg:#0f2d5c;--color-hl-author-border:#1b4b91;--color-logo-subdued:#444c56;--color-discussion-border:#494c49;--color-discussion-bg-success:rgba(70,149,74,0.1);--color-actions-workflow-table-sticky-bg:rgba(34,39,46,0.95);--color-repo-language-color-border:rgba(205,217,229,0.2);--color-code-selection-bg:rgba(108,182,255,0.3);--color-highlight-text:#ffd467;--color-highlight-bg:rgba(204,143,44,0.38);--color-blob-line-highlight-bg:rgba(198,144,38,0.15);--color-blob-line-highlight-border:#daaa3f;--color-diff-addition-text:#6bc46d;--color-diff-addition-bg:rgba(70,149,74,0.2);--color-diff-addition-border:#2b6a30;--color-diff-deletion-text:#e5534b;--color-diff-deletion-bg:rgba(201,60,55,0.2);--color-diff-deletion-border:#ad2e2c;--color-diff-change-text:#daaa3f;--color-diff-change-bg:#452700;--color-diff-change-border:#966600;--color-diff-blob-num-text:rgba(205,217,229,0.3);--color-diff-blob-num-hover-text:rgba(205,217,229,0.6);--color-diff-blob-addition-num-text:#57ab5a;--color-diff-blob-addition-num-hover-text:#8ddb8c;--color-diff-blob-addition-num-bg:rgba(70,149,74,0.1);--color-diff-blob-addition-line-bg:rgba(70,149,74,0.2);--color-diff-blob-addition-word-bg:rgba(70,149,74,0.55);--color-diff-blob-deletion-num-text:#e5534b;--color-diff-blob-deletion-num-hover-text:#ff938a;--color-diff-blob-deletion-num-bg:rgba(201,60,55,0.1);--color-diff-blob-deletion-line-bg:rgba(201,60,55,0.2);--color-diff-blob-deletion-word-bg:rgba(201,60,55,0.5);--color-diff-blob-hunk-text:#768390;--color-diff-blob-hunk-num-bg:rgba(83,155,245,0.15);--color-diff-blob-hunk-line-bg:rgba(83,155,245,0.1);--color-diff-blob-empty-block-bg:#2d333b;--color-diff-blob-selected-line-highlight-bg:rgba(174,124,20,0.1);--color-diff-blob-selected-line-highlight-border:#ae7c14;--color-diff-blob-selected-line-highlight-mix-blend-mode:normal;--color-diff-blob-expander-icon:#768390;--color-diff-blob-expander-hover-icon:#cdd9e5;--color-diff-blob-expander-hover-bg:#316dca;--color-diff-blob-comment-button-icon:#cdd9e5;--color-diff-blob-comment-button-bg:#316dca;--color-diff-blob-comment-button-gradient-bg:#437bd1;--color-global-nav-logo:#cdd9e5;--color-global-nav-bg:#2d333b;--color-global-nav-text:#adbac7;--color-global-nav-icon:#adbac7;--color-global-nav-input-bg:#22272e;--color-global-nav-input-border:#373e47;--color-global-nav-input-icon:#373e47;--color-global-nav-input-placeholder:#545d68;--color-calendar-graph-day-bg:#2d333b;--color-calendar-graph-day-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-bg:#003820;--color-calendar-graph-day-L2-bg:#00602d;--color-calendar-graph-day-L3-bg:#10983d;--color-calendar-graph-day-L4-bg:#27d545;--color-calendar-graph-day-L4-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L3-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L2-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L1-border:hsla(0,0%,100%,0.05);--color-footer-invertocat-octicon:#444c56;--color-footer-invertocat-octicon-hover:#636e7b;--color-pr-state-draft-text:#768390;--color-pr-state-draft-bg:rgba(118,131,144,0.1);--color-pr-state-draft-border:rgba(118,131,144,0.4);--color-pr-state-open-text:#57ab5a;--color-pr-state-open-bg:rgba(87,171,90,0.1);--color-pr-state-open-border:rgba(87,171,90,0.4);--color-pr-state-merged-text:#986ee2;--color-pr-state-merged-bg:rgba(176,131,240,0.1);--color-pr-state-merged-border:rgba(176,131,240,0.4);--color-pr-state-closed-text:#e5534b;--color-pr-state-closed-bg:rgba(201,60,55,0.1);--color-pr-state-closed-border:rgba(201,60,55,0.4);--color-topic-tag-text:#539bf5;--color-topic-tag-bg:rgba(65,132,228,0.1);--color-topic-tag-hover-bg:rgba(65,132,228,0.2);--color-topic-tag-active-bg:rgba(65,132,228,0.15);--color-merge-box-success-icon-bg:rgba(70,149,74,0.1);--color-merge-box-success-icon-text:#57ab5a;--color-merge-box-success-icon-border:rgba(70,149,74,0.4);--color-merge-box-success-indicator-bg:#347d39;--color-merge-box-success-indicator-border:#46954a;--color-merge-box-merged-icon-bg:rgba(176,131,240,0.1);--color-merge-box-merged-icon-text:#986ee2;--color-merge-box-merged-icon-border:rgba(176,131,240,0.4);--color-merge-box-merged-box-border:rgba(176,131,240,0.4);--color-merge-box-neutral-icon-bg:rgba(173,186,199,0.1);--color-merge-box-neutral-icon-text:#768390;--color-merge-box-neutral-icon-border:rgba(173,186,199,0.4);--color-merge-box-neutral-indicator-bg:#545d68;--color-merge-box-neutral-indicator-border:#636e7b;--color-merge-box-warning-icon-bg:rgba(174,124,20,0.1);--color-merge-box-warning-icon-text:#daaa3f;--color-merge-box-warning-icon-border:rgba(174,124,20,0.4);--color-merge-box-warning-box-border:rgba(174,124,20,0.4);--color-merge-box-warning-merge-highlight:rgba(174,124,20,0.1);--color-merge-box-error-icon-bg:rgba(229,83,75,0.1);--color-merge-box-error-icon-text:#e5534b;--color-merge-box-error-icon-border:rgba(229,83,75,0.4);--color-merge-box-error-indicator-bg:#c93c37;--color-merge-box-error-indicator-border:#e5534b;--color-project-card-bg:#2d333b;--color-project-header-bg:#22272e;--color-project-sidebar-bg:#2d333b;--color-project-gradient-in:#2d333b;--color-project-gradient-out:rgba(45,51,59,0);--color-checks-bg:#1e2228;--color-checks-run-border-width:1px;--color-checks-container-border-width:1px;--color-checks-text-primary:#adbac7;--color-checks-text-secondary:#768390;--color-checks-text-link:#539bf5;--color-checks-btn-icon:#636e7b;--color-checks-btn-hover-icon:#adbac7;--color-checks-btn-hover-bg:#444c56;--color-checks-input-text:#768390;--color-checks-input-placeholder-text:#545d68;--color-checks-input-focus-text:#adbac7;--color-checks-input-bg:#22272e;--color-checks-input-shadow:0 0 0 1px #373e47;--color-checks-dropdown-text:#adbac7;--color-checks-dropdown-bg:#373e47;--color-checks-dropdown-border:#444c56;--color-checks-dropdown-hover-text:#cdd9e5;--color-checks-dropdown-hover-bg:#316dca;--color-checks-dropdown-btn-hover-text:#cdd9e5;--color-checks-dropdown-btn-hover-bg:#2d333b;--color-checks-scrollbar-thumb-bg:#444c56;--color-checks-header-label-text:#768390;--color-checks-header-label-open-text:#adbac7;--color-checks-header-border:#373e47;--color-checks-header-icon:#636e7b;--color-checks-line-text:#768390;--color-checks-line-num-text:#768390;--color-checks-line-timestamp-text:#768390;--color-checks-line-hover-bg:#2d333b;--color-checks-line-selected-bg:rgba(65,132,228,0.1);--color-checks-line-selected-num-text:#539bf5;--color-checks-line-dt-fm-text:#22272e;--color-checks-line-dt-fm-bg:#c69026;--color-checks-gate-bg:rgba(128,84,0,0.15);--color-checks-gate-text:#768390;--color-checks-gate-waiting-text:#daaa3f;--color-checks-step-header-open-bg:#2d333b;--color-checks-step-error-text:#e5534b;--color-checks-step-warning-text:#daaa3f;--color-checks-logline-text:#636e7b;--color-checks-logline-num-text:#768390;--color-checks-logline-debug-text:#b083f0;--color-checks-logline-error-text:#768390;--color-checks-logline-error-num-text:#768390;--color-checks-logline-error-bg:rgba(229,83,75,0.1);--color-checks-logline-warning-text:#768390;--color-checks-logline-warning-num-text:#daaa3f;--color-checks-logline-warning-bg:rgba(174,124,20,0.1);--color-checks-logline-command-text:#539bf5;--color-checks-logline-section-text:#6bc46d;--color-intro-shelf-gradient-left:rgba(65,132,228,0.1);--color-intro-shelf-gradient-right:rgba(70,149,74,0.1);--color-intro-shelf-gradient-in:#22272e;--color-intro-shelf-gradient-out:rgba(34,39,46,0);--color-marketing-icon-primary:#6cb6ff;--color-marketing-icon-secondary:#316dca;--color-prettylights-syntax-comment:#768390;--color-prettylights-syntax-constant:#6cb6ff;--color-prettylights-syntax-entity:#dcbdfb;--color-prettylights-syntax-storage-modifier-import:#adbac7;--color-prettylights-syntax-entity-tag:#8ddb8c;--color-prettylights-syntax-keyword:#f47067;--color-prettylights-syntax-string:#96d0ff;--color-prettylights-syntax-variable:#f69d50;--color-prettylights-syntax-brackethighlighter-unmatched:#e5534b;--color-prettylights-syntax-invalid-illegal-text:#cdd9e5;--color-prettylights-syntax-invalid-illegal-bg:#922323;--color-prettylights-syntax-carriage-return-text:#cdd9e5;--color-prettylights-syntax-carriage-return-bg:#ad2e2c;--color-prettylights-syntax-string-regexp:#8ddb8c;--color-prettylights-syntax-markup-list:#eac55f;--color-prettylights-syntax-markup-heading:#316dca;--color-prettylights-syntax-markup-italic:#adbac7;--color-prettylights-syntax-markup-bold:#adbac7;--color-prettylights-syntax-markup-deleted-text:#ffd8d3;--color-prettylights-syntax-markup-deleted-bg:#78191b;--color-prettylights-syntax-markup-inserted-text:#b4f1b4;--color-prettylights-syntax-markup-inserted-bg:#1b4721;--color-prettylights-syntax-markup-changed-text:#ffddb0;--color-prettylights-syntax-markup-changed-bg:#682d0f;--color-prettylights-syntax-markup-ignored-text:#adbac7;--color-prettylights-syntax-markup-ignored-bg:#255ab2;--color-prettylights-syntax-meta-diff-range:#dcbdfb;--color-prettylights-syntax-brackethighlighter-angle:#768390;--color-prettylights-syntax-sublimelinter-gutter-mark:#545d68;--color-prettylights-syntax-constant-other-reference-link:#96d0ff;--color-codemirror-text:#adbac7;--color-codemirror-bg:#22272e;--color-codemirror-gutters-bg:#22272e;--color-codemirror-guttermarker-text:#22272e;--color-codemirror-guttermarker-subtle-text:#636e7b;--color-codemirror-linenumber-text:#768390;--color-codemirror-cursor:#cdd9e5;--color-codemirror-selection-bg:rgba(108,182,255,0.3);--color-codemirror-activeline-bg:#2d333b;--color-codemirror-matchingbracket-text:#adbac7;--color-codemirror-lines-bg:#22272e;--color-codemirror-syntax-comment:#768390;--color-codemirror-syntax-constant:#6cb6ff;--color-codemirror-syntax-entity:#dcbdfb;--color-codemirror-syntax-keyword:#f47067;--color-codemirror-syntax-storage:#f47067;--color-codemirror-syntax-string:#96d0ff;--color-codemirror-syntax-support:#6cb6ff;--color-codemirror-syntax-variable:#f69d50;--color-ansi-black:#22272e;--color-ansi-black-bright:#2d333b;--color-ansi-white:#909dab;--color-ansi-white-bright:#909dab;--color-ansi-gray:#636e7b;--color-ansi-red:#f47067;--color-ansi-red-bright:#ff938a;--color-ansi-green:#57ab5a;--color-ansi-green-bright:#6bc46d;--color-ansi-yellow:#c69026;--color-ansi-yellow-bright:#daaa3f;--color-ansi-blue:#539bf5;--color-ansi-blue-bright:#6cb6ff;--color-ansi-magenta:#b083f0;--color-ansi-magenta-bright:#dcbdfb;--color-ansi-cyan:#76e3ea;--color-ansi-cyan-bright:#b3f0ff}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme=dark_dimmed]{--color-scale-black:#1c2128;--color-scale-white:#cdd9e5;--color-scale-gray-0:#cdd9e5;--color-scale-gray-1:#adbac7;--color-scale-gray-2:#909dab;--color-scale-gray-3:#768390;--color-scale-gray-4:#636e7b;--color-scale-gray-5:#545d68;--color-scale-gray-6:#444c56;--color-scale-gray-7:#373e47;--color-scale-gray-8:#2d333b;--color-scale-gray-9:#22272e;--color-scale-blue-0:#c6e6ff;--color-scale-blue-1:#96d0ff;--color-scale-blue-2:#6cb6ff;--color-scale-blue-3:#539bf5;--color-scale-blue-4:#4184e4;--color-scale-blue-5:#316dca;--color-scale-blue-6:#255ab2;--color-scale-blue-7:#1b4b91;--color-scale-blue-8:#143d79;--color-scale-blue-9:#0f2d5c;--color-scale-green-0:#b4f1b4;--color-scale-green-1:#8ddb8c;--color-scale-green-2:#6bc46d;--color-scale-green-3:#57ab5a;--color-scale-green-4:#46954a;--color-scale-green-5:#347d39;--color-scale-green-6:#2b6a30;--color-scale-green-7:#245829;--color-scale-green-8:#1b4721;--color-scale-green-9:#113417;--color-scale-yellow-0:#fbe090;--color-scale-yellow-1:#eac55f;--color-scale-yellow-2:#daaa3f;--color-scale-yellow-3:#c69026;--color-scale-yellow-4:#ae7c14;--color-scale-yellow-5:#966600;--color-scale-yellow-6:#805400;--color-scale-yellow-7:#6c4400;--color-scale-yellow-8:#593600;--color-scale-yellow-9:#452700;--color-scale-orange-0:#ffddb0;--color-scale-orange-1:#ffbc6f;--color-scale-orange-2:#f69d50;--color-scale-orange-3:#e0823d;--color-scale-orange-4:#cc6b2c;--color-scale-orange-5:#ae5622;--color-scale-orange-6:#94471b;--color-scale-orange-7:#7f3913;--color-scale-orange-8:#682d0f;--color-scale-orange-9:#4d210c;--color-scale-red-0:#ffd8d3;--color-scale-red-1:#ffb8b0;--color-scale-red-2:#ff938a;--color-scale-red-3:#f47067;--color-scale-red-4:#e5534b;--color-scale-red-5:#c93c37;--color-scale-red-6:#ad2e2c;--color-scale-red-7:#922323;--color-scale-red-8:#78191b;--color-scale-red-9:#78191b;--color-scale-purple-0:#eedcff;--color-scale-purple-1:#dcbdfb;--color-scale-purple-2:#dcbdfb;--color-scale-purple-3:#b083f0;--color-scale-purple-4:#986ee2;--color-scale-purple-5:#8256d0;--color-scale-purple-6:#6b44bc;--color-scale-purple-7:#5936a2;--color-scale-purple-8:#472c82;--color-scale-purple-9:#352160;--color-scale-pink-0:#ffd7eb;--color-scale-pink-1:#ffb3d8;--color-scale-pink-2:#fc8dc7;--color-scale-pink-3:#e275ad;--color-scale-pink-4:#c96198;--color-scale-pink-5:#ae4c82;--color-scale-pink-6:#983b6e;--color-scale-pink-7:#7e325a;--color-scale-pink-8:#69264a;--color-scale-pink-9:#551639;--color-auto-black:#cdd9e5;--color-auto-white:#1c2128;--color-auto-gray-0:#22272e;--color-auto-gray-1:#2d333b;--color-auto-gray-2:#373e47;--color-auto-gray-3:#444c56;--color-auto-gray-4:#545d68;--color-auto-gray-5:#636e7b;--color-auto-gray-6:#768390;--color-auto-gray-7:#909dab;--color-auto-gray-8:#adbac7;--color-auto-gray-9:#cdd9e5;--color-auto-blue-0:#0f2d5c;--color-auto-blue-1:#143d79;--color-auto-blue-2:#1b4b91;--color-auto-blue-3:#255ab2;--color-auto-blue-4:#316dca;--color-auto-blue-5:#4184e4;--color-auto-blue-6:#539bf5;--color-auto-blue-7:#6cb6ff;--color-auto-blue-8:#96d0ff;--color-auto-blue-9:#c6e6ff;--color-auto-green-0:#113417;--color-auto-green-1:#1b4721;--color-auto-green-2:#245829;--color-auto-green-3:#2b6a30;--color-auto-green-4:#347d39;--color-auto-green-5:#46954a;--color-auto-green-6:#57ab5a;--color-auto-green-7:#6bc46d;--color-auto-green-8:#8ddb8c;--color-auto-green-9:#b4f1b4;--color-auto-yellow-0:#452700;--color-auto-yellow-1:#593600;--color-auto-yellow-2:#6c4400;--color-auto-yellow-3:#805400;--color-auto-yellow-4:#966600;--color-auto-yellow-5:#ae7c14;--color-auto-yellow-6:#c69026;--color-auto-yellow-7:#daaa3f;--color-auto-yellow-8:#eac55f;--color-auto-yellow-9:#fbe090;--color-auto-orange-0:#4d210c;--color-auto-orange-1:#682d0f;--color-auto-orange-2:#7f3913;--color-auto-orange-3:#94471b;--color-auto-orange-4:#ae5622;--color-auto-orange-5:#cc6b2c;--color-auto-orange-6:#e0823d;--color-auto-orange-7:#f69d50;--color-auto-orange-8:#ffbc6f;--color-auto-orange-9:#ffddb0;--color-auto-red-0:#78191b;--color-auto-red-1:#78191b;--color-auto-red-2:#922323;--color-auto-red-3:#ad2e2c;--color-auto-red-4:#c93c37;--color-auto-red-5:#e5534b;--color-auto-red-6:#f47067;--color-auto-red-7:#ff938a;--color-auto-red-8:#ffb8b0;--color-auto-red-9:#ffd8d3;--color-auto-purple-0:#352160;--color-auto-purple-1:#472c82;--color-auto-purple-2:#5936a2;--color-auto-purple-3:#6b44bc;--color-auto-purple-4:#8256d0;--color-auto-purple-5:#986ee2;--color-auto-purple-6:#b083f0;--color-auto-purple-7:#dcbdfb;--color-auto-purple-8:#dcbdfb;--color-auto-purple-9:#eedcff;--color-auto-pink-0:#551639;--color-auto-pink-1:#69264a;--color-auto-pink-2:#7e325a;--color-auto-pink-3:#983b6e;--color-auto-pink-4:#ae4c82;--color-auto-pink-5:#c96198;--color-auto-pink-6:#e275ad;--color-auto-pink-7:#fc8dc7;--color-auto-pink-8:#ffb3d8;--color-auto-pink-9:#ffd7eb;--color-text-primary:#adbac7;--color-text-secondary:#768390;--color-text-tertiary:#768390;--color-text-placeholder:#545d68;--color-text-disabled:#545d68;--color-text-inverse:#22272e;--color-text-link:#539bf5;--color-text-danger:#e5534b;--color-text-success:#6bc46d;--color-text-warning:#daaa3f;--color-text-white:#cdd9e5;--color-icon-primary:#adbac7;--color-icon-secondary:#636e7b;--color-icon-tertiary:#545d68;--color-icon-info:#6cb6ff;--color-icon-danger:#e5534b;--color-icon-success:#6bc46d;--color-icon-warning:#daaa3f;--color-border-primary:#444c56;--color-border-secondary:#373e47;--color-border-tertiary:#636e7b;--color-border-overlay:#444c56;--color-border-inverse:#cdd9e5;--color-border-info:rgba(65,132,228,0.4);--color-border-danger:rgba(229,83,75,0.4);--color-border-success:rgba(87,171,90,0.4);--color-border-warning:rgba(174,124,20,0.4);--color-bg-canvas:#22272e;--color-bg-canvas-mobile:#1c2128;--color-bg-canvas-inverse:#cdd9e5;--color-bg-canvas-inset:#1e2228;--color-bg-primary:#22272e;--color-bg-secondary:#22272e;--color-bg-tertiary:#2d333b;--color-bg-overlay:#373e47;--color-bg-backdrop:rgba(28,33,40,0.8);--color-bg-info:rgba(65,132,228,0.1);--color-bg-info-inverse:#4184e4;--color-bg-danger:rgba(229,83,75,0.1);--color-bg-danger-inverse:#c93c37;--color-bg-success:rgba(70,149,74,0.1);--color-bg-success-inverse:#46954a;--color-bg-warning:rgba(174,124,20,0.1);--color-bg-warning-inverse:#ae7c14;--color-shadow-small:0 0 transparent;--color-shadow-medium:0 3px 6px #1c2128;--color-shadow-large:0 8px 24px #1c2128;--color-shadow-extra-large:0 12px 48px #1c2128;--color-shadow-highlight:0 0 transparent;--color-shadow-inset:0 0 transparent;--color-state-hover-primary-bg:#316dca;--color-state-hover-primary-border:#4184e4;--color-state-hover-primary-text:#cdd9e5;--color-state-hover-primary-icon:#cdd9e5;--color-state-hover-secondary-bg:#2d333b;--color-state-hover-secondary-border:#2d333b;--color-state-selected-primary-bg:#316dca;--color-state-selected-primary-border:#4184e4;--color-state-selected-primary-text:#cdd9e5;--color-state-selected-primary-icon:#cdd9e5;--color-state-focus-border:#4184e4;--color-state-focus-shadow:0 0 0 3px #143d79;--color-fade-fg-10:rgba(205,217,229,0.1);--color-fade-fg-15:rgba(205,217,229,0.15);--color-fade-fg-30:rgba(205,217,229,0.3);--color-fade-fg-50:rgba(205,217,229,0.5);--color-fade-fg-70:rgba(205,217,229,0.7);--color-fade-fg-85:rgba(205,217,229,0.85);--color-fade-black-10:rgba(28,33,40,0.1);--color-fade-black-15:rgba(28,33,40,0.15);--color-fade-black-30:rgba(28,33,40,0.3);--color-fade-black-50:rgba(28,33,40,0.5);--color-fade-black-70:rgba(28,33,40,0.7);--color-fade-black-85:rgba(28,33,40,0.85);--color-fade-white-10:rgba(205,217,229,0.1);--color-fade-white-15:rgba(205,217,229,0.15);--color-fade-white-30:rgba(205,217,229,0.3);--color-fade-white-50:rgba(205,217,229,0.5);--color-fade-white-70:rgba(205,217,229,0.7);--color-fade-white-85:rgba(205,217,229,0.85);--color-alert-info-text:#6cb6ff;--color-alert-info-icon:#6cb6ff;--color-alert-info-bg:rgba(65,132,228,0.1);--color-alert-info-border:rgba(65,132,228,0.4);--color-alert-warn-text:#daaa3f;--color-alert-warn-icon:#daaa3f;--color-alert-warn-bg:rgba(174,124,20,0.1);--color-alert-warn-border:rgba(174,124,20,0.4);--color-alert-error-text:#f47067;--color-alert-error-icon:#f47067;--color-alert-error-bg:rgba(229,83,75,0.1);--color-alert-error-border:rgba(229,83,75,0.4);--color-alert-success-text:#6bc46d;--color-alert-success-icon:#6bc46d;--color-alert-success-bg:rgba(70,149,74,0.1);--color-alert-success-border:rgba(70,149,74,0.4);--color-autocomplete-shadow:0 16px 32px rgba(28,33,40,0.85);--color-autocomplete-row-border:#444c56;--color-blankslate-icon:#5f6a76;--color-btn-text:#adbac7;--color-btn-bg:#373e47;--color-btn-border:#444c56;--color-btn-shadow:0 0 transparent;--color-btn-inset-shadow:0 0 transparent;--color-btn-hover-bg:#444c56;--color-btn-hover-border:#768390;--color-btn-selected-bg:#2d333b;--color-btn-focus-bg:#373e47;--color-btn-focus-border:#768390;--color-btn-focus-shadow:0 0 0 3px rgba(118,131,144,0.3);--color-btn-shadow-active:inset 0 0.15em 0.3em rgba(28,33,40,0.15);--color-btn-shadow-input-focus:0 0 0 0.2em rgba(49,109,202,0.3);--color-btn-primary-text:#fff;--color-btn-primary-bg:#347d39;--color-btn-primary-border:#46954a;--color-btn-primary-shadow:0 0 transparent;--color-btn-primary-inset-shadow:0 0 transparent;--color-btn-primary-hover-bg:#46954a;--color-btn-primary-hover-border:#57ab5a;--color-btn-primary-selected-bg:#347d39;--color-btn-primary-selected-shadow:0 0 transparent;--color-btn-primary-disabled-text:rgba(205,217,229,0.5);--color-btn-primary-disabled-bg:rgba(52,125,57,0.6);--color-btn-primary-disabled-border:transparent;--color-btn-primary-focus-bg:#347d39;--color-btn-primary-focus-border:#57ab5a;--color-btn-primary-focus-shadow:0 0 0 3px rgba(46,164,79,0.4);--color-btn-primary-icon:#cdd9e5;--color-btn-primary-counter-bg:rgba(205,217,229,0.2);--color-btn-outline-text:#539bf5;--color-btn-outline-hover-text:#539bf5;--color-btn-outline-hover-bg:#444c56;--color-btn-outline-hover-border:#539bf5;--color-btn-outline-hover-shadow:0 1px 0 rgba(28,33,40,0.1);--color-btn-outline-hover-inset-shadow:inset 0 1px 0 rgba(205,217,229,0.03);--color-btn-outline-hover-counter-bg:rgba(205,217,229,0.2);--color-btn-outline-selected-text:#cdd9e5;--color-btn-outline-selected-bg:#1b4b91;--color-btn-outline-selected-border:rgba(205,217,229,0.1);--color-btn-outline-selected-shadow:0 0 transparent;--color-btn-outline-disabled-text:rgba(83,155,245,0.5);--color-btn-outline-disabled-bg:#22272e;--color-btn-outline-disabled-counter-bg:rgba(49,109,202,0.05);--color-btn-outline-focus-border:#539bf5;--color-btn-outline-focus-shadow:0 0 0 3px rgba(37,90,178,0.4);--color-btn-outline-counter-bg:rgba(49,109,202,0.1);--color-btn-danger-text:#e5534b;--color-btn-danger-hover-text:#fff;--color-btn-danger-hover-bg:#c93c37;--color-btn-danger-hover-border:#e5534b;--color-btn-danger-hover-shadow:0 0 transparent;--color-btn-danger-hover-inset-shadow:0 0 transparent;--color-btn-danger-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-danger-selected-text:#fff;--color-btn-danger-selected-bg:#ad2e2c;--color-btn-danger-selected-border:rgba(205,217,229,0.1);--color-btn-danger-selected-shadow:0 0 transparent;--color-btn-danger-disabled-text:rgba(229,83,75,0.5);--color-btn-danger-disabled-bg:#22272e;--color-btn-danger-disabled-counter-bg:rgba(201,60,55,0.05);--color-btn-danger-focus-border:#e5534b;--color-btn-danger-focus-shadow:0 0 0 3px rgba(173,46,44,0.4);--color-btn-danger-counter-bg:rgba(201,60,55,0.1);--color-btn-danger-icon:#e5534b;--color-btn-danger-hover-icon:#cdd9e5;--color-btn-counter-bg:#444c56;--color-counter-text:#adbac7;--color-counter-bg:#444c56;--color-counter-primary-text:#adbac7;--color-counter-primary-bg:#636e7b;--color-counter-secondary-text:#768390;--color-dropdown-shadow:0 16px 32px rgba(28,33,40,0.85);--color-label-border:#444c56;--color-label-primary-text:#909dab;--color-label-primary-border:#636e7b;--color-label-secondary-text:#768390;--color-label-secondary-border:#444c56;--color-label-info-text:#4184e4;--color-label-info-border:rgba(65,132,228,0.4);--color-label-success-text:#57ab5a;--color-label-success-border:rgba(70,149,74,0.4);--color-label-warning-text:#daaa3f;--color-label-warning-border:rgba(242,211,91,0.4);--color-label-danger-text:#e5534b;--color-label-danger-border:rgba(229,83,75,0.4);--color-label-orange-text:#cc6b2c;--color-label-orange-border:rgba(204,107,44,0.4);--color-input-bg:#22272e;--color-input-contrast-bg:rgba(28,33,40,0.5);--color-input-border:#373e47;--color-input-shadow:0 0 transparent;--color-input-disabled-bg:#2d333b;--color-input-disabled-border:#444c56;--color-input-warning-border:#c69026;--color-input-error-border:#e5534b;--color-input-tooltip-success-text:#6bc46d;--color-input-tooltip-success-bg:#263231;--color-input-tooltip-success-border:#335a3b;--color-input-tooltip-warning-text:#daaa3f;--color-input-tooltip-warning-bg:#30302b;--color-input-tooltip-warning-border:#624e22;--color-input-tooltip-error-text:#f47067;--color-input-tooltip-error-bg:#362b31;--color-input-tooltip-error-border:#7c3b3b;--color-avatar-bg:rgba(205,217,229,0.1);--color-avatar-border:rgba(205,217,229,0.1);--color-avatar-stack-fade:#444c56;--color-avatar-stack-fade-more:#373e47;--color-avatar-child-shadow:-2px -2px 0 #22272e;--color-toast-text:#6cb6ff;--color-toast-bg:#1c2128;--color-toast-border:#214981;--color-toast-shadow:0 8px 24px #1c2128;--color-toast-icon:#6cb6ff;--color-toast-icon-bg:#121d2e;--color-toast-icon-border:#214981;--color-toast-success-text:#6bc46d;--color-toast-success-border:#1c532c;--color-toast-success-icon:#6bc46d;--color-toast-success-icon-bg:#111f1c;--color-toast-success-icon-border:#1c532c;--color-toast-warning-text:#daaa3f;--color-toast-warning-border:#5e4411;--color-toast-warning-icon:#daaa3f;--color-toast-warning-icon-bg:#1f1c16;--color-toast-warning-icon-border:#5e4411;--color-toast-danger-text:#f47067;--color-toast-danger-border:#792e2e;--color-toast-danger-icon:#f47067;--color-toast-danger-icon-bg:#25171c;--color-toast-danger-icon-border:#792e2e;--color-toast-loading-text:#adbac7;--color-toast-loading-border:#444c56;--color-toast-loading-icon:#cdd9e5;--color-toast-loading-icon-bg:#444c56;--color-toast-loading-icon-border:#444c56;--color-timeline-text:#909dab;--color-timeline-badge-bg:#22272e;--color-timeline-target-badge-border:#316dca;--color-timeline-target-badge-shadow:#1b4b91;--color-select-menu-border-secondary:#444c56;--color-select-menu-shadow:0 0 18px rgba(28,33,40,0.4);--color-select-menu-backdrop-bg:rgba(28,33,40,0.5);--color-select-menu-backdrop-border:#545d68;--color-select-menu-tap-highlight:rgba(68,76,86,0.5);--color-select-menu-tap-focus-bg:#143d79;--color-box-blue-border:#1b4b91;--color-box-row-yellow-bg:rgba(235,196,64,0.1);--color-box-row-blue-bg:rgba(108,182,255,0.1);--color-box-header-blue-bg:#22272e;--color-box-header-blue-border:#444c56;--color-box-border-info:rgba(65,132,228,0.4);--color-box-bg-info:rgba(65,132,228,0.1);--color-box-border-warning:rgba(174,124,20,0.4);--color-box-bg-warning:rgba(174,124,20,0.1);--color-branch-name-text:#adbac7;--color-branch-name-icon:#909dab;--color-branch-name-bg:rgba(83,155,245,0.1);--color-branch-name-link-text:#539bf5;--color-branch-name-link-icon:#539bf5;--color-branch-name-link-bg:rgba(83,155,245,0.1);--color-markdown-code-bg:rgba(205,217,229,0.15);--color-markdown-frame-border:#4f5964;--color-markdown-blockquote-border:#4f5964;--color-markdown-table-border:#4f5964;--color-markdown-table-tr-border:#3b424b;--color-menu-heading-text:#768390;--color-menu-border-active:#f78166;--color-menu-bg-active:#2d333b;--color-sidenav-selected-bg:#373e47;--color-sidenav-border-active:#f78166;--color-header-text:rgba(205,217,229,0.7);--color-header-bg:#2d333b;--color-header-logo:#cdd9e5;--color-filter-item-bar-bg:#292e35;--color-hidden-text-expander-bg:#373e47;--color-hidden-text-expander-bg-hover:#444c56;--color-drag-and-drop-border:#393f48;--color-upload-enabled-border:#4f5964;--color-upload-enabled-border-focused:#4f84d4;--color-previewable-comment-form-border:#393f48;--color-underlinenav-border:rgba(68,76,86,0);--color-underlinenav-border-hover:#444c56;--color-underlinenav-border-active:#f78166;--color-underlinenav-text:#768390;--color-underlinenav-text-hover:#adbac7;--color-underlinenav-text-active:#adbac7;--color-underlinenav-icon:#636e7b;--color-underlinenav-icon-hover:#adbac7;--color-underlinenav-icon-active:#adbac7;--color-underlinenav-counter-text:#768390;--color-verified-badge-text:#57ab5a;--color-verified-badge-bg:rgba(87,171,90,0.1);--color-verified-badge-border:rgba(87,171,90,0.4);--color-social-count-bg:#373e47;--color-tooltip-text:#cdd9e5;--color-tooltip-bg:#373e47;--color-header-search-bg:#22272e;--color-header-search-border:#373e47;--color-search-keyword-hl:rgba(174,124,20,0.4);--color-diffstat-neutral-bg:#444c56;--color-diffstat-neutral-border:rgba(205,217,229,0.1);--color-diffstat-deletion-bg:#c93c37;--color-diffstat-deletion-border:#e5534b;--color-diffstat-addition-bg:#347d39;--color-diffstat-addition-border:#46954a;--color-mktg-success:#3d8942;--color-mktg-info:#3877d5;--color-mktg-bg-shade-gradient-top:rgba(28,33,40,0.065);--color-mktg-bg-shade-gradient-bottom:rgba(28,33,40,0);--color-mktg-btn-bg:#316dca;--color-mktg-btn-border:#316dca;--color-mktg-btn-text:#cdd9e5;--color-mktg-btn-icon:#cdd9e5;--color-mktg-btn-focus-shadow:0 0 0 3px rgba(49,109,202,0.3);--color-mktg-btn-hover-bg:#4184e4;--color-mktg-btn-hover-border:#4184e4;--color-mktg-btn-disabled-bg:rgba(65,132,228,0.5);--color-mktg-btn-disabled-border:transparent;--color-mktg-btn-disabled-text:rgba(205,217,229,0.5);--color-mktg-btn-disabled-icon:rgba(205,217,229,0.5);--color-mktg-btn-primary-bg:#347d39;--color-mktg-btn-primary-border:#347d39;--color-mktg-btn-primary-text:#cdd9e5;--color-mktg-btn-primary-icon:#cdd9e5;--color-mktg-btn-primary-focus-shadow:0 0 0 3px rgba(52,125,57,0.3);--color-mktg-btn-primary-hover-bg:#46954a;--color-mktg-btn-primary-hover-border:#46954a;--color-mktg-btn-primary-disabled-bg:rgba(70,149,74,0.5);--color-mktg-btn-primary-disabled-border:transparent;--color-mktg-btn-primary-disabled-text:rgba(205,217,229,0.5);--color-mktg-btn-primary-disabled-icon:rgba(205,217,229,0.5);--color-mktg-btn-outline-bg:transparent;--color-mktg-btn-outline-border:rgba(65,132,228,0.5);--color-mktg-btn-outline-text:#4184e4;--color-mktg-btn-outline-icon:#4184e4;--color-mktg-btn-outline-focus-shadow:0 0 0 3px rgba(65,132,228,0.3);--color-mktg-btn-outline-hover-bg:transparent;--color-mktg-btn-outline-hover-border:#4184e4;--color-mktg-btn-outline-hover-text:#539bf5;--color-mktg-btn-outline-hover-icon:#539bf5;--color-mktg-btn-outline-disabled-bg:transparent;--color-mktg-btn-outline-disabled-border:rgba(65,132,228,0.2);--color-mktg-btn-outline-disabled-text:rgba(65,132,228,0.5);--color-mktg-btn-outline-disabled-icon:rgba(65,132,228,0.5);--color-mktg-btn-dark-bg:transparent;--color-mktg-btn-dark-border:rgba(173,186,199,0.5);--color-mktg-btn-dark-text:#adbac7;--color-mktg-btn-dark-icon:#adbac7;--color-mktg-btn-dark-focus-shadow:0 0 0 3px rgba(173,186,199,0.3);--color-mktg-btn-dark-hover-bg:rgba(173,186,199,0.5);--color-mktg-btn-dark-hover-border:rgba(173,186,199,0.5);--color-mktg-btn-dark-hover-text:#22272e;--color-mktg-btn-dark-hover-icon:#22272e;--color-mktg-btn-dark-disabled-bg:transparent;--color-mktg-btn-dark-disabled-border:rgba(173,186,199,0.2);--color-mktg-btn-dark-disabled-text:rgba(173,186,199,0.5);--color-mktg-btn-dark-disabled-icon:rgba(173,186,199,0.5);--color-files-explorer-icon:#636e7b;--color-hl-author-bg:#0f2d5c;--color-hl-author-border:#1b4b91;--color-logo-subdued:#444c56;--color-discussion-border:#494c49;--color-discussion-bg-success:rgba(70,149,74,0.1);--color-actions-workflow-table-sticky-bg:rgba(34,39,46,0.95);--color-repo-language-color-border:rgba(205,217,229,0.2);--color-code-selection-bg:rgba(108,182,255,0.3);--color-highlight-text:#ffd467;--color-highlight-bg:rgba(204,143,44,0.38);--color-blob-line-highlight-bg:rgba(198,144,38,0.15);--color-blob-line-highlight-border:#daaa3f;--color-diff-addition-text:#6bc46d;--color-diff-addition-bg:rgba(70,149,74,0.2);--color-diff-addition-border:#2b6a30;--color-diff-deletion-text:#e5534b;--color-diff-deletion-bg:rgba(201,60,55,0.2);--color-diff-deletion-border:#ad2e2c;--color-diff-change-text:#daaa3f;--color-diff-change-bg:#452700;--color-diff-change-border:#966600;--color-diff-blob-num-text:rgba(205,217,229,0.3);--color-diff-blob-num-hover-text:rgba(205,217,229,0.6);--color-diff-blob-addition-num-text:#57ab5a;--color-diff-blob-addition-num-hover-text:#8ddb8c;--color-diff-blob-addition-num-bg:rgba(70,149,74,0.1);--color-diff-blob-addition-line-bg:rgba(70,149,74,0.2);--color-diff-blob-addition-word-bg:rgba(70,149,74,0.55);--color-diff-blob-deletion-num-text:#e5534b;--color-diff-blob-deletion-num-hover-text:#ff938a;--color-diff-blob-deletion-num-bg:rgba(201,60,55,0.1);--color-diff-blob-deletion-line-bg:rgba(201,60,55,0.2);--color-diff-blob-deletion-word-bg:rgba(201,60,55,0.5);--color-diff-blob-hunk-text:#768390;--color-diff-blob-hunk-num-bg:rgba(83,155,245,0.15);--color-diff-blob-hunk-line-bg:rgba(83,155,245,0.1);--color-diff-blob-empty-block-bg:#2d333b;--color-diff-blob-selected-line-highlight-bg:rgba(174,124,20,0.1);--color-diff-blob-selected-line-highlight-border:#ae7c14;--color-diff-blob-selected-line-highlight-mix-blend-mode:normal;--color-diff-blob-expander-icon:#768390;--color-diff-blob-expander-hover-icon:#cdd9e5;--color-diff-blob-expander-hover-bg:#316dca;--color-diff-blob-comment-button-icon:#cdd9e5;--color-diff-blob-comment-button-bg:#316dca;--color-diff-blob-comment-button-gradient-bg:#437bd1;--color-global-nav-logo:#cdd9e5;--color-global-nav-bg:#2d333b;--color-global-nav-text:#adbac7;--color-global-nav-icon:#adbac7;--color-global-nav-input-bg:#22272e;--color-global-nav-input-border:#373e47;--color-global-nav-input-icon:#373e47;--color-global-nav-input-placeholder:#545d68;--color-calendar-graph-day-bg:#2d333b;--color-calendar-graph-day-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-bg:#003820;--color-calendar-graph-day-L2-bg:#00602d;--color-calendar-graph-day-L3-bg:#10983d;--color-calendar-graph-day-L4-bg:#27d545;--color-calendar-graph-day-L4-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L3-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L2-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L1-border:hsla(0,0%,100%,0.05);--color-footer-invertocat-octicon:#444c56;--color-footer-invertocat-octicon-hover:#636e7b;--color-pr-state-draft-text:#768390;--color-pr-state-draft-bg:rgba(118,131,144,0.1);--color-pr-state-draft-border:rgba(118,131,144,0.4);--color-pr-state-open-text:#57ab5a;--color-pr-state-open-bg:rgba(87,171,90,0.1);--color-pr-state-open-border:rgba(87,171,90,0.4);--color-pr-state-merged-text:#986ee2;--color-pr-state-merged-bg:rgba(176,131,240,0.1);--color-pr-state-merged-border:rgba(176,131,240,0.4);--color-pr-state-closed-text:#e5534b;--color-pr-state-closed-bg:rgba(201,60,55,0.1);--color-pr-state-closed-border:rgba(201,60,55,0.4);--color-topic-tag-text:#539bf5;--color-topic-tag-bg:rgba(65,132,228,0.1);--color-topic-tag-hover-bg:rgba(65,132,228,0.2);--color-topic-tag-active-bg:rgba(65,132,228,0.15);--color-merge-box-success-icon-bg:rgba(70,149,74,0.1);--color-merge-box-success-icon-text:#57ab5a;--color-merge-box-success-icon-border:rgba(70,149,74,0.4);--color-merge-box-success-indicator-bg:#347d39;--color-merge-box-success-indicator-border:#46954a;--color-merge-box-merged-icon-bg:rgba(176,131,240,0.1);--color-merge-box-merged-icon-text:#986ee2;--color-merge-box-merged-icon-border:rgba(176,131,240,0.4);--color-merge-box-merged-box-border:rgba(176,131,240,0.4);--color-merge-box-neutral-icon-bg:rgba(173,186,199,0.1);--color-merge-box-neutral-icon-text:#768390;--color-merge-box-neutral-icon-border:rgba(173,186,199,0.4);--color-merge-box-neutral-indicator-bg:#545d68;--color-merge-box-neutral-indicator-border:#636e7b;--color-merge-box-warning-icon-bg:rgba(174,124,20,0.1);--color-merge-box-warning-icon-text:#daaa3f;--color-merge-box-warning-icon-border:rgba(174,124,20,0.4);--color-merge-box-warning-box-border:rgba(174,124,20,0.4);--color-merge-box-warning-merge-highlight:rgba(174,124,20,0.1);--color-merge-box-error-icon-bg:rgba(229,83,75,0.1);--color-merge-box-error-icon-text:#e5534b;--color-merge-box-error-icon-border:rgba(229,83,75,0.4);--color-merge-box-error-indicator-bg:#c93c37;--color-merge-box-error-indicator-border:#e5534b;--color-project-card-bg:#2d333b;--color-project-header-bg:#22272e;--color-project-sidebar-bg:#2d333b;--color-project-gradient-in:#2d333b;--color-project-gradient-out:rgba(45,51,59,0);--color-checks-bg:#1e2228;--color-checks-run-border-width:1px;--color-checks-container-border-width:1px;--color-checks-text-primary:#adbac7;--color-checks-text-secondary:#768390;--color-checks-text-link:#539bf5;--color-checks-btn-icon:#636e7b;--color-checks-btn-hover-icon:#adbac7;--color-checks-btn-hover-bg:#444c56;--color-checks-input-text:#768390;--color-checks-input-placeholder-text:#545d68;--color-checks-input-focus-text:#adbac7;--color-checks-input-bg:#22272e;--color-checks-input-shadow:0 0 0 1px #373e47;--color-checks-dropdown-text:#adbac7;--color-checks-dropdown-bg:#373e47;--color-checks-dropdown-border:#444c56;--color-checks-dropdown-hover-text:#cdd9e5;--color-checks-dropdown-hover-bg:#316dca;--color-checks-dropdown-btn-hover-text:#cdd9e5;--color-checks-dropdown-btn-hover-bg:#2d333b;--color-checks-scrollbar-thumb-bg:#444c56;--color-checks-header-label-text:#768390;--color-checks-header-label-open-text:#adbac7;--color-checks-header-border:#373e47;--color-checks-header-icon:#636e7b;--color-checks-line-text:#768390;--color-checks-line-num-text:#768390;--color-checks-line-timestamp-text:#768390;--color-checks-line-hover-bg:#2d333b;--color-checks-line-selected-bg:rgba(65,132,228,0.1);--color-checks-line-selected-num-text:#539bf5;--color-checks-line-dt-fm-text:#22272e;--color-checks-line-dt-fm-bg:#c69026;--color-checks-gate-bg:rgba(128,84,0,0.15);--color-checks-gate-text:#768390;--color-checks-gate-waiting-text:#daaa3f;--color-checks-step-header-open-bg:#2d333b;--color-checks-step-error-text:#e5534b;--color-checks-step-warning-text:#daaa3f;--color-checks-logline-text:#636e7b;--color-checks-logline-num-text:#768390;--color-checks-logline-debug-text:#b083f0;--color-checks-logline-error-text:#768390;--color-checks-logline-error-num-text:#768390;--color-checks-logline-error-bg:rgba(229,83,75,0.1);--color-checks-logline-warning-text:#768390;--color-checks-logline-warning-num-text:#daaa3f;--color-checks-logline-warning-bg:rgba(174,124,20,0.1);--color-checks-logline-command-text:#539bf5;--color-checks-logline-section-text:#6bc46d;--color-intro-shelf-gradient-left:rgba(65,132,228,0.1);--color-intro-shelf-gradient-right:rgba(70,149,74,0.1);--color-intro-shelf-gradient-in:#22272e;--color-intro-shelf-gradient-out:rgba(34,39,46,0);--color-marketing-icon-primary:#6cb6ff;--color-marketing-icon-secondary:#316dca;--color-prettylights-syntax-comment:#768390;--color-prettylights-syntax-constant:#6cb6ff;--color-prettylights-syntax-entity:#dcbdfb;--color-prettylights-syntax-storage-modifier-import:#adbac7;--color-prettylights-syntax-entity-tag:#8ddb8c;--color-prettylights-syntax-keyword:#f47067;--color-prettylights-syntax-string:#96d0ff;--color-prettylights-syntax-variable:#f69d50;--color-prettylights-syntax-brackethighlighter-unmatched:#e5534b;--color-prettylights-syntax-invalid-illegal-text:#cdd9e5;--color-prettylights-syntax-invalid-illegal-bg:#922323;--color-prettylights-syntax-carriage-return-text:#cdd9e5;--color-prettylights-syntax-carriage-return-bg:#ad2e2c;--color-prettylights-syntax-string-regexp:#8ddb8c;--color-prettylights-syntax-markup-list:#eac55f;--color-prettylights-syntax-markup-heading:#316dca;--color-prettylights-syntax-markup-italic:#adbac7;--color-prettylights-syntax-markup-bold:#adbac7;--color-prettylights-syntax-markup-deleted-text:#ffd8d3;--color-prettylights-syntax-markup-deleted-bg:#78191b;--color-prettylights-syntax-markup-inserted-text:#b4f1b4;--color-prettylights-syntax-markup-inserted-bg:#1b4721;--color-prettylights-syntax-markup-changed-text:#ffddb0;--color-prettylights-syntax-markup-changed-bg:#682d0f;--color-prettylights-syntax-markup-ignored-text:#adbac7;--color-prettylights-syntax-markup-ignored-bg:#255ab2;--color-prettylights-syntax-meta-diff-range:#dcbdfb;--color-prettylights-syntax-brackethighlighter-angle:#768390;--color-prettylights-syntax-sublimelinter-gutter-mark:#545d68;--color-prettylights-syntax-constant-other-reference-link:#96d0ff;--color-codemirror-text:#adbac7;--color-codemirror-bg:#22272e;--color-codemirror-gutters-bg:#22272e;--color-codemirror-guttermarker-text:#22272e;--color-codemirror-guttermarker-subtle-text:#636e7b;--color-codemirror-linenumber-text:#768390;--color-codemirror-cursor:#cdd9e5;--color-codemirror-selection-bg:rgba(108,182,255,0.3);--color-codemirror-activeline-bg:#2d333b;--color-codemirror-matchingbracket-text:#adbac7;--color-codemirror-lines-bg:#22272e;--color-codemirror-syntax-comment:#768390;--color-codemirror-syntax-constant:#6cb6ff;--color-codemirror-syntax-entity:#dcbdfb;--color-codemirror-syntax-keyword:#f47067;--color-codemirror-syntax-storage:#f47067;--color-codemirror-syntax-string:#96d0ff;--color-codemirror-syntax-support:#6cb6ff;--color-codemirror-syntax-variable:#f69d50;--color-ansi-black:#22272e;--color-ansi-black-bright:#2d333b;--color-ansi-white:#909dab;--color-ansi-white-bright:#909dab;--color-ansi-gray:#636e7b;--color-ansi-red:#f47067;--color-ansi-red-bright:#ff938a;--color-ansi-green:#57ab5a;--color-ansi-green-bright:#6bc46d;--color-ansi-yellow:#c69026;--color-ansi-yellow-bright:#daaa3f;--color-ansi-blue:#539bf5;--color-ansi-blue-bright:#6cb6ff;--color-ansi-magenta:#b083f0;--color-ansi-magenta-bright:#dcbdfb;--color-ansi-cyan:#76e3ea;--color-ansi-cyan-bright:#b3f0ff}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme=dark_dimmed]{--color-scale-black:#1c2128;--color-scale-white:#cdd9e5;--color-scale-gray-0:#cdd9e5;--color-scale-gray-1:#adbac7;--color-scale-gray-2:#909dab;--color-scale-gray-3:#768390;--color-scale-gray-4:#636e7b;--color-scale-gray-5:#545d68;--color-scale-gray-6:#444c56;--color-scale-gray-7:#373e47;--color-scale-gray-8:#2d333b;--color-scale-gray-9:#22272e;--color-scale-blue-0:#c6e6ff;--color-scale-blue-1:#96d0ff;--color-scale-blue-2:#6cb6ff;--color-scale-blue-3:#539bf5;--color-scale-blue-4:#4184e4;--color-scale-blue-5:#316dca;--color-scale-blue-6:#255ab2;--color-scale-blue-7:#1b4b91;--color-scale-blue-8:#143d79;--color-scale-blue-9:#0f2d5c;--color-scale-green-0:#b4f1b4;--color-scale-green-1:#8ddb8c;--color-scale-green-2:#6bc46d;--color-scale-green-3:#57ab5a;--color-scale-green-4:#46954a;--color-scale-green-5:#347d39;--color-scale-green-6:#2b6a30;--color-scale-green-7:#245829;--color-scale-green-8:#1b4721;--color-scale-green-9:#113417;--color-scale-yellow-0:#fbe090;--color-scale-yellow-1:#eac55f;--color-scale-yellow-2:#daaa3f;--color-scale-yellow-3:#c69026;--color-scale-yellow-4:#ae7c14;--color-scale-yellow-5:#966600;--color-scale-yellow-6:#805400;--color-scale-yellow-7:#6c4400;--color-scale-yellow-8:#593600;--color-scale-yellow-9:#452700;--color-scale-orange-0:#ffddb0;--color-scale-orange-1:#ffbc6f;--color-scale-orange-2:#f69d50;--color-scale-orange-3:#e0823d;--color-scale-orange-4:#cc6b2c;--color-scale-orange-5:#ae5622;--color-scale-orange-6:#94471b;--color-scale-orange-7:#7f3913;--color-scale-orange-8:#682d0f;--color-scale-orange-9:#4d210c;--color-scale-red-0:#ffd8d3;--color-scale-red-1:#ffb8b0;--color-scale-red-2:#ff938a;--color-scale-red-3:#f47067;--color-scale-red-4:#e5534b;--color-scale-red-5:#c93c37;--color-scale-red-6:#ad2e2c;--color-scale-red-7:#922323;--color-scale-red-8:#78191b;--color-scale-red-9:#78191b;--color-scale-purple-0:#eedcff;--color-scale-purple-1:#dcbdfb;--color-scale-purple-2:#dcbdfb;--color-scale-purple-3:#b083f0;--color-scale-purple-4:#986ee2;--color-scale-purple-5:#8256d0;--color-scale-purple-6:#6b44bc;--color-scale-purple-7:#5936a2;--color-scale-purple-8:#472c82;--color-scale-purple-9:#352160;--color-scale-pink-0:#ffd7eb;--color-scale-pink-1:#ffb3d8;--color-scale-pink-2:#fc8dc7;--color-scale-pink-3:#e275ad;--color-scale-pink-4:#c96198;--color-scale-pink-5:#ae4c82;--color-scale-pink-6:#983b6e;--color-scale-pink-7:#7e325a;--color-scale-pink-8:#69264a;--color-scale-pink-9:#551639;--color-auto-black:#cdd9e5;--color-auto-white:#1c2128;--color-auto-gray-0:#22272e;--color-auto-gray-1:#2d333b;--color-auto-gray-2:#373e47;--color-auto-gray-3:#444c56;--color-auto-gray-4:#545d68;--color-auto-gray-5:#636e7b;--color-auto-gray-6:#768390;--color-auto-gray-7:#909dab;--color-auto-gray-8:#adbac7;--color-auto-gray-9:#cdd9e5;--color-auto-blue-0:#0f2d5c;--color-auto-blue-1:#143d79;--color-auto-blue-2:#1b4b91;--color-auto-blue-3:#255ab2;--color-auto-blue-4:#316dca;--color-auto-blue-5:#4184e4;--color-auto-blue-6:#539bf5;--color-auto-blue-7:#6cb6ff;--color-auto-blue-8:#96d0ff;--color-auto-blue-9:#c6e6ff;--color-auto-green-0:#113417;--color-auto-green-1:#1b4721;--color-auto-green-2:#245829;--color-auto-green-3:#2b6a30;--color-auto-green-4:#347d39;--color-auto-green-5:#46954a;--color-auto-green-6:#57ab5a;--color-auto-green-7:#6bc46d;--color-auto-green-8:#8ddb8c;--color-auto-green-9:#b4f1b4;--color-auto-yellow-0:#452700;--color-auto-yellow-1:#593600;--color-auto-yellow-2:#6c4400;--color-auto-yellow-3:#805400;--color-auto-yellow-4:#966600;--color-auto-yellow-5:#ae7c14;--color-auto-yellow-6:#c69026;--color-auto-yellow-7:#daaa3f;--color-auto-yellow-8:#eac55f;--color-auto-yellow-9:#fbe090;--color-auto-orange-0:#4d210c;--color-auto-orange-1:#682d0f;--color-auto-orange-2:#7f3913;--color-auto-orange-3:#94471b;--color-auto-orange-4:#ae5622;--color-auto-orange-5:#cc6b2c;--color-auto-orange-6:#e0823d;--color-auto-orange-7:#f69d50;--color-auto-orange-8:#ffbc6f;--color-auto-orange-9:#ffddb0;--color-auto-red-0:#78191b;--color-auto-red-1:#78191b;--color-auto-red-2:#922323;--color-auto-red-3:#ad2e2c;--color-auto-red-4:#c93c37;--color-auto-red-5:#e5534b;--color-auto-red-6:#f47067;--color-auto-red-7:#ff938a;--color-auto-red-8:#ffb8b0;--color-auto-red-9:#ffd8d3;--color-auto-purple-0:#352160;--color-auto-purple-1:#472c82;--color-auto-purple-2:#5936a2;--color-auto-purple-3:#6b44bc;--color-auto-purple-4:#8256d0;--color-auto-purple-5:#986ee2;--color-auto-purple-6:#b083f0;--color-auto-purple-7:#dcbdfb;--color-auto-purple-8:#dcbdfb;--color-auto-purple-9:#eedcff;--color-auto-pink-0:#551639;--color-auto-pink-1:#69264a;--color-auto-pink-2:#7e325a;--color-auto-pink-3:#983b6e;--color-auto-pink-4:#ae4c82;--color-auto-pink-5:#c96198;--color-auto-pink-6:#e275ad;--color-auto-pink-7:#fc8dc7;--color-auto-pink-8:#ffb3d8;--color-auto-pink-9:#ffd7eb;--color-text-primary:#adbac7;--color-text-secondary:#768390;--color-text-tertiary:#768390;--color-text-placeholder:#545d68;--color-text-disabled:#545d68;--color-text-inverse:#22272e;--color-text-link:#539bf5;--color-text-danger:#e5534b;--color-text-success:#6bc46d;--color-text-warning:#daaa3f;--color-text-white:#cdd9e5;--color-icon-primary:#adbac7;--color-icon-secondary:#636e7b;--color-icon-tertiary:#545d68;--color-icon-info:#6cb6ff;--color-icon-danger:#e5534b;--color-icon-success:#6bc46d;--color-icon-warning:#daaa3f;--color-border-primary:#444c56;--color-border-secondary:#373e47;--color-border-tertiary:#636e7b;--color-border-overlay:#444c56;--color-border-inverse:#cdd9e5;--color-border-info:rgba(65,132,228,0.4);--color-border-danger:rgba(229,83,75,0.4);--color-border-success:rgba(87,171,90,0.4);--color-border-warning:rgba(174,124,20,0.4);--color-bg-canvas:#22272e;--color-bg-canvas-mobile:#1c2128;--color-bg-canvas-inverse:#cdd9e5;--color-bg-canvas-inset:#1e2228;--color-bg-primary:#22272e;--color-bg-secondary:#22272e;--color-bg-tertiary:#2d333b;--color-bg-overlay:#373e47;--color-bg-backdrop:rgba(28,33,40,0.8);--color-bg-info:rgba(65,132,228,0.1);--color-bg-info-inverse:#4184e4;--color-bg-danger:rgba(229,83,75,0.1);--color-bg-danger-inverse:#c93c37;--color-bg-success:rgba(70,149,74,0.1);--color-bg-success-inverse:#46954a;--color-bg-warning:rgba(174,124,20,0.1);--color-bg-warning-inverse:#ae7c14;--color-shadow-small:0 0 transparent;--color-shadow-medium:0 3px 6px #1c2128;--color-shadow-large:0 8px 24px #1c2128;--color-shadow-extra-large:0 12px 48px #1c2128;--color-shadow-highlight:0 0 transparent;--color-shadow-inset:0 0 transparent;--color-state-hover-primary-bg:#316dca;--color-state-hover-primary-border:#4184e4;--color-state-hover-primary-text:#cdd9e5;--color-state-hover-primary-icon:#cdd9e5;--color-state-hover-secondary-bg:#2d333b;--color-state-hover-secondary-border:#2d333b;--color-state-selected-primary-bg:#316dca;--color-state-selected-primary-border:#4184e4;--color-state-selected-primary-text:#cdd9e5;--color-state-selected-primary-icon:#cdd9e5;--color-state-focus-border:#4184e4;--color-state-focus-shadow:0 0 0 3px #143d79;--color-fade-fg-10:rgba(205,217,229,0.1);--color-fade-fg-15:rgba(205,217,229,0.15);--color-fade-fg-30:rgba(205,217,229,0.3);--color-fade-fg-50:rgba(205,217,229,0.5);--color-fade-fg-70:rgba(205,217,229,0.7);--color-fade-fg-85:rgba(205,217,229,0.85);--color-fade-black-10:rgba(28,33,40,0.1);--color-fade-black-15:rgba(28,33,40,0.15);--color-fade-black-30:rgba(28,33,40,0.3);--color-fade-black-50:rgba(28,33,40,0.5);--color-fade-black-70:rgba(28,33,40,0.7);--color-fade-black-85:rgba(28,33,40,0.85);--color-fade-white-10:rgba(205,217,229,0.1);--color-fade-white-15:rgba(205,217,229,0.15);--color-fade-white-30:rgba(205,217,229,0.3);--color-fade-white-50:rgba(205,217,229,0.5);--color-fade-white-70:rgba(205,217,229,0.7);--color-fade-white-85:rgba(205,217,229,0.85);--color-alert-info-text:#6cb6ff;--color-alert-info-icon:#6cb6ff;--color-alert-info-bg:rgba(65,132,228,0.1);--color-alert-info-border:rgba(65,132,228,0.4);--color-alert-warn-text:#daaa3f;--color-alert-warn-icon:#daaa3f;--color-alert-warn-bg:rgba(174,124,20,0.1);--color-alert-warn-border:rgba(174,124,20,0.4);--color-alert-error-text:#f47067;--color-alert-error-icon:#f47067;--color-alert-error-bg:rgba(229,83,75,0.1);--color-alert-error-border:rgba(229,83,75,0.4);--color-alert-success-text:#6bc46d;--color-alert-success-icon:#6bc46d;--color-alert-success-bg:rgba(70,149,74,0.1);--color-alert-success-border:rgba(70,149,74,0.4);--color-autocomplete-shadow:0 16px 32px rgba(28,33,40,0.85);--color-autocomplete-row-border:#444c56;--color-blankslate-icon:#5f6a76;--color-btn-text:#adbac7;--color-btn-bg:#373e47;--color-btn-border:#444c56;--color-btn-shadow:0 0 transparent;--color-btn-inset-shadow:0 0 transparent;--color-btn-hover-bg:#444c56;--color-btn-hover-border:#768390;--color-btn-selected-bg:#2d333b;--color-btn-focus-bg:#373e47;--color-btn-focus-border:#768390;--color-btn-focus-shadow:0 0 0 3px rgba(118,131,144,0.3);--color-btn-shadow-active:inset 0 0.15em 0.3em rgba(28,33,40,0.15);--color-btn-shadow-input-focus:0 0 0 0.2em rgba(49,109,202,0.3);--color-btn-primary-text:#fff;--color-btn-primary-bg:#347d39;--color-btn-primary-border:#46954a;--color-btn-primary-shadow:0 0 transparent;--color-btn-primary-inset-shadow:0 0 transparent;--color-btn-primary-hover-bg:#46954a;--color-btn-primary-hover-border:#57ab5a;--color-btn-primary-selected-bg:#347d39;--color-btn-primary-selected-shadow:0 0 transparent;--color-btn-primary-disabled-text:rgba(205,217,229,0.5);--color-btn-primary-disabled-bg:rgba(52,125,57,0.6);--color-btn-primary-disabled-border:transparent;--color-btn-primary-focus-bg:#347d39;--color-btn-primary-focus-border:#57ab5a;--color-btn-primary-focus-shadow:0 0 0 3px rgba(46,164,79,0.4);--color-btn-primary-icon:#cdd9e5;--color-btn-primary-counter-bg:rgba(205,217,229,0.2);--color-btn-outline-text:#539bf5;--color-btn-outline-hover-text:#539bf5;--color-btn-outline-hover-bg:#444c56;--color-btn-outline-hover-border:#539bf5;--color-btn-outline-hover-shadow:0 1px 0 rgba(28,33,40,0.1);--color-btn-outline-hover-inset-shadow:inset 0 1px 0 rgba(205,217,229,0.03);--color-btn-outline-hover-counter-bg:rgba(205,217,229,0.2);--color-btn-outline-selected-text:#cdd9e5;--color-btn-outline-selected-bg:#1b4b91;--color-btn-outline-selected-border:rgba(205,217,229,0.1);--color-btn-outline-selected-shadow:0 0 transparent;--color-btn-outline-disabled-text:rgba(83,155,245,0.5);--color-btn-outline-disabled-bg:#22272e;--color-btn-outline-disabled-counter-bg:rgba(49,109,202,0.05);--color-btn-outline-focus-border:#539bf5;--color-btn-outline-focus-shadow:0 0 0 3px rgba(37,90,178,0.4);--color-btn-outline-counter-bg:rgba(49,109,202,0.1);--color-btn-danger-text:#e5534b;--color-btn-danger-hover-text:#fff;--color-btn-danger-hover-bg:#c93c37;--color-btn-danger-hover-border:#e5534b;--color-btn-danger-hover-shadow:0 0 transparent;--color-btn-danger-hover-inset-shadow:0 0 transparent;--color-btn-danger-hover-counter-bg:hsla(0,0%,100%,0.2);--color-btn-danger-selected-text:#fff;--color-btn-danger-selected-bg:#ad2e2c;--color-btn-danger-selected-border:rgba(205,217,229,0.1);--color-btn-danger-selected-shadow:0 0 transparent;--color-btn-danger-disabled-text:rgba(229,83,75,0.5);--color-btn-danger-disabled-bg:#22272e;--color-btn-danger-disabled-counter-bg:rgba(201,60,55,0.05);--color-btn-danger-focus-border:#e5534b;--color-btn-danger-focus-shadow:0 0 0 3px rgba(173,46,44,0.4);--color-btn-danger-counter-bg:rgba(201,60,55,0.1);--color-btn-danger-icon:#e5534b;--color-btn-danger-hover-icon:#cdd9e5;--color-btn-counter-bg:#444c56;--color-counter-text:#adbac7;--color-counter-bg:#444c56;--color-counter-primary-text:#adbac7;--color-counter-primary-bg:#636e7b;--color-counter-secondary-text:#768390;--color-dropdown-shadow:0 16px 32px rgba(28,33,40,0.85);--color-label-border:#444c56;--color-label-primary-text:#909dab;--color-label-primary-border:#636e7b;--color-label-secondary-text:#768390;--color-label-secondary-border:#444c56;--color-label-info-text:#4184e4;--color-label-info-border:rgba(65,132,228,0.4);--color-label-success-text:#57ab5a;--color-label-success-border:rgba(70,149,74,0.4);--color-label-warning-text:#daaa3f;--color-label-warning-border:rgba(242,211,91,0.4);--color-label-danger-text:#e5534b;--color-label-danger-border:rgba(229,83,75,0.4);--color-label-orange-text:#cc6b2c;--color-label-orange-border:rgba(204,107,44,0.4);--color-input-bg:#22272e;--color-input-contrast-bg:rgba(28,33,40,0.5);--color-input-border:#373e47;--color-input-shadow:0 0 transparent;--color-input-disabled-bg:#2d333b;--color-input-disabled-border:#444c56;--color-input-warning-border:#c69026;--color-input-error-border:#e5534b;--color-input-tooltip-success-text:#6bc46d;--color-input-tooltip-success-bg:#263231;--color-input-tooltip-success-border:#335a3b;--color-input-tooltip-warning-text:#daaa3f;--color-input-tooltip-warning-bg:#30302b;--color-input-tooltip-warning-border:#624e22;--color-input-tooltip-error-text:#f47067;--color-input-tooltip-error-bg:#362b31;--color-input-tooltip-error-border:#7c3b3b;--color-avatar-bg:rgba(205,217,229,0.1);--color-avatar-border:rgba(205,217,229,0.1);--color-avatar-stack-fade:#444c56;--color-avatar-stack-fade-more:#373e47;--color-avatar-child-shadow:-2px -2px 0 #22272e;--color-toast-text:#6cb6ff;--color-toast-bg:#1c2128;--color-toast-border:#214981;--color-toast-shadow:0 8px 24px #1c2128;--color-toast-icon:#6cb6ff;--color-toast-icon-bg:#121d2e;--color-toast-icon-border:#214981;--color-toast-success-text:#6bc46d;--color-toast-success-border:#1c532c;--color-toast-success-icon:#6bc46d;--color-toast-success-icon-bg:#111f1c;--color-toast-success-icon-border:#1c532c;--color-toast-warning-text:#daaa3f;--color-toast-warning-border:#5e4411;--color-toast-warning-icon:#daaa3f;--color-toast-warning-icon-bg:#1f1c16;--color-toast-warning-icon-border:#5e4411;--color-toast-danger-text:#f47067;--color-toast-danger-border:#792e2e;--color-toast-danger-icon:#f47067;--color-toast-danger-icon-bg:#25171c;--color-toast-danger-icon-border:#792e2e;--color-toast-loading-text:#adbac7;--color-toast-loading-border:#444c56;--color-toast-loading-icon:#cdd9e5;--color-toast-loading-icon-bg:#444c56;--color-toast-loading-icon-border:#444c56;--color-timeline-text:#909dab;--color-timeline-badge-bg:#22272e;--color-timeline-target-badge-border:#316dca;--color-timeline-target-badge-shadow:#1b4b91;--color-select-menu-border-secondary:#444c56;--color-select-menu-shadow:0 0 18px rgba(28,33,40,0.4);--color-select-menu-backdrop-bg:rgba(28,33,40,0.5);--color-select-menu-backdrop-border:#545d68;--color-select-menu-tap-highlight:rgba(68,76,86,0.5);--color-select-menu-tap-focus-bg:#143d79;--color-box-blue-border:#1b4b91;--color-box-row-yellow-bg:rgba(235,196,64,0.1);--color-box-row-blue-bg:rgba(108,182,255,0.1);--color-box-header-blue-bg:#22272e;--color-box-header-blue-border:#444c56;--color-box-border-info:rgba(65,132,228,0.4);--color-box-bg-info:rgba(65,132,228,0.1);--color-box-border-warning:rgba(174,124,20,0.4);--color-box-bg-warning:rgba(174,124,20,0.1);--color-branch-name-text:#adbac7;--color-branch-name-icon:#909dab;--color-branch-name-bg:rgba(83,155,245,0.1);--color-branch-name-link-text:#539bf5;--color-branch-name-link-icon:#539bf5;--color-branch-name-link-bg:rgba(83,155,245,0.1);--color-markdown-code-bg:rgba(205,217,229,0.15);--color-markdown-frame-border:#4f5964;--color-markdown-blockquote-border:#4f5964;--color-markdown-table-border:#4f5964;--color-markdown-table-tr-border:#3b424b;--color-menu-heading-text:#768390;--color-menu-border-active:#f78166;--color-menu-bg-active:#2d333b;--color-sidenav-selected-bg:#373e47;--color-sidenav-border-active:#f78166;--color-header-text:rgba(205,217,229,0.7);--color-header-bg:#2d333b;--color-header-logo:#cdd9e5;--color-filter-item-bar-bg:#292e35;--color-hidden-text-expander-bg:#373e47;--color-hidden-text-expander-bg-hover:#444c56;--color-drag-and-drop-border:#393f48;--color-upload-enabled-border:#4f5964;--color-upload-enabled-border-focused:#4f84d4;--color-previewable-comment-form-border:#393f48;--color-underlinenav-border:rgba(68,76,86,0);--color-underlinenav-border-hover:#444c56;--color-underlinenav-border-active:#f78166;--color-underlinenav-text:#768390;--color-underlinenav-text-hover:#adbac7;--color-underlinenav-text-active:#adbac7;--color-underlinenav-icon:#636e7b;--color-underlinenav-icon-hover:#adbac7;--color-underlinenav-icon-active:#adbac7;--color-underlinenav-counter-text:#768390;--color-verified-badge-text:#57ab5a;--color-verified-badge-bg:rgba(87,171,90,0.1);--color-verified-badge-border:rgba(87,171,90,0.4);--color-social-count-bg:#373e47;--color-tooltip-text:#cdd9e5;--color-tooltip-bg:#373e47;--color-header-search-bg:#22272e;--color-header-search-border:#373e47;--color-search-keyword-hl:rgba(174,124,20,0.4);--color-diffstat-neutral-bg:#444c56;--color-diffstat-neutral-border:rgba(205,217,229,0.1);--color-diffstat-deletion-bg:#c93c37;--color-diffstat-deletion-border:#e5534b;--color-diffstat-addition-bg:#347d39;--color-diffstat-addition-border:#46954a;--color-mktg-success:#3d8942;--color-mktg-info:#3877d5;--color-mktg-bg-shade-gradient-top:rgba(28,33,40,0.065);--color-mktg-bg-shade-gradient-bottom:rgba(28,33,40,0);--color-mktg-btn-bg:#316dca;--color-mktg-btn-border:#316dca;--color-mktg-btn-text:#cdd9e5;--color-mktg-btn-icon:#cdd9e5;--color-mktg-btn-focus-shadow:0 0 0 3px rgba(49,109,202,0.3);--color-mktg-btn-hover-bg:#4184e4;--color-mktg-btn-hover-border:#4184e4;--color-mktg-btn-disabled-bg:rgba(65,132,228,0.5);--color-mktg-btn-disabled-border:transparent;--color-mktg-btn-disabled-text:rgba(205,217,229,0.5);--color-mktg-btn-disabled-icon:rgba(205,217,229,0.5);--color-mktg-btn-primary-bg:#347d39;--color-mktg-btn-primary-border:#347d39;--color-mktg-btn-primary-text:#cdd9e5;--color-mktg-btn-primary-icon:#cdd9e5;--color-mktg-btn-primary-focus-shadow:0 0 0 3px rgba(52,125,57,0.3);--color-mktg-btn-primary-hover-bg:#46954a;--color-mktg-btn-primary-hover-border:#46954a;--color-mktg-btn-primary-disabled-bg:rgba(70,149,74,0.5);--color-mktg-btn-primary-disabled-border:transparent;--color-mktg-btn-primary-disabled-text:rgba(205,217,229,0.5);--color-mktg-btn-primary-disabled-icon:rgba(205,217,229,0.5);--color-mktg-btn-outline-bg:transparent;--color-mktg-btn-outline-border:rgba(65,132,228,0.5);--color-mktg-btn-outline-text:#4184e4;--color-mktg-btn-outline-icon:#4184e4;--color-mktg-btn-outline-focus-shadow:0 0 0 3px rgba(65,132,228,0.3);--color-mktg-btn-outline-hover-bg:transparent;--color-mktg-btn-outline-hover-border:#4184e4;--color-mktg-btn-outline-hover-text:#539bf5;--color-mktg-btn-outline-hover-icon:#539bf5;--color-mktg-btn-outline-disabled-bg:transparent;--color-mktg-btn-outline-disabled-border:rgba(65,132,228,0.2);--color-mktg-btn-outline-disabled-text:rgba(65,132,228,0.5);--color-mktg-btn-outline-disabled-icon:rgba(65,132,228,0.5);--color-mktg-btn-dark-bg:transparent;--color-mktg-btn-dark-border:rgba(173,186,199,0.5);--color-mktg-btn-dark-text:#adbac7;--color-mktg-btn-dark-icon:#adbac7;--color-mktg-btn-dark-focus-shadow:0 0 0 3px rgba(173,186,199,0.3);--color-mktg-btn-dark-hover-bg:rgba(173,186,199,0.5);--color-mktg-btn-dark-hover-border:rgba(173,186,199,0.5);--color-mktg-btn-dark-hover-text:#22272e;--color-mktg-btn-dark-hover-icon:#22272e;--color-mktg-btn-dark-disabled-bg:transparent;--color-mktg-btn-dark-disabled-border:rgba(173,186,199,0.2);--color-mktg-btn-dark-disabled-text:rgba(173,186,199,0.5);--color-mktg-btn-dark-disabled-icon:rgba(173,186,199,0.5);--color-files-explorer-icon:#636e7b;--color-hl-author-bg:#0f2d5c;--color-hl-author-border:#1b4b91;--color-logo-subdued:#444c56;--color-discussion-border:#494c49;--color-discussion-bg-success:rgba(70,149,74,0.1);--color-actions-workflow-table-sticky-bg:rgba(34,39,46,0.95);--color-repo-language-color-border:rgba(205,217,229,0.2);--color-code-selection-bg:rgba(108,182,255,0.3);--color-highlight-text:#ffd467;--color-highlight-bg:rgba(204,143,44,0.38);--color-blob-line-highlight-bg:rgba(198,144,38,0.15);--color-blob-line-highlight-border:#daaa3f;--color-diff-addition-text:#6bc46d;--color-diff-addition-bg:rgba(70,149,74,0.2);--color-diff-addition-border:#2b6a30;--color-diff-deletion-text:#e5534b;--color-diff-deletion-bg:rgba(201,60,55,0.2);--color-diff-deletion-border:#ad2e2c;--color-diff-change-text:#daaa3f;--color-diff-change-bg:#452700;--color-diff-change-border:#966600;--color-diff-blob-num-text:rgba(205,217,229,0.3);--color-diff-blob-num-hover-text:rgba(205,217,229,0.6);--color-diff-blob-addition-num-text:#57ab5a;--color-diff-blob-addition-num-hover-text:#8ddb8c;--color-diff-blob-addition-num-bg:rgba(70,149,74,0.1);--color-diff-blob-addition-line-bg:rgba(70,149,74,0.2);--color-diff-blob-addition-word-bg:rgba(70,149,74,0.55);--color-diff-blob-deletion-num-text:#e5534b;--color-diff-blob-deletion-num-hover-text:#ff938a;--color-diff-blob-deletion-num-bg:rgba(201,60,55,0.1);--color-diff-blob-deletion-line-bg:rgba(201,60,55,0.2);--color-diff-blob-deletion-word-bg:rgba(201,60,55,0.5);--color-diff-blob-hunk-text:#768390;--color-diff-blob-hunk-num-bg:rgba(83,155,245,0.15);--color-diff-blob-hunk-line-bg:rgba(83,155,245,0.1);--color-diff-blob-empty-block-bg:#2d333b;--color-diff-blob-selected-line-highlight-bg:rgba(174,124,20,0.1);--color-diff-blob-selected-line-highlight-border:#ae7c14;--color-diff-blob-selected-line-highlight-mix-blend-mode:normal;--color-diff-blob-expander-icon:#768390;--color-diff-blob-expander-hover-icon:#cdd9e5;--color-diff-blob-expander-hover-bg:#316dca;--color-diff-blob-comment-button-icon:#cdd9e5;--color-diff-blob-comment-button-bg:#316dca;--color-diff-blob-comment-button-gradient-bg:#437bd1;--color-global-nav-logo:#cdd9e5;--color-global-nav-bg:#2d333b;--color-global-nav-text:#adbac7;--color-global-nav-icon:#adbac7;--color-global-nav-input-bg:#22272e;--color-global-nav-input-border:#373e47;--color-global-nav-input-icon:#373e47;--color-global-nav-input-placeholder:#545d68;--color-calendar-graph-day-bg:#2d333b;--color-calendar-graph-day-border:rgba(27,31,35,0.06);--color-calendar-graph-day-L1-bg:#003820;--color-calendar-graph-day-L2-bg:#00602d;--color-calendar-graph-day-L3-bg:#10983d;--color-calendar-graph-day-L4-bg:#27d545;--color-calendar-graph-day-L4-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L3-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L2-border:hsla(0,0%,100%,0.05);--color-calendar-graph-day-L1-border:hsla(0,0%,100%,0.05);--color-footer-invertocat-octicon:#444c56;--color-footer-invertocat-octicon-hover:#636e7b;--color-pr-state-draft-text:#768390;--color-pr-state-draft-bg:rgba(118,131,144,0.1);--color-pr-state-draft-border:rgba(118,131,144,0.4);--color-pr-state-open-text:#57ab5a;--color-pr-state-open-bg:rgba(87,171,90,0.1);--color-pr-state-open-border:rgba(87,171,90,0.4);--color-pr-state-merged-text:#986ee2;--color-pr-state-merged-bg:rgba(176,131,240,0.1);--color-pr-state-merged-border:rgba(176,131,240,0.4);--color-pr-state-closed-text:#e5534b;--color-pr-state-closed-bg:rgba(201,60,55,0.1);--color-pr-state-closed-border:rgba(201,60,55,0.4);--color-topic-tag-text:#539bf5;--color-topic-tag-bg:rgba(65,132,228,0.1);--color-topic-tag-hover-bg:rgba(65,132,228,0.2);--color-topic-tag-active-bg:rgba(65,132,228,0.15);--color-merge-box-success-icon-bg:rgba(70,149,74,0.1);--color-merge-box-success-icon-text:#57ab5a;--color-merge-box-success-icon-border:rgba(70,149,74,0.4);--color-merge-box-success-indicator-bg:#347d39;--color-merge-box-success-indicator-border:#46954a;--color-merge-box-merged-icon-bg:rgba(176,131,240,0.1);--color-merge-box-merged-icon-text:#986ee2;--color-merge-box-merged-icon-border:rgba(176,131,240,0.4);--color-merge-box-merged-box-border:rgba(176,131,240,0.4);--color-merge-box-neutral-icon-bg:rgba(173,186,199,0.1);--color-merge-box-neutral-icon-text:#768390;--color-merge-box-neutral-icon-border:rgba(173,186,199,0.4);--color-merge-box-neutral-indicator-bg:#545d68;--color-merge-box-neutral-indicator-border:#636e7b;--color-merge-box-warning-icon-bg:rgba(174,124,20,0.1);--color-merge-box-warning-icon-text:#daaa3f;--color-merge-box-warning-icon-border:rgba(174,124,20,0.4);--color-merge-box-warning-box-border:rgba(174,124,20,0.4);--color-merge-box-warning-merge-highlight:rgba(174,124,20,0.1);--color-merge-box-error-icon-bg:rgba(229,83,75,0.1);--color-merge-box-error-icon-text:#e5534b;--color-merge-box-error-icon-border:rgba(229,83,75,0.4);--color-merge-box-error-indicator-bg:#c93c37;--color-merge-box-error-indicator-border:#e5534b;--color-project-card-bg:#2d333b;--color-project-header-bg:#22272e;--color-project-sidebar-bg:#2d333b;--color-project-gradient-in:#2d333b;--color-project-gradient-out:rgba(45,51,59,0);--color-checks-bg:#1e2228;--color-checks-run-border-width:1px;--color-checks-container-border-width:1px;--color-checks-text-primary:#adbac7;--color-checks-text-secondary:#768390;--color-checks-text-link:#539bf5;--color-checks-btn-icon:#636e7b;--color-checks-btn-hover-icon:#adbac7;--color-checks-btn-hover-bg:#444c56;--color-checks-input-text:#768390;--color-checks-input-placeholder-text:#545d68;--color-checks-input-focus-text:#adbac7;--color-checks-input-bg:#22272e;--color-checks-input-shadow:0 0 0 1px #373e47;--color-checks-dropdown-text:#adbac7;--color-checks-dropdown-bg:#373e47;--color-checks-dropdown-border:#444c56;--color-checks-dropdown-hover-text:#cdd9e5;--color-checks-dropdown-hover-bg:#316dca;--color-checks-dropdown-btn-hover-text:#cdd9e5;--color-checks-dropdown-btn-hover-bg:#2d333b;--color-checks-scrollbar-thumb-bg:#444c56;--color-checks-header-label-text:#768390;--color-checks-header-label-open-text:#adbac7;--color-checks-header-border:#373e47;--color-checks-header-icon:#636e7b;--color-checks-line-text:#768390;--color-checks-line-num-text:#768390;--color-checks-line-timestamp-text:#768390;--color-checks-line-hover-bg:#2d333b;--color-checks-line-selected-bg:rgba(65,132,228,0.1);--color-checks-line-selected-num-text:#539bf5;--color-checks-line-dt-fm-text:#22272e;--color-checks-line-dt-fm-bg:#c69026;--color-checks-gate-bg:rgba(128,84,0,0.15);--color-checks-gate-text:#768390;--color-checks-gate-waiting-text:#daaa3f;--color-checks-step-header-open-bg:#2d333b;--color-checks-step-error-text:#e5534b;--color-checks-step-warning-text:#daaa3f;--color-checks-logline-text:#636e7b;--color-checks-logline-num-text:#768390;--color-checks-logline-debug-text:#b083f0;--color-checks-logline-error-text:#768390;--color-checks-logline-error-num-text:#768390;--color-checks-logline-error-bg:rgba(229,83,75,0.1);--color-checks-logline-warning-text:#768390;--color-checks-logline-warning-num-text:#daaa3f;--color-checks-logline-warning-bg:rgba(174,124,20,0.1);--color-checks-logline-command-text:#539bf5;--color-checks-logline-section-text:#6bc46d;--color-intro-shelf-gradient-left:rgba(65,132,228,0.1);--color-intro-shelf-gradient-right:rgba(70,149,74,0.1);--color-intro-shelf-gradient-in:#22272e;--color-intro-shelf-gradient-out:rgba(34,39,46,0);--color-marketing-icon-primary:#6cb6ff;--color-marketing-icon-secondary:#316dca;--color-prettylights-syntax-comment:#768390;--color-prettylights-syntax-constant:#6cb6ff;--color-prettylights-syntax-entity:#dcbdfb;--color-prettylights-syntax-storage-modifier-import:#adbac7;--color-prettylights-syntax-entity-tag:#8ddb8c;--color-prettylights-syntax-keyword:#f47067;--color-prettylights-syntax-string:#96d0ff;--color-prettylights-syntax-variable:#f69d50;--color-prettylights-syntax-brackethighlighter-unmatched:#e5534b;--color-prettylights-syntax-invalid-illegal-text:#cdd9e5;--color-prettylights-syntax-invalid-illegal-bg:#922323;--color-prettylights-syntax-carriage-return-text:#cdd9e5;--color-prettylights-syntax-carriage-return-bg:#ad2e2c;--color-prettylights-syntax-string-regexp:#8ddb8c;--color-prettylights-syntax-markup-list:#eac55f;--color-prettylights-syntax-markup-heading:#316dca;--color-prettylights-syntax-markup-italic:#adbac7;--color-prettylights-syntax-markup-bold:#adbac7;--color-prettylights-syntax-markup-deleted-text:#ffd8d3;--color-prettylights-syntax-markup-deleted-bg:#78191b;--color-prettylights-syntax-markup-inserted-text:#b4f1b4;--color-prettylights-syntax-markup-inserted-bg:#1b4721;--color-prettylights-syntax-markup-changed-text:#ffddb0;--color-prettylights-syntax-markup-changed-bg:#682d0f;--color-prettylights-syntax-markup-ignored-text:#adbac7;--color-prettylights-syntax-markup-ignored-bg:#255ab2;--color-prettylights-syntax-meta-diff-range:#dcbdfb;--color-prettylights-syntax-brackethighlighter-angle:#768390;--color-prettylights-syntax-sublimelinter-gutter-mark:#545d68;--color-prettylights-syntax-constant-other-reference-link:#96d0ff;--color-codemirror-text:#adbac7;--color-codemirror-bg:#22272e;--color-codemirror-gutters-bg:#22272e;--color-codemirror-guttermarker-text:#22272e;--color-codemirror-guttermarker-subtle-text:#636e7b;--color-codemirror-linenumber-text:#768390;--color-codemirror-cursor:#cdd9e5;--color-codemirror-selection-bg:rgba(108,182,255,0.3);--color-codemirror-activeline-bg:#2d333b;--color-codemirror-matchingbracket-text:#adbac7;--color-codemirror-lines-bg:#22272e;--color-codemirror-syntax-comment:#768390;--color-codemirror-syntax-constant:#6cb6ff;--color-codemirror-syntax-entity:#dcbdfb;--color-codemirror-syntax-keyword:#f47067;--color-codemirror-syntax-storage:#f47067;--color-codemirror-syntax-string:#96d0ff;--color-codemirror-syntax-support:#6cb6ff;--color-codemirror-syntax-variable:#f69d50;--color-ansi-black:#22272e;--color-ansi-black-bright:#2d333b;--color-ansi-white:#909dab;--color-ansi-white-bright:#909dab;--color-ansi-gray:#636e7b;--color-ansi-red:#f47067;--color-ansi-red-bright:#ff938a;--color-ansi-green:#57ab5a;--color-ansi-green-bright:#6bc46d;--color-ansi-yellow:#c69026;--color-ansi-yellow-bright:#daaa3f;--color-ansi-blue:#539bf5;--color-ansi-blue-bright:#6cb6ff;--color-ansi-magenta:#b083f0;--color-ansi-magenta-bright:#dcbdfb;--color-ansi-cyan:#76e3ea;--color-ansi-cyan-bright:#b3f0ff}}[data-color-mode]{color:var(--color-text-primary);background-color:var(--color-bg-canvas)}[data-color-mode=light][data-light-theme*=light]{color-scheme:light}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=light]{color-scheme:light}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=light]{color-scheme:light}}[data-color-mode=dark][data-dark-theme*=dark]{color-scheme:dark}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark]{color-scheme:dark}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark]{color-scheme:dark}}*{box-sizing:border-box}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;font-size:14px;line-height:1.5;color:var(--color-text-primary);background-color:var(--color-bg-canvas)}a{color:var(--color-text-link);text-decoration:none}a:hover{text-decoration:underline}b,strong{font-weight:600}.rule,hr{height:0;margin:15px 0;overflow:hidden;background:transparent;border:0;border-bottom:1px solid var(--color-border-secondary)}.rule:after,.rule:before,hr:after,hr:before{display:table;content:""}.rule:after,hr:after{clear:both}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}button{cursor:pointer;border-radius:0}[hidden][hidden]{display:none!important}details summary{cursor:pointer}details:not([open])>:not(summary){display:none!important}kbd{display:inline-block;padding:3px 5px;font:11px SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;line-height:10px;color:var(--color-auto-gray-7);vertical-align:middle;background-color:var(--color-bg-secondary);border-bottom-color:var(--color-border-tertiary);border:1px solid var(--color-border-tertiary);border-radius:6px;box-shadow:inset 0 -1px 0 var(--color-border-tertiary)}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0}h1{font-size:32px}h1,h2{font-weight:600}h2{font-size:24px}h3{font-size:20px}h3,h4{font-weight:600}h4{font-size:16px}h5{font-size:14px}h5,h6{font-weight:600}h6{font-size:12px}p{margin-top:0;margin-bottom:10px}small{font-size:90%}blockquote{margin:0}ol,ul{padding-left:0;margin-top:0;margin-bottom:0}ol ol,ul ol{list-style-type:lower-roman}ol ol ol,ol ul ol,ul ol ol,ul ul ol{list-style-type:lower-alpha}dd{margin-left:0}code,pre,tt{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:12px}pre{margin-top:0;margin-bottom:0}.octicon{vertical-align:text-bottom}.Box{background-color:var(--color-bg-primary);border:1px solid var(--color-border-primary);border-radius:6px}.Box--condensed{line-height:1.25}.Box--condensed .Box-body,.Box--condensed .Box-footer,.Box--condensed .Box-header{padding:8px 16px}.Box--condensed .Box-btn-octicon.btn-octicon{padding:8px 16px;margin:-8px -16px;line-height:1.25}.Box--condensed .Box-row{padding:8px 16px}.Box--spacious .Box-header{padding:24px;line-height:1.25}.Box--spacious .Box-title{font-size:20px}.Box--spacious .Box-body,.Box--spacious .Box-footer{padding:24px}.Box--spacious .Box-btn-octicon.btn-octicon{padding:24px;margin:-24px}.Box--spacious .Box-row{padding:24px}.Box-header{padding:16px;margin:-1px -1px 0;background-color:var(--color-bg-tertiary);border:1px solid var(--color-border-primary);border-top-left-radius:6px;border-top-right-radius:6px}.Box-title{font-size:14px;font-weight:600}.Box-body{padding:16px;border-bottom:1px solid var(--color-border-primary)}.Box-body:last-of-type{margin-bottom:-1px;border-bottom-right-radius:6px;border-bottom-left-radius:6px}.Box-row{padding:16px;margin-top:-1px;list-style-type:none;border-top:1px solid var(--color-border-secondary)}.Box-row:first-of-type{border-top-left-radius:6px;border-top-right-radius:6px}.Box-row:last-of-type{border-bottom-right-radius:6px;border-bottom-left-radius:6px}.Box-row.Box-row--unread,.Box-row.unread{box-shadow:inset 2px 0 0 var(--color-border-info)}.Box-row.navigation-focus .Box-row--drag-button{color:var(--color-text-link);cursor:grab;opacity:1}.Box-row.navigation-focus.is-dragging .Box-row--drag-button{cursor:grabbing}.Box-row.navigation-focus.sortable-chosen{background-color:var(--color-bg-secondary)}.Box-row.navigation-focus.sortable-ghost{background-color:var(--color-bg-tertiary)}.Box-row.navigation-focus.sortable-ghost .Box-row--drag-hide{opacity:0}.Box-row--focus-gray.navigation-focus{background-color:var(--color-bg-tertiary)}.Box-row--focus-blue.navigation-focus{background-color:var(--color-box-row-blue-bg)}.Box-row--hover-gray:hover{background-color:var(--color-bg-tertiary)}.Box-row--hover-blue:hover{background-color:var(--color-box-row-blue-bg)}@media (min-width:768px){.Box-row-link{color:var(--color-text-primary);text-decoration:none}.Box-row-link:hover{color:var(--color-text-link);text-decoration:none}}.Box-row--drag-button{opacity:0}.Box-footer{padding:16px;margin-top:-1px;border-top:1px solid var(--color-border-primary);border-radius:0 0 6px 6px}.Box--scrollable{max-height:324px;overflow:scroll}.Box--blue,.Box--blue .Box-header{border-color:var(--color-box-blue-border)}.Box--blue .Box-header{background-color:var(--color-bg-info)}.Box--blue .Box-body,.Box--blue .Box-footer,.Box--blue .Box-row{border-color:var(--color-box-blue-border)}.Box--danger,.Box--danger .Box-body:last-of-type,.Box--danger .Box-row:first-of-type{border-color:var(--color-border-danger)}.Box-header--blue{background-color:var(--color-box-header-blue-bg);border-color:var(--color-box-header-blue-border)}.Box-row--yellow{background-color:var(--color-box-row-yellow-bg)}.Box-row--blue{background-color:var(--color-box-row-blue-bg)}.Box-row--gray{background-color:var(--color-bg-tertiary)}.Box-btn-octicon.btn-octicon{padding:16px;margin:-16px;line-height:1.5}.breadcrumb-item{display:inline-block;margin-left:-.35em;white-space:nowrap;list-style:none}.breadcrumb-item:after{padding-right:.5em;padding-left:.5em;color:var(--color-text-disabled);content:"/"}.breadcrumb-item:first-child{margin-left:0}.breadcrumb-item-selected,.breadcrumb-item[aria-current]:not([aria-current=false]){color:var(--color-text-primary)}.breadcrumb-item-selected:after,.breadcrumb-item[aria-current]:not([aria-current=false]):after{content:none}.btn{position:relative;display:inline-block;padding:5px 16px;font-size:14px;font-weight:500;line-height:20px;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid;border-radius:6px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn:hover{text-decoration:none}.btn.disabled,.btn:disabled,.btn[aria-disabled=true]{cursor:default}.btn.disabled .octicon,.btn:disabled .octicon,.btn[aria-disabled=true] .octicon{color:var(--color-icon-tertiary)}.btn i{font-style:normal;font-weight:500;opacity:.75}.btn .octicon{margin-right:4px;color:var(--color-text-tertiary);vertical-align:text-bottom}.btn .octicon:only-child{margin-right:0}.btn .Counter{margin-left:2px;color:inherit;text-shadow:none;vertical-align:top;background-color:var(--color-btn-counter-bg)}.btn .dropdown-caret{margin-left:4px;opacity:.8}.btn{color:var(--color-btn-text);background-color:var(--color-btn-bg);border-color:var(--color-btn-border);box-shadow:var(--color-btn-shadow),var(--color-btn-inset-shadow);transition:.2s cubic-bezier(.3,0,.5,1);transition-property:color,background-color,border-color}.btn.hover,.btn:hover,[open]>.btn{background-color:var(--color-btn-hover-bg);border-color:var(--color-btn-hover-border);transition-duration:.1s}.btn.selected,.btn:active,.btn[aria-selected=true]{background-color:var(--color-btn-selected-bg);box-shadow:var(--color-shadow-inset);transition:none}.btn.disabled,.btn:disabled,.btn[aria-disabled=true]{color:var(--color-text-disabled);background-color:var(--color-btn-bg);border-color:var(--color-btn-border)}.btn.focus,.btn:focus{border-color:var(--color-btn-focus-border);outline:none;box-shadow:var(--color-btn-focus-shadow)}.btn-primary{color:var(--color-btn-primary-text);background-color:var(--color-btn-primary-bg);border-color:var(--color-btn-primary-border);box-shadow:var(--color-btn-primary-shadow),var(--color-btn-primary-inset-shadow)}.btn-primary.hover,.btn-primary:hover,[open]>.btn-primary{background-color:var(--color-btn-primary-hover-bg);border-color:var(--color-btn-primary-hover-border)}.btn-primary.selected,.btn-primary:active,.btn-primary[aria-selected=true]{background-color:var(--color-btn-primary-selected-bg);box-shadow:var(--color-btn-primary-selected-shadow)}.btn-primary.disabled,.btn-primary:disabled,.btn-primary[aria-disabled=true]{color:var(--color-btn-primary-disabled-text);background-color:var(--color-btn-primary-disabled-bg);border-color:var(--color-btn-primary-disabled-border)}.btn-primary.focus,.btn-primary:focus{background-color:var(--color-btn-primary-focus-bg);border-color:var(--color-btn-primary-focus-border);box-shadow:var(--color-btn-primary-focus-shadow)}.btn-primary .Counter{color:inherit;background-color:var(--color-btn-primary-counter-bg)}.btn-primary .octicon{color:var(--color-btn-primary-icon)}.btn-outline{color:var(--color-btn-outline-text)}.btn-outline:hover,[open]>.btn-outline{color:var(--color-btn-outline-hover-text);background-color:var(--color-btn-outline-hover-bg);border-color:var(--color-btn-outline-hover-border);box-shadow:var(--color-btn-outline-hover-shadow),var(--color-btn-outline-hover-inset-shadow)}.btn-outline:hover .Counter,[open]>.btn-outline .Counter{background-color:var(--color-btn-outline-hover-counter-bg)}.btn-outline:hover .octicon,[open]>.btn-outline .octicon{color:inherit}.btn-outline.selected,.btn-outline:active,.btn-outline[aria-selected=true]{color:var(--color-btn-outline-selected-text);background-color:var(--color-btn-outline-selected-bg);border-color:var(--color-btn-outline-selected-border);box-shadow:var(--color-btn-outline-selected-shadow)}.btn-outline.disabled,.btn-outline:disabled,.btn-outline[aria-disabled=true]{color:var(--color-btn-outline-disabled-text);background-color:var(--color-btn-outline-disabled-bg);border-color:var(--color-btn-border);box-shadow:none}.btn-outline.disabled .Counter,.btn-outline:disabled .Counter,.btn-outline[aria-disabled=true] .Counter{background-color:var(--color-btn-outline-disabled-counter-bg)}.btn-outline:focus{border-color:var(--color-btn-outline-focus-border);box-shadow:var(--color-btn-outline-focus-shadow)}.btn-outline .Counter{color:inherit;background-color:var(--color-btn-outline-counter-bg)}.btn-danger{color:var(--color-btn-danger-text)}.btn-danger .octicon{color:var(--color-btn-danger-icon)}.btn-danger:hover,[open]>.btn-danger{color:var(--color-btn-danger-hover-text);background-color:var(--color-btn-danger-hover-bg);border-color:var(--color-btn-danger-hover-border);box-shadow:var(--color-btn-danger-hover-shadow),var(--color-btn-danger-hover-inset-shadow)}.btn-danger:hover .Counter,[open]>.btn-danger .Counter{background-color:var(--color-btn-danger-hover-counter-bg)}.btn-danger:hover .octicon,[open]>.btn-danger .octicon{color:var(--color-btn-danger-hover-icon)}.btn-danger.selected,.btn-danger:active,.btn-danger[aria-selected=true]{color:var(--color-btn-danger-selected-text);background-color:var(--color-btn-danger-selected-bg);border-color:var(--color-btn-danger-selected-border);box-shadow:var(--color-btn-danger-selected-shadow)}.btn-danger.disabled,.btn-danger:disabled,.btn-danger[aria-disabled=true]{color:var(--color-btn-danger-disabled-text);background-color:var(--color-btn-danger-disabled-bg);border-color:var(--color-btn-border);box-shadow:none}.btn-danger.disabled .Counter,.btn-danger:disabled .Counter,.btn-danger[aria-disabled=true] .Counter{background-color:var(--color-btn-danger-disabled-counter-bg)}.btn-danger:focus{border-color:var(--color-btn-danger-focus-border);box-shadow:var(--color-btn-danger-focus-shadow)}.btn-danger .Counter{color:inherit;background-color:var(--color-btn-danger-counter-bg)}.btn-sm{padding:3px 12px;font-size:12px;line-height:20px}.btn-sm .octicon{vertical-align:text-top}.btn-large{padding:.75em 1.5em;font-size:inherit;line-height:1.5;border-radius:.5em}.btn-block{display:block;width:100%;text-align:center}.BtnGroup{display:inline-block;vertical-align:middle}.BtnGroup:after,.BtnGroup:before{display:table;content:""}.BtnGroup:after{clear:both}.BtnGroup+.btn,.BtnGroup+.BtnGroup{margin-left:4px}.BtnGroup-item{position:relative;float:left;border-right-width:0;border-radius:0}.BtnGroup-item:first-child{border-top-left-radius:6px;border-bottom-left-radius:6px}.BtnGroup-item:last-child{border-right-width:1px;border-top-right-radius:6px;border-bottom-right-radius:6px}.BtnGroup-item.selected,.BtnGroup-item:active,.BtnGroup-item:focus,.BtnGroup-item:hover,.BtnGroup-item[aria-selected=true]{border-right-width:1px}.BtnGroup-item.selected+.BtnGroup-item,.BtnGroup-item.selected+.BtnGroup-parent .BtnGroup-item,.BtnGroup-item:active+.BtnGroup-item,.BtnGroup-item:active+.BtnGroup-parent .BtnGroup-item,.BtnGroup-item:focus+.BtnGroup-item,.BtnGroup-item:focus+.BtnGroup-parent .BtnGroup-item,.BtnGroup-item:hover+.BtnGroup-item,.BtnGroup-item:hover+.BtnGroup-parent .BtnGroup-item,.BtnGroup-item[aria-selected=true]+.BtnGroup-item,.BtnGroup-item[aria-selected=true]+.BtnGroup-parent .BtnGroup-item{border-left-width:0}.BtnGroup-parent{float:left}.BtnGroup-parent:first-child .BtnGroup-item{border-top-left-radius:6px;border-bottom-left-radius:6px}.BtnGroup-parent:last-child .BtnGroup-item{border-right-width:1px;border-top-right-radius:6px;border-bottom-right-radius:6px}.BtnGroup-parent .BtnGroup-item{border-right-width:0;border-radius:0}.BtnGroup-parent.selected .BtnGroup-item,.BtnGroup-parent:active .BtnGroup-item,.BtnGroup-parent:focus .BtnGroup-item,.BtnGroup-parent:hover .BtnGroup-item,.BtnGroup-parent[aria-selected=true] .BtnGroup-item{border-right-width:1px}.BtnGroup-parent.selected+.BtnGroup-item,.BtnGroup-parent.selected+.BtnGroup-parent .BtnGroup-item,.BtnGroup-parent:active+.BtnGroup-item,.BtnGroup-parent:active+.BtnGroup-parent .BtnGroup-item,.BtnGroup-parent:focus+.BtnGroup-item,.BtnGroup-parent:focus+.BtnGroup-parent .BtnGroup-item,.BtnGroup-parent:hover+.BtnGroup-item,.BtnGroup-parent:hover+.BtnGroup-parent .BtnGroup-item,.BtnGroup-parent[aria-selected=true]+.BtnGroup-item,.BtnGroup-parent[aria-selected=true]+.BtnGroup-parent .BtnGroup-item{border-left-width:0}.BtnGroup-item:active,.BtnGroup-item:focus,.BtnGroup-parent:active,.BtnGroup-parent:focus{z-index:1}.btn-link{display:inline-block;padding:0;font-size:inherit;color:var(--color-text-link);text-decoration:none;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:initial;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn-link:hover{text-decoration:underline}.btn-link:disabled,.btn-link:disabled:hover,.btn-link[aria-disabled=true],.btn-link[aria-disabled=true]:hover{color:var(--color-text-disabled);cursor:default}.btn-invisible{color:var(--color-text-link);background-color:initial;border:0;border-radius:0;box-shadow:none}.btn-invisible.selected,.btn-invisible.zeroclipboard-is-active,.btn-invisible.zeroclipboard-is-hover,.btn-invisible:active,.btn-invisible:focus,.btn-invisible:hover,.btn-invisible[aria-selected=true]{color:var(--color-text-link);background:none;outline:none;box-shadow:none}.btn-invisible.disabled,.btn-invisible:disabled,.btn-invisible[aria-disabled=true]{background-color:initial}.btn-octicon{display:inline-block;padding:5px;margin-left:5px;line-height:1;color:var(--color-text-secondary);vertical-align:middle;background:transparent;border:0}.btn-octicon:hover{color:var(--color-text-link)}.btn-octicon.disabled,.btn-octicon[aria-disabled=true]{color:var(--color-text-disabled);cursor:default}.btn-octicon.disabled:hover,.btn-octicon[aria-disabled=true]:hover{color:var(--color-text-disabled)}.btn-octicon-danger:hover{color:var(--color-text-danger)}.close-button{padding:0;color:var(--color-text-secondary);background:transparent;border:0;outline:none}.close-button:hover{color:var(--color-text-primary)}.close-button:active{color:var(--color-text-tertiary)}.hidden-text-expander{display:block}.hidden-text-expander.inline{position:relative;top:-1px;display:inline-block;margin-left:5px;line-height:0}.ellipsis-expander,.hidden-text-expander a{display:inline-block;height:12px;padding:0 5px 5px;font-size:12px;font-weight:600;line-height:6px;color:var(--color-auto-gray-7);text-decoration:none;vertical-align:middle;background:var(--color-hidden-text-expander-bg);border:0;border-radius:1px}.ellipsis-expander:hover,.hidden-text-expander a:hover{text-decoration:none;background-color:var(--color-hidden-text-expander-bg-hover)}.ellipsis-expander:active,.hidden-text-expander a:active{color:var(--color-text-inverse);background-color:var(--color-bg-info-inverse)}.btn-with-count{float:left;border-top-right-radius:0;border-bottom-right-radius:0}.btn-with-count:focus{z-index:1}.social-count{position:relative;float:left;padding:3px 12px;font-size:12px;font-weight:600;line-height:20px;color:var(--color-text-primary);vertical-align:middle;background-color:var(--color-social-count-bg);border:1px solid var(--color-btn-border);border-left:0;border-top-right-radius:6px;border-bottom-right-radius:6px;box-shadow:var(--color-shadow-small),var(--color-shadow-highlight)}.social-count:active,.social-count:hover{text-decoration:none}.social-count:hover{color:var(--color-text-link);cursor:pointer}.social-count:focus{z-index:1;outline:0;box-shadow:var(--color-state-focus-shadow)}.TableObject{display:table}.TableObject-item{display:table-cell;width:1%;white-space:nowrap;vertical-align:middle}.TableObject-item--primary{width:99%}fieldset{padding:0;margin:0;border:0}label{font-weight:600}.form-control,.form-select{padding:5px 12px;font-size:14px;line-height:20px;color:var(--color-text-primary);vertical-align:middle;background-color:var(--color-input-bg);background-repeat:no-repeat;background-position:right 8px center;border:1px solid var(--color-input-border);border-radius:6px;outline:none;box-shadow:var(--color-shadow-inset)}.form-control.focus,.form-control:focus,.form-select.focus,.form-select:focus{border-color:var(--color-state-focus-border);outline:none;box-shadow:var(--color-state-focus-shadow)}.form-control[disabled],.form-select[disabled]{color:var(--color-text-secondary);background-color:var(--color-input-disabled-bg);border-color:var(--color-input-disabled-border)}@supports (-webkit-touch-callout:none){.form-control,.form-select{font-size:16px}@media (min-width:768px){.form-control,.form-select{font-size:14px}}}textarea.form-control{padding-top:8px;padding-bottom:8px;line-height:1.5}.input-contrast{background-color:var(--color-input-contrast-bg)}.input-contrast:focus{background-color:var(--color-input-bg)}:-ms-input-placeholder{color:var(--color-text-placeholder);opacity:1}::-ms-input-placeholder{color:var(--color-text-placeholder);opacity:1}::placeholder{color:var(--color-text-placeholder);opacity:1}.input-sm{padding-top:3px;padding-bottom:3px;font-size:12px;line-height:20px}.input-lg{font-size:16px}.input-block{display:block;width:100%}.input-monospace{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace}.input-hide-webkit-autofill::-webkit-contacts-auto-fill-button{position:absolute;right:0;display:none!important;pointer-events:none;visibility:hidden}.form-checkbox{padding-left:20px;margin:15px 0;vertical-align:middle}.form-checkbox label em.highlight{position:relative;left:-4px;padding:2px 4px;font-style:normal;background:var(--color-auto-yellow-1);border-radius:6px}.form-checkbox input[type=checkbox],.form-checkbox input[type=radio]{float:left;margin:5px 0 0 -20px;vertical-align:middle}.form-checkbox .note{display:block;margin:0;font-size:12px;font-weight:400;color:var(--color-text-secondary)}.form-checkbox-details{display:none}.form-checkbox-details-trigger:checked~* .form-checkbox-details,.form-checkbox-details-trigger:checked~.form-checkbox-details{display:block}.hfields{margin:15px 0}.hfields:after,.hfields:before{display:table;content:""}.hfields:after{clear:both}.hfields .form-group{float:left;margin:0 30px 0 0}.hfields .form-group .form-group-header label,.hfields .form-group dt label{display:inline-block;margin:5px 0 0;color:var(--color-text-secondary)}.hfields .form-group .form-group-header img,.hfields .form-group dt img{position:relative;top:-2px}.hfields .btn{float:left;margin:28px 25px 0 -20px}.hfields .form-select{margin-top:5px}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{margin:0;-webkit-appearance:none;appearance:none}.form-actions:after,.form-actions:before{display:table;content:""}.form-actions:after{clear:both}.form-actions .btn{float:right}.form-actions .btn+.btn{margin-right:5px}.form-warning{padding:8px 10px;margin:10px 0;font-size:14px;color:var(--color-text-warning);background:var(--color-bg-warning);border:1px solid var(--color-border-warning);border-radius:6px}.form-warning p{margin:0;line-height:1.5}.form-warning a{font-weight:600}.form-select{display:inline-block;max-width:100%;height:32px;padding-right:24px;background-color:var(--color-bg-primary);background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9IiM1ODYwNjkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQuNDI3IDkuNDI3bDMuMzk2IDMuMzk2YS4yNTEuMjUxIDAgMDAuMzU0IDBsMy4zOTYtMy4zOTZBLjI1LjI1IDAgMDAxMS4zOTYgOUg0LjYwNGEuMjUuMjUgMCAwMC0uMTc3LjQyN3pNNC40MjMgNi40N0w3LjgyIDMuMDcyYS4yNS4yNSAwIDAxLjM1NCAwTDExLjU3IDYuNDdhLjI1LjI1IDAgMDEtLjE3Ny40MjdINC42YS4yNS4yNSAwIDAxLS4xNzctLjQyN3oiLz48L3N2Zz4=");background-repeat:no-repeat;background-position:right 4px center;background-size:16px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-select::-ms-expand{opacity:0}.form-select[multiple]{height:auto}[data-color-mode=dark][data-dark-theme*=dark] .form-select{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9IiM2ZTc2ODEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQuNDI3IDkuNDI3bDMuMzk2IDMuMzk2YS4yNTEuMjUxIDAgMDAuMzU0IDBsMy4zOTYtMy4zOTZBLjI1LjI1IDAgMDAxMS4zOTYgOUg0LjYwNGEuMjUuMjUgMCAwMC0uMTc3LjQyN3pNNC40MjMgNi40N0w3LjgyIDMuMDcyYS4yNS4yNSAwIDAxLjM1NCAwTDExLjU3IDYuNDdhLjI1LjI1IDAgMDEtLjE3Ny40MjdINC42YS4yNS4yNSAwIDAxLS4xNzctLjQyN3oiLz48L3N2Zz4=")}@media (prefers-color-scheme:light){[data-color-mode=auto][data-light-theme*=dark] .form-select{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9IiM2ZTc2ODEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQuNDI3IDkuNDI3bDMuMzk2IDMuMzk2YS4yNTEuMjUxIDAgMDAuMzU0IDBsMy4zOTYtMy4zOTZBLjI1LjI1IDAgMDAxMS4zOTYgOUg0LjYwNGEuMjUuMjUgMCAwMC0uMTc3LjQyN3pNNC40MjMgNi40N0w3LjgyIDMuMDcyYS4yNS4yNSAwIDAxLjM1NCAwTDExLjU3IDYuNDdhLjI1LjI1IDAgMDEtLjE3Ny40MjdINC42YS4yNS4yNSAwIDAxLS4xNzctLjQyN3oiLz48L3N2Zz4=")}}@media (prefers-color-scheme:dark){[data-color-mode=auto][data-dark-theme*=dark] .form-select{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9IiM2ZTc2ODEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQuNDI3IDkuNDI3bDMuMzk2IDMuMzk2YS4yNTEuMjUxIDAgMDAuMzU0IDBsMy4zOTYtMy4zOTZBLjI1LjI1IDAgMDAxMS4zOTYgOUg0LjYwNGEuMjUuMjUgMCAwMC0uMTc3LjQyN3pNNC40MjMgNi40N0w3LjgyIDMuMDcyYS4yNS4yNSAwIDAxLjM1NCAwTDExLjU3IDYuNDdhLjI1LjI1IDAgMDEtLjE3Ny40MjdINC42YS4yNS4yNSAwIDAxLS4xNzctLjQyN3oiLz48L3N2Zz4=")}}.select-sm{height:28px;padding-top:3px;padding-bottom:3px;font-size:12px}.select-sm[multiple]{height:auto;min-height:0}.form-group{margin:15px 0}.form-group .form-control{width:440px;max-width:100%;margin-right:5px;background-color:var(--color-input-contrast-bg)}.form-group .form-control:focus{background-color:var(--color-input-bg)}.form-group .form-control.shorter{width:130px}.form-group .form-control.short{width:250px}.form-group .form-control.long{width:100%}.form-group textarea.form-control{width:100%;height:200px;min-height:200px}.form-group textarea.form-control.short{height:50px;min-height:50px}.form-group .form-group-header,.form-group dt{margin:0 0 6px}.form-group label{position:relative}.form-group.flattened .form-group-header,.form-group.flattened dt{float:left;margin:0;line-height:32px}.form-group.flattened .form-group-body,.form-group.flattened dd{line-height:32px}.form-group .form-group-body h4,.form-group dd h4{margin:4px 0 0}.form-group .form-group-body h4.is-error,.form-group dd h4.is-error{color:var(--color-text-danger)}.form-group .form-group-body h4.is-success,.form-group dd h4.is-success{color:var(--color-text-success)}.form-group .form-group-body h4+.note,.form-group dd h4+.note{margin-top:0}.form-group.required .form-group-header label:after,.form-group.required dt label:after{padding-left:5px;color:var(--color-text-danger);content:"*"}.form-group .error,.form-group .indicator,.form-group .success{display:none;font-size:12px;font-weight:600}.form-group.loading{opacity:.5}.form-group.loading .indicator{display:inline}.form-group.loading .spinner{display:inline-block;vertical-align:middle}.form-group.successful .success{display:inline;color:var(--color-text-success)}.form-group.errored .error,.form-group.errored .success,.form-group.errored .warning,.form-group.successed .error,.form-group.successed .success,.form-group.successed .warning,.form-group.warn .error,.form-group.warn .success,.form-group.warn .warning{position:absolute;z-index:10;display:block;max-width:450px;padding:4px 8px;margin:8px 0 0;font-size:12px;font-weight:400;border-style:solid;border-width:1px;border-radius:6px}.form-group.errored .error:after,.form-group.errored .error:before,.form-group.errored .success:after,.form-group.errored .success:before,.form-group.errored .warning:after,.form-group.errored .warning:before,.form-group.successed .error:after,.form-group.successed .error:before,.form-group.successed .success:after,.form-group.successed .success:before,.form-group.successed .warning:after,.form-group.successed .warning:before,.form-group.warn .error:after,.form-group.warn .error:before,.form-group.warn .success:after,.form-group.warn .success:before,.form-group.warn .warning:after,.form-group.warn .warning:before{position:absolute;bottom:100%;left:10px;z-index:15;width:0;height:0;pointer-events:none;content:" ";border:solid transparent}.form-group.errored .error:after,.form-group.errored .success:after,.form-group.errored .warning:after,.form-group.successed .error:after,.form-group.successed .success:after,.form-group.successed .warning:after,.form-group.warn .error:after,.form-group.warn .success:after,.form-group.warn .warning:after{border-width:5px}.form-group.errored .error:before,.form-group.errored .success:before,.form-group.errored .warning:before,.form-group.successed .error:before,.form-group.successed .success:before,.form-group.successed .warning:before,.form-group.warn .error:before,.form-group.warn .success:before,.form-group.warn .warning:before{margin-left:-1px;border-width:6px}.form-group.successed .success{color:var(--color-input-tooltip-success-text);background-color:var(--color-input-tooltip-success-bg);border-color:var(--color-input-tooltip-success-border)}.form-group.successed .success:after{border-bottom-color:var(--color-input-tooltip-success-bg)}.form-group.successed .success:before{border-bottom-color:var(--color-input-tooltip-success-border)}.form-group.warn .form-control{border-color:var(--color-input-warning-border)}.form-group.warn .warning{color:var(--color-input-tooltip-warning-text);background-color:var(--color-input-tooltip-warning-bg);border-color:var(--color-input-tooltip-warning-border)}.form-group.warn .warning:after{border-bottom-color:var(--color-input-tooltip-warning-bg)}.form-group.warn .warning:before{border-bottom-color:var(--color-input-tooltip-warning-border)}.form-group.errored .form-control{border-color:var(--color-input-error-border)}.form-group.errored label{color:var(--color-text-danger)}.form-group.errored .error{color:var(--color-input-tooltip-error-text);background-color:var(--color-input-tooltip-error-bg);border-color:var(--color-input-tooltip-error-border)}.form-group.errored .error:after{border-bottom-color:var(--color-input-tooltip-error-bg)}.form-group.errored .error:before{border-bottom-color:var(--color-input-tooltip-error-border)}.note{min-height:17px;margin:4px 0 2px;font-size:12px;color:var(--color-text-secondary)}.note .spinner{margin-right:3px;vertical-align:middle}.form-group>.form-group-body .form-control.is-autocheck-errored,.form-group>.form-group-body .form-control.is-autocheck-loading,.form-group>.form-group-body .form-control.is-autocheck-successful,dl.form-group>dd .form-control.is-autocheck-errored,dl.form-group>dd .form-control.is-autocheck-loading,dl.form-group>dd .form-control.is-autocheck-successful{padding-right:30px}.form-group>.form-group-body .form-control.is-autocheck-loading,dl.form-group>dd .form-control.is-autocheck-loading{background-image:url(/images/spinners/octocat-spinner-16px.gif)}.form-group>.form-group-body .form-control.is-autocheck-successful,dl.form-group>dd .form-control.is-autocheck-successful{background-image:url(/images/modules/ajax/success.png)}.form-group>.form-group-body .form-control.is-autocheck-errored,dl.form-group>dd .form-control.is-autocheck-errored{background-image:url(/images/modules/ajax/error.png)}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.form-group>.form-group-body .form-control.is-autocheck-errored,.form-group>.form-group-body .form-control.is-autocheck-loading,.form-group>.form-group-body .form-control.is-autocheck-successful,dl.form-group>dd .form-control.is-autocheck-errored,dl.form-group>dd .form-control.is-autocheck-loading,dl.form-group>dd .form-control.is-autocheck-successful{background-size:16px 16px}.form-group>.form-group-body .form-control.is-autocheck-loading,dl.form-group>dd .form-control.is-autocheck-loading{background-image:url(/images/spinners/octocat-spinner-32.gif)}.form-group>.form-group-body .form-control.is-autocheck-successful,dl.form-group>dd .form-control.is-autocheck-successful{background-image:url(/images/modules/ajax/success@2x.png)}.form-group>.form-group-body .form-control.is-autocheck-errored,dl.form-group>dd .form-control.is-autocheck-errored{background-image:url(/images/modules/ajax/error@2x.png)}}.status-indicator{display:inline-block;width:16px;height:16px;margin-left:5px}.status-indicator .octicon{display:none}.status-indicator-success:before{content:""}.status-indicator-success .octicon-check{display:inline-block;color:var(--color-text-success);fill:var(--color-icon-success)}.status-indicator-success .octicon-x{display:none}.status-indicator-failed:before{content:""}.status-indicator-failed .octicon-check{display:none}.status-indicator-failed .octicon-x{display:inline-block;color:var(--color-text-danger);fill:var(--color-icon-danger)}.status-indicator-loading{width:16px;background-image:url(/images/spinners/octocat-spinner-32-EAF2F5.gif);background-repeat:no-repeat;background-position:0 0;background-size:16px}.inline-form{display:inline-block}.inline-form .btn-plain{background-color:initial;border:0}.drag-and-drop{padding:7px 10px;margin:0;font-size:13px;line-height:16px;color:var(--color-text-secondary);background-color:var(--color-bg-secondary);border:1px solid var(--color-drag-and-drop-border);border-top:0;border-bottom-right-radius:6px;border-bottom-left-radius:6px}.drag-and-drop .default,.drag-and-drop .error,.drag-and-drop .loading{display:none}.drag-and-drop .error{color:var(--color-text-danger)}.drag-and-drop img{vertical-align:top}.is-bad-file .drag-and-drop .bad-file,.is-bad-permissions .drag-and-drop .bad-permissions,.is-default .drag-and-drop .default,.is-duplicate-filename .drag-and-drop .duplicate-filename,.is-empty .drag-and-drop .empty,.is-hidden-file .drag-and-drop .hidden-file,.is-repository-required .drag-and-drop .repository-required,.is-too-big .drag-and-drop .too-big,.is-uploading .drag-and-drop .loading{display:inline-block}.drag-and-drop-error-info{font-weight:400;color:var(--color-text-secondary)}.drag-and-drop-error-info a{color:var(--color-text-link)}.is-failed .drag-and-drop .failed-request{display:inline-block}.manual-file-chooser{position:absolute;width:240px;padding:5px;margin-left:-80px;cursor:pointer;opacity:.0001}.manual-file-chooser:hover+.manual-file-chooser-text{text-decoration:underline}.btn .manual-file-chooser{top:0;padding:0;line-height:34px}.upload-enabled textarea{display:block;border-bottom:1px dashed var(--color-upload-enabled-border);border-bottom-right-radius:0;border-bottom-left-radius:0}.upload-enabled.focused{border-radius:6px;box-shadow:var(--color-input-shadow),var(--color-state-focus-shadow)}.upload-enabled.focused .form-control{box-shadow:none}.upload-enabled.focused .drag-and-drop{border-color:var(--color-upload-enabled-border-focused)}.dragover .drag-and-drop,.dragover textarea{box-shadow:0 0 3px #c9ff00}.previewable-comment-form,.write-content{position:relative}.previewable-comment-form .tabnav{position:relative;padding:8px 8px 0}.previewable-comment-form .comment{border:1px solid var(--color-previewable-comment-form-border)}.previewable-comment-form .comment-form-error{margin-bottom:8px}.previewable-comment-form .preview-content,.previewable-comment-form .write-content{display:none;margin:0 8px 8px}.previewable-comment-form.preview-selected .preview-content,.previewable-comment-form.write-selected .write-content{display:block}.previewable-comment-form textarea{display:block;width:100%;min-height:100px;max-height:500px;padding:8px;resize:vertical}.form-action-spacious{margin-top:10px}div.composer{margin-top:0;border:0}.composer .comment-form-textarea{height:200px;min-height:200px}.composer .tabnav{margin:0 0 10px}h2.account{margin:15px 0 0;font-size:18px;font-weight:400}h2.account,p.explain{color:var(--color-text-secondary)}p.explain{position:relative;font-size:12px}p.explain strong{color:var(--color-text-primary)}p.explain .octicon{margin-right:5px;color:var(--color-icon-tertiary)}p.explain .minibutton{top:-4px;float:right}.form-group label{position:static}.input-group{display:table}.input-group .form-control{position:relative;width:100%}.input-group .form-control:focus{z-index:2}.input-group .form-control+.btn{margin-left:0}.input-group.inline{display:inline-table}.input-group-button,.input-group .form-control{display:table-cell}.input-group-button{width:1%;vertical-align:middle}.input-group-button:first-child .btn,.input-group .form-control:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-button:first-child .btn{margin-right:-1px}.input-group-button:last-child .btn,.input-group .form-control:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-button:last-child .btn{margin-left:-1px}.radio-group:after,.radio-group:before{display:table;content:""}.radio-group:after{clear:both}.radio-label{float:left;padding:6px 16px 6px 36px;margin-left:-1px;font-size:14px;line-height:20px;color:var(--color-text-primary);cursor:pointer;border:1px solid var(--color-border-primary)}:checked+.radio-label{position:relative;z-index:1;border-color:var(--color-border-info)}.radio-label:first-of-type{margin-left:0;border-top-left-radius:6px;border-bottom-left-radius:6px}.radio-label:last-of-type{border-top-right-radius:6px;border-bottom-right-radius:6px}.radio-input{z-index:3;float:left;margin:10px -32px 0 16px}.container-sm{max-width:544px}.container-md,.container-sm{margin-right:auto;margin-left:auto}.container-md{max-width:768px}.container-lg{max-width:1012px}.container-lg,.container-xl{margin-right:auto;margin-left:auto}.container-xl{max-width:1280px}.col-1{width:8.33333%}.col-2{width:16.66667%}.col-3{width:25%}.col-4{width:33.33333%}.col-5{width:41.66667%}.col-6{width:50%}.col-7{width:58.33333%}.col-8{width:66.66667%}.col-9{width:75%}.col-10{width:83.33333%}.col-11{width:91.66667%}.col-12{width:100%}@media (min-width:544px){.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}}@media (min-width:768px){.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}}@media (min-width:1012px){.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}}@media (min-width:1280px){.col-xl-1{width:8.33333%}.col-xl-2{width:16.66667%}.col-xl-3{width:25%}.col-xl-4{width:33.33333%}.col-xl-5{width:41.66667%}.col-xl-6{width:50%}.col-xl-7{width:58.33333%}.col-xl-8{width:66.66667%}.col-xl-9{width:75%}.col-xl-10{width:83.33333%}.col-xl-11{width:91.66667%}.col-xl-12{width:100%}}.gutter{margin-right:-16px;margin-left:-16px}.gutter>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.gutter-condensed{margin-right:-8px;margin-left:-8px}.gutter-condensed>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.gutter-spacious{margin-right:-24px;margin-left:-24px}.gutter-spacious>[class*=col-]{padding-right:24px!important;padding-left:24px!important}@media (min-width:544px){.gutter-sm{margin-right:-16px;margin-left:-16px}.gutter-sm>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.gutter-sm-condensed{margin-right:-8px;margin-left:-8px}.gutter-sm-condensed>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.gutter-sm-spacious{margin-right:-24px;margin-left:-24px}.gutter-sm-spacious>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}@media (min-width:768px){.gutter-md{margin-right:-16px;margin-left:-16px}.gutter-md>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.gutter-md-condensed{margin-right:-8px;margin-left:-8px}.gutter-md-condensed>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.gutter-md-spacious{margin-right:-24px;margin-left:-24px}.gutter-md-spacious>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}@media (min-width:1012px){.gutter-lg{margin-right:-16px;margin-left:-16px}.gutter-lg>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.gutter-lg-condensed{margin-right:-8px;margin-left:-8px}.gutter-lg-condensed>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.gutter-lg-spacious{margin-right:-24px;margin-left:-24px}.gutter-lg-spacious>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}@media (min-width:1280px){.gutter-xl{margin-right:-16px;margin-left:-16px}.gutter-xl>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.gutter-xl-condensed{margin-right:-8px;margin-left:-8px}.gutter-xl-condensed>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.gutter-xl-spacious{margin-right:-24px;margin-left:-24px}.gutter-xl-spacious>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}.offset-1{margin-left:8.33333%!important}.offset-2{margin-left:16.66667%!important}.offset-3{margin-left:25%!important}.offset-4{margin-left:33.33333%!important}.offset-5{margin-left:41.66667%!important}.offset-6{margin-left:50%!important}.offset-7{margin-left:58.33333%!important}.offset-8{margin-left:66.66667%!important}.offset-9{margin-left:75%!important}.offset-10{margin-left:83.33333%!important}.offset-11{margin-left:91.66667%!important}@media (min-width:544px){.offset-sm-1{margin-left:8.33333%!important}.offset-sm-2{margin-left:16.66667%!important}.offset-sm-3{margin-left:25%!important}.offset-sm-4{margin-left:33.33333%!important}.offset-sm-5{margin-left:41.66667%!important}.offset-sm-6{margin-left:50%!important}.offset-sm-7{margin-left:58.33333%!important}.offset-sm-8{margin-left:66.66667%!important}.offset-sm-9{margin-left:75%!important}.offset-sm-10{margin-left:83.33333%!important}.offset-sm-11{margin-left:91.66667%!important}}@media (min-width:768px){.offset-md-1{margin-left:8.33333%!important}.offset-md-2{margin-left:16.66667%!important}.offset-md-3{margin-left:25%!important}.offset-md-4{margin-left:33.33333%!important}.offset-md-5{margin-left:41.66667%!important}.offset-md-6{margin-left:50%!important}.offset-md-7{margin-left:58.33333%!important}.offset-md-8{margin-left:66.66667%!important}.offset-md-9{margin-left:75%!important}.offset-md-10{margin-left:83.33333%!important}.offset-md-11{margin-left:91.66667%!important}}@media (min-width:1012px){.offset-lg-1{margin-left:8.33333%!important}.offset-lg-2{margin-left:16.66667%!important}.offset-lg-3{margin-left:25%!important}.offset-lg-4{margin-left:33.33333%!important}.offset-lg-5{margin-left:41.66667%!important}.offset-lg-6{margin-left:50%!important}.offset-lg-7{margin-left:58.33333%!important}.offset-lg-8{margin-left:66.66667%!important}.offset-lg-9{margin-left:75%!important}.offset-lg-10{margin-left:83.33333%!important}.offset-lg-11{margin-left:91.66667%!important}}@media (min-width:1280px){.offset-xl-1{margin-left:8.33333%!important}.offset-xl-2{margin-left:16.66667%!important}.offset-xl-3{margin-left:25%!important}.offset-xl-4{margin-left:33.33333%!important}.offset-xl-5{margin-left:41.66667%!important}.offset-xl-6{margin-left:50%!important}.offset-xl-7{margin-left:58.33333%!important}.offset-xl-8{margin-left:66.66667%!important}.offset-xl-9{margin-left:75%!important}.offset-xl-10{margin-left:83.33333%!important}.offset-xl-11{margin-left:91.66667%!important}}.Link{color:var(--color-text-link)}.Link:hover{text-decoration:underline;cursor:pointer}.Link--primary{color:var(--color-text-primary)!important}.Link--primary:hover{color:var(--color-text-link)!important}.Link--secondary{color:var(--color-text-secondary)!important}.Link--secondary:hover{color:var(--color-text-link)!important}.Link--muted{color:var(--color-text-secondary)!important}.Link--muted:hover{color:var(--color-text-link)!important;text-decoration:none}.Link--onHover:hover{color:var(--color-text-link)!important;text-decoration:underline;cursor:pointer}.menu{margin-bottom:16px;list-style:none;background-color:var(--color-bg-primary);border:1px solid var(--color-border-primary);border-radius:6px}.menu-item{position:relative;display:block;padding:8px 16px;color:var(--color-text-primary);border-bottom:1px solid var(--color-border-secondary)}.menu-item:first-child{border-top:0;border-top-right-radius:6px}.menu-item:first-child,.menu-item:first-child:before{border-top-left-radius:6px}.menu-item:last-child{border-bottom:0;border-bottom-right-radius:6px}.menu-item:last-child,.menu-item:last-child:before{border-bottom-left-radius:6px}.menu-item:focus,.menu-item:hover{text-decoration:none;background-color:var(--color-state-hover-secondary-bg);outline:none}.menu-item:active{background-color:var(--color-bg-secondary)}.menu-item.selected,.menu-item[aria-current]:not([aria-current=false]),.menu-item[aria-selected=true]{cursor:default;background-color:var(--color-menu-bg-active)}.menu-item.selected:before,.menu-item[aria-current]:not([aria-current=false]):before,.menu-item[aria-selected=true]:before{position:absolute;top:0;bottom:0;left:0;width:2px;content:"";background-color:var(--color-menu-border-active)}.menu-item .octicon{width:16px;margin-right:8px;color:var(--color-icon-tertiary);text-align:center}.menu-item .Counter{float:right;margin-left:4px}.menu-item .menu-warning{float:right;color:var(--color-auto-red-9)}.menu-item .avatar{float:left;margin-right:4px}.menu-item.alert .Counter{color:var(--color-text-danger)}.menu-heading{display:block;padding:8px 16px;margin-top:0;margin-bottom:0;font-size:inherit;font-weight:600;color:var(--color-menu-heading-text);border-bottom:1px solid var(--color-border-secondary)}.menu-heading:hover{text-decoration:none}.menu-heading:first-child{border-top-left-radius:6px;border-top-right-radius:6px}.menu-heading:last-child{border-bottom:0;border-bottom-right-radius:6px;border-bottom-left-radius:6px}.tabnav{margin-top:0;margin-bottom:16px;border-bottom:1px solid var(--color-border-primary)}.tabnav-tabs{display:flex;margin-bottom:-1px;overflow:auto}.tabnav-tab{display:inline-block;flex-shrink:0;padding:8px 16px;font-size:14px;line-height:23px;color:var(--color-text-secondary);text-decoration:none;background-color:initial;border:1px solid transparent;border-bottom:0;transition:color .2s cubic-bezier(.3,0,.5,1)}.tabnav-tab.selected,.tabnav-tab[aria-current]:not([aria-current=false]),.tabnav-tab[aria-selected=true]{color:var(--color-text-primary);background-color:var(--color-bg-canvas);border-color:var(--color-border-primary);border-radius:6px 6px 0 0}.tabnav-tab.selected .octicon,.tabnav-tab[aria-current]:not([aria-current=false]) .octicon,.tabnav-tab[aria-selected=true] .octicon{color:inherit}.tabnav-tab:focus,.tabnav-tab:hover{color:var(--color-text-primary);text-decoration:none;transition-duration:.1s}.tabnav-tab:active{color:var(--color-text-tertiary)}.tabnav-tab .octicon{margin-right:4px;color:var(--color-icon-tertiary)}.tabnav-tab .Counter{margin-left:4px;color:inherit}.tabnav-extra{display:inline-block;padding-top:10px;margin-left:10px;font-size:12px;color:var(--color-text-secondary)}.tabnav-extra>.octicon{margin-right:2px}a.tabnav-extra:hover{color:var(--color-text-link);text-decoration:none}.tabnav-btn{margin-left:8px}.filter-list{list-style-type:none}.filter-list.small .filter-item{padding:6px 12px;font-size:12px}.filter-list.pjax-active .filter-item{color:var(--color-text-secondary);background-color:initial}.filter-list.pjax-active .filter-item.pjax-active{color:var(--color-text-inverse);background-color:var(--color-bg-info-inverse)}.filter-item{position:relative;display:block;padding:8px 16px;margin-bottom:4px;overflow:hidden;font-size:14px;color:var(--color-text-secondary);text-decoration:none;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;border-radius:6px}.filter-item:hover{text-decoration:none;background-color:var(--color-bg-tertiary)}.filter-item.selected,.filter-item[aria-current]:not([aria-current=false]),.filter-item[aria-selected=true]{color:var(--color-state-selected-primary-text);background-color:var(--color-state-selected-primary-bg)}.filter-item .count{float:right;font-weight:600}.filter-item .bar{position:absolute;top:2px;right:0;bottom:2px;z-index:-1;display:inline-block;background-color:var(--color-filter-item-bar-bg)}.SideNav{background-color:var(--color-bg-secondary)}.SideNav-item{position:relative;display:block;width:100%;padding:12px 16px;color:var(--color-text-primary);text-align:left;background-color:initial;border:0;border-top:1px solid var(--color-border-secondary)}.SideNav-item:first-child{border-top:0}.SideNav-item:last-child{box-shadow:0 1px 0 var(--color-border-primary)}.SideNav-item:before{position:absolute;top:0;bottom:0;left:0;z-index:1;width:2px;pointer-events:none;content:""}.SideNav-item:focus,.SideNav-item:hover{text-decoration:none;background-color:var(--color-state-hover-secondary-bg);outline:none}.SideNav-item:active{background-color:var(--color-bg-secondary)}.SideNav-item[aria-current]:not([aria-current=false]),.SideNav-item[aria-selected=true]{background-color:var(--color-sidenav-selected-bg)}.SideNav-item[aria-current]:not([aria-current=false]):before,.SideNav-item[aria-selected=true]:before{background-color:var(--color-sidenav-border-active)}.SideNav-icon{width:16px;margin-right:8px;color:var(--color-text-tertiary)}.SideNav-subItem{position:relative;display:block;width:100%;padding:4px 0;color:var(--color-text-link);text-align:left;background-color:initial;border:0}.SideNav-subItem:focus,.SideNav-subItem:hover{color:var(--color-text-primary);text-decoration:none;outline:none}.SideNav-subItem[aria-current]:not([aria-current=false]),.SideNav-subItem[aria-selected=true]{font-weight:500;color:var(--color-text-primary)}.subnav{margin-bottom:20px}.subnav:after,.subnav:before{display:table;content:""}.subnav:after{clear:both}.subnav-bordered{padding-bottom:20px;border-bottom:1px solid var(--color-border-secondary)}.subnav-flush{margin-bottom:0}.subnav-item{position:relative;float:left;padding:5px 16px;font-weight:500;line-height:20px;color:var(--color-text-primary);border:1px solid var(--color-border-primary)}.subnav-item+.subnav-item{margin-left:-1px}.subnav-item:focus,.subnav-item:hover{text-decoration:none;background-color:var(--color-bg-tertiary)}.subnav-item.selected,.subnav-item[aria-current]:not([aria-current=false]),.subnav-item[aria-selected=true]{z-index:2;color:var(--color-state-selected-primary-text);background-color:var(--color-state-selected-primary-bg);border-color:var(--color-state-selected-primary-border)}.subnav-item:first-child{border-top-left-radius:6px;border-bottom-left-radius:6px}.subnav-item:last-child{border-top-right-radius:6px;border-bottom-right-radius:6px}.subnav-search{position:relative;margin-left:12px}.subnav-search-input{width:320px;padding-left:32px;color:var(--color-text-secondary)}.subnav-search-input-wide{width:500px}.subnav-search-icon{position:absolute;top:9px;left:8px;display:block;color:var(--color-icon-tertiary);text-align:center;pointer-events:none}.subnav-search-context .btn{border-top-right-radius:0;border-bottom-right-radius:0}.subnav-search-context .btn.selected,.subnav-search-context .btn:active,.subnav-search-context .btn:focus,.subnav-search-context .btn:hover{z-index:2}.subnav-search-context+.subnav-search{margin-left:-1px}.subnav-search-context+.subnav-search .subnav-search-input{border-top-left-radius:0;border-bottom-left-radius:0}.subnav-search-context .select-menu-modal-holder{z-index:30}.subnav-search-context .select-menu-modal{width:220px}.subnav-search-context .select-menu-item-icon{color:inherit}.subnav-spacer-right{padding-right:12px}.UnderlineNav{display:flex;overflow-x:auto;overflow-y:hidden;box-shadow:inset 0 -1px 0 var(--color-border-secondary);justify-content:space-between}.UnderlineNav-body{display:flex}.UnderlineNav-item{padding:8px 16px;font-size:14px;line-height:30px;color:var(--color-underlinenav-text);text-align:center;white-space:nowrap;background-color:initial;border:0;border-bottom:2px solid transparent}.UnderlineNav-item:focus,.UnderlineNav-item:hover{color:var(--color-underlinenav-text-hover);text-decoration:none;border-bottom-color:var(--color-border-tertiary);outline:1px dotted transparent;outline-offset:-1px;transition:border-bottom-color .12s ease-out}.UnderlineNav-item.selected,.UnderlineNav-item[aria-current]:not([aria-current=false]),.UnderlineNav-item[role=tab][aria-selected=true]{font-weight:600;color:var(--color-underlinenav-text-active);border-bottom-color:#f9826c;outline:1px dotted transparent;outline-offset:-1px}.UnderlineNav-item.selected .UnderlineNav-octicon,.UnderlineNav-item[aria-current]:not([aria-current=false]) .UnderlineNav-octicon,.UnderlineNav-item[role=tab][aria-selected=true] .UnderlineNav-octicon{color:var(--color-text-tertiary)}.UnderlineNav--right{justify-content:flex-end}.UnderlineNav--right .UnderlineNav-actions{flex:1 1 auto}.UnderlineNav-actions{align-self:center}.UnderlineNav--full{display:block}.UnderlineNav-octicon{margin-right:4px;color:var(--color-underlinenav-icon)}.UnderlineNav .Counter{margin-left:4px;color:var(--color-underlinenav-counter-text)}.UnderlineNav .Counter--primary{color:var(--color-counter-primary-text)}.UnderlineNav-container{display:flex;justify-content:space-between}.pagination a,.pagination em,.pagination span{display:inline-block;min-width:32px;padding:5px 10px;font-style:normal;line-height:20px;color:var(--color-text-primary);text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid transparent;border-radius:6px;transition:border-color .2s cubic-bezier(.3,0,.5,1)}.pagination a:focus,.pagination a:hover,.pagination em:focus,.pagination em:hover,.pagination span:focus,.pagination span:hover{text-decoration:none;border-color:var(--color-border-primary);outline:0;transition-duration:.1s}.pagination a:active,.pagination em:active,.pagination span:active{border-color:var(--color-border-secondary);transition:none}.pagination .next_page,.pagination .previous_page{color:var(--color-text-link)}.pagination .current,.pagination .current:hover,.pagination [aria-current]:not([aria-current=false]){color:var(--color-state-selected-primary-text);background-color:var(--color-state-selected-primary-bg);border-color:transparent}.pagination .disabled,.pagination .disabled:hover,.pagination .gap,.pagination .gap:hover,.pagination [aria-disabled=true],.pagination [aria-disabled=true]:hover{color:var(--color-text-disabled);cursor:default;border-color:transparent}@supports ((-webkit-clip-path:polygon(50% 0,100% 50%,50% 100%)) or (clip-path:polygon(50% 0,100% 50%,50% 100%))){.pagination .next_page:after,.pagination .previous_page:before{display:inline-block;width:16px;height:16px;vertical-align:text-bottom;content:"";background-color:currentColor}.pagination .previous_page:before{margin-right:4px;-webkit-clip-path:polygon(9.8px 12.8px,8.7px 12.8px,4.5px 8.5px,4.5px 7.5px,8.7px 3.2px,9.8px 4.3px,6.1px 8px,9.8px 11.7px,9.8px 12.8px);clip-path:polygon(9.8px 12.8px,8.7px 12.8px,4.5px 8.5px,4.5px 7.5px,8.7px 3.2px,9.8px 4.3px,6.1px 8px,9.8px 11.7px,9.8px 12.8px)}.pagination .next_page:after{margin-left:4px;-webkit-clip-path:polygon(6.2px 3.2px,7.3px 3.2px,11.5px 7.5px,11.5px 8.5px,7.3px 12.8px,6.2px 11.7px,9.9px 8px,6.2px 4.3px,6.2px 3.2px);clip-path:polygon(6.2px 3.2px,7.3px 3.2px,11.5px 7.5px,11.5px 8.5px,7.3px 12.8px,6.2px 11.7px,9.9px 8px,6.2px 4.3px,6.2px 3.2px)}}.paginate-container{margin-top:16px;margin-bottom:16px;text-align:center}.paginate-container .pagination{display:inline-block}.tooltipped{position:relative}.tooltipped:after{z-index:1000000;padding:.5em .75em;font:normal normal 11px/1.5 -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;-webkit-font-smoothing:subpixel-antialiased;color:var(--color-tooltip-text);text-align:center;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-wrap:break-word;white-space:pre;content:attr(aria-label);background:var(--color-tooltip-bg);border-radius:6px}.tooltipped:after,.tooltipped:before{position:absolute;display:none;pointer-events:none;opacity:0}.tooltipped:before{z-index:1000001;width:0;height:0;color:var(--color-tooltip-bg);content:"";border:6px solid transparent}@keyframes tooltip-appear{0%{opacity:0}to{opacity:1}}.tooltipped:active:after,.tooltipped:active:before,.tooltipped:focus:after,.tooltipped:focus:before,.tooltipped:hover:after,.tooltipped:hover:before{display:inline-block;text-decoration:none;animation-name:tooltip-appear;animation-duration:.1s;animation-fill-mode:forwards;animation-timing-function:ease-in;animation-delay:.4s}.tooltipped-no-delay:active:after,.tooltipped-no-delay:active:before,.tooltipped-no-delay:focus:after,.tooltipped-no-delay:focus:before,.tooltipped-no-delay:hover:after,.tooltipped-no-delay:hover:before{animation-delay:0s}.tooltipped-multiline:active:after,.tooltipped-multiline:focus:after,.tooltipped-multiline:hover:after{display:table-cell}.tooltipped-s:after,.tooltipped-se:after,.tooltipped-sw:after{top:100%;right:50%;margin-top:6px}.tooltipped-s:before,.tooltipped-se:before,.tooltipped-sw:before{top:auto;right:50%;bottom:-7px;margin-right:-6px;border-bottom-color:var(--color-tooltip-bg)}.tooltipped-se:after{right:auto;left:50%;margin-left:-16px}.tooltipped-sw:after{margin-right:-16px}.tooltipped-n:after,.tooltipped-ne:after,.tooltipped-nw:after{right:50%;bottom:100%;margin-bottom:6px}.tooltipped-n:before,.tooltipped-ne:before,.tooltipped-nw:before{top:-7px;right:50%;bottom:auto;margin-right:-6px;border-top-color:var(--color-tooltip-bg)}.tooltipped-ne:after{right:auto;left:50%;margin-left:-16px}.tooltipped-nw:after{margin-right:-16px}.tooltipped-n:after,.tooltipped-s:after{transform:translateX(50%)}.tooltipped-w:after{right:100%;bottom:50%;margin-right:6px;transform:translateY(50%)}.tooltipped-w:before{top:50%;bottom:50%;left:-7px;margin-top:-6px;border-left-color:var(--color-tooltip-bg)}.tooltipped-e:after{bottom:50%;left:100%;margin-left:6px;transform:translateY(50%)}.tooltipped-e:before{top:50%;right:-7px;bottom:50%;margin-top:-6px;border-right-color:var(--color-tooltip-bg)}.tooltipped-align-right-1:after,.tooltipped-align-right-2:after{right:0;margin-right:0}.tooltipped-align-right-1:before{right:10px}.tooltipped-align-right-2:before{right:15px}.tooltipped-align-left-1:after,.tooltipped-align-left-2:after{left:0;margin-left:0}.tooltipped-align-left-1:before{left:5px}.tooltipped-align-left-2:before{left:10px}.tooltipped-multiline:after{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:250px;word-wrap:break-word;white-space:pre-line;border-collapse:initial}.tooltipped-multiline.tooltipped-n:after,.tooltipped-multiline.tooltipped-s:after{right:auto;left:50%;transform:translateX(-50%)}.tooltipped-multiline.tooltipped-e:after,.tooltipped-multiline.tooltipped-w:after{right:100%}@media screen and (min-width:0\0){.tooltipped-multiline:after{width:250px}}.tooltipped-sticky:after,.tooltipped-sticky:before{display:inline-block}.tooltipped-sticky.tooltipped-multiline:after{display:table-cell}.css-truncate.css-truncate-overflow,.css-truncate .css-truncate-overflow,.css-truncate.css-truncate-target,.css-truncate .css-truncate-target{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.css-truncate.css-truncate-target,.css-truncate .css-truncate-target{display:inline-block;max-width:125px;vertical-align:top}.css-truncate.expandable.zeroclipboard-is-hover.css-truncate-target,.css-truncate.expandable.zeroclipboard-is-hover .css-truncate-target,.css-truncate.expandable:hover.css-truncate-target,.css-truncate.expandable:hover .css-truncate-target{max-width:10000px!important}.anim-fade-in{animation-name:fade-in;animation-duration:1s;animation-timing-function:ease-in-out}.anim-fade-in.fast{animation-duration:.3s}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.anim-fade-out{animation-name:fade-out;animation-duration:1s;animation-timing-function:ease-out}.anim-fade-out.fast{animation-duration:.3s}@keyframes fade-out{0%{opacity:1}to{opacity:0}}.anim-fade-up{opacity:0;animation-name:fade-up;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease-out;animation-delay:1s}@keyframes fade-up{0%{opacity:.8;transform:translateY(100%)}to{opacity:1;transform:translateY(0)}}.anim-fade-down{animation-name:fade-down;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease-in}@keyframes fade-down{0%{opacity:1;transform:translateY(0)}to{opacity:.5;transform:translateY(100%)}}.anim-grow-x{width:0;animation-name:grow-x;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease;animation-delay:.5s}@keyframes grow-x{to{width:100%}}.anim-shrink-x{animation-name:shrink-x;animation-duration:.3s;animation-fill-mode:forwards;animation-timing-function:ease-in-out;animation-delay:.5s}@keyframes shrink-x{to{width:0}}.anim-scale-in{animation-name:scale-in;animation-duration:.15s;animation-timing-function:cubic-bezier(.2,0,.13,1.5)}@keyframes scale-in{0%{opacity:0;transform:scale(.5)}to{opacity:1;transform:scale(1)}}.anim-pulse{animation-name:pulse;animation-duration:2s;animation-timing-function:linear;animation-iteration-count:infinite}@keyframes pulse{0%{opacity:.3}10%{opacity:1}to{opacity:.3}}.anim-pulse-in{animation-name:pulse-in;animation-duration:.5s}@keyframes pulse-in{0%{transform:scaleX(1)}50%{transform:scale3d(1.1,1.1,1.1)}to{transform:scaleX(1)}}.hover-grow{transition:transform .3s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.hover-grow:hover{transform:scale(1.025)}.border-x{border-right:1px solid var(--color-border-primary)!important;border-left:1px solid var(--color-border-primary)!important}.border-y{border-top:1px solid var(--color-border-primary)!important;border-bottom:1px solid var(--color-border-primary)!important}.border{border:1px solid var(--color-border-primary)!important}.border-0{border:0!important}.border-top{border-top:1px solid var(--color-border-primary)!important}.border-right{border-right:1px solid var(--color-border-primary)!important}.border-bottom{border-bottom:1px solid var(--color-border-primary)!important}.border-left{border-left:1px solid var(--color-border-primary)!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.rounded{border-radius:6px!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:4px!important}.rounded-2{border-radius:6px!important}.rounded-3{border-radius:8px!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:4px!important;border-top-right-radius:4px!important}.rounded-top-2{border-top-left-radius:6px!important;border-top-right-radius:6px!important}.rounded-top-3{border-top-left-radius:8px!important;border-top-right-radius:8px!important}.rounded-right-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-right-1{border-top-right-radius:4px!important;border-bottom-right-radius:4px!important}.rounded-right-2{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.rounded-right-3{border-top-right-radius:8px!important;border-bottom-right-radius:8px!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:4px!important;border-bottom-left-radius:4px!important}.rounded-bottom-2{border-bottom-right-radius:6px!important;border-bottom-left-radius:6px!important}.rounded-bottom-3{border-bottom-right-radius:8px!important;border-bottom-left-radius:8px!important}.rounded-left-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-left-1{border-bottom-left-radius:4px!important;border-top-left-radius:4px!important}.rounded-left-2{border-bottom-left-radius:6px!important;border-top-left-radius:6px!important}.rounded-left-3{border-bottom-left-radius:8px!important;border-top-left-radius:8px!important}@media (min-width:544px){.border-sm{border:1px solid var(--color-border-primary)!important}.border-sm-0{border:0!important}.border-sm-top{border-top:1px solid var(--color-border-primary)!important}.border-sm-right{border-right:1px solid var(--color-border-primary)!important}.border-sm-bottom{border-bottom:1px solid var(--color-border-primary)!important}.border-sm-left{border-left:1px solid var(--color-border-primary)!important}.border-sm-top-0{border-top:0!important}.border-sm-right-0{border-right:0!important}.border-sm-bottom-0{border-bottom:0!important}.border-sm-left-0{border-left:0!important}.rounded-sm{border-radius:6px!important}.rounded-sm-0{border-radius:0!important}.rounded-sm-1{border-radius:4px!important}.rounded-sm-2{border-radius:6px!important}.rounded-sm-3{border-radius:8px!important}.rounded-sm-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-sm-top-1{border-top-left-radius:4px!important;border-top-right-radius:4px!important}.rounded-sm-top-2{border-top-left-radius:6px!important;border-top-right-radius:6px!important}.rounded-sm-top-3{border-top-left-radius:8px!important;border-top-right-radius:8px!important}.rounded-sm-right-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-sm-right-1{border-top-right-radius:4px!important;border-bottom-right-radius:4px!important}.rounded-sm-right-2{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.rounded-sm-right-3{border-top-right-radius:8px!important;border-bottom-right-radius:8px!important}.rounded-sm-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-sm-bottom-1{border-bottom-right-radius:4px!important;border-bottom-left-radius:4px!important}.rounded-sm-bottom-2{border-bottom-right-radius:6px!important;border-bottom-left-radius:6px!important}.rounded-sm-bottom-3{border-bottom-right-radius:8px!important;border-bottom-left-radius:8px!important}.rounded-sm-left-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-sm-left-1{border-bottom-left-radius:4px!important;border-top-left-radius:4px!important}.rounded-sm-left-2{border-bottom-left-radius:6px!important;border-top-left-radius:6px!important}.rounded-sm-left-3{border-bottom-left-radius:8px!important;border-top-left-radius:8px!important}}@media (min-width:768px){.border-md{border:1px solid var(--color-border-primary)!important}.border-md-0{border:0!important}.border-md-top{border-top:1px solid var(--color-border-primary)!important}.border-md-right{border-right:1px solid var(--color-border-primary)!important}.border-md-bottom{border-bottom:1px solid var(--color-border-primary)!important}.border-md-left{border-left:1px solid var(--color-border-primary)!important}.border-md-top-0{border-top:0!important}.border-md-right-0{border-right:0!important}.border-md-bottom-0{border-bottom:0!important}.border-md-left-0{border-left:0!important}.rounded-md{border-radius:6px!important}.rounded-md-0{border-radius:0!important}.rounded-md-1{border-radius:4px!important}.rounded-md-2{border-radius:6px!important}.rounded-md-3{border-radius:8px!important}.rounded-md-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-md-top-1{border-top-left-radius:4px!important;border-top-right-radius:4px!important}.rounded-md-top-2{border-top-left-radius:6px!important;border-top-right-radius:6px!important}.rounded-md-top-3{border-top-left-radius:8px!important;border-top-right-radius:8px!important}.rounded-md-right-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-md-right-1{border-top-right-radius:4px!important;border-bottom-right-radius:4px!important}.rounded-md-right-2{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.rounded-md-right-3{border-top-right-radius:8px!important;border-bottom-right-radius:8px!important}.rounded-md-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-md-bottom-1{border-bottom-right-radius:4px!important;border-bottom-left-radius:4px!important}.rounded-md-bottom-2{border-bottom-right-radius:6px!important;border-bottom-left-radius:6px!important}.rounded-md-bottom-3{border-bottom-right-radius:8px!important;border-bottom-left-radius:8px!important}.rounded-md-left-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-md-left-1{border-bottom-left-radius:4px!important;border-top-left-radius:4px!important}.rounded-md-left-2{border-bottom-left-radius:6px!important;border-top-left-radius:6px!important}.rounded-md-left-3{border-bottom-left-radius:8px!important;border-top-left-radius:8px!important}}@media (min-width:1012px){.border-lg{border:1px solid var(--color-border-primary)!important}.border-lg-0{border:0!important}.border-lg-top{border-top:1px solid var(--color-border-primary)!important}.border-lg-right{border-right:1px solid var(--color-border-primary)!important}.border-lg-bottom{border-bottom:1px solid var(--color-border-primary)!important}.border-lg-left{border-left:1px solid var(--color-border-primary)!important}.border-lg-top-0{border-top:0!important}.border-lg-right-0{border-right:0!important}.border-lg-bottom-0{border-bottom:0!important}.border-lg-left-0{border-left:0!important}.rounded-lg{border-radius:6px!important}.rounded-lg-0{border-radius:0!important}.rounded-lg-1{border-radius:4px!important}.rounded-lg-2{border-radius:6px!important}.rounded-lg-3{border-radius:8px!important}.rounded-lg-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-lg-top-1{border-top-left-radius:4px!important;border-top-right-radius:4px!important}.rounded-lg-top-2{border-top-left-radius:6px!important;border-top-right-radius:6px!important}.rounded-lg-top-3{border-top-left-radius:8px!important;border-top-right-radius:8px!important}.rounded-lg-right-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-lg-right-1{border-top-right-radius:4px!important;border-bottom-right-radius:4px!important}.rounded-lg-right-2{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.rounded-lg-right-3{border-top-right-radius:8px!important;border-bottom-right-radius:8px!important}.rounded-lg-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-lg-bottom-1{border-bottom-right-radius:4px!important;border-bottom-left-radius:4px!important}.rounded-lg-bottom-2{border-bottom-right-radius:6px!important;border-bottom-left-radius:6px!important}.rounded-lg-bottom-3{border-bottom-right-radius:8px!important;border-bottom-left-radius:8px!important}.rounded-lg-left-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-lg-left-1{border-bottom-left-radius:4px!important;border-top-left-radius:4px!important}.rounded-lg-left-2{border-bottom-left-radius:6px!important;border-top-left-radius:6px!important}.rounded-lg-left-3{border-bottom-left-radius:8px!important;border-top-left-radius:8px!important}}@media (min-width:1280px){.border-xl{border:1px solid var(--color-border-primary)!important}.border-xl-0{border:0!important}.border-xl-top{border-top:1px solid var(--color-border-primary)!important}.border-xl-right{border-right:1px solid var(--color-border-primary)!important}.border-xl-bottom{border-bottom:1px solid var(--color-border-primary)!important}.border-xl-left{border-left:1px solid var(--color-border-primary)!important}.border-xl-top-0{border-top:0!important}.border-xl-right-0{border-right:0!important}.border-xl-bottom-0{border-bottom:0!important}.border-xl-left-0{border-left:0!important}.rounded-xl{border-radius:6px!important}.rounded-xl-0{border-radius:0!important}.rounded-xl-1{border-radius:4px!important}.rounded-xl-2{border-radius:6px!important}.rounded-xl-3{border-radius:8px!important}.rounded-xl-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-xl-top-1{border-top-left-radius:4px!important;border-top-right-radius:4px!important}.rounded-xl-top-2{border-top-left-radius:6px!important;border-top-right-radius:6px!important}.rounded-xl-top-3{border-top-left-radius:8px!important;border-top-right-radius:8px!important}.rounded-xl-right-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-xl-right-1{border-top-right-radius:4px!important;border-bottom-right-radius:4px!important}.rounded-xl-right-2{border-top-right-radius:6px!important;border-bottom-right-radius:6px!important}.rounded-xl-right-3{border-top-right-radius:8px!important;border-bottom-right-radius:8px!important}.rounded-xl-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-xl-bottom-1{border-bottom-right-radius:4px!important;border-bottom-left-radius:4px!important}.rounded-xl-bottom-2{border-bottom-right-radius:6px!important;border-bottom-left-radius:6px!important}.rounded-xl-bottom-3{border-bottom-right-radius:8px!important;border-bottom-left-radius:8px!important}.rounded-xl-left-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-xl-left-1{border-bottom-left-radius:4px!important;border-top-left-radius:4px!important}.rounded-xl-left-2{border-bottom-left-radius:6px!important;border-top-left-radius:6px!important}.rounded-xl-left-3{border-bottom-left-radius:8px!important;border-top-left-radius:8px!important}}.circle{border-radius:50%!important}.border-dashed{border-style:dashed!important}.color-shadow-small{box-shadow:var(--color-shadow-small)!important}.color-shadow-medium{box-shadow:var(--color-shadow-medium)!important}.color-shadow-large{box-shadow:var(--color-shadow-large)!important}.color-shadow-extra-large{box-shadow:var(--color-shadow-extra-large)!important}.box-shadow-none{box-shadow:none!important}.color-text-primary{color:var(--color-text-primary)!important}.color-text-secondary{color:var(--color-text-secondary)!important}.color-text-tertiary{color:var(--color-text-tertiary)!important}.color-text-link{color:var(--color-text-link)!important}.color-text-success{color:var(--color-text-success)!important}.color-text-warning{color:var(--color-text-warning)!important}.color-text-danger{color:var(--color-text-danger)!important}.color-text-inverse{color:var(--color-text-inverse)!important}.color-text-white{color:var(--color-text-white)!important}.color-icon-primary{color:var(--color-icon-primary)!important}.color-icon-secondary{color:var(--color-icon-secondary)!important}.color-icon-tertiary{color:var(--color-icon-tertiary)!important}.color-icon-info{color:var(--color-icon-info)!important}.color-icon-danger{color:var(--color-icon-danger)!important}.color-icon-success{color:var(--color-icon-success)!important}.color-icon-warning{color:var(--color-icon-warning)!important}.color-border-primary{border-color:var(--color-border-primary)!important}.color-border-secondary{border-color:var(--color-border-secondary)!important}.color-border-tertiary{border-color:var(--color-border-tertiary)!important}.color-border-overlay{border-color:var(--color-border-overlay)!important}.color-border-inverse{border-color:var(--color-border-inverse)!important}.color-border-info{border-color:var(--color-border-info)!important}.color-border-success{border-color:var(--color-border-success)!important}.color-border-danger{border-color:var(--color-border-danger)!important}.color-border-warning{border-color:var(--color-border-warning)!important}.color-bg-canvas{background-color:var(--color-bg-canvas)!important}.color-bg-canvas-inverse{background-color:var(--color-bg-canvas-inverse)!important}.color-bg-canvas-inset{background-color:var(--color-bg-canvas-inset)!important}.color-bg-primary{background-color:var(--color-bg-primary)!important}.color-bg-secondary{background-color:var(--color-bg-secondary)!important}.color-bg-tertiary{background-color:var(--color-bg-tertiary)!important}.color-bg-overlay{background-color:var(--color-bg-overlay)!important}.color-bg-info{background-color:var(--color-bg-info)!important}.color-bg-info-inverse{background-color:var(--color-bg-info-inverse)!important}.color-bg-danger{background-color:var(--color-bg-danger)!important}.color-bg-danger-inverse{background-color:var(--color-bg-danger-inverse)!important}.color-bg-success{background-color:var(--color-bg-success)!important}.color-bg-success-inverse{background-color:var(--color-bg-success-inverse)!important}.color-bg-warning{background-color:var(--color-bg-warning)!important}.color-bg-warning-inverse{background-color:var(--color-bg-warning-inverse)!important}.text-inherit{color:inherit!important}.details-overlay[open]>summary:before{position:fixed;top:0;right:0;bottom:0;left:0;z-index:80;display:block;cursor:default;content:" ";background:transparent}.details-overlay-dark[open]>summary:before{z-index:99;background:var(--color-fade-black-50)}.details-reset>summary{list-style:none}.details-reset>summary:before{display:none}.details-reset>summary::-webkit-details-marker{display:none}.flex-row{flex-direction:row!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column{flex-direction:column!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-justify-start{justify-content:flex-start!important}.flex-justify-end{justify-content:flex-end!important}.flex-justify-center{justify-content:center!important}.flex-justify-between{justify-content:space-between!important}.flex-justify-around{justify-content:space-around!important}.flex-items-start{align-items:flex-start!important}.flex-items-end{align-items:flex-end!important}.flex-items-center{align-items:center!important}.flex-items-baseline{align-items:baseline!important}.flex-items-stretch{align-items:stretch!important}.flex-content-start{align-content:flex-start!important}.flex-content-end{align-content:flex-end!important}.flex-content-center{align-content:center!important}.flex-content-between{align-content:space-between!important}.flex-content-around{align-content:space-around!important}.flex-content-stretch{align-content:stretch!important}.flex-1{flex:1!important}.flex-auto{flex:auto!important}.flex-grow-0{flex-grow:0!important}.flex-shrink-0{flex-shrink:0!important}.flex-self-auto{align-self:auto!important}.flex-self-start{align-self:flex-start!important}.flex-self-end{align-self:flex-end!important}.flex-self-center{align-self:center!important}.flex-self-baseline{align-self:baseline!important}.flex-self-stretch{align-self:stretch!important}.flex-order-1{order:1!important}.flex-order-2{order:2!important}.flex-order-none{order:inherit!important}@media (min-width:544px){.flex-sm-row{flex-direction:row!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column{flex-direction:column!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-justify-start{justify-content:flex-start!important}.flex-sm-justify-end{justify-content:flex-end!important}.flex-sm-justify-center{justify-content:center!important}.flex-sm-justify-between{justify-content:space-between!important}.flex-sm-justify-around{justify-content:space-around!important}.flex-sm-items-start{align-items:flex-start!important}.flex-sm-items-end{align-items:flex-end!important}.flex-sm-items-center{align-items:center!important}.flex-sm-items-baseline{align-items:baseline!important}.flex-sm-items-stretch{align-items:stretch!important}.flex-sm-content-start{align-content:flex-start!important}.flex-sm-content-end{align-content:flex-end!important}.flex-sm-content-center{align-content:center!important}.flex-sm-content-between{align-content:space-between!important}.flex-sm-content-around{align-content:space-around!important}.flex-sm-content-stretch{align-content:stretch!important}.flex-sm-1{flex:1!important}.flex-sm-auto{flex:auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-self-auto{align-self:auto!important}.flex-sm-self-start{align-self:flex-start!important}.flex-sm-self-end{align-self:flex-end!important}.flex-sm-self-center{align-self:center!important}.flex-sm-self-baseline{align-self:baseline!important}.flex-sm-self-stretch{align-self:stretch!important}.flex-sm-order-1{order:1!important}.flex-sm-order-2{order:2!important}.flex-sm-order-none{order:inherit!important}}@media (min-width:768px){.flex-md-row{flex-direction:row!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column{flex-direction:column!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-justify-start{justify-content:flex-start!important}.flex-md-justify-end{justify-content:flex-end!important}.flex-md-justify-center{justify-content:center!important}.flex-md-justify-between{justify-content:space-between!important}.flex-md-justify-around{justify-content:space-around!important}.flex-md-items-start{align-items:flex-start!important}.flex-md-items-end{align-items:flex-end!important}.flex-md-items-center{align-items:center!important}.flex-md-items-baseline{align-items:baseline!important}.flex-md-items-stretch{align-items:stretch!important}.flex-md-content-start{align-content:flex-start!important}.flex-md-content-end{align-content:flex-end!important}.flex-md-content-center{align-content:center!important}.flex-md-content-between{align-content:space-between!important}.flex-md-content-around{align-content:space-around!important}.flex-md-content-stretch{align-content:stretch!important}.flex-md-1{flex:1!important}.flex-md-auto{flex:auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-self-auto{align-self:auto!important}.flex-md-self-start{align-self:flex-start!important}.flex-md-self-end{align-self:flex-end!important}.flex-md-self-center{align-self:center!important}.flex-md-self-baseline{align-self:baseline!important}.flex-md-self-stretch{align-self:stretch!important}.flex-md-order-1{order:1!important}.flex-md-order-2{order:2!important}.flex-md-order-none{order:inherit!important}}@media (min-width:1012px){.flex-lg-row{flex-direction:row!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column{flex-direction:column!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-justify-start{justify-content:flex-start!important}.flex-lg-justify-end{justify-content:flex-end!important}.flex-lg-justify-center{justify-content:center!important}.flex-lg-justify-between{justify-content:space-between!important}.flex-lg-justify-around{justify-content:space-around!important}.flex-lg-items-start{align-items:flex-start!important}.flex-lg-items-end{align-items:flex-end!important}.flex-lg-items-center{align-items:center!important}.flex-lg-items-baseline{align-items:baseline!important}.flex-lg-items-stretch{align-items:stretch!important}.flex-lg-content-start{align-content:flex-start!important}.flex-lg-content-end{align-content:flex-end!important}.flex-lg-content-center{align-content:center!important}.flex-lg-content-between{align-content:space-between!important}.flex-lg-content-around{align-content:space-around!important}.flex-lg-content-stretch{align-content:stretch!important}.flex-lg-1{flex:1!important}.flex-lg-auto{flex:auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-self-auto{align-self:auto!important}.flex-lg-self-start{align-self:flex-start!important}.flex-lg-self-end{align-self:flex-end!important}.flex-lg-self-center{align-self:center!important}.flex-lg-self-baseline{align-self:baseline!important}.flex-lg-self-stretch{align-self:stretch!important}.flex-lg-order-1{order:1!important}.flex-lg-order-2{order:2!important}.flex-lg-order-none{order:inherit!important}}@media (min-width:1280px){.flex-xl-row{flex-direction:row!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column{flex-direction:column!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-justify-start{justify-content:flex-start!important}.flex-xl-justify-end{justify-content:flex-end!important}.flex-xl-justify-center{justify-content:center!important}.flex-xl-justify-between{justify-content:space-between!important}.flex-xl-justify-around{justify-content:space-around!important}.flex-xl-items-start{align-items:flex-start!important}.flex-xl-items-end{align-items:flex-end!important}.flex-xl-items-center{align-items:center!important}.flex-xl-items-baseline{align-items:baseline!important}.flex-xl-items-stretch{align-items:stretch!important}.flex-xl-content-start{align-content:flex-start!important}.flex-xl-content-end{align-content:flex-end!important}.flex-xl-content-center{align-content:center!important}.flex-xl-content-between{align-content:space-between!important}.flex-xl-content-around{align-content:space-around!important}.flex-xl-content-stretch{align-content:stretch!important}.flex-xl-1{flex:1!important}.flex-xl-auto{flex:auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-self-auto{align-self:auto!important}.flex-xl-self-start{align-self:flex-start!important}.flex-xl-self-end{align-self:flex-end!important}.flex-xl-self-center{align-self:center!important}.flex-xl-self-baseline{align-self:baseline!important}.flex-xl-self-stretch{align-self:stretch!important}.flex-xl-order-1{order:1!important}.flex-xl-order-2{order:2!important}.flex-xl-order-none{order:inherit!important}}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}@media (min-width:544px){.position-sm-static{position:static!important}.position-sm-relative{position:relative!important}.position-sm-absolute{position:absolute!important}.position-sm-fixed{position:fixed!important}.position-sm-sticky{position:-webkit-sticky!important;position:sticky!important}}@media (min-width:768px){.position-md-static{position:static!important}.position-md-relative{position:relative!important}.position-md-absolute{position:absolute!important}.position-md-fixed{position:fixed!important}.position-md-sticky{position:-webkit-sticky!important;position:sticky!important}}@media (min-width:1012px){.position-lg-static{position:static!important}.position-lg-relative{position:relative!important}.position-lg-absolute{position:absolute!important}.position-lg-fixed{position:fixed!important}.position-lg-sticky{position:-webkit-sticky!important;position:sticky!important}}@media (min-width:1280px){.position-xl-static{position:static!important}.position-xl-relative{position:relative!important}.position-xl-absolute{position:absolute!important}.position-xl-fixed{position:fixed!important}.position-xl-sticky{position:-webkit-sticky!important;position:sticky!important}}.top-0{top:0!important}.right-0{right:0!important}.bottom-0{bottom:0!important}.left-0{left:0!important}.top-auto{top:auto!important}.right-auto{right:auto!important}.bottom-auto{bottom:auto!important}.left-auto{left:auto!important}@media (min-width:544px){.top-sm-0{top:0!important}.right-sm-0{right:0!important}.bottom-sm-0{bottom:0!important}.left-sm-0{left:0!important}.top-sm-auto{top:auto!important}.right-sm-auto{right:auto!important}.bottom-sm-auto{bottom:auto!important}.left-sm-auto{left:auto!important}}@media (min-width:768px){.top-md-0{top:0!important}.right-md-0{right:0!important}.bottom-md-0{bottom:0!important}.left-md-0{left:0!important}.top-md-auto{top:auto!important}.right-md-auto{right:auto!important}.bottom-md-auto{bottom:auto!important}.left-md-auto{left:auto!important}}@media (min-width:1012px){.top-lg-0{top:0!important}.right-lg-0{right:0!important}.bottom-lg-0{bottom:0!important}.left-lg-0{left:0!important}.top-lg-auto{top:auto!important}.right-lg-auto{right:auto!important}.bottom-lg-auto{bottom:auto!important}.left-lg-auto{left:auto!important}}@media (min-width:1280px){.top-xl-0{top:0!important}.right-xl-0{right:0!important}.bottom-xl-0{bottom:0!important}.left-xl-0{left:0!important}.top-xl-auto{top:auto!important}.right-xl-auto{right:auto!important}.bottom-xl-auto{bottom:auto!important}.left-xl-auto{left:auto!important}}.v-align-middle{vertical-align:middle!important}.v-align-top{vertical-align:top!important}.v-align-bottom{vertical-align:bottom!important}.v-align-text-top{vertical-align:text-top!important}.v-align-text-bottom{vertical-align:text-bottom!important}.v-align-baseline{vertical-align:initial!important}.overflow-visible{overflow:visible!important}.overflow-x-visible{overflow-x:visible!important}.overflow-y-visible{overflow-y:visible!important}.overflow-hidden{overflow:hidden!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-auto{overflow:auto!important}.overflow-x-auto{overflow-x:auto!important}.overflow-y-auto{overflow-y:auto!important}.overflow-scroll{overflow:scroll!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-scroll{overflow-y:scroll!important}@media (min-width:544px){.overflow-sm-visible{overflow:visible!important}.overflow-sm-x-visible{overflow-x:visible!important}.overflow-sm-y-visible{overflow-y:visible!important}.overflow-sm-hidden{overflow:hidden!important}.overflow-sm-x-hidden{overflow-x:hidden!important}.overflow-sm-y-hidden{overflow-y:hidden!important}.overflow-sm-auto{overflow:auto!important}.overflow-sm-x-auto{overflow-x:auto!important}.overflow-sm-y-auto{overflow-y:auto!important}.overflow-sm-scroll{overflow:scroll!important}.overflow-sm-x-scroll{overflow-x:scroll!important}.overflow-sm-y-scroll{overflow-y:scroll!important}}@media (min-width:768px){.overflow-md-visible{overflow:visible!important}.overflow-md-x-visible{overflow-x:visible!important}.overflow-md-y-visible{overflow-y:visible!important}.overflow-md-hidden{overflow:hidden!important}.overflow-md-x-hidden{overflow-x:hidden!important}.overflow-md-y-hidden{overflow-y:hidden!important}.overflow-md-auto{overflow:auto!important}.overflow-md-x-auto{overflow-x:auto!important}.overflow-md-y-auto{overflow-y:auto!important}.overflow-md-scroll{overflow:scroll!important}.overflow-md-x-scroll{overflow-x:scroll!important}.overflow-md-y-scroll{overflow-y:scroll!important}}@media (min-width:1012px){.overflow-lg-visible{overflow:visible!important}.overflow-lg-x-visible{overflow-x:visible!important}.overflow-lg-y-visible{overflow-y:visible!important}.overflow-lg-hidden{overflow:hidden!important}.overflow-lg-x-hidden{overflow-x:hidden!important}.overflow-lg-y-hidden{overflow-y:hidden!important}.overflow-lg-auto{overflow:auto!important}.overflow-lg-x-auto{overflow-x:auto!important}.overflow-lg-y-auto{overflow-y:auto!important}.overflow-lg-scroll{overflow:scroll!important}.overflow-lg-x-scroll{overflow-x:scroll!important}.overflow-lg-y-scroll{overflow-y:scroll!important}}@media (min-width:1280px){.overflow-xl-visible{overflow:visible!important}.overflow-xl-x-visible{overflow-x:visible!important}.overflow-xl-y-visible{overflow-y:visible!important}.overflow-xl-hidden{overflow:hidden!important}.overflow-xl-x-hidden{overflow-x:hidden!important}.overflow-xl-y-hidden{overflow-y:hidden!important}.overflow-xl-auto{overflow:auto!important}.overflow-xl-x-auto{overflow-x:auto!important}.overflow-xl-y-auto{overflow-y:auto!important}.overflow-xl-scroll{overflow:scroll!important}.overflow-xl-x-scroll{overflow-x:scroll!important}.overflow-xl-y-scroll{overflow-y:scroll!important}}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:544px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:1012px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1280px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.width-fit{max-width:100%!important}.width-full{width:100%!important}.height-fit{max-height:100%!important}.height-full{height:100%!important}.min-width-0{min-width:0!important}.width-auto{width:auto!important}.direction-rtl{direction:rtl!important}.direction-ltr{direction:ltr!important}@media (min-width:544px){.width-sm-auto{width:auto!important}.direction-sm-rtl{direction:rtl!important}.direction-sm-ltr{direction:ltr!important}}@media (min-width:768px){.width-md-auto{width:auto!important}.direction-md-rtl{direction:rtl!important}.direction-md-ltr{direction:ltr!important}}@media (min-width:1012px){.width-lg-auto{width:auto!important}.direction-lg-rtl{direction:rtl!important}.direction-lg-ltr{direction:ltr!important}}@media (min-width:1280px){.width-xl-auto{width:auto!important}.direction-xl-rtl{direction:rtl!important}.direction-xl-ltr{direction:ltr!important}}.m-0{margin:0!important}.mt-0{margin-top:0!important}.mr-0{margin-right:0!important}.mb-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.mx-0{margin-right:0!important}.my-0{margin-top:0!important;margin-bottom:0!important}.m-1{margin:4px!important}.mt-1{margin-top:4px!important}.mr-1{margin-right:4px!important}.mb-1{margin-bottom:4px!important}.ml-1{margin-left:4px!important}.mt-n1{margin-top:-4px!important}.mr-n1{margin-right:-4px!important}.mb-n1{margin-bottom:-4px!important}.ml-n1{margin-left:-4px!important}.mx-1{margin-right:4px!important;margin-left:4px!important}.my-1{margin-top:4px!important;margin-bottom:4px!important}.m-2{margin:8px!important}.mt-2{margin-top:8px!important}.mr-2{margin-right:8px!important}.mb-2{margin-bottom:8px!important}.ml-2{margin-left:8px!important}.mt-n2{margin-top:-8px!important}.mr-n2{margin-right:-8px!important}.mb-n2{margin-bottom:-8px!important}.ml-n2{margin-left:-8px!important}.mx-2{margin-right:8px!important;margin-left:8px!important}.my-2{margin-top:8px!important;margin-bottom:8px!important}.m-3{margin:16px!important}.mt-3{margin-top:16px!important}.mr-3{margin-right:16px!important}.mb-3{margin-bottom:16px!important}.ml-3{margin-left:16px!important}.mt-n3{margin-top:-16px!important}.mr-n3{margin-right:-16px!important}.mb-n3{margin-bottom:-16px!important}.ml-n3{margin-left:-16px!important}.mx-3{margin-right:16px!important;margin-left:16px!important}.my-3{margin-top:16px!important;margin-bottom:16px!important}.m-4{margin:24px!important}.mt-4{margin-top:24px!important}.mr-4{margin-right:24px!important}.mb-4{margin-bottom:24px!important}.ml-4{margin-left:24px!important}.mt-n4{margin-top:-24px!important}.mr-n4{margin-right:-24px!important}.mb-n4{margin-bottom:-24px!important}.ml-n4{margin-left:-24px!important}.mx-4{margin-right:24px!important;margin-left:24px!important}.my-4{margin-top:24px!important;margin-bottom:24px!important}.m-5{margin:32px!important}.mt-5{margin-top:32px!important}.mr-5{margin-right:32px!important}.mb-5{margin-bottom:32px!important}.ml-5{margin-left:32px!important}.mt-n5{margin-top:-32px!important}.mr-n5{margin-right:-32px!important}.mb-n5{margin-bottom:-32px!important}.ml-n5{margin-left:-32px!important}.mx-5{margin-right:32px!important;margin-left:32px!important}.my-5{margin-top:32px!important;margin-bottom:32px!important}.m-6{margin:40px!important}.mt-6{margin-top:40px!important}.mr-6{margin-right:40px!important}.mb-6{margin-bottom:40px!important}.ml-6{margin-left:40px!important}.mt-n6{margin-top:-40px!important}.mr-n6{margin-right:-40px!important}.mb-n6{margin-bottom:-40px!important}.ml-n6{margin-left:-40px!important}.mx-6{margin-right:40px!important;margin-left:40px!important}.my-6{margin-top:40px!important;margin-bottom:40px!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}@media (min-width:544px){.m-sm-0{margin:0!important}.mt-sm-0{margin-top:0!important}.mr-sm-0{margin-right:0!important}.mb-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.mx-sm-0{margin-right:0!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.m-sm-1{margin:4px!important}.mt-sm-1{margin-top:4px!important}.mr-sm-1{margin-right:4px!important}.mb-sm-1{margin-bottom:4px!important}.ml-sm-1{margin-left:4px!important}.mt-sm-n1{margin-top:-4px!important}.mr-sm-n1{margin-right:-4px!important}.mb-sm-n1{margin-bottom:-4px!important}.ml-sm-n1{margin-left:-4px!important}.mx-sm-1{margin-right:4px!important;margin-left:4px!important}.my-sm-1{margin-top:4px!important;margin-bottom:4px!important}.m-sm-2{margin:8px!important}.mt-sm-2{margin-top:8px!important}.mr-sm-2{margin-right:8px!important}.mb-sm-2{margin-bottom:8px!important}.ml-sm-2{margin-left:8px!important}.mt-sm-n2{margin-top:-8px!important}.mr-sm-n2{margin-right:-8px!important}.mb-sm-n2{margin-bottom:-8px!important}.ml-sm-n2{margin-left:-8px!important}.mx-sm-2{margin-right:8px!important;margin-left:8px!important}.my-sm-2{margin-top:8px!important;margin-bottom:8px!important}.m-sm-3{margin:16px!important}.mt-sm-3{margin-top:16px!important}.mr-sm-3{margin-right:16px!important}.mb-sm-3{margin-bottom:16px!important}.ml-sm-3{margin-left:16px!important}.mt-sm-n3{margin-top:-16px!important}.mr-sm-n3{margin-right:-16px!important}.mb-sm-n3{margin-bottom:-16px!important}.ml-sm-n3{margin-left:-16px!important}.mx-sm-3{margin-right:16px!important;margin-left:16px!important}.my-sm-3{margin-top:16px!important;margin-bottom:16px!important}.m-sm-4{margin:24px!important}.mt-sm-4{margin-top:24px!important}.mr-sm-4{margin-right:24px!important}.mb-sm-4{margin-bottom:24px!important}.ml-sm-4{margin-left:24px!important}.mt-sm-n4{margin-top:-24px!important}.mr-sm-n4{margin-right:-24px!important}.mb-sm-n4{margin-bottom:-24px!important}.ml-sm-n4{margin-left:-24px!important}.mx-sm-4{margin-right:24px!important;margin-left:24px!important}.my-sm-4{margin-top:24px!important;margin-bottom:24px!important}.m-sm-5{margin:32px!important}.mt-sm-5{margin-top:32px!important}.mr-sm-5{margin-right:32px!important}.mb-sm-5{margin-bottom:32px!important}.ml-sm-5{margin-left:32px!important}.mt-sm-n5{margin-top:-32px!important}.mr-sm-n5{margin-right:-32px!important}.mb-sm-n5{margin-bottom:-32px!important}.ml-sm-n5{margin-left:-32px!important}.mx-sm-5{margin-right:32px!important;margin-left:32px!important}.my-sm-5{margin-top:32px!important;margin-bottom:32px!important}.m-sm-6{margin:40px!important}.mt-sm-6{margin-top:40px!important}.mr-sm-6{margin-right:40px!important}.mb-sm-6{margin-bottom:40px!important}.ml-sm-6{margin-left:40px!important}.mt-sm-n6{margin-top:-40px!important}.mr-sm-n6{margin-right:-40px!important}.mb-sm-n6{margin-bottom:-40px!important}.ml-sm-n6{margin-left:-40px!important}.mx-sm-6{margin-right:40px!important;margin-left:40px!important}.my-sm-6{margin-top:40px!important;margin-bottom:40px!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0{margin-top:0!important}.mr-md-0{margin-right:0!important}.mb-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.mx-md-0{margin-right:0!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.m-md-1{margin:4px!important}.mt-md-1{margin-top:4px!important}.mr-md-1{margin-right:4px!important}.mb-md-1{margin-bottom:4px!important}.ml-md-1{margin-left:4px!important}.mt-md-n1{margin-top:-4px!important}.mr-md-n1{margin-right:-4px!important}.mb-md-n1{margin-bottom:-4px!important}.ml-md-n1{margin-left:-4px!important}.mx-md-1{margin-right:4px!important;margin-left:4px!important}.my-md-1{margin-top:4px!important;margin-bottom:4px!important}.m-md-2{margin:8px!important}.mt-md-2{margin-top:8px!important}.mr-md-2{margin-right:8px!important}.mb-md-2{margin-bottom:8px!important}.ml-md-2{margin-left:8px!important}.mt-md-n2{margin-top:-8px!important}.mr-md-n2{margin-right:-8px!important}.mb-md-n2{margin-bottom:-8px!important}.ml-md-n2{margin-left:-8px!important}.mx-md-2{margin-right:8px!important;margin-left:8px!important}.my-md-2{margin-top:8px!important;margin-bottom:8px!important}.m-md-3{margin:16px!important}.mt-md-3{margin-top:16px!important}.mr-md-3{margin-right:16px!important}.mb-md-3{margin-bottom:16px!important}.ml-md-3{margin-left:16px!important}.mt-md-n3{margin-top:-16px!important}.mr-md-n3{margin-right:-16px!important}.mb-md-n3{margin-bottom:-16px!important}.ml-md-n3{margin-left:-16px!important}.mx-md-3{margin-right:16px!important;margin-left:16px!important}.my-md-3{margin-top:16px!important;margin-bottom:16px!important}.m-md-4{margin:24px!important}.mt-md-4{margin-top:24px!important}.mr-md-4{margin-right:24px!important}.mb-md-4{margin-bottom:24px!important}.ml-md-4{margin-left:24px!important}.mt-md-n4{margin-top:-24px!important}.mr-md-n4{margin-right:-24px!important}.mb-md-n4{margin-bottom:-24px!important}.ml-md-n4{margin-left:-24px!important}.mx-md-4{margin-right:24px!important;margin-left:24px!important}.my-md-4{margin-top:24px!important;margin-bottom:24px!important}.m-md-5{margin:32px!important}.mt-md-5{margin-top:32px!important}.mr-md-5{margin-right:32px!important}.mb-md-5{margin-bottom:32px!important}.ml-md-5{margin-left:32px!important}.mt-md-n5{margin-top:-32px!important}.mr-md-n5{margin-right:-32px!important}.mb-md-n5{margin-bottom:-32px!important}.ml-md-n5{margin-left:-32px!important}.mx-md-5{margin-right:32px!important;margin-left:32px!important}.my-md-5{margin-top:32px!important;margin-bottom:32px!important}.m-md-6{margin:40px!important}.mt-md-6{margin-top:40px!important}.mr-md-6{margin-right:40px!important}.mb-md-6{margin-bottom:40px!important}.ml-md-6{margin-left:40px!important}.mt-md-n6{margin-top:-40px!important}.mr-md-n6{margin-right:-40px!important}.mb-md-n6{margin-bottom:-40px!important}.ml-md-n6{margin-left:-40px!important}.mx-md-6{margin-right:40px!important;margin-left:40px!important}.my-md-6{margin-top:40px!important;margin-bottom:40px!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}}@media (min-width:1012px){.m-lg-0{margin:0!important}.mt-lg-0{margin-top:0!important}.mr-lg-0{margin-right:0!important}.mb-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.mx-lg-0{margin-right:0!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.m-lg-1{margin:4px!important}.mt-lg-1{margin-top:4px!important}.mr-lg-1{margin-right:4px!important}.mb-lg-1{margin-bottom:4px!important}.ml-lg-1{margin-left:4px!important}.mt-lg-n1{margin-top:-4px!important}.mr-lg-n1{margin-right:-4px!important}.mb-lg-n1{margin-bottom:-4px!important}.ml-lg-n1{margin-left:-4px!important}.mx-lg-1{margin-right:4px!important;margin-left:4px!important}.my-lg-1{margin-top:4px!important;margin-bottom:4px!important}.m-lg-2{margin:8px!important}.mt-lg-2{margin-top:8px!important}.mr-lg-2{margin-right:8px!important}.mb-lg-2{margin-bottom:8px!important}.ml-lg-2{margin-left:8px!important}.mt-lg-n2{margin-top:-8px!important}.mr-lg-n2{margin-right:-8px!important}.mb-lg-n2{margin-bottom:-8px!important}.ml-lg-n2{margin-left:-8px!important}.mx-lg-2{margin-right:8px!important;margin-left:8px!important}.my-lg-2{margin-top:8px!important;margin-bottom:8px!important}.m-lg-3{margin:16px!important}.mt-lg-3{margin-top:16px!important}.mr-lg-3{margin-right:16px!important}.mb-lg-3{margin-bottom:16px!important}.ml-lg-3{margin-left:16px!important}.mt-lg-n3{margin-top:-16px!important}.mr-lg-n3{margin-right:-16px!important}.mb-lg-n3{margin-bottom:-16px!important}.ml-lg-n3{margin-left:-16px!important}.mx-lg-3{margin-right:16px!important;margin-left:16px!important}.my-lg-3{margin-top:16px!important;margin-bottom:16px!important}.m-lg-4{margin:24px!important}.mt-lg-4{margin-top:24px!important}.mr-lg-4{margin-right:24px!important}.mb-lg-4{margin-bottom:24px!important}.ml-lg-4{margin-left:24px!important}.mt-lg-n4{margin-top:-24px!important}.mr-lg-n4{margin-right:-24px!important}.mb-lg-n4{margin-bottom:-24px!important}.ml-lg-n4{margin-left:-24px!important}.mx-lg-4{margin-right:24px!important;margin-left:24px!important}.my-lg-4{margin-top:24px!important;margin-bottom:24px!important}.m-lg-5{margin:32px!important}.mt-lg-5{margin-top:32px!important}.mr-lg-5{margin-right:32px!important}.mb-lg-5{margin-bottom:32px!important}.ml-lg-5{margin-left:32px!important}.mt-lg-n5{margin-top:-32px!important}.mr-lg-n5{margin-right:-32px!important}.mb-lg-n5{margin-bottom:-32px!important}.ml-lg-n5{margin-left:-32px!important}.mx-lg-5{margin-right:32px!important;margin-left:32px!important}.my-lg-5{margin-top:32px!important;margin-bottom:32px!important}.m-lg-6{margin:40px!important}.mt-lg-6{margin-top:40px!important}.mr-lg-6{margin-right:40px!important}.mb-lg-6{margin-bottom:40px!important}.ml-lg-6{margin-left:40px!important}.mt-lg-n6{margin-top:-40px!important}.mr-lg-n6{margin-right:-40px!important}.mb-lg-n6{margin-bottom:-40px!important}.ml-lg-n6{margin-left:-40px!important}.mx-lg-6{margin-right:40px!important;margin-left:40px!important}.my-lg-6{margin-top:40px!important;margin-bottom:40px!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}}@media (min-width:1280px){.m-xl-0{margin:0!important}.mt-xl-0{margin-top:0!important}.mr-xl-0{margin-right:0!important}.mb-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.mx-xl-0{margin-right:0!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.m-xl-1{margin:4px!important}.mt-xl-1{margin-top:4px!important}.mr-xl-1{margin-right:4px!important}.mb-xl-1{margin-bottom:4px!important}.ml-xl-1{margin-left:4px!important}.mt-xl-n1{margin-top:-4px!important}.mr-xl-n1{margin-right:-4px!important}.mb-xl-n1{margin-bottom:-4px!important}.ml-xl-n1{margin-left:-4px!important}.mx-xl-1{margin-right:4px!important;margin-left:4px!important}.my-xl-1{margin-top:4px!important;margin-bottom:4px!important}.m-xl-2{margin:8px!important}.mt-xl-2{margin-top:8px!important}.mr-xl-2{margin-right:8px!important}.mb-xl-2{margin-bottom:8px!important}.ml-xl-2{margin-left:8px!important}.mt-xl-n2{margin-top:-8px!important}.mr-xl-n2{margin-right:-8px!important}.mb-xl-n2{margin-bottom:-8px!important}.ml-xl-n2{margin-left:-8px!important}.mx-xl-2{margin-right:8px!important;margin-left:8px!important}.my-xl-2{margin-top:8px!important;margin-bottom:8px!important}.m-xl-3{margin:16px!important}.mt-xl-3{margin-top:16px!important}.mr-xl-3{margin-right:16px!important}.mb-xl-3{margin-bottom:16px!important}.ml-xl-3{margin-left:16px!important}.mt-xl-n3{margin-top:-16px!important}.mr-xl-n3{margin-right:-16px!important}.mb-xl-n3{margin-bottom:-16px!important}.ml-xl-n3{margin-left:-16px!important}.mx-xl-3{margin-right:16px!important;margin-left:16px!important}.my-xl-3{margin-top:16px!important;margin-bottom:16px!important}.m-xl-4{margin:24px!important}.mt-xl-4{margin-top:24px!important}.mr-xl-4{margin-right:24px!important}.mb-xl-4{margin-bottom:24px!important}.ml-xl-4{margin-left:24px!important}.mt-xl-n4{margin-top:-24px!important}.mr-xl-n4{margin-right:-24px!important}.mb-xl-n4{margin-bottom:-24px!important}.ml-xl-n4{margin-left:-24px!important}.mx-xl-4{margin-right:24px!important;margin-left:24px!important}.my-xl-4{margin-top:24px!important;margin-bottom:24px!important}.m-xl-5{margin:32px!important}.mt-xl-5{margin-top:32px!important}.mr-xl-5{margin-right:32px!important}.mb-xl-5{margin-bottom:32px!important}.ml-xl-5{margin-left:32px!important}.mt-xl-n5{margin-top:-32px!important}.mr-xl-n5{margin-right:-32px!important}.mb-xl-n5{margin-bottom:-32px!important}.ml-xl-n5{margin-left:-32px!important}.mx-xl-5{margin-right:32px!important;margin-left:32px!important}.my-xl-5{margin-top:32px!important;margin-bottom:32px!important}.m-xl-6{margin:40px!important}.mt-xl-6{margin-top:40px!important}.mr-xl-6{margin-right:40px!important}.mb-xl-6{margin-bottom:40px!important}.ml-xl-6{margin-left:40px!important}.mt-xl-n6{margin-top:-40px!important}.mr-xl-n6{margin-right:-40px!important}.mb-xl-n6{margin-bottom:-40px!important}.ml-xl-n6{margin-left:-40px!important}.mx-xl-6{margin-right:40px!important;margin-left:40px!important}.my-xl-6{margin-top:40px!important;margin-bottom:40px!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}}.p-0{padding:0!important}.pt-0{padding-top:0!important}.pr-0{padding-right:0!important}.pb-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.px-0{padding-right:0!important}.py-0{padding-top:0!important;padding-bottom:0!important}.p-1{padding:4px!important}.pt-1{padding-top:4px!important}.pr-1{padding-right:4px!important}.pb-1{padding-bottom:4px!important}.pl-1,.px-1{padding-left:4px!important}.px-1{padding-right:4px!important}.py-1{padding-top:4px!important;padding-bottom:4px!important}.p-2{padding:8px!important}.pt-2{padding-top:8px!important}.pr-2{padding-right:8px!important}.pb-2{padding-bottom:8px!important}.pl-2,.px-2{padding-left:8px!important}.px-2{padding-right:8px!important}.py-2{padding-top:8px!important;padding-bottom:8px!important}.p-3{padding:16px!important}.pt-3{padding-top:16px!important}.pr-3{padding-right:16px!important}.pb-3{padding-bottom:16px!important}.pl-3,.px-3{padding-left:16px!important}.px-3{padding-right:16px!important}.py-3{padding-top:16px!important;padding-bottom:16px!important}.p-4{padding:24px!important}.pt-4{padding-top:24px!important}.pr-4{padding-right:24px!important}.pb-4{padding-bottom:24px!important}.pl-4,.px-4{padding-left:24px!important}.px-4{padding-right:24px!important}.py-4{padding-top:24px!important;padding-bottom:24px!important}.p-5{padding:32px!important}.pt-5{padding-top:32px!important}.pr-5{padding-right:32px!important}.pb-5{padding-bottom:32px!important}.pl-5,.px-5{padding-left:32px!important}.px-5{padding-right:32px!important}.py-5{padding-top:32px!important;padding-bottom:32px!important}.p-6{padding:40px!important}.pt-6{padding-top:40px!important}.pr-6{padding-right:40px!important}.pb-6{padding-bottom:40px!important}.pl-6,.px-6{padding-left:40px!important}.px-6{padding-right:40px!important}.py-6{padding-top:40px!important;padding-bottom:40px!important}@media (min-width:544px){.p-sm-0{padding:0!important}.pt-sm-0{padding-top:0!important}.pr-sm-0{padding-right:0!important}.pb-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.px-sm-0{padding-right:0!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.p-sm-1{padding:4px!important}.pt-sm-1{padding-top:4px!important}.pr-sm-1{padding-right:4px!important}.pb-sm-1{padding-bottom:4px!important}.pl-sm-1,.px-sm-1{padding-left:4px!important}.px-sm-1{padding-right:4px!important}.py-sm-1{padding-top:4px!important;padding-bottom:4px!important}.p-sm-2{padding:8px!important}.pt-sm-2{padding-top:8px!important}.pr-sm-2{padding-right:8px!important}.pb-sm-2{padding-bottom:8px!important}.pl-sm-2,.px-sm-2{padding-left:8px!important}.px-sm-2{padding-right:8px!important}.py-sm-2{padding-top:8px!important;padding-bottom:8px!important}.p-sm-3{padding:16px!important}.pt-sm-3{padding-top:16px!important}.pr-sm-3{padding-right:16px!important}.pb-sm-3{padding-bottom:16px!important}.pl-sm-3,.px-sm-3{padding-left:16px!important}.px-sm-3{padding-right:16px!important}.py-sm-3{padding-top:16px!important;padding-bottom:16px!important}.p-sm-4{padding:24px!important}.pt-sm-4{padding-top:24px!important}.pr-sm-4{padding-right:24px!important}.pb-sm-4{padding-bottom:24px!important}.pl-sm-4,.px-sm-4{padding-left:24px!important}.px-sm-4{padding-right:24px!important}.py-sm-4{padding-top:24px!important;padding-bottom:24px!important}.p-sm-5{padding:32px!important}.pt-sm-5{padding-top:32px!important}.pr-sm-5{padding-right:32px!important}.pb-sm-5{padding-bottom:32px!important}.pl-sm-5,.px-sm-5{padding-left:32px!important}.px-sm-5{padding-right:32px!important}.py-sm-5{padding-top:32px!important;padding-bottom:32px!important}.p-sm-6{padding:40px!important}.pt-sm-6{padding-top:40px!important}.pr-sm-6{padding-right:40px!important}.pb-sm-6{padding-bottom:40px!important}.pl-sm-6,.px-sm-6{padding-left:40px!important}.px-sm-6{padding-right:40px!important}.py-sm-6{padding-top:40px!important;padding-bottom:40px!important}}@media (min-width:768px){.p-md-0{padding:0!important}.pt-md-0{padding-top:0!important}.pr-md-0{padding-right:0!important}.pb-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.px-md-0{padding-right:0!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.p-md-1{padding:4px!important}.pt-md-1{padding-top:4px!important}.pr-md-1{padding-right:4px!important}.pb-md-1{padding-bottom:4px!important}.pl-md-1,.px-md-1{padding-left:4px!important}.px-md-1{padding-right:4px!important}.py-md-1{padding-top:4px!important;padding-bottom:4px!important}.p-md-2{padding:8px!important}.pt-md-2{padding-top:8px!important}.pr-md-2{padding-right:8px!important}.pb-md-2{padding-bottom:8px!important}.pl-md-2,.px-md-2{padding-left:8px!important}.px-md-2{padding-right:8px!important}.py-md-2{padding-top:8px!important;padding-bottom:8px!important}.p-md-3{padding:16px!important}.pt-md-3{padding-top:16px!important}.pr-md-3{padding-right:16px!important}.pb-md-3{padding-bottom:16px!important}.pl-md-3,.px-md-3{padding-left:16px!important}.px-md-3{padding-right:16px!important}.py-md-3{padding-top:16px!important;padding-bottom:16px!important}.p-md-4{padding:24px!important}.pt-md-4{padding-top:24px!important}.pr-md-4{padding-right:24px!important}.pb-md-4{padding-bottom:24px!important}.pl-md-4,.px-md-4{padding-left:24px!important}.px-md-4{padding-right:24px!important}.py-md-4{padding-top:24px!important;padding-bottom:24px!important}.p-md-5{padding:32px!important}.pt-md-5{padding-top:32px!important}.pr-md-5{padding-right:32px!important}.pb-md-5{padding-bottom:32px!important}.pl-md-5,.px-md-5{padding-left:32px!important}.px-md-5{padding-right:32px!important}.py-md-5{padding-top:32px!important;padding-bottom:32px!important}.p-md-6{padding:40px!important}.pt-md-6{padding-top:40px!important}.pr-md-6{padding-right:40px!important}.pb-md-6{padding-bottom:40px!important}.pl-md-6,.px-md-6{padding-left:40px!important}.px-md-6{padding-right:40px!important}.py-md-6{padding-top:40px!important;padding-bottom:40px!important}}@media (min-width:1012px){.p-lg-0{padding:0!important}.pt-lg-0{padding-top:0!important}.pr-lg-0{padding-right:0!important}.pb-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.px-lg-0{padding-right:0!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.p-lg-1{padding:4px!important}.pt-lg-1{padding-top:4px!important}.pr-lg-1{padding-right:4px!important}.pb-lg-1{padding-bottom:4px!important}.pl-lg-1,.px-lg-1{padding-left:4px!important}.px-lg-1{padding-right:4px!important}.py-lg-1{padding-top:4px!important;padding-bottom:4px!important}.p-lg-2{padding:8px!important}.pt-lg-2{padding-top:8px!important}.pr-lg-2{padding-right:8px!important}.pb-lg-2{padding-bottom:8px!important}.pl-lg-2,.px-lg-2{padding-left:8px!important}.px-lg-2{padding-right:8px!important}.py-lg-2{padding-top:8px!important;padding-bottom:8px!important}.p-lg-3{padding:16px!important}.pt-lg-3{padding-top:16px!important}.pr-lg-3{padding-right:16px!important}.pb-lg-3{padding-bottom:16px!important}.pl-lg-3,.px-lg-3{padding-left:16px!important}.px-lg-3{padding-right:16px!important}.py-lg-3{padding-top:16px!important;padding-bottom:16px!important}.p-lg-4{padding:24px!important}.pt-lg-4{padding-top:24px!important}.pr-lg-4{padding-right:24px!important}.pb-lg-4{padding-bottom:24px!important}.pl-lg-4,.px-lg-4{padding-left:24px!important}.px-lg-4{padding-right:24px!important}.py-lg-4{padding-top:24px!important;padding-bottom:24px!important}.p-lg-5{padding:32px!important}.pt-lg-5{padding-top:32px!important}.pr-lg-5{padding-right:32px!important}.pb-lg-5{padding-bottom:32px!important}.pl-lg-5,.px-lg-5{padding-left:32px!important}.px-lg-5{padding-right:32px!important}.py-lg-5{padding-top:32px!important;padding-bottom:32px!important}.p-lg-6{padding:40px!important}.pt-lg-6{padding-top:40px!important}.pr-lg-6{padding-right:40px!important}.pb-lg-6{padding-bottom:40px!important}.pl-lg-6,.px-lg-6{padding-left:40px!important}.px-lg-6{padding-right:40px!important}.py-lg-6{padding-top:40px!important;padding-bottom:40px!important}}@media (min-width:1280px){.p-xl-0{padding:0!important}.pt-xl-0{padding-top:0!important}.pr-xl-0{padding-right:0!important}.pb-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.px-xl-0{padding-right:0!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.p-xl-1{padding:4px!important}.pt-xl-1{padding-top:4px!important}.pr-xl-1{padding-right:4px!important}.pb-xl-1{padding-bottom:4px!important}.pl-xl-1,.px-xl-1{padding-left:4px!important}.px-xl-1{padding-right:4px!important}.py-xl-1{padding-top:4px!important;padding-bottom:4px!important}.p-xl-2{padding:8px!important}.pt-xl-2{padding-top:8px!important}.pr-xl-2{padding-right:8px!important}.pb-xl-2{padding-bottom:8px!important}.pl-xl-2,.px-xl-2{padding-left:8px!important}.px-xl-2{padding-right:8px!important}.py-xl-2{padding-top:8px!important;padding-bottom:8px!important}.p-xl-3{padding:16px!important}.pt-xl-3{padding-top:16px!important}.pr-xl-3{padding-right:16px!important}.pb-xl-3{padding-bottom:16px!important}.pl-xl-3,.px-xl-3{padding-left:16px!important}.px-xl-3{padding-right:16px!important}.py-xl-3{padding-top:16px!important;padding-bottom:16px!important}.p-xl-4{padding:24px!important}.pt-xl-4{padding-top:24px!important}.pr-xl-4{padding-right:24px!important}.pb-xl-4{padding-bottom:24px!important}.pl-xl-4,.px-xl-4{padding-left:24px!important}.px-xl-4{padding-right:24px!important}.py-xl-4{padding-top:24px!important;padding-bottom:24px!important}.p-xl-5{padding:32px!important}.pt-xl-5{padding-top:32px!important}.pr-xl-5{padding-right:32px!important}.pb-xl-5{padding-bottom:32px!important}.pl-xl-5,.px-xl-5{padding-left:32px!important}.px-xl-5{padding-right:32px!important}.py-xl-5{padding-top:32px!important;padding-bottom:32px!important}.p-xl-6{padding:40px!important}.pt-xl-6{padding-top:40px!important}.pr-xl-6{padding-right:40px!important}.pb-xl-6{padding-bottom:40px!important}.pl-xl-6,.px-xl-6{padding-left:40px!important}.px-xl-6{padding-right:40px!important}.py-xl-6{padding-top:40px!important;padding-bottom:40px!important}}.p-responsive{padding-right:16px!important;padding-left:16px!important}@media (min-width:544px){.p-responsive{padding-right:40px!important;padding-left:40px!important}}@media (min-width:1012px){.p-responsive{padding-right:16px!important;padding-left:16px!important}}.h1{font-size:26px!important}@media (min-width:768px){.h1{font-size:32px!important}}.h2{font-size:22px!important}@media (min-width:768px){.h2{font-size:24px!important}}.h3{font-size:18px!important}@media (min-width:768px){.h3{font-size:20px!important}}.h4{font-size:16px!important}.h5{font-size:14px!important}.h6{font-size:12px!important}.h1,.h2,.h3,.h4,.h5,.h6{font-weight:600!important}.f1{font-size:26px!important}@media (min-width:768px){.f1{font-size:32px!important}}.f2{font-size:22px!important}@media (min-width:768px){.f2{font-size:24px!important}}.f3{font-size:18px!important}@media (min-width:768px){.f3{font-size:20px!important}}.f4{font-size:16px!important}@media (min-width:768px){.f4{font-size:16px!important}}.f5{font-size:14px!important}.f6{font-size:12px!important}.f00-light{font-size:40px!important;font-weight:300!important}@media (min-width:768px){.f00-light{font-size:48px!important}}.f0-light{font-size:32px!important;font-weight:300!important}@media (min-width:768px){.f0-light{font-size:40px!important}}.f1-light{font-size:26px!important;font-weight:300!important}@media (min-width:768px){.f1-light{font-size:32px!important}}.f2-light{font-size:22px!important;font-weight:300!important}@media (min-width:768px){.f2-light{font-size:24px!important}}.f3-light{font-size:18px!important;font-weight:300!important}@media (min-width:768px){.f3-light{font-size:20px!important}}.text-small{font-size:12px!important}.lead{margin-bottom:30px;font-size:20px;font-weight:300}.lh-condensed-ultra{line-height:1!important}.lh-condensed{line-height:1.25!important}.lh-default{line-height:1.5!important}.lh-0{line-height:0!important}@media (min-width:544px){.lh-sm-condensed-ultra{line-height:1!important}.lh-sm-condensed{line-height:1.25!important}.lh-sm-default{line-height:1.5!important}.lh-sm-0{line-height:0!important}}@media (min-width:768px){.lh-md-condensed-ultra{line-height:1!important}.lh-md-condensed{line-height:1.25!important}.lh-md-default{line-height:1.5!important}.lh-md-0{line-height:0!important}}@media (min-width:1012px){.lh-lg-condensed-ultra{line-height:1!important}.lh-lg-condensed{line-height:1.25!important}.lh-lg-default{line-height:1.5!important}.lh-lg-0{line-height:0!important}}@media (min-width:1280px){.lh-xl-condensed-ultra{line-height:1!important}.lh-xl-condensed{line-height:1.25!important}.lh-xl-default{line-height:1.5!important}.lh-xl-0{line-height:0!important}}.text-right{text-align:right!important}.text-left{text-align:left!important}.text-center{text-align:center!important}@media (min-width:544px){.text-sm-right{text-align:right!important}.text-sm-left{text-align:left!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-right{text-align:right!important}.text-md-left{text-align:left!important}.text-md-center{text-align:center!important}}@media (min-width:1012px){.text-lg-right{text-align:right!important}.text-lg-left{text-align:left!important}.text-lg-center{text-align:center!important}}@media (min-width:1280px){.text-xl-right{text-align:right!important}.text-xl-left{text-align:left!important}.text-xl-center{text-align:center!important}}.text-normal{font-weight:400!important}.text-bold{font-weight:600!important}.text-italic{font-style:italic!important}.text-uppercase{text-transform:uppercase!important}.text-underline{text-decoration:underline!important}.no-underline{text-decoration:none!important}.no-wrap{white-space:nowrap!important}.ws-normal{white-space:normal!important}.break-word{word-break:break-word!important;word-wrap:break-word!important;overflow-wrap:break-word!important}.wb-break-all{word-break:break-all!important}.text-emphasized{font-weight:600}.list-style-none{list-style:none!important}.text-mono{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.d-block{display:block!important}.d-flex{display:flex!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.d-table{display:table!important}.d-table-cell{display:table-cell!important}@media (min-width:544px){.d-sm-block{display:block!important}.d-sm-flex{display:flex!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.d-sm-table{display:table!important}.d-sm-table-cell{display:table-cell!important}}@media (min-width:768px){.d-md-block{display:block!important}.d-md-flex{display:flex!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.d-md-table{display:table!important}.d-md-table-cell{display:table-cell!important}}@media (min-width:1012px){.d-lg-block{display:block!important}.d-lg-flex{display:flex!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.d-lg-table{display:table!important}.d-lg-table-cell{display:table-cell!important}}@media (min-width:1280px){.d-xl-block{display:block!important}.d-xl-flex{display:flex!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.d-xl-table{display:table!important}.d-xl-table-cell{display:table-cell!important}}.v-hidden{visibility:hidden!important}.v-visible{visibility:visible!important}@media (max-width:543px){.hide-sm{display:none!important}}@media (min-width:544px) and (max-width:767px){.hide-md{display:none!important}}@media (min-width:768px) and (max-width:1011px){.hide-lg{display:none!important}}@media (min-width:1012px){.hide-xl{display:none!important}}.table-fixed{table-layout:fixed!important}.sr-only{padding:0;clip:rect(0,0,0,0);word-wrap:normal;border:0}.show-on-focus,.sr-only{position:absolute;width:1px;height:1px;overflow:hidden}.show-on-focus{margin:0;clip:rect(1px,1px,1px,1px)}.show-on-focus:focus{z-index:20;width:auto;height:auto;clip:auto}.bg-blue{background-color:var(--color-bg-info-inverse)!important}.bg-blue-light{background-color:var(--color-bg-info)!important}.bg-gray-dark{background-color:var(--color-bg-canvas-inverse)!important}.bg-gray{background-color:var(--color-bg-tertiary)!important}.bg-gray-light{background-color:var(--color-bg-secondary)!important}.bg-green{background-color:var(--color-bg-success-inverse)!important}.bg-green-light{background-color:var(--color-bg-success)!important}.bg-red{background-color:var(--color-bg-danger-inverse)!important}.bg-red-light{background-color:var(--color-bg-danger)!important}.bg-yellow{background-color:var(--color-bg-warning-inverse)!important}.bg-yellow-light{background-color:var(--color-bg-warning)!important}.bg-yellow-dark{background-color:var(--color-auto-yellow-7)!important}.bg-purple{background-color:var(--color-auto-purple-5)!important}.bg-pink{background-color:var(--color-auto-pink-5)!important}.bg-purple-light{background-color:var(--color-auto-purple-0)!important}.bg-orange{background-color:var(--color-auto-orange-7)!important}.color-gray-0{color:var(--color-auto-gray-0)!important}.bg-gray-0{background-color:var(--color-auto-gray-0)!important}.color-gray-1{color:var(--color-auto-gray-1)!important}.bg-gray-1{background-color:var(--color-auto-gray-1)!important}.color-gray-2{color:var(--color-auto-gray-2)!important}.bg-gray-2{background-color:var(--color-auto-gray-2)!important}.color-gray-3{color:var(--color-auto-gray-3)!important}.bg-gray-3{background-color:var(--color-auto-gray-3)!important}.color-gray-4{color:var(--color-auto-gray-4)!important}.bg-gray-4{background-color:var(--color-auto-gray-4)!important}.color-gray-5{color:var(--color-auto-gray-5)!important}.bg-gray-5{background-color:var(--color-auto-gray-5)!important}.color-gray-6{color:var(--color-auto-gray-6)!important}.bg-gray-6{background-color:var(--color-auto-gray-6)!important}.color-gray-7{color:var(--color-auto-gray-7)!important}.bg-gray-7{background-color:var(--color-auto-gray-7)!important}.color-gray-8{color:var(--color-auto-gray-8)!important}.bg-gray-8{background-color:var(--color-auto-gray-8)!important}.color-gray-9{color:var(--color-auto-gray-9)!important}.bg-gray-9{background-color:var(--color-auto-gray-9)!important}.color-blue-0{color:var(--color-auto-blue-0)!important}.bg-blue-0{background-color:var(--color-auto-blue-0)!important}.color-blue-1{color:var(--color-auto-blue-1)!important}.bg-blue-1{background-color:var(--color-auto-blue-1)!important}.color-blue-2{color:var(--color-auto-blue-2)!important}.bg-blue-2{background-color:var(--color-auto-blue-2)!important}.color-blue-3{color:var(--color-auto-blue-3)!important}.bg-blue-3{background-color:var(--color-auto-blue-3)!important}.color-blue-4{color:var(--color-auto-blue-4)!important}.bg-blue-4{background-color:var(--color-auto-blue-4)!important}.color-blue-5{color:var(--color-auto-blue-5)!important}.bg-blue-5{background-color:var(--color-auto-blue-5)!important}.color-blue-6{color:var(--color-auto-blue-6)!important}.bg-blue-6{background-color:var(--color-auto-blue-6)!important}.color-blue-7{color:var(--color-auto-blue-7)!important}.bg-blue-7{background-color:var(--color-auto-blue-7)!important}.color-blue-8{color:var(--color-auto-blue-8)!important}.bg-blue-8{background-color:var(--color-auto-blue-8)!important}.color-blue-9{color:var(--color-auto-blue-9)!important}.bg-blue-9{background-color:var(--color-auto-blue-9)!important}.color-green-0{color:var(--color-auto-green-0)!important}.bg-green-0{background-color:var(--color-auto-green-0)!important}.color-green-1{color:var(--color-auto-green-1)!important}.bg-green-1{background-color:var(--color-auto-green-1)!important}.color-green-2{color:var(--color-auto-green-2)!important}.bg-green-2{background-color:var(--color-auto-green-2)!important}.color-green-3{color:var(--color-auto-green-3)!important}.bg-green-3{background-color:var(--color-auto-green-3)!important}.color-green-4{color:var(--color-auto-green-4)!important}.bg-green-4{background-color:var(--color-auto-green-4)!important}.color-green-5{color:var(--color-auto-green-5)!important}.bg-green-5{background-color:var(--color-auto-green-5)!important}.color-green-6{color:var(--color-auto-green-6)!important}.bg-green-6{background-color:var(--color-auto-green-6)!important}.color-green-7{color:var(--color-auto-green-7)!important}.bg-green-7{background-color:var(--color-auto-green-7)!important}.color-green-8{color:var(--color-auto-green-8)!important}.bg-green-8{background-color:var(--color-auto-green-8)!important}.color-green-9{color:var(--color-auto-green-9)!important}.bg-green-9{background-color:var(--color-auto-green-9)!important}.color-yellow-0{color:var(--color-auto-yellow-0)!important}.bg-yellow-0{background-color:var(--color-auto-yellow-0)!important}.color-yellow-1{color:var(--color-auto-yellow-1)!important}.bg-yellow-1{background-color:var(--color-auto-yellow-1)!important}.color-yellow-2{color:var(--color-auto-yellow-2)!important}.bg-yellow-2{background-color:var(--color-auto-yellow-2)!important}.color-yellow-3{color:var(--color-auto-yellow-3)!important}.bg-yellow-3{background-color:var(--color-auto-yellow-3)!important}.color-yellow-4{color:var(--color-auto-yellow-4)!important}.bg-yellow-4{background-color:var(--color-auto-yellow-4)!important}.color-yellow-5{color:var(--color-auto-yellow-5)!important}.bg-yellow-5{background-color:var(--color-auto-yellow-5)!important}.color-yellow-6{color:var(--color-auto-yellow-6)!important}.bg-yellow-6{background-color:var(--color-auto-yellow-6)!important}.color-yellow-7{color:var(--color-auto-yellow-7)!important}.bg-yellow-7{background-color:var(--color-auto-yellow-7)!important}.color-yellow-8{color:var(--color-auto-yellow-8)!important}.bg-yellow-8{background-color:var(--color-auto-yellow-8)!important}.color-yellow-9{color:var(--color-auto-yellow-9)!important}.bg-yellow-9{background-color:var(--color-auto-yellow-9)!important}.color-orange-0{color:var(--color-auto-orange-0)!important}.bg-orange-0{background-color:var(--color-auto-orange-0)!important}.color-orange-1{color:var(--color-auto-orange-1)!important}.bg-orange-1{background-color:var(--color-auto-orange-1)!important}.color-orange-2{color:var(--color-auto-orange-2)!important}.bg-orange-2{background-color:var(--color-auto-orange-2)!important}.color-orange-3{color:var(--color-auto-orange-3)!important}.bg-orange-3{background-color:var(--color-auto-orange-3)!important}.color-orange-4{color:var(--color-auto-orange-4)!important}.bg-orange-4{background-color:var(--color-auto-orange-4)!important}.color-orange-5{color:var(--color-auto-orange-5)!important}.bg-orange-5{background-color:var(--color-auto-orange-5)!important}.color-orange-6{color:var(--color-auto-orange-6)!important}.bg-orange-6{background-color:var(--color-auto-orange-6)!important}.color-orange-7{color:var(--color-auto-orange-7)!important}.bg-orange-7{background-color:var(--color-auto-orange-7)!important}.color-orange-8{color:var(--color-auto-orange-8)!important}.bg-orange-8{background-color:var(--color-auto-orange-8)!important}.color-orange-9{color:var(--color-auto-orange-9)!important}.bg-orange-9{background-color:var(--color-auto-orange-9)!important}.color-red-0{color:var(--color-auto-red-0)!important}.bg-red-0{background-color:var(--color-auto-red-0)!important}.color-red-1{color:var(--color-auto-red-1)!important}.bg-red-1{background-color:var(--color-auto-red-1)!important}.color-red-2{color:var(--color-auto-red-2)!important}.bg-red-2{background-color:var(--color-auto-red-2)!important}.color-red-3{color:var(--color-auto-red-3)!important}.bg-red-3{background-color:var(--color-auto-red-3)!important}.color-red-4{color:var(--color-auto-red-4)!important}.bg-red-4{background-color:var(--color-auto-red-4)!important}.color-red-5{color:var(--color-auto-red-5)!important}.bg-red-5{background-color:var(--color-auto-red-5)!important}.color-red-6{color:var(--color-auto-red-6)!important}.bg-red-6{background-color:var(--color-auto-red-6)!important}.color-red-7{color:var(--color-auto-red-7)!important}.bg-red-7{background-color:var(--color-auto-red-7)!important}.color-red-8{color:var(--color-auto-red-8)!important}.bg-red-8{background-color:var(--color-auto-red-8)!important}.color-red-9{color:var(--color-auto-red-9)!important}.bg-red-9{background-color:var(--color-auto-red-9)!important}.color-purple-0{color:var(--color-auto-purple-0)!important}.bg-purple-0{background-color:var(--color-auto-purple-0)!important}.color-purple-1{color:var(--color-auto-purple-1)!important}.bg-purple-1{background-color:var(--color-auto-purple-1)!important}.color-purple-2{color:var(--color-auto-purple-2)!important}.bg-purple-2{background-color:var(--color-auto-purple-2)!important}.color-purple-3{color:var(--color-auto-purple-3)!important}.bg-purple-3{background-color:var(--color-auto-purple-3)!important}.color-purple-4{color:var(--color-auto-purple-4)!important}.bg-purple-4{background-color:var(--color-auto-purple-4)!important}.color-purple-5{color:var(--color-auto-purple-5)!important}.bg-purple-5{background-color:var(--color-auto-purple-5)!important}.color-purple-6{color:var(--color-auto-purple-6)!important}.bg-purple-6{background-color:var(--color-auto-purple-6)!important}.color-purple-7{color:var(--color-auto-purple-7)!important}.bg-purple-7{background-color:var(--color-auto-purple-7)!important}.color-purple-8{color:var(--color-auto-purple-8)!important}.bg-purple-8{background-color:var(--color-auto-purple-8)!important}.color-purple-9{color:var(--color-auto-purple-9)!important}.bg-purple-9{background-color:var(--color-auto-purple-9)!important}.color-pink-0{color:var(--color-auto-pink-0)!important}.bg-pink-0{background-color:var(--color-auto-pink-0)!important}.color-pink-1{color:var(--color-auto-pink-1)!important}.bg-pink-1{background-color:var(--color-auto-pink-1)!important}.color-pink-2{color:var(--color-auto-pink-2)!important}.bg-pink-2{background-color:var(--color-auto-pink-2)!important}.color-pink-3{color:var(--color-auto-pink-3)!important}.bg-pink-3{background-color:var(--color-auto-pink-3)!important}.color-pink-4{color:var(--color-auto-pink-4)!important}.bg-pink-4{background-color:var(--color-auto-pink-4)!important}.color-pink-5{color:var(--color-auto-pink-5)!important}.bg-pink-5{background-color:var(--color-auto-pink-5)!important}.color-pink-6{color:var(--color-auto-pink-6)!important}.bg-pink-6{background-color:var(--color-auto-pink-6)!important}.color-pink-7{color:var(--color-auto-pink-7)!important}.bg-pink-7{background-color:var(--color-auto-pink-7)!important}.color-pink-8{color:var(--color-auto-pink-8)!important}.bg-pink-8{background-color:var(--color-auto-pink-8)!important}.color-pink-9{color:var(--color-auto-pink-9)!important}.bg-pink-9{background-color:var(--color-auto-pink-9)!important}.text-blue{color:var(--color-text-link)!important}.text-red{color:var(--color-text-danger)!important}.text-gray-light{color:var(--color-text-tertiary)!important}.text-gray{color:var(--color-text-secondary)!important}.text-gray-dark{color:var(--color-text-primary)!important}.text-green{color:var(--color-text-success)!important}.text-yellow{color:var(--color-text-warning)!important}.text-orange{color:var(--color-auto-orange-9)!important}.text-orange-light{color:var(--color-auto-orange-6)!important}.text-purple{color:var(--color-auto-purple-5)!important}.text-pink{color:var(--color-auto-pink-5)!important}.text-white{color:var(--color-text-white)!important}.border-blue{border-color:var(--color-border-info)!important}.border-blue-light{border-color:var(--color-auto-blue-2)!important}.border-green{border-color:var(--color-border-success)!important}.border-green-light{border-color:var(--color-discussion-border)!important}.border-red{border-color:var(--color-border-danger)!important}.border-red-light{border-color:var(--color-auto-red-3)!important}.border-purple{border-color:var(--color-auto-purple-5)!important}.border-yellow{border-color:var(--color-border-warning)!important}.border-gray-light{border-color:var(--color-border-secondary)!important}.border-gray-dark{border-color:var(--color-border-tertiary)!important}.border-black-fade{border-color:var(--color-fade-black-15)!important}.border-white-fade,.border-white-fade-15{border-color:var(--color-fade-white-15)!important}.border-white-fade-30{border-color:var(--color-fade-white-30)!important}.border-white-fade-50{border-color:var(--color-fade-white-50)!important}.border-white-fade-70{border-color:var(--color-fade-white-70)!important}.border-white-fade-85{border-color:var(--color-fade-white-85)!important}.lead{color:var(--color-text-secondary)}.text-emphasized{color:var(--color-text-primary)}.text-shadow-dark{text-shadow:0 1px 1px rgba(var(--color-auto-black),.25),0 1px 25px rgba(var(--color-auto-black),.75)}.text-shadow-light{text-shadow:0 1px 0 rgba(var(--color-auto-white),.5)}.Label.Label--gray,.Label.Label--outline{color:var(--color-auto-gray-6);border-color:var(--color-auto-gray-2)}.Label.Label--gray-darker{color:var(--color-text-primary);border-color:var(--color-auto-gray-5)}.Label.Label--yellow{color:var(--color-label-warning-text);border-color:var(--color-label-warning-border)}.Label.Label--orange{color:var(--color-label-orange-text);border-color:var(--color-label-orange-border)}.Label.Label--red{color:var(--color-label-danger-text);border-color:var(--color-label-danger-border)}.Label.Label--green,.Label.Label--outline-green{color:var(--color-auto-green-6);border-color:var(--color-auto-green-5)}.Label.Label--blue{color:var(--color-auto-blue-5);border-color:var(--color-auto-blue-5)}.Label.Label--purple{color:var(--color-auto-purple-5);border-color:var(--color-auto-purple-4)}.Label.Label--pink{color:var(--color-auto-pink-6);border-color:var(--color-auto-pink-4)}.box-shadow{box-shadow:var(--color-shadow-small)!important}.box-shadow-medium{box-shadow:var(--color-shadow-medium)!important}.box-shadow-large{box-shadow:var(--color-shadow-large)!important}.box-shadow-extra-large{box-shadow:var(--color-shadow-extra-large)!important}.State--green{color:var(--color-pr-state-open-text);background-color:var(--color-pr-state-open-bg);border-color:var(--color-pr-state-open-border)}.State--purple{color:var(--color-pr-state-merged-text);background-color:var(--color-pr-state-merged-bg);border-color:var(--color-pr-state-merged-border)}.State--red{color:var(--color-pr-state-closed-text);background-color:var(--color-pr-state-closed-bg);border-color:var(--color-pr-state-closed-border)}.Counter--gray-light{color:var(--color-counter-secondary-text)}.Counter--gray{color:var(--color-counter-primary-text);background-color:var(--color-counter-primary-bg)}.input-dark{color:var(--color-text-white);background-color:var(--color-fade-white-15);border-color:transparent;box-shadow:none}.input-dark:-ms-input-placeholder{color:inherit;opacity:.6}.input-dark::-ms-input-placeholder{color:inherit;opacity:.6}.input-dark::placeholder{color:inherit;opacity:.6}.input-dark.focus,.input-dark:focus{border-color:var(--color-fade-black-30);box-shadow:var(--color-state-focus-shadow)}
+/*!
+ * GitHub Light v0.4.2
+ * Copyright (c) 2012 - 2017 GitHub, Inc.
+ * Licensed under MIT (https://github.com/primer/github-syntax-theme-generator/blob/master/LICENSE)
+ */.cm-s-github-light.CodeMirror{background:var(--color-codemirror-bg);color:var(--color-codemirror-text)}.cm-s-github-light .CodeMirror-gutters{background:var(--color-codemirror-gutters-bg);border-right-width:0}.cm-s-github-light .CodeMirror-guttermarker{color:var(--color-codemirror-guttermarker-text)}.cm-s-github-light .CodeMirror-guttermarker-subtle{color:var(--color-codemirror-guttermarker-subtle-text)}.cm-s-github-light .CodeMirror-linenumber{color:var(--color-codemirror-linenumber-text);padding:0 16px}.cm-s-github-light .CodeMirror-cursor{border-left:1px solid var(--color-codemirror-cursor)}.cm-s-github-light.CodeMirror-focused .CodeMirror-selected,.cm-s-github-light .CodeMirror-line::selection,.cm-s-github-light .CodeMirror-line>span::selection,.cm-s-github-light .CodeMirror-line>span>span::selection{background:var(--color-codemirror-selection-bg,#d7d4f0)}.cm-s-github-light .CodeMirror-line::-moz-selection,.cm-s-github-light .CodeMirror-line>span::-moz-selection,.cm-s-github-light .CodeMirror-line>span>span::-moz-selection{background:var(--color-codemirror-selection-bg,#d7d4f0)}.cm-s-github-light .CodeMirror-activeline-background{background:var(--color-codemirror-activeline-bg)}.cm-s-github-light .CodeMirror-matchingbracket{text-decoration:underline;color:var(--color-codemirror-matchingbracket-text)!important}.cm-s-github-light .CodeMirror-lines{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;font-size:12px;background:var(--color-codemirror-lines-bg);line-height:1.5}.cm-s-github-light .cm-comment{color:var(--color-codemirror-syntax-comment)}.cm-s-github-light .cm-constant{color:var(--color-codemirror-syntax-constant)}.cm-s-github-light .cm-entity{font-weight:400;font-style:normal;text-decoration:none;color:var(--color-codemirror-syntax-entity)}.cm-s-github-light .cm-keyword{font-weight:400;font-style:normal;text-decoration:none;color:var(--color-codemirror-syntax-keyword)}.cm-s-github-light .cm-storage{color:var(--color-codemirror-syntax-storage)}.cm-s-github-light .cm-string{font-weight:400;font-style:normal;text-decoration:none;color:var(--color-codemirror-syntax-string)}.cm-s-github-light .cm-support{font-weight:400;font-style:normal;text-decoration:none;color:var(--color-codemirror-syntax-support)}.cm-s-github-light .cm-variable{font-weight:400;font-style:normal;text-decoration:none;color:var(--color-codemirror-syntax-variable)}details-dialog{position:fixed;margin:10vh auto;top:0;left:50%;transform:translateX(-50%);z-index:999;max-height:80vh;max-width:90vw;width:448px}image-crop{touch-action:none;display:block}image-crop.nesw{cursor:nesw-resize}image-crop.nwse{cursor:nwse-resize}image-crop.nesw .crop-box,image-crop.nwse .crop-box{cursor:inherit}image-crop[loaded] .crop-image{display:block}image-crop .crop-image,image-crop[loaded] [data-loading-slot]{display:none}image-crop .crop-wrapper{position:relative;font-size:0}image-crop .crop-container{user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;position:absolute;overflow:hidden;z-index:1;top:0;width:100%;height:100%}image-crop .crop-box{position:absolute;border:1px dashed #fff;box-sizing:border-box;cursor:move}image-crop .crop-outline{position:absolute;top:0;bottom:0;left:0;right:0;outline:600px solid rgba(0,0,0,.3)}image-crop .handle{position:absolute}image-crop .handle:before{position:absolute;display:block;padding:4px;transform:translate(-50%,-50%);content:" ";background:#fff;border:1px solid #767676}image-crop .ne{top:0;right:0;cursor:nesw-resize}image-crop .nw{top:0;left:0;cursor:nwse-resize}image-crop .se{bottom:0;right:0;cursor:nwse-resize}image-crop .sw{bottom:0;left:0;cursor:nesw-resize}.user-select-contain{-ms-user-select:element;-ms-user-select:contain;-webkit-user-select:contain;-moz-user-select:contain;user-select:contain}.ajax-pagination-form .ajax-pagination-btn{width:100%;padding:6px;margin-top:20px;font-weight:600;color:var(--color-text-link);background:var(--color-bg-primary);border:1px solid var(--color-border-primary);border-radius:6px}.ajax-pagination-form .ajax-pagination-btn:focus,.ajax-pagination-form .ajax-pagination-btn:hover{color:var(--color-text-link);background-color:var(--color-bg-tertiary)}.ajax-pagination-form.loading .ajax-pagination-btn{text-indent:-3000px;background-color:var(--color-bg-tertiary);background-image:url(/images/spinners/octocat-spinner-16px-EAF2F5.gif);background-repeat:no-repeat;background-position:50%;border-color:var(--color-border-tertiary)}@media only screen and (-moz-min-device-pixel-ratio:2),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.ajax-pagination-form.loading .ajax-pagination-btn{background-image:url(/images/spinners/octocat-spinner-32-EAF2F5.gif);background-size:16px auto}}body.intent-mouse [role=button]:focus,body.intent-mouse [role=tabpanel][tabindex="0"]:focus,body.intent-mouse a:focus,body.intent-mouse button:focus,body.intent-mouse summary:focus{outline:none;box-shadow:none}body.intent-mouse [tabindex="0"]:focus,body.intent-mouse details-dialog:focus{outline:none}.CodeMirror{height:calc(100vh - 1px)}.file-editor-textarea{width:100%;padding:5px 4px;font:12px SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;resize:vertical;border:0;border-radius:0;outline:none}.container-preview .tabnav-tabs{margin:-6px 0 -6px -11px}.container-preview .tabnav-tabs .tabnav-tab{padding:12px 15px;border-radius:0}.container-preview .tabnav-tabs>.selected:first-child{border-top-left-radius:6px}.container-preview .tabnav-tabs .selected{font-weight:600}.container-preview.template-editor .commit-create,.container-preview.template-editor .file-actions{display:block}.container-preview.template-editor .commit-preview,.container-preview.template-editor .error-preview-msg,.container-preview.template-editor .loading-preview-msg,.container-preview.template-editor .no-changes-preview-msg,.container-preview.template-editor .show-code{display:none!important}.container-preview.render-editor .commit-create,.container-preview.render-editor .file-actions{display:block}.container-preview.render-editor .commit-preview,.container-preview.render-editor .error-preview-msg,.container-preview.render-editor .loading-preview-msg,.container-preview.render-editor .no-changes-preview-msg,.container-preview.render-editor .show-code,.container-preview.render-editor .template-editor{display:none!important}.container-preview.show-code .commit-create,.container-preview.show-code .file-actions{display:block}.container-preview.show-code .commit-preview,.container-preview.show-code .error-preview-msg,.container-preview.show-code .loading-preview-msg,.container-preview.show-code .no-changes-preview-msg,.container-preview.show-code .render-editor,.container-preview.show-code .template-editor,.container-preview:not(.show-code) .commit-create,.container-preview:not(.show-code) .file-actions{display:none!important}.container-preview.loading-preview .loading-preview-msg{display:block}.container-preview.loading-preview .commit-preview,.container-preview.loading-preview .error-preview-msg,.container-preview.loading-preview .no-changes-preview-msg,.container-preview.loading-preview .render-editor,.container-preview.loading-preview .template-editor{display:none!important}.container-preview.show-preview .commit-preview{display:block}.container-preview.show-preview .error-preview-msg,.container-preview.show-preview .loading-preview-msg,.container-preview.show-preview .no-changes-preview-msg,.container-preview.show-preview .render-editor,.container-preview.show-preview .template-editor{display:none!important}.container-preview.no-changes-preview .no-changes-preview-msg{display:block}.container-preview.no-changes-preview .commit-preview,.container-preview.no-changes-preview .error-preview-msg,.container-preview.no-changes-preview .loading-preview-msg,.container-preview.no-changes-preview .render-editor,.container-preview.no-changes-preview .template-editor{display:none!important}.container-preview.error-preview .error-preview-msg{display:block}.container-preview.error-preview .commit-preview,.container-preview.error-preview .loading-preview-msg,.container-preview.error-preview .no-changes-preview-msg,.container-preview.error-preview .render-editor,.container-preview.error-preview .template-editor{display:none!important}.container-preview p.preview-msg{padding:30px;font-size:16px}.CodeMirror-merge-header{height:30px}.CodeMirror-merge-header .CodeMirror-merge-pane{height:30px;line-height:30px}.cm-s-github-light .merge-gutter{width:14px}.conflict-background+.CodeMirror-gutter-wrapper .CodeMirror-linenumber,.conflict-gutter-marker{background-color:var(--color-auto-yellow-1)}.conflict-gutter-marker:after,.conflict-gutter-marker:before{position:absolute;left:-1px;content:"";background-color:var(--color-auto-red-5)}.conflict-gutter-marker-end:after,.conflict-gutter-marker-start:after{width:1px;height:10px}.conflict-gutter-marker-end:before,.conflict-gutter-marker-middle:before,.conflict-gutter-marker-start:before{width:10px;height:1px}.conflict-gutter-marker-start:after{bottom:0}.conflict-gutter-marker-end:after{top:0}.conflict-gutter-marker-start:before{top:7px}.conflict-gutter-marker-end:before{bottom:7px}.conflict-gutter-marker-line:after,.conflict-gutter-marker-middle:after{width:1px;height:18px}.conflict-gutter-marker-middle:before{top:9px}.form-group .edit-action{opacity:.6}.form-group .form-field-hover{background-color:none;border:1px solid rgba(var(--color-auto-gray-4),0)}.form-group:hover .edit-action{cursor:pointer;opacity:.7}.form-group:hover .form-field-hover{cursor:pointer}.form-group:hover .form-field-hover,.placeholder-box{border:1px solid rgba(var(--color-auto-gray-4),1)}.template-previews{max-width:768px}.template-previews .Box .expand-group{display:none;height:0}.template-previews .Box .dismiss-preview-button{display:none}.template-previews .Box.expand-preview .expand-group{display:block;height:100%;transition:height 3s}.template-previews .Box.expand-preview .preview-button{display:none}.template-previews .Box.expand-preview .dismiss-preview-button{display:inline}.template-previews .discussion-sidebar-heading{font-size:14px;color:var(--color-bg-canvas-inverse)}.template-previews .discussion-sidebar-heading:hover{color:var(--color-bg-info-inverse)}.edit-labels{display:none}.preview-section{display:block}.Box .section-focus .preview-section,.edit-section{display:none}.Box .section-focus .edit-section{display:block}.commit-create .CodeMirror{padding-top:8px}[data-catalyst],auto-complete,details-dialog,details-menu,file-attachment,filter-input,image-crop,include-fragment,poll-include-fragment,remote-input,tab-container,text-expander{display:block}.Details--on .Details-content--shown,.Details:not(.Details--on) .Details-content--hidden{display:none!important}.Details:not(.Details--on) .Details-content--hidden-not-important{display:none}.Details-element:not([open])>summary .Details-content--open,.Details-element[open]>summary .Details-content--closed{display:none!important}g-emoji{font-family:Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;font-size:1em;font-style:normal!important;font-weight:400;line-height:1;vertical-align:-.075em}g-emoji img{width:1em;height:1em}.emoji-icon{width:20px;background-repeat:no-repeat;background-size:20px 20px}.emoji-icon,.emoji-result{display:inline-block;height:20px;vertical-align:middle}.emoji-result{font-size:18px;font-weight:400}.gollum-editor .comment-form-head.tabnav{border:1px solid var(--color-border-secondary)}.gollum-editor .gollum-editor-body{height:390px;resize:vertical}.active .gollum-editor-function-buttons{display:block!important}.zeroclipboard-link{padding:0;margin:0;color:var(--color-text-link);cursor:pointer;background:none;border:0}.zeroclipboard-link .octicon{display:block}.auth-form{width:340px;margin:0 auto}.auth-form .form-group.errored .error,.auth-form .form-group.errored .warning,.auth-form .form-group.warn .error,.auth-form .form-group.warn .warning{max-width:274px}.auth-form-header{padding:10px 20px;margin:0;color:var(--color-text-white);text-shadow:0 -1px 0 rgba(0,0,0,.3);background-color:#829aa8;border:1px solid #768995;border-radius:6px 6px 0 0}.auth-form-header h1{font-size:16px}.auth-form-header h1 a{color:var(--color-text-white)}.auth-form-header .octicon{position:absolute;top:10px;right:20px;color:rgba(0,0,0,.4);text-shadow:0 1px 0 hsla(0,0%,100%,.1)}.auth-form-message{max-height:140px;padding:20px 20px 10px;overflow-y:scroll;border:1px solid var(--color-border-tertiary);border-radius:6px}.auth-form-message ol,.auth-form-message ul{padding-left:inherit;margin-bottom:inherit}.auth-form-body{padding:20px;font-size:14px;background-color:var(--color-bg-tertiary);border:1px solid var(--color-border-secondary);border-top:0;border-radius:0 0 6px 6px}.auth-form-body .input-block{margin-top:5px;margin-bottom:15px}.auth-form-body p{margin-bottom:0}.auth-form-body ol,.auth-form-body ul{padding-left:inherit;margin-bottom:inherit}.two-factor-help{position:relative;padding:10px 10px 10px 36px;margin:60px 0 auto auto;border:1px solid var(--color-border-secondary);border-radius:6px}.two-factor-help h4{margin-top:0;margin-bottom:5px}.two-factor-help .octicon-circle-slash,.two-factor-help .octicon-device-mobile,.two-factor-help .octicon-key,.two-factor-help .octicon-shield-lock{position:absolute;top:10px;left:10px}.sms-send-code-spinner{position:relative;bottom:2px;display:none;vertical-align:bottom}.loading .sms-send-code-spinner{display:inline}.webauthn-header:not(:last-child){padding-bottom:10px;margin-bottom:20px;border-bottom:1px solid var(--color-border-secondary)}.auth-form-body .webauthn-form-body{padding:0}.webauthn-form-body{padding:30px 30px 20px;text-align:center}.webauthn-form-body button{margin-top:20px}.sudo-webauthn-form-body .webauthn-enabled,.webauthn-form-body .webauthn-enabled{display:block}.sudo-webauthn-form-body.unavailable .webauthn-enabled,.sudo-webauthn-form-body .webauthn-disabled,.webauthn-form-body.unavailable .webauthn-enabled,.webauthn-form-body .webauthn-disabled{display:none}.sudo-webauthn-form-body.unavailable .webauthn-disabled,.webauthn-form-body.unavailable .webauthn-disabled{display:block}.webauthn-icon{color:var(--color-icon-tertiary)}.flash.sms-error,.flash.sms-success{display:none;margin:0 0 10px}.is-sent .sms-success{display:block}.is-not-sent .sms-success,.is-sent .sms-error{display:none}.is-not-sent .sms-error{display:block}.session-authentication{background-color:var(--color-bg-canvas)}.session-authentication .header-logged-out{background-color:initial;border-bottom:0}.session-authentication .header-logo{color:var(--color-text-secondary)}.session-authentication .flash{padding:15px 20px;margin:0 auto 10px;font-size:13px;border-style:solid;border-width:1px;border-radius:6px}.session-authentication .flash .container{width:auto}.session-authentication .flash .flash-close{height:40px}.session-authentication .flash.flash-banner{width:100%;border-top:0;border-right:0;border-left:0;border-radius:0}.session-authentication .auth-form label{display:block;margin-bottom:7px;font-weight:400;text-align:left}.session-authentication .auth-form .btn{margin-top:20px}.session-authentication .auth-form .webauthn-message{margin-bottom:0}.session-authentication .label-link{float:right;font-size:12px}.session-authentication .auth-form-header{margin-bottom:15px;color:var(--color-text-primary);text-align:center;text-shadow:none;background-color:initial;border:0}.session-authentication .auth-form-header h1{font-size:24px;font-weight:300;letter-spacing:-.5px}.session-authentication .auth-form-body{border-top:1px solid var(--color-border-secondary);border-radius:6px}.session-authentication .auth-form-body.webauthn-form-body{padding:20px}.session-authentication .login-callout{padding:15px 20px;text-align:center;border:1px solid var(--color-border-tertiary);border-radius:6px}.session-authentication .two-factor-help{padding:0 0 0 20px;margin-top:20px;border:0}.session-authentication .two-factor-help .octicon-circle-slash,.session-authentication .two-factor-help .octicon-device-mobile,.session-authentication .two-factor-help .octicon-key,.session-authentication .two-factor-help .octicon-shield-lock{top:4px;left:0}.session-authentication.enterprise .header-logged-out{padding:48px 0 28px;background-color:initial}.session-authentication.hosted .header-logged-out{padding:40px 0 20px;background-color:initial}.Header-old{z-index:32;padding-top:12px;padding-bottom:12px;color:var(--color-header-text);background-color:var(--color-header-bg)}.server-stats+.Header-old{box-shadow:inset 0 1px 0 hsla(0,0%,100%,.075)}.Header-old .dropdown-menu{width:300px}.Header-old .notification-indicator:hover:after{content:none}@media (min-width:1012px){.Header-old .notification-indicator:hover:after{content:attr(aria-label)}}.page-responsive .HeaderMenu{display:none;clear:both}@media (min-width:1012px){.page-responsive .HeaderMenu{display:block;clear:none}}.open .HeaderMenu{display:block}.HeaderMenu--logged-out .dropdown-menu{border:0;box-shadow:0 3px 12px var(--color-fade-black-15),0 0 1px rgba(27,31,35,.2)}.HeaderMenu--logged-out .dropdown-menu:after,.HeaderMenu--logged-out .dropdown-menu:before{display:none}.HeaderMenu--logged-out .header-search{width:240px}.HeaderMenu--logged-out .jump-to-suggestions{top:100%}.HeaderMenu--logged-out .HeaderMenu-details[open]>summary:before{position:absolute;bottom:-8px;display:block}.HeaderMenu--logged-out .header-search-input{padding-top:8px;padding-bottom:8px;font-size:14px;-webkit-appearance:none}.HeaderMenu--logged-out .header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.75)!important}.HeaderMenu--logged-out .header-search-input::-ms-input-placeholder{color:hsla(0,0%,100%,.75)!important}.HeaderMenu--logged-out .header-search-input::placeholder{color:hsla(0,0%,100%,.75)!important}.edge-item-fix{list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.page-responsive .HeaderMenu--logged-out{z-index:100;width:300px;overflow:auto;background-color:var(--color-bg-primary);box-shadow:0 10px 50px var(--color-fade-black-15)}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out{width:auto;overflow:visible;background-color:initial;box-shadow:none}}.page-responsive .HeaderMenu--logged-out .dropdown-menu{position:static;width:auto;border:0 solid transparent;box-shadow:none}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .dropdown-menu{position:absolute;width:300px;border:0;box-shadow:0 3px 12px var(--color-fade-black-15),0 0 1px rgba(27,31,35,.2)}.page-responsive .HeaderMenu--logged-out .dropdown-menu:after,.page-responsive .HeaderMenu--logged-out .dropdown-menu:before{content:""}}.page-responsive .HeaderMenu--logged-out .dropdown-menu-s{transform:none}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .dropdown-menu-s{transform:translateX(50%)}}.page-responsive .HeaderMenu--logged-out .header-search{width:auto;border-top:0}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .header-search{width:240px}}.page-responsive .HeaderMenu--logged-out .header-search-wrapper{border:1px solid var(--color-border-secondary)}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .header-search-wrapper{border:0}}.page-responsive .HeaderMenu--logged-out .header-search-input{padding-top:8px;padding-bottom:8px;color:var(--color-text-primary);-webkit-appearance:none}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .header-search-input{color:inherit}}.page-responsive .HeaderMenu--logged-out .header-search-input:-ms-input-placeholder{color:var(--color-text-secondary)!important}.page-responsive .HeaderMenu--logged-out .header-search-input::-ms-input-placeholder{color:var(--color-text-secondary)!important}.page-responsive .HeaderMenu--logged-out .header-search-input::placeholder{color:var(--color-text-secondary)!important}@media (min-width:1012px){.page-responsive .HeaderMenu--logged-out .header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.75)!important}.page-responsive .HeaderMenu--logged-out .header-search-input::-ms-input-placeholder{color:hsla(0,0%,100%,.75)!important}.page-responsive .HeaderMenu--logged-out .header-search-input::placeholder{color:hsla(0,0%,100%,.75)!important}}.page-responsive .HeaderMenu-link{color:var(--color-auto-gray-7);white-space:nowrap;background:transparent}.page-responsive .HeaderMenu-link:hover{color:var(--color-text-primary)}@media (min-width:1012px){.page-responsive .HeaderMenu-link{color:var(--color-text-white);transition:opacity .4s}.page-responsive .HeaderMenu-link:hover{color:var(--color-text-white);opacity:.75}}.page-responsive .HeaderMenu-link .icon-chevon-down-mktg{top:24px;right:0;width:14px;stroke:var(--color-auto-gray-9);transition:stroke .4s}@media (min-width:1012px){.page-responsive .HeaderMenu-link .icon-chevon-down-mktg{top:-2px;width:12px;stroke:hsla(0,0%,100%,.5);background:transparent}}.page-responsive .HeaderMenu-details[open]>summary:before{display:none}@media (min-width:1012px){.page-responsive .HeaderMenu-details[open]>summary:before{position:absolute;bottom:-8px;display:block}}.page-responsive .HeaderMenu-details[open] .HeaderMenu-link{color:var(--color-text-primary)}@media (min-width:1012px){.page-responsive .HeaderMenu-details[open] .HeaderMenu-link{color:hsla(0,0%,100%,.75)}}.page-responsive .HeaderMenu-details[open] .dropdown-menu{animation:none}@media (min-width:1012px){.page-responsive .HeaderMenu-details[open] .dropdown-menu{animation:dropdown-display .4s cubic-bezier(.73,.005,.22,1)}}.page-responsive .HeaderMenu-details[open] .icon-chevon-down-mktg{stroke:var(--color-auto-gray-9)}@media (min-width:1012px){.page-responsive .HeaderMenu-details[open] .icon-chevon-down-mktg{stroke:var(--color-auto-white)}}.HeaderMenu-link{color:var(--color-text-white);background:transparent;transition:opacity .4s}.HeaderMenu-link:hover{color:var(--color-text-white);opacity:.75}.HeaderMenu-link .icon-chevon-down-mktg{top:-2px;right:0;width:12px;stroke:hsla(0,0%,100%,.5);transition:stroke .4s}.HeaderMenu-details[open] .HeaderMenu-link{color:hsla(0,0%,100%,.75)}.HeaderMenu-details[open] .dropdown-menu{animation:dropdown-display .4s cubic-bezier(.73,.005,.22,1)}.HeaderMenu-details[open] .icon-chevon-down-mktg{stroke:var(--color-auto-white)}.HeaderMenu-summary::-webkit-details-marker,.HeaderMenu-summary::marker{display:none}@keyframes dropdown-display{0%{opacity:0;transform:scale(.98) translateY(-.6em)}to{opacity:1;transform:scale(1) translateY(0)}}.header-logo-invertocat{margin:-1px 15px -1px -2px;color:var(--color-text-white);white-space:nowrap}.header-logo-invertocat .octicon-mark-github{float:left}.header-logo-invertocat:hover{color:var(--color-text-white);text-decoration:none}.notification-indicator{color:var(--color-fade-white-70)}.notification-indicator .mail-status{position:absolute;top:-6px;left:6px;z-index:2;display:none;width:14px;height:14px;color:var(--color-text-white);background-image:linear-gradient(#54a3ff,#006eed);background-clip:padding-box;border:2px solid var(--color-header-bg);border-radius:50%}.notification-indicator .mail-status.unread{display:inline-block}.notification-indicator:hover .mail-status{text-decoration:none;background-color:var(--color-bg-info-inverse)}.header-nav-current-user{padding-bottom:0;font-size:inherit}.header-nav-current-user .css-truncate-target{max-width:100%}.header-nav-current-user .user-profile-link{color:var(--color-text-primary)}.feature-preview-indicator{position:absolute;top:0;left:13px;z-index:2;width:14px;height:14px;color:var(--color-text-white);background-image:linear-gradient(#54a3ff,#006eed);background-clip:padding-box;border:2px solid var(--color-header-bg);border-radius:50%}.feature-preview-details .feature-preview-indicator{top:9px;right:10px;left:inherit;width:10px;height:10px;border:0}.unsupported-browser{color:var(--color-text-primary);background-color:var(--color-bg-warning);border-bottom:1px solid var(--color-border-warning)}.header-search-wrapper{display:table;width:100%;max-width:100%;padding:0;font-size:inherit;font-weight:400;color:var(--color-text-white);vertical-align:middle;background-color:var(--color-header-search-bg);border:1px solid var(--color-header-search-border);box-shadow:none}.header-search-wrapper.header-search-wrapper-jump-to .header-search-scope{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.header-search-wrapper .truncate-repo-scope{max-width:110px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.header-search-wrapper.focus{background-color:hsla(0,0%,100%,.175);box-shadow:none}.header-search-wrapper.focus .header-search-scope{color:var(--color-text-white);background-color:hsla(0,0%,100%,.075);border-right-color:#282e34}.header-search-input{display:table-cell;width:100%;padding-top:0;padding-bottom:0;font-size:inherit;color:inherit;background:none;border:0;box-shadow:none}.header-search-input:-ms-input-placeholder{color:hsla(0,0%,100%,.75)}.header-search-input::-ms-input-placeholder{color:hsla(0,0%,100%,.75)}.header-search-input::placeholder{color:hsla(0,0%,100%,.75)}.header-search-input:focus{border:0;box-shadow:none}.header-search-input:focus~.header-search-key-slash{display:none!important}.header-search-input::-ms-clear{display:none}.header-search-scope{display:none;padding-right:8px;padding-left:8px;font-size:inherit;line-height:28px;color:var(--color-fade-white-70);white-space:nowrap;vertical-align:middle;border-right:1px solid #282e34;border-top-left-radius:6px;border-bottom-left-radius:6px}.header-search-scope:empty+.header-search-input{width:100%}.header-search-scope:hover{color:var(--color-text-white);background-color:hsla(0,0%,100%,.12)}.scoped-search .header-search-wrapper{display:flex}.jump-to-field-active{color:var(--color-text-primary)!important;background-color:var(--color-bg-secondary)}.jump-to-field-active:-ms-input-placeholder{color:var(--color-text-secondary)!important}.jump-to-field-active::-ms-input-placeholder{color:var(--color-text-secondary)!important}.jump-to-field-active::placeholder{color:var(--color-text-secondary)!important}.jump-to-field-active~.header-search-key-slash{display:none}.jump-to-field-active.jump-to-dropdown-visible{border-bottom-right-radius:0;border-bottom-left-radius:0}.jump-to-suggestions{top:100%;left:0;z-index:35;width:100%;border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:6px;border-bottom-left-radius:6px;box-shadow:0 4px 10px rgba(0,0,0,.1)}.jump-to-suggestions-path{min-width:0;min-height:44px;color:var(--color-auto-black)}.jump-to-suggestions-path .jump-to-octicon{width:28px;color:var(--color-text-tertiary)}.jump-to-suggestions-path .jump-to-suggestion-name{max-width:none}.jump-to-suggestions-path mark{font-weight:600;background-color:initial}.jump-to-suggestions-results-container .navigation-item{border-bottom:1px solid var(--color-border-primary)}.jump-to-suggestions-results-container .navigation-item:last-child{border-bottom:0}.jump-to-suggestions-results-container .d-on-nav-focus{display:none}.jump-to-suggestions-results-container .navigation-focus .jump-to-octicon,.jump-to-suggestions-results-container [aria-selected=true] .jump-to-octicon{color:var(--color-text-white)}.jump-to-suggestions-results-container .navigation-focus .jump-to-suggestions-path,.jump-to-suggestions-results-container [aria-selected=true] .jump-to-suggestions-path{color:var(--color-text-white);background:var(--color-bg-info-inverse)}.jump-to-suggestions-results-container .navigation-focus mark,.jump-to-suggestions-results-container [aria-selected=true] mark{color:var(--color-text-white)}.jump-to-suggestions-results-container .navigation-focus .d-on-nav-focus,.jump-to-suggestions-results-container [aria-selected=true] .d-on-nav-focus{display:block}.header-search{max-width:100%;transition:.2s ease-in-out;transition-property:max-width,padding-bottom,padding-top}@media (min-width:768px){.header-search{max-width:272px}}@media (min-width:768px){.header-search:focus-within{max-width:544px}}.HeaderMenu--logged-out .header-search{min-width:auto}
+/*# sourceMappingURL=frameworks-d05fe7490fb987d543f7a3e9e15cce45.css.map */
diff --git a/assets/css/style.scss b/assets/css/style.scss
new file mode 100644
index 0000000..4c373a4
--- /dev/null
+++ b/assets/css/style.scss
@@ -0,0 +1,39 @@
+---
+---
+
+// TODO: dynamic import github dark mode style
+@import "./github-behaviors.css";
+@import "./github-frameworks.css";
+
+//noinspection CssUnknownTarget
+@import "github-syntax-base";
+//noinspection CssUnknownTarget
+@import "github-syntax-highlight-dark";
+//noinspection CssUnknownTarget
+@import "github-syntax-highlight-light";
+[data-color-mode=dark][data-dark-theme*=dark] {
+ //noinspection SassScssResolvedByNameOnly
+ @include dark;
+}
+[data-color-mode=light][data-light-theme*=light] {
+ //noinspection SassScssResolvedByNameOnly
+ @include light;
+}
+
+.markdown-body .emoji {
+ vertical-align: middle;
+}
+
+.profile-color-modes-toggle:focus {
+ outline: none;
+}
+
+.footer .footprint {
+ span {
+ opacity: .5;
+ }
+
+ a {
+ opacity: 1;
+ }
+}
diff --git a/badges.svg b/badges.svg
new file mode 100644
index 0000000..6196942
--- /dev/null
+++ b/badges.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/dist/ac_milan.svg b/dist/ac_milan.svg
new file mode 100644
index 0000000..84eda95
--- /dev/null
+++ b/dist/ac_milan.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AC Milan
+ AC Milan
+
+
\ No newline at end of file
diff --git a/dist/after_effects.svg b/dist/after_effects.svg
new file mode 100644
index 0000000..94616f9
--- /dev/null
+++ b/dist/after_effects.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ After Effects
+ After Effects
+
+
\ No newline at end of file
diff --git a/dist/airbnb.svg b/dist/airbnb.svg
new file mode 100644
index 0000000..1a9a741
--- /dev/null
+++ b/dist/airbnb.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Airbnb
+ Airbnb
+
+
\ No newline at end of file
diff --git a/dist/alipay.svg b/dist/alipay.svg
new file mode 100644
index 0000000..cb7068e
--- /dev/null
+++ b/dist/alipay.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Alipay
+ Alipay
+
+
\ No newline at end of file
diff --git a/dist/amazon.svg b/dist/amazon.svg
new file mode 100644
index 0000000..7679ef7
--- /dev/null
+++ b/dist/amazon.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Amazon
+ Amazon
+
+
\ No newline at end of file
diff --git a/dist/angular.svg b/dist/angular.svg
new file mode 100644
index 0000000..1e3113d
--- /dev/null
+++ b/dist/angular.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Angular
+ Angular
+
+
\ No newline at end of file
diff --git a/dist/apiary.svg b/dist/apiary.svg
new file mode 100644
index 0000000..3991887
--- /dev/null
+++ b/dist/apiary.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Apiary
+ Apiary
+
+
\ No newline at end of file
diff --git a/dist/arsenal.svg b/dist/arsenal.svg
new file mode 100644
index 0000000..b4ce9f4
--- /dev/null
+++ b/dist/arsenal.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Arsenal
+ Arsenal
+
+
\ No newline at end of file
diff --git a/dist/atom.svg b/dist/atom.svg
new file mode 100644
index 0000000..481d425
--- /dev/null
+++ b/dist/atom.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Atom
+ Atom
+
+
\ No newline at end of file
diff --git a/dist/audi.svg b/dist/audi.svg
new file mode 100644
index 0000000..aa55a56
--- /dev/null
+++ b/dist/audi.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Audi
+ Audi
+
+
\ No newline at end of file
diff --git a/dist/barcelona.svg b/dist/barcelona.svg
new file mode 100644
index 0000000..346446d
--- /dev/null
+++ b/dist/barcelona.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Barcelona
+ Barcelona
+
+
\ No newline at end of file
diff --git a/dist/bayern_munchen.svg b/dist/bayern_munchen.svg
new file mode 100644
index 0000000..39601cd
--- /dev/null
+++ b/dist/bayern_munchen.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bayern Munchen
+ Bayern Munchen
+
+
\ No newline at end of file
diff --git a/dist/behance.svg b/dist/behance.svg
new file mode 100644
index 0000000..b0d6a03
--- /dev/null
+++ b/dist/behance.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Behance
+ Behance
+
+
\ No newline at end of file
diff --git a/dist/bitcoin.svg b/dist/bitcoin.svg
new file mode 100644
index 0000000..230f153
--- /dev/null
+++ b/dist/bitcoin.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bitcoin
+ Bitcoin
+
+
\ No newline at end of file
diff --git a/dist/bmw.svg b/dist/bmw.svg
new file mode 100644
index 0000000..4f50624
--- /dev/null
+++ b/dist/bmw.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BMW
+ BMW
+
+
\ No newline at end of file
diff --git a/dist/bower.svg b/dist/bower.svg
new file mode 100644
index 0000000..7c56054
--- /dev/null
+++ b/dist/bower.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bower
+ Bower
+
+
\ No newline at end of file
diff --git a/dist/bugatti.svg b/dist/bugatti.svg
new file mode 100644
index 0000000..8a23e31
--- /dev/null
+++ b/dist/bugatti.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Bugatti
+ Bugatti
+
+
\ No newline at end of file
diff --git a/dist/buymeacoffee.svg b/dist/buymeacoffee.svg
new file mode 100644
index 0000000..0e80605
--- /dev/null
+++ b/dist/buymeacoffee.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Buy Me A Coffee
+ Buy Me A Coffee
+
+
\ No newline at end of file
diff --git a/dist/chelsea.svg b/dist/chelsea.svg
new file mode 100644
index 0000000..3a0506c
--- /dev/null
+++ b/dist/chelsea.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Chelsea
+ Chelsea
+
+
\ No newline at end of file
diff --git a/dist/chrome_extensions.svg b/dist/chrome_extensions.svg
new file mode 100644
index 0000000..a3d83bf
--- /dev/null
+++ b/dist/chrome_extensions.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Chrome Extensions
+ Chrome Extensions
+
+
\ No newline at end of file
diff --git a/dist/cli.svg b/dist/cli.svg
new file mode 100644
index 0000000..2f759c4
--- /dev/null
+++ b/dist/cli.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CLI
+ CLI
+
+
\ No newline at end of file
diff --git a/dist/codepen.svg b/dist/codepen.svg
new file mode 100644
index 0000000..7d82dfb
--- /dev/null
+++ b/dist/codepen.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CodePen
+ CodePen
+
+
\ No newline at end of file
diff --git a/dist/codrops.svg b/dist/codrops.svg
new file mode 100644
index 0000000..985212a
--- /dev/null
+++ b/dist/codrops.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Codrops
+ Codrops
+
+
\ No newline at end of file
diff --git a/dist/coremail.svg b/dist/coremail.svg
new file mode 100644
index 0000000..62462e7
--- /dev/null
+++ b/dist/coremail.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Coremail
+ Coremail
+
+
\ No newline at end of file
diff --git a/dist/cssnano.svg b/dist/cssnano.svg
new file mode 100644
index 0000000..a703859
--- /dev/null
+++ b/dist/cssnano.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ CSSNano
+ CSSNano
+
+
\ No newline at end of file
diff --git a/dist/discord.svg b/dist/discord.svg
new file mode 100644
index 0000000..b1b474d
--- /dev/null
+++ b/dist/discord.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Discord
+ Discord
+
+
\ No newline at end of file
diff --git a/dist/docker.svg b/dist/docker.svg
new file mode 100644
index 0000000..f0e229b
--- /dev/null
+++ b/dist/docker.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Docker
+ Docker
+
+
\ No newline at end of file
diff --git a/dist/dreamweaver.svg b/dist/dreamweaver.svg
new file mode 100644
index 0000000..2995a38
--- /dev/null
+++ b/dist/dreamweaver.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Dreamweaver
+ Dreamweaver
+
+
\ No newline at end of file
diff --git a/dist/eclipse.svg b/dist/eclipse.svg
new file mode 100644
index 0000000..7fb206c
--- /dev/null
+++ b/dist/eclipse.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Eclipse
+ Eclipse
+
+
\ No newline at end of file
diff --git a/dist/elasticsearch.svg b/dist/elasticsearch.svg
new file mode 100644
index 0000000..37b6e60
--- /dev/null
+++ b/dist/elasticsearch.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Elasticsearch
+ Elasticsearch
+
+
\ No newline at end of file
diff --git a/dist/erlang.svg b/dist/erlang.svg
new file mode 100644
index 0000000..148375e
--- /dev/null
+++ b/dist/erlang.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Erlang
+ Erlang
+
+
\ No newline at end of file
diff --git a/dist/esbuild.svg b/dist/esbuild.svg
new file mode 100644
index 0000000..2e0a7f3
--- /dev/null
+++ b/dist/esbuild.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ESBuild
+ ESBuild
+
+
\ No newline at end of file
diff --git a/dist/eslint.svg b/dist/eslint.svg
new file mode 100644
index 0000000..1bab298
--- /dev/null
+++ b/dist/eslint.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ESLint
+ ESLint
+
+
\ No newline at end of file
diff --git a/dist/facebook.svg b/dist/facebook.svg
new file mode 100644
index 0000000..778f07a
--- /dev/null
+++ b/dist/facebook.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Facebook
+ Facebook
+
+
\ No newline at end of file
diff --git a/dist/ferrari.svg b/dist/ferrari.svg
new file mode 100644
index 0000000..379d0bf
--- /dev/null
+++ b/dist/ferrari.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Ferrari
+ Ferrari
+
+
\ No newline at end of file
diff --git a/dist/flash.svg b/dist/flash.svg
new file mode 100644
index 0000000..1702bb8
--- /dev/null
+++ b/dist/flash.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Flash
+ Flash
+
+
\ No newline at end of file
diff --git a/dist/github.svg b/dist/github.svg
new file mode 100644
index 0000000..f34590c
--- /dev/null
+++ b/dist/github.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ GitHub
+ GitHub
+
+
\ No newline at end of file
diff --git a/dist/gitlab.svg b/dist/gitlab.svg
new file mode 100644
index 0000000..b531881
--- /dev/null
+++ b/dist/gitlab.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Gitlab
+ Gitlab
+
+
\ No newline at end of file
diff --git a/dist/gitter.svg b/dist/gitter.svg
new file mode 100644
index 0000000..8b7b691
--- /dev/null
+++ b/dist/gitter.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Gitter
+ Gitter
+
+
\ No newline at end of file
diff --git a/dist/golang.svg b/dist/golang.svg
new file mode 100644
index 0000000..5f71ff4
--- /dev/null
+++ b/dist/golang.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Golang
+ Golang
+
+
\ No newline at end of file
diff --git a/dist/google_plus.svg b/dist/google_plus.svg
new file mode 100644
index 0000000..4dfdbe0
--- /dev/null
+++ b/dist/google_plus.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Google+
+ Google+
+
+
\ No newline at end of file
diff --git a/dist/grafana.svg b/dist/grafana.svg
new file mode 100644
index 0000000..7087a04
--- /dev/null
+++ b/dist/grafana.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Grafana
+ Grafana
+
+
\ No newline at end of file
diff --git a/dist/grunt.svg b/dist/grunt.svg
new file mode 100644
index 0000000..bfe4c67
--- /dev/null
+++ b/dist/grunt.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Grunt
+ Grunt
+
+
\ No newline at end of file
diff --git a/dist/gulp.svg b/dist/gulp.svg
new file mode 100644
index 0000000..e7ead56
--- /dev/null
+++ b/dist/gulp.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Gulp
+ Gulp
+
+
\ No newline at end of file
diff --git a/dist/hacker.svg b/dist/hacker.svg
new file mode 100644
index 0000000..24132cf
--- /dev/null
+++ b/dist/hacker.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Hacker
+ Hacker
+
+
\ No newline at end of file
diff --git a/dist/idea.svg b/dist/idea.svg
new file mode 100644
index 0000000..a718878
--- /dev/null
+++ b/dist/idea.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ IDEA
+ IDEA
+
+
\ No newline at end of file
diff --git a/dist/illustrator.svg b/dist/illustrator.svg
new file mode 100644
index 0000000..a800966
--- /dev/null
+++ b/dist/illustrator.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Illustrator
+ Illustrator
+
+
\ No newline at end of file
diff --git a/dist/ingress.svg b/dist/ingress.svg
new file mode 100644
index 0000000..931ef29
--- /dev/null
+++ b/dist/ingress.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Ingress
+ Ingress
+
+
\ No newline at end of file
diff --git a/dist/instagram.svg b/dist/instagram.svg
new file mode 100644
index 0000000..2e97759
--- /dev/null
+++ b/dist/instagram.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Instagram
+ Instagram
+
+
\ No newline at end of file
diff --git a/dist/issuehunt.svg b/dist/issuehunt.svg
new file mode 100644
index 0000000..7476dfe
--- /dev/null
+++ b/dist/issuehunt.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ IssueHunt
+ IssueHunt
+
+
\ No newline at end of file
diff --git a/dist/jasmine.svg b/dist/jasmine.svg
new file mode 100644
index 0000000..093ef29
--- /dev/null
+++ b/dist/jasmine.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Jasmine
+ Jasmine
+
+
\ No newline at end of file
diff --git a/dist/java.svg b/dist/java.svg
new file mode 100644
index 0000000..3214ee6
--- /dev/null
+++ b/dist/java.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Java
+ Java
+
+
\ No newline at end of file
diff --git a/dist/javascript.svg b/dist/javascript.svg
new file mode 100644
index 0000000..260b36b
--- /dev/null
+++ b/dist/javascript.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ JavaScript
+ JavaScript
+
+
\ No newline at end of file
diff --git a/dist/jsfiddle.svg b/dist/jsfiddle.svg
new file mode 100644
index 0000000..75c857e
--- /dev/null
+++ b/dist/jsfiddle.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ JSFiddle
+ JSFiddle
+
+
\ No newline at end of file
diff --git a/dist/juejin_translation.svg b/dist/juejin_translation.svg
new file mode 100644
index 0000000..0015996
--- /dev/null
+++ b/dist/juejin_translation.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 掘金翻译计划
+ 掘金翻译计划
+
+
\ No newline at end of file
diff --git a/dist/kibana.svg b/dist/kibana.svg
new file mode 100644
index 0000000..2269c3b
--- /dev/null
+++ b/dist/kibana.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Kibana
+ Kibana
+
+
\ No newline at end of file
diff --git a/dist/koenigsegg.svg b/dist/koenigsegg.svg
new file mode 100644
index 0000000..51e1d25
--- /dev/null
+++ b/dist/koenigsegg.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Koenigsegg
+ Koenigsegg
+
+
\ No newline at end of file
diff --git a/dist/kotlin.svg b/dist/kotlin.svg
new file mode 100644
index 0000000..08d6d47
--- /dev/null
+++ b/dist/kotlin.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Kotlin
+ Kotlin
+
+
\ No newline at end of file
diff --git a/dist/lamborghini.svg b/dist/lamborghini.svg
new file mode 100644
index 0000000..c7731f6
--- /dev/null
+++ b/dist/lamborghini.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Lamborghini
+ Lamborghini
+
+
\ No newline at end of file
diff --git a/dist/land_rover.svg b/dist/land_rover.svg
new file mode 100644
index 0000000..ccb666c
--- /dev/null
+++ b/dist/land_rover.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Land Rover
+ Land Rover
+
+
\ No newline at end of file
diff --git a/dist/line.svg b/dist/line.svg
new file mode 100644
index 0000000..d825cd6
--- /dev/null
+++ b/dist/line.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Line
+ Line
+
+
\ No newline at end of file
diff --git a/dist/liverpool.svg b/dist/liverpool.svg
new file mode 100644
index 0000000..fbdc9cf
--- /dev/null
+++ b/dist/liverpool.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Liverpool
+ Liverpool
+
+
\ No newline at end of file
diff --git a/dist/logstash.svg b/dist/logstash.svg
new file mode 100644
index 0000000..1d2e221
--- /dev/null
+++ b/dist/logstash.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Logstash
+ Logstash
+
+
\ No newline at end of file
diff --git a/dist/lunkr.svg b/dist/lunkr.svg
new file mode 100644
index 0000000..3ab98b5
--- /dev/null
+++ b/dist/lunkr.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Coremail Lunkr
+ Coremail Lunkr
+
+
\ No newline at end of file
diff --git a/dist/manchester_united.svg b/dist/manchester_united.svg
new file mode 100644
index 0000000..9703d97
--- /dev/null
+++ b/dist/manchester_united.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Manchester United
+ Manchester United
+
+
\ No newline at end of file
diff --git a/dist/marussia.svg b/dist/marussia.svg
new file mode 100644
index 0000000..c4a15dd
--- /dev/null
+++ b/dist/marussia.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Marussia
+ Marussia
+
+
\ No newline at end of file
diff --git a/dist/maserati.svg b/dist/maserati.svg
new file mode 100644
index 0000000..4b58595
--- /dev/null
+++ b/dist/maserati.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Maserati
+ Maserati
+
+
\ No newline at end of file
diff --git a/dist/medium.svg b/dist/medium.svg
new file mode 100644
index 0000000..4a9aad2
--- /dev/null
+++ b/dist/medium.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Medium
+ Medium
+
+
\ No newline at end of file
diff --git a/dist/mercedes_benz.svg b/dist/mercedes_benz.svg
new file mode 100644
index 0000000..70e80d6
--- /dev/null
+++ b/dist/mercedes_benz.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mercedes Benz
+ Mercedes Benz
+
+
\ No newline at end of file
diff --git a/dist/messenger.svg b/dist/messenger.svg
new file mode 100644
index 0000000..b37ea1a
--- /dev/null
+++ b/dist/messenger.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Messenger
+ Messenger
+
+
\ No newline at end of file
diff --git a/dist/mitsubishi.svg b/dist/mitsubishi.svg
new file mode 100644
index 0000000..f95688b
--- /dev/null
+++ b/dist/mitsubishi.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mitsubishi
+ Mitsubishi
+
+
\ No newline at end of file
diff --git a/dist/mocha.svg b/dist/mocha.svg
new file mode 100644
index 0000000..3fda016
--- /dev/null
+++ b/dist/mocha.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mocha
+ Mocha
+
+
\ No newline at end of file
diff --git a/dist/modernizr.svg b/dist/modernizr.svg
new file mode 100644
index 0000000..6e05af4
--- /dev/null
+++ b/dist/modernizr.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Modernizr
+ Modernizr
+
+
\ No newline at end of file
diff --git a/dist/monsoon.svg b/dist/monsoon.svg
new file mode 100644
index 0000000..477e9f7
--- /dev/null
+++ b/dist/monsoon.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Monsoon
+ Monsoon
+
+
\ No newline at end of file
diff --git a/dist/nasa.svg b/dist/nasa.svg
new file mode 100644
index 0000000..81c821f
--- /dev/null
+++ b/dist/nasa.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ NASA
+ NASA
+
+
\ No newline at end of file
diff --git a/dist/node.svg b/dist/node.svg
new file mode 100644
index 0000000..6000932
--- /dev/null
+++ b/dist/node.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Node
+ Node
+
+
\ No newline at end of file
diff --git a/dist/npm.svg b/dist/npm.svg
new file mode 100644
index 0000000..0622172
--- /dev/null
+++ b/dist/npm.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ npm
+ npm
+
+
\ No newline at end of file
diff --git a/dist/osu.svg b/dist/osu.svg
new file mode 100644
index 0000000..baa0dbb
--- /dev/null
+++ b/dist/osu.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OSU!
+ OSU!
+
+
\ No newline at end of file
diff --git a/dist/parcel.svg b/dist/parcel.svg
new file mode 100644
index 0000000..52fdc98
--- /dev/null
+++ b/dist/parcel.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Parcel
+ Parcel
+
+
\ No newline at end of file
diff --git a/dist/patreon.svg b/dist/patreon.svg
new file mode 100644
index 0000000..f6479c8
--- /dev/null
+++ b/dist/patreon.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Patreon
+ Patreon
+
+
\ No newline at end of file
diff --git a/dist/paypal.svg b/dist/paypal.svg
new file mode 100644
index 0000000..eef6952
--- /dev/null
+++ b/dist/paypal.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Paypal
+ Paypal
+
+
\ No newline at end of file
diff --git a/dist/photoshop.svg b/dist/photoshop.svg
new file mode 100644
index 0000000..a3636dd
--- /dev/null
+++ b/dist/photoshop.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Photoshop
+ Photoshop
+
+
\ No newline at end of file
diff --git a/dist/pinterest.svg b/dist/pinterest.svg
new file mode 100644
index 0000000..e219cc7
--- /dev/null
+++ b/dist/pinterest.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Pinterest
+ Pinterest
+
+
\ No newline at end of file
diff --git a/dist/porsche.svg b/dist/porsche.svg
new file mode 100644
index 0000000..2df6cb5
--- /dev/null
+++ b/dist/porsche.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Porsche
+ Porsche
+
+
\ No newline at end of file
diff --git a/dist/postcss.svg b/dist/postcss.svg
new file mode 100644
index 0000000..ec40df0
--- /dev/null
+++ b/dist/postcss.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ PostCSS
+ PostCSS
+
+
\ No newline at end of file
diff --git a/dist/preact.svg b/dist/preact.svg
new file mode 100644
index 0000000..b3a9a10
--- /dev/null
+++ b/dist/preact.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Preact
+ Preact
+
+
\ No newline at end of file
diff --git a/dist/premiere.svg b/dist/premiere.svg
new file mode 100644
index 0000000..e610740
--- /dev/null
+++ b/dist/premiere.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Premiere
+ Premiere
+
+
\ No newline at end of file
diff --git a/dist/python.svg b/dist/python.svg
new file mode 100644
index 0000000..55835fb
--- /dev/null
+++ b/dist/python.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Python
+ Python
+
+
\ No newline at end of file
diff --git a/dist/qunit.svg b/dist/qunit.svg
new file mode 100644
index 0000000..f342a4f
--- /dev/null
+++ b/dist/qunit.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ QUnit
+ QUnit
+
+
\ No newline at end of file
diff --git a/dist/react-router.svg b/dist/react-router.svg
new file mode 100644
index 0000000..f761d32
--- /dev/null
+++ b/dist/react-router.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ React Router
+ React Router
+
+
\ No newline at end of file
diff --git a/dist/react.svg b/dist/react.svg
new file mode 100644
index 0000000..db48a7d
--- /dev/null
+++ b/dist/react.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ React
+ React
+
+
\ No newline at end of file
diff --git a/dist/reactivex.svg b/dist/reactivex.svg
new file mode 100644
index 0000000..0255253
--- /dev/null
+++ b/dist/reactivex.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ReactiveX
+ ReactiveX
+
+
\ No newline at end of file
diff --git a/dist/real_madrid.svg b/dist/real_madrid.svg
new file mode 100644
index 0000000..ea00d7f
--- /dev/null
+++ b/dist/real_madrid.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Real Madrid
+ Real Madrid
+
+
\ No newline at end of file
diff --git a/dist/reddit.svg b/dist/reddit.svg
new file mode 100644
index 0000000..0a8abf7
--- /dev/null
+++ b/dist/reddit.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Reddit
+ Reddit
+
+
\ No newline at end of file
diff --git a/dist/redux.svg b/dist/redux.svg
new file mode 100644
index 0000000..9806aab
--- /dev/null
+++ b/dist/redux.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Redux
+ Redux
+
+
\ No newline at end of file
diff --git a/dist/rollup.svg b/dist/rollup.svg
new file mode 100644
index 0000000..1e09287
--- /dev/null
+++ b/dist/rollup.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Rollup
+ Rollup
+
+
\ No newline at end of file
diff --git a/dist/rome.svg b/dist/rome.svg
new file mode 100644
index 0000000..f5095d4
--- /dev/null
+++ b/dist/rome.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Rome
+ Rome
+
+
\ No newline at end of file
diff --git a/dist/rss.svg b/dist/rss.svg
new file mode 100644
index 0000000..f26e4be
--- /dev/null
+++ b/dist/rss.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ RSS
+ RSS
+
+
\ No newline at end of file
diff --git a/dist/serverfault.svg b/dist/serverfault.svg
new file mode 100644
index 0000000..1612411
--- /dev/null
+++ b/dist/serverfault.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Server Fault
+ Server Fault
+
+
\ No newline at end of file
diff --git a/dist/sina_weibo.svg b/dist/sina_weibo.svg
new file mode 100644
index 0000000..db7a0f1
--- /dev/null
+++ b/dist/sina_weibo.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Sina
+ Sina
+
+
\ No newline at end of file
diff --git a/dist/skype.svg b/dist/skype.svg
new file mode 100644
index 0000000..20ac80c
--- /dev/null
+++ b/dist/skype.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Skype
+ Skype
+
+
\ No newline at end of file
diff --git a/dist/slack.svg b/dist/slack.svg
new file mode 100644
index 0000000..88075c3
--- /dev/null
+++ b/dist/slack.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Slack
+ Slack
+
+
\ No newline at end of file
diff --git a/dist/snapchat.svg b/dist/snapchat.svg
new file mode 100644
index 0000000..9b696a8
--- /dev/null
+++ b/dist/snapchat.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Snapchat
+ Snapchat
+
+
\ No newline at end of file
diff --git a/dist/soundcloud.svg b/dist/soundcloud.svg
new file mode 100644
index 0000000..a991939
--- /dev/null
+++ b/dist/soundcloud.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SoundCloud
+ SoundCloud
+
+
\ No newline at end of file
diff --git a/dist/soundtooth.svg b/dist/soundtooth.svg
new file mode 100644
index 0000000..8acd88c
--- /dev/null
+++ b/dist/soundtooth.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Soundtooth
+ Soundtooth
+
+
\ No newline at end of file
diff --git a/dist/spotify.svg b/dist/spotify.svg
new file mode 100644
index 0000000..538f963
--- /dev/null
+++ b/dist/spotify.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Spotify
+ Spotify
+
+
\ No newline at end of file
diff --git a/dist/stackexchange.svg b/dist/stackexchange.svg
new file mode 100644
index 0000000..e411888
--- /dev/null
+++ b/dist/stackexchange.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Stack Exchange
+ Stack Exchange
+
+
\ No newline at end of file
diff --git a/dist/stackoverflow.svg b/dist/stackoverflow.svg
new file mode 100644
index 0000000..da6b2b3
--- /dev/null
+++ b/dist/stackoverflow.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Stack Overflow
+ Stack Overflow
+
+
\ No newline at end of file
diff --git a/dist/steam.svg b/dist/steam.svg
new file mode 100644
index 0000000..8b0671f
--- /dev/null
+++ b/dist/steam.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Steam
+ Steam
+
+
\ No newline at end of file
diff --git a/dist/superuser.svg b/dist/superuser.svg
new file mode 100644
index 0000000..95ee2d3
--- /dev/null
+++ b/dist/superuser.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Super User
+ Super User
+
+
\ No newline at end of file
diff --git a/dist/svelte.svg b/dist/svelte.svg
new file mode 100644
index 0000000..bb0599d
--- /dev/null
+++ b/dist/svelte.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Svelte
+ Svelte
+
+
\ No newline at end of file
diff --git a/dist/tailwindcss.svg b/dist/tailwindcss.svg
new file mode 100644
index 0000000..0fb1869
--- /dev/null
+++ b/dist/tailwindcss.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TailwindCSS
+ TailwindCSS
+
+
\ No newline at end of file
diff --git a/dist/telegram.svg b/dist/telegram.svg
new file mode 100644
index 0000000..da8b56b
--- /dev/null
+++ b/dist/telegram.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Telegram
+ Telegram
+
+
\ No newline at end of file
diff --git a/dist/tensorflow.svg b/dist/tensorflow.svg
new file mode 100644
index 0000000..c419c21
--- /dev/null
+++ b/dist/tensorflow.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Tensorflow
+ Tensorflow
+
+
\ No newline at end of file
diff --git a/dist/terser.svg b/dist/terser.svg
new file mode 100644
index 0000000..445590a
--- /dev/null
+++ b/dist/terser.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Terser
+ Terser
+
+
\ No newline at end of file
diff --git a/dist/tesla.svg b/dist/tesla.svg
new file mode 100644
index 0000000..376ecc2
--- /dev/null
+++ b/dist/tesla.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Tesla
+ Tesla
+
+
\ No newline at end of file
diff --git a/dist/toyota.svg b/dist/toyota.svg
new file mode 100644
index 0000000..284c2c2
--- /dev/null
+++ b/dist/toyota.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Toyota
+ Toyota
+
+
\ No newline at end of file
diff --git a/dist/twitter.svg b/dist/twitter.svg
new file mode 100644
index 0000000..11fc4bf
--- /dev/null
+++ b/dist/twitter.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Twitter
+ Twitter
+
+
\ No newline at end of file
diff --git a/dist/typescript.svg b/dist/typescript.svg
new file mode 100644
index 0000000..51475aa
--- /dev/null
+++ b/dist/typescript.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TypeScript
+ TypeScript
+
+
\ No newline at end of file
diff --git a/dist/visual_studio.svg b/dist/visual_studio.svg
new file mode 100644
index 0000000..074a0de
--- /dev/null
+++ b/dist/visual_studio.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Visual Studio
+ Visual Studio
+
+
\ No newline at end of file
diff --git a/dist/visual_studio_code.svg b/dist/visual_studio_code.svg
new file mode 100644
index 0000000..66971bb
--- /dev/null
+++ b/dist/visual_studio_code.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Visual Studio Code
+ Visual Studio Code
+
+
\ No newline at end of file
diff --git a/dist/vitejs.svg b/dist/vitejs.svg
new file mode 100644
index 0000000..ddacdc3
--- /dev/null
+++ b/dist/vitejs.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Vite
+ Vite
+
+
\ No newline at end of file
diff --git a/dist/vue.svg b/dist/vue.svg
new file mode 100644
index 0000000..4b758f8
--- /dev/null
+++ b/dist/vue.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Vue
+ Vue
+
+
\ No newline at end of file
diff --git a/dist/vuepress.svg b/dist/vuepress.svg
new file mode 100644
index 0000000..6c64984
--- /dev/null
+++ b/dist/vuepress.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ VuePress
+ VuePress
+
+
\ No newline at end of file
diff --git a/dist/webpack.svg b/dist/webpack.svg
new file mode 100644
index 0000000..e215be9
--- /dev/null
+++ b/dist/webpack.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Webpack
+ Webpack
+
+
\ No newline at end of file
diff --git a/dist/wechat.svg b/dist/wechat.svg
new file mode 100644
index 0000000..ee719ba
--- /dev/null
+++ b/dist/wechat.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WeChat
+ WeChat
+
+
\ No newline at end of file
diff --git a/dist/whatsapp.svg b/dist/whatsapp.svg
new file mode 100644
index 0000000..a391a56
--- /dev/null
+++ b/dist/whatsapp.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ WhatsApp
+ WhatsApp
+
+
\ No newline at end of file
diff --git a/dist/xitu.svg b/dist/xitu.svg
new file mode 100644
index 0000000..a17e16d
--- /dev/null
+++ b/dist/xitu.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ xitu
+ xitu
+
+
\ No newline at end of file
diff --git a/dist/youtube.svg b/dist/youtube.svg
new file mode 100644
index 0000000..cec75d0
--- /dev/null
+++ b/dist/youtube.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Youtube
+ Youtube
+
+
\ No newline at end of file
diff --git a/dist/zeplin.svg b/dist/zeplin.svg
new file mode 100644
index 0000000..bfa9024
--- /dev/null
+++ b/dist/zeplin.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Zeplin
+ Zeplin
+
+
\ No newline at end of file
diff --git a/icon/ac_milan.svg b/icon/ac_milan.svg
new file mode 100644
index 0000000..a6c2d7c
--- /dev/null
+++ b/icon/ac_milan.svg
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/after_effects.svg b/icon/after_effects.svg
new file mode 100644
index 0000000..b69c3e2
--- /dev/null
+++ b/icon/after_effects.svg
@@ -0,0 +1 @@
+
diff --git a/icon/airbnb.svg b/icon/airbnb.svg
new file mode 100644
index 0000000..4418a79
--- /dev/null
+++ b/icon/airbnb.svg
@@ -0,0 +1,30 @@
+
+
+
+
+
+
diff --git a/icon/aleen42.svg b/icon/aleen42.svg
new file mode 100644
index 0000000..7c931ff
--- /dev/null
+++ b/icon/aleen42.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
diff --git a/icon/alipay.svg b/icon/alipay.svg
new file mode 100644
index 0000000..2bacab0
--- /dev/null
+++ b/icon/alipay.svg
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/amazon.svg b/icon/amazon.svg
new file mode 100644
index 0000000..ac94e17
--- /dev/null
+++ b/icon/amazon.svg
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
diff --git a/icon/angular.svg b/icon/angular.svg
new file mode 100644
index 0000000..6263ec8
--- /dev/null
+++ b/icon/angular.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/apiary.svg b/icon/apiary.svg
new file mode 100644
index 0000000..ff212b0
--- /dev/null
+++ b/icon/apiary.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icon/apple_pay.svg b/icon/apple_pay.svg
new file mode 100644
index 0000000..2523cd9
--- /dev/null
+++ b/icon/apple_pay.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/arsenal.svg b/icon/arsenal.svg
new file mode 100644
index 0000000..aa24f09
--- /dev/null
+++ b/icon/arsenal.svg
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/aston_martin.svg b/icon/aston_martin.svg
new file mode 100644
index 0000000..0e49fd3
--- /dev/null
+++ b/icon/aston_martin.svg
@@ -0,0 +1,149 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/atom.svg b/icon/atom.svg
new file mode 100644
index 0000000..db45598
--- /dev/null
+++ b/icon/atom.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/audi.svg b/icon/audi.svg
new file mode 100644
index 0000000..a06405e
--- /dev/null
+++ b/icon/audi.svg
@@ -0,0 +1,7318 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/barcelona.svg b/icon/barcelona.svg
new file mode 100644
index 0000000..236dbd5
--- /dev/null
+++ b/icon/barcelona.svg
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/bayern_munchen.svg b/icon/bayern_munchen.svg
new file mode 100644
index 0000000..6d143e0
--- /dev/null
+++ b/icon/bayern_munchen.svg
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/behance.svg b/icon/behance.svg
new file mode 100644
index 0000000..bb2be65
--- /dev/null
+++ b/icon/behance.svg
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/bitcoin.svg b/icon/bitcoin.svg
new file mode 100644
index 0000000..82e473f
--- /dev/null
+++ b/icon/bitcoin.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
diff --git a/icon/bmw.svg b/icon/bmw.svg
new file mode 100644
index 0000000..db4bc2a
--- /dev/null
+++ b/icon/bmw.svg
@@ -0,0 +1,327 @@
+
+
+
+
+
+]>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/bower.svg b/icon/bower.svg
new file mode 100644
index 0000000..453c7bf
--- /dev/null
+++ b/icon/bower.svg
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/bugatti.svg b/icon/bugatti.svg
new file mode 100644
index 0000000..042208d
--- /dev/null
+++ b/icon/bugatti.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
diff --git a/icon/buymeacoffee.svg b/icon/buymeacoffee.svg
new file mode 100644
index 0000000..feb34c2
--- /dev/null
+++ b/icon/buymeacoffee.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/chelsea.svg b/icon/chelsea.svg
new file mode 100644
index 0000000..b405d2e
--- /dev/null
+++ b/icon/chelsea.svg
@@ -0,0 +1,406 @@
+
+
+
+image/svg+xml
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/chrome_extensions.svg b/icon/chrome_extensions.svg
new file mode 100644
index 0000000..b2e2791
--- /dev/null
+++ b/icon/chrome_extensions.svg
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/cli.svg b/icon/cli.svg
new file mode 100644
index 0000000..3e21fd2
--- /dev/null
+++ b/icon/cli.svg
@@ -0,0 +1,16 @@
+
+
+
+
+
+
diff --git a/icon/codepen.svg b/icon/codepen.svg
new file mode 100644
index 0000000..3033933
--- /dev/null
+++ b/icon/codepen.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
diff --git a/icon/codrops.svg b/icon/codrops.svg
new file mode 100644
index 0000000..4e9fce3
--- /dev/null
+++ b/icon/codrops.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/coremail.svg b/icon/coremail.svg
new file mode 100644
index 0000000..12b2af9
--- /dev/null
+++ b/icon/coremail.svg
@@ -0,0 +1,178 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/cssnano.svg b/icon/cssnano.svg
new file mode 100644
index 0000000..597a945
--- /dev/null
+++ b/icon/cssnano.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
diff --git a/icon/discord.svg b/icon/discord.svg
new file mode 100644
index 0000000..079b54b
--- /dev/null
+++ b/icon/discord.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/docker.svg b/icon/docker.svg
new file mode 100644
index 0000000..94a4ee8
--- /dev/null
+++ b/icon/docker.svg
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/dreamweaver.svg b/icon/dreamweaver.svg
new file mode 100644
index 0000000..b894782
--- /dev/null
+++ b/icon/dreamweaver.svg
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/eclipse.svg b/icon/eclipse.svg
new file mode 100644
index 0000000..17abd4d
--- /dev/null
+++ b/icon/eclipse.svg
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/elasticsearch.svg b/icon/elasticsearch.svg
new file mode 100644
index 0000000..62296e9
--- /dev/null
+++ b/icon/elasticsearch.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/erlang.svg b/icon/erlang.svg
new file mode 100644
index 0000000..8e1d57a
--- /dev/null
+++ b/icon/erlang.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icon/esbuild.svg b/icon/esbuild.svg
new file mode 100644
index 0000000..2f64936
--- /dev/null
+++ b/icon/esbuild.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/eslint.svg b/icon/eslint.svg
new file mode 100644
index 0000000..6a69d07
--- /dev/null
+++ b/icon/eslint.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
diff --git a/icon/facebook.svg b/icon/facebook.svg
new file mode 100644
index 0000000..c09997a
--- /dev/null
+++ b/icon/facebook.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
diff --git a/icon/ferrari.svg b/icon/ferrari.svg
new file mode 100644
index 0000000..874ff43
--- /dev/null
+++ b/icon/ferrari.svg
@@ -0,0 +1,296 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/flash.svg b/icon/flash.svg
new file mode 100644
index 0000000..d3aa0be
--- /dev/null
+++ b/icon/flash.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/gitbook.png b/icon/gitbook.png
new file mode 100644
index 0000000..ad8bc47
Binary files /dev/null and b/icon/gitbook.png differ
diff --git a/icon/gitbook.svg b/icon/gitbook.svg
new file mode 100644
index 0000000..1c16f04
--- /dev/null
+++ b/icon/gitbook.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
diff --git a/icon/github.svg b/icon/github.svg
new file mode 100644
index 0000000..d717208
--- /dev/null
+++ b/icon/github.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
diff --git a/icon/gitlab.svg b/icon/gitlab.svg
new file mode 100644
index 0000000..e8d408f
--- /dev/null
+++ b/icon/gitlab.svg
@@ -0,0 +1,53 @@
+
+
+
+ logo-square
+ Created with Sketch.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/gitter.svg b/icon/gitter.svg
new file mode 100644
index 0000000..c11f22a
--- /dev/null
+++ b/icon/gitter.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/golang.svg b/icon/golang.svg
new file mode 100644
index 0000000..ec964ff
--- /dev/null
+++ b/icon/golang.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/google_plus.svg b/icon/google_plus.svg
new file mode 100644
index 0000000..c866fa6
--- /dev/null
+++ b/icon/google_plus.svg
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/grafana.svg b/icon/grafana.svg
new file mode 100644
index 0000000..d2681af
--- /dev/null
+++ b/icon/grafana.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/grunt.svg b/icon/grunt.svg
new file mode 100644
index 0000000..b174815
--- /dev/null
+++ b/icon/grunt.svg
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/gulp.svg b/icon/gulp.svg
new file mode 100644
index 0000000..9a4b5ec
--- /dev/null
+++ b/icon/gulp.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/hacker.svg b/icon/hacker.svg
new file mode 100644
index 0000000..7e1150e
--- /dev/null
+++ b/icon/hacker.svg
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
diff --git a/icon/idea.svg b/icon/idea.svg
new file mode 100644
index 0000000..ba156ae
--- /dev/null
+++ b/icon/idea.svg
@@ -0,0 +1,65 @@
+
+
+
+ icon_IntelliJIDEA
+ Created with Sketch.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/illustrator.svg b/icon/illustrator.svg
new file mode 100644
index 0000000..994b378
--- /dev/null
+++ b/icon/illustrator.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icon/ingress.svg b/icon/ingress.svg
new file mode 100644
index 0000000..5c0209c
--- /dev/null
+++ b/icon/ingress.svg
@@ -0,0 +1,619 @@
+
+
+
+
+
+
+
+
+ image/svg+xml
+
+
+ Ingress
+
+
+
+
+ Cory Hughart
+
+
+ 2012-11-29T13:57:06-05:00
+ 2012-11-29T13:57:06-05:00
+ 2012-11-29T13:57:05-05:00
+ Adobe Illustrator CS5.1
+
+
+
+ 224
+ 256
+ JPEG
+ /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAADgAwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7
FXYq7FXYq7FWL+aPzD0LQQ8Jf63fjpaxEbH/AIsfcJ+v2zY6Ts3Jm3+mPef0On7Q7bw6ba+KfcP0
no8j8yeeNe1+Qi5m9G0BrHaQ1WMU6E92PufopnTaXQYsI2FnvLw2v7Xz6k+o1H+aOX7U58r/AJq6
xpfC31IHULIbBmP79B7OftfJvvzE1fZEMm8PTL7HYdn+0WXDUcnrh/svn1+Pzes6H5k0bXLf19Ou
FloB6kR+GRK/zIdx8+mc3qNLkwmpinttJrsWojeOV+XUe8JlmO5bsVdirsVdirsVdirsVdirsVdi
rsVdirsVdirsVdirsVdirsVdirsVSvXvM2jaFb+tqNwIyQTHCPilen8qDf6emZGn0uTMagP1OHrN
fh00byGvLqfg8m80fmnrOq87fTq6fYmo+A/vnH+U4+z8l+850uk7Ix495+qX2PEdoe0WXNccfoh9
p+P6mEEkmp3JzbvPJrp/l2+u15t+4iI2ZxufkuY2TUxjtzLmYdDOe/IIW/0u8sWpOnwH7Mi7qfpy
zHmjPk1ZtPPGdwp2d7d2VwlzaTPBPGapJGSrD6Rkp44zFSFhhiyyxyEokiQ7npflf84PsWvmFPYX
8S/8nIx+tfuzQavsXri+X6j+t67s/wBp/wCHOP8AOH6R+r5PTLO9tL23S5tJkngcVSWNgyn6Rmgn
CUDUhReuxZY5I8USDE9ytkGx2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KuxV2KqF7fWdjbPc
3kyW9vGKvJIQoH398njxymaiLLXlzQxx4pkRiO95n5o/OBjztfL6cRuDfSjf5xxn9bfdnQaTsXrl
+X6y8h2h7T844B/nH9A/X8nml3eXV5cPcXUzzzyGryyMWY/Sc30IRiKiKDyOTLLJLikSSe9WsNKv
b5qQp8FaNK2yj6f6ZHJmjDm2YdPPJyGzKNN8vWVnR3HrTj9thsP9Vc12XUyl5B3GDRQhudymuY7m
rXRHQo6hkbZlIqCMINIIBFFINS8qxvWSyPpt1MLfZPyPbMzFqyNpOsz9nA7w28mOXFtPbyGOdDG4
7H+GZ8ZCQsOqnjlE0RSO0PzJrOh3HradcNFU1kiPxRv/AKyHY/rynUaXHmFTFuTo9fl08rxmvLof
g9Z8r/mro+qcLfUqadenYMx/cOfZz9n5N95zmtX2Rkx7w9Ufte27P9osWb05PRP/AGJ+PT4/NnAI
IqNwc1D0TsVdirsVdirsVdirsVdirsVdirsVdirsVdiriQASTQDck9KYqSwXzT+a2kaZzttLC6he
ioLg/uEPuw+38l+/NxpOx55N5+mP2vN9o+0eLD6cfrn/ALEfr+HzeT655i1jW7n19RuGmI/u4+ka
DwVBsP150mn02PEKgKeK1euy6iXFkN/cPcEFb2txcyCKBDI57D+Phl0piIsuPDHKZqItkmm+Voo6
SXp9R/8AfS/ZHzPfMDLqydou2wdnAbz38k+RFRQqAKo2CgUAGYRNuyAA2CbaT5d1HUSHRfSt+877
D/Yj9rMfNqo4/MubptDky7jaPezPS/Lmm6etVT1ZiKNNIAT9A6DNTm1U5+Qeg0+hx4hsLPeUDq/k
6zuay2RFtN14f7rP0D7P0fdl2HXSjtLcONqey4T3h6T9jD77Tb2xl9K6iMbfsnqrfIjY5tMeWMxY
Loc2CeM1IUgLqztrqP054w69q9R8j2y6EzE2HGyYozFSFsZ1LyvPDWSzJmj/AN9n7Y/rmwxasHaW
zqM/Z8o7w3H2pGyspKsCGGxB2IOZbriKZN5X/MHXtBKxI/1uwGxtJiSAP+K23Kfq9swNX2bjzb8p
d4/T3u37P7az6bYHih/NP6O77vJ675Z88aD5gQLbS+jeU+Kzlosm3Xj2YfLOY1XZ+TDzFx7w9zoO
18OpFRNS/mnn+1kGYTtHYq7FXYq7FXYq7FXYq7FXYq7FXYqx3zN560Hy+rJcS+ve0+GzioX6bcz0
QfP6AcztJ2fkzbgVHvLqu0O2MGm2kbn/ADRz+Pc8i8z+f9e18tFJJ9WsT0tISQpH+W3V/p29s6fS
dnY8O43l3l4btDtnPqdieGH80fp72NqrMwVQSx2AG5OZxLqQLT3TfK08tJLwmKPr6Y+2fn4ZiZdW
BtHd2WDs8neewZLbWltax+nBGI0706n5nvmvnMyNl22PHGAqIpH2GmXt/L6drEXP7TdFX5nplOTL
GAslysOnnkNRFsx0jyfZ2vGW8pczjfiR+7U/L9r6fuzV5tbKW0dg77TdlwhvP1H7GQgACg2A6DMF
2jsVdiqncW1vcxGKeNZI26qwqMlGRibDCeOMxUhYYnq/kp15S6a3Jev1dzv/ALFj1+nNlh1/Sfzd
JqeySN8fyYtLDLDI0cqGORdmRhQj6DmxEgRYdNKJiaOxS/UNHsr4VlTjL2lXZvp8fpy/HnlDlycX
PpYZOfPvYtqWg3tlV6erAP8Adq9h/lDtmwxaiM/Iunz6OePfmEvR3Rw6MVdTVWBoQR3BGXkW4oJB
sM+8r/m1qdhwttYU31qKATignUe5Oz/Tv75ptX2NCe+P0n7P2PTdn+0uTHUcvrj3/wAX7fxu9W0f
XdJ1i2Fzp1ylxH+0BsynwdT8Sn55zefTzxGpintNLrMWePFjlxD8c0dlLkuxV2KuxV2KuxV2KuxV
L9Z1/SdGtvrGo3KwJ+wp3dz4Ko3OX4NPPKagLcXVazFp48WSVfjo8p80/mzqmoc7bSA1haHYzVHr
uPmNk/2O/vnR6TseEN8nql9n7Xi+0PaTJl9OL0R7/wCL9nw+bAmZnYsxLMxqzHcknuc3IFPNE3uU
y03QL29o5HowH/djDqP8kd8oy6iMPMuVg0c8m/IMp0/SLKxX90lZO8rbt/Z9Ga7JmlPm7nDpoY+X
PvTCGGaaRYoUaSRvsooqT9AymUgBZcmMDI0BZZTpHkljSXUmoOot0O/+yYfw+/Ndm1/SHzd1puye
uT5Mrt7eC3iEUEaxxr0VRQZrZSMjZd1CEYioig3NPDBE0sziONd2djQDBGJJoJnMRFk0GK6v51Ar
Fpq1PQ3Dj/iKn+P3ZssOg6z+TpdT2t0x/NkmmSPLptpJIeUjwxs7HqSUBJzAygCZA7y7bTyJxxJ5
mI+5LfNWpXen21vPbNxb1aMCKhhxOxGX6PFGZIPc4naOeWKIlHvWaR5usbykdxS2uDt8R+Bj7N2+
nDm0Uo7jcI03acMm0vTL7E+zDdkg9R0iw1GPhcxhmH2ZBs6/I5bizSgdi4+fTQyipBhur+Ur+y5S
29bm3G9VHxqPdf4jNrh1kZ7HYuh1PZs8e8fVH7UizMdak+peW7S5rJBSCY77D4CfcdvozKxaqUdj
uHAz6CM947Fi97p13ZPwnjKg/Zcbqfkc2GPLGY2dPlwSxmpB2nanf6bdLdWM729wvSRDQ08D2I9j
jlxRyDhkLC4NRPFLigTGT1Dyt+b9vNwttfQQydBexA8D/roN1+Y29hnPavsUjfFv5PY9ne08ZVHO
KP8AOHL4jo9Ht7i3uYUnt5FmhkFUkQhlYeIIzRSiYmiKL1kJxmBKJsFUyLJ2KuxV2Kqdzc29rA89
zKkMEYq8sjBVA9ydslGBkaAssMmSMBxSNAd7zbzR+b8MfO28voJX6G+lB4D/AIxodz82+45vtJ2K
Tvl28v1vJ9oe04HpwC/6R/QP1/J5hf6jfahctc3s73E7/akkNT8h4D2GdBjxRgKiKDx+bPPLLimT
KXmoKAWAJCgmnI1oPfbJlqDL9K8v2EKJO7C6kIDK/VB/qjv9OazNqZHbk73TaKERxH1H7E5zFc9P
tI8o315SW5rbW53+IfGw9l7fTmFm1sY7Dcuy03Zk8m8vTH7WZadpNjp8fC2iCk/akO7t82zV5c0p
ncu/waaGIVEIvKm9INX832NpyitqXNwNtj+7U+7d/ozNw6KUtzsHWantOENo+qX2MO1DVb7UJOd1
KXp9lBsq/Jc2mPDGAoB0GfUTym5FCZa0vUNH/wCOTZf8w8X/ABAZz2f65e8vY6X+6j/VH3JL57/4
51v/AMZv+NTmV2f9R9zr+2P7se9hObd55N9J8zajp9I+Xr2w/wB0ueg/yW6j9WYubSRnvyLnabtD
Ji25x7mZ6Xr2naktIX4zU+KF9nHy8fozVZtPLHz5PQafWY8vI79yY5Q5SUat5Y0/UOUgHoXJ39VB
1P8AlL3zKw6uUNuYcDU9n48u/KXewvVNC1DTW/fpyir8Mybof6fTm1w6iOTlzdBqNHkxfUNu9LJY
o5UMcih0bqrCoOZAJG4cOUQRRY9qXlUGsli1D19Fj/xFv65m4tZ0k6vP2d1h8mOzQzQyGOVCjjqr
ChzPjIEWHVygYmjsU18v+bNc0Gbnp9wRETWS2f4on+a/xFDmNqdHjzD1Dfv6uZou0s2mNwO3d0L1
vyt+Z2iazwt7ojT780HpyN+7c9PgkNPuND885nV9lZMW8fVH8dHuOzvaDDn9MvRPz5H3FmOat3zs
VYZ5o/NDRNI529kRqF+NuEZ/dIf8uQV6eC/hm10nZOTLvL0x+10HaHtBhwemHrn5ch7z+p5L5g81
a3r0/qahcFkU1jt0+GJP9Vf4nfOm02kx4RUR8erxGt7Rzak3kO3d0HwSjMlwXYq7FWX+RdD8zahM
PqcVNNJ/ezzVWIePA0JLey/Tms7Q1GGA9R9flzd52Ro9RlPoH7vqTy+Hn7vi9f0nyzp+nUenr3I/
3c46H/JHb9ecvm1Up7cg91ptBjxb85d6bZjOcl2q6/p+mqRK/OftAm7fT4fTl+HTSycuTianW48X
M79zC9W8y6hqNULejbH/AHSh6j/KPfNth0sYeZef1OvyZduUe5KcyXCdirsVeoaP/wAcmy/5h4v+
IDOez/XL3l7HS/3Uf6o+5JfPf/HOt/8AjN/xqcyuz/qPudf2x/dj3sJzbvPOxVtWZWDKSrDcEbEH
AQoNcmSaR5zuYOMV+DPF09Uf3g+fZswc2hB3jsXbabtWUdp7jv6svs760vYRLbSrInenUexHUZq5
45QNEO9xZo5BcTas6K6lXAZWFGUioIPiMiDTYQDsWNav5Mt5uUtgRBL1MR/uz8v5cz8OuI2lu6nU
9lRlvDY93RiN5Y3dnMYrmIxOOgPQ+4PQ5s4ZIyFguiy4ZYzUhRQF5YWl5HwuIw47N0YfI5dDJKJ2
cbLhjMVIMY1LyzdW9ZLas8X8v7Y+jv8ARmwxasS2OxdRn0Eo7x3H2pKQQaHrmW69lvlb8ydc0ThB
K317T129CUnko/4rfcj5GozWavsvHl3Hpl3/AK3d9ndvZtPUT64dx/QXrnlzzjoevxA2U4FwBWS0
k+GVfo/aHutc5nVaLJhPqG3f0e40PamHUj0H1dx5/j3PnbO5fLHYq7FUdpGiapq90LbTrZ7iX9ri
PhUHuzH4VHzynNnhiFzNByNNpMmeXDjjxH8c3qnlf8pNOs+FzrTC9uRuLZa+gp9+hf6dvbOc1fbM
pbY/SO/r+x7Ts/2ax46lm9cu7+H9r0GONI0WONQiIAqoooAB0AAzSkk7l6cAAUOSC1fXNK0e1Nzq
NylvH+yG3Zj4Ko+Jj8stw6eeU1AW4+q1eLBHiyS4R+OTB5vzMTVi8GmcrVRXd6CVl8RQkD6N828e
yvD3nv8Ac87Lt8Z7jj9P3pUzMxLMSWO5J3JzJcIm3Yq7FXYq7FXqGj/8cmy/5h4v+IDOez/XL3l7
HS/3Uf6o+5JfPf8Axzrf/jN/xqcyuz/qPudf2x/dj3sJzbvPOxV2KuxVVtbu5tJhNbSNFIP2lP4H
xGRnASFEM8eWUDcTRZdpHnWGTjFqKiJ+gnX7B/1h1GazNoSN4bu803awO2TY97Jo5I5EDxsHRhVW
U1BHsRmvII2LuIyBFhTu7O1u4TDcxrLGezdvcHqMlCZibBYZMUZipCwxHV/Jc8XKXT2M0fUwt9sf
I9GzZ4dcDtLZ0ep7KI3x7ju6sZdHjco6lHU0ZWFCD7g5ng3ydQQQaKW6jollfAsy+nN2lTr9I75k
YtRKHucTPpIZPI97EtS02awnEUpDchyRl7itM2WLKJiw6TPgOKVFkf5Vf8praf6k3/Jpswe1/wDF
z8Pvdr7Of45H3S+5iObN0bsVZT+Xnlay8xaxLb3sjrb28XrMkdAX+ILx5HoN813aWrlgxgx5k07n
sTs6GqymMyeGIvbq9x03S9O0y1W1sLdLaBeiIKVPix6sfc5yGXNLIeKRsvouDT48MeGAEYq89xBb
wvPPIsUMYq8jkKqjxJOwyMYmRoblsnOMRcjQDzjzR+b9tDzttAQTy9DeyAiMf6iGhb5nb55vdJ2K
Tvl2Hc8p2h7Txj6cAs/zjy+A6/jm8v1HU9Q1K5a6v7h7idurua7eAHQD2GdDixRxioig8dn1E8su
KZMpIdHdHDoxV1NVYbEHJkW1AkGwyjRvMiTcYL0hJeiy9Fb5+BzX59LW8eTuNLrhL0z596f5hOzd
irsVdirKrLztFb2cFubRmMMaRluYFeKgV6e2a2egMpE3zLusXawhAR4eQA5oLX/MiarbRwrAYij8
+RblXYinQeOXabS+GSbtxtbrxmiBVUUizMdc7FXYq7FXYq7FUdpmtahpz1t5P3ZNWhbdD9Hb6Mpy
4Iz5uRp9XkxH0nbu6Mz0jzVp9/xjkP1e5O3pufhJ/wAls1WbRyhuNw9Bpu0ceTY+mSdZiOwQGp6J
p+pJS4jpIBRZl2cfT3+nLsWeWPk42o0mPKPUN+/q83uoRDczQg8hG7ID48TTN9CVgF5LJHhkR3Fi
Hm7/AHth/wCMX/GxzaaL6T73R9p/WPcmH5Vf8praf6k3/Jpso7X/AMXPw+9yvZz/AByPul9zEc2b
o3Yq9D/Jb/jvX3/ML/zMXNH27/dx/rfoep9lP7+f9T9Iew5y73b5986+Y9Y1TWbuC8uGa2tp5I4L
dfhjUIxUHiOrU7nfO20Glx48YMRuQN3zDtbXZc2WUZn0xkQB02LHcznVOxV2KuxVO9H8xSW3GC6J
kt+iv1ZB/EZiZ9MJbjm7DS64w9Mt4/cyuKWOWNZI2DowqrDcHNaQQaLuoyBFjkvwMnYq7FXYq7FX
Yq7FXYq7FXYq7FXYqyzyXql9NdPZzSmSBIi6BtyCGUUB60+LNZrsUQOIDe3d9laicpGBNimX5rHe
vLNS/wCOjdf8ZpP+JHOixfSPc8Zn/vJe8sM83f72w/8AGL/jY5ttF9J97oO0/rHuTD8qv+U1tP8A
Um/5NNlHa/8Ai5+H3uV7Of45H3S+5iObN0bsVeh/kt/x3r7/AJhf+Zi5o+3f7uP9b9D1Psp/fz/q
fpD2HOXe7fNfmD/jval/zFT/APJxs73Tf3cf6o+58k1v9/P+vL73aA+krq9sNXiMunM3C4AZlKht
udV3+E746gT4DwGpdE6I4hlj4ouHX9fweyr+VnkllDLaOVIqCJpCCD/ss5X+V9R3/YHvR7O6M/wn
/TFv/lVXkr/lkf8A5HS/81Y/yvqO/wCwJ/0OaP8Amn/TF3/KqvJX/LI//I6X/mrH+V9R3/YF/wBD
mj/mn/TF3/KqvJX/ACyP/wAjpf8AmrH+V9R3/YF/0OaP+af9MUXZfl/5YsgVt4JFVtyplkIr40Jy
vJ2lmnzP2Buxdi6fH9IPzKK/whoP++W/4N/65X+dyd7d/JmDu+0u/wAIaD/vlv8Ag3/rj+dyd6/y
Zg7vtLv8IaD/AL5b/g3/AK4/ncnev8mYO77S7/CGg/75b/g3/rj+dyd6/wAmYO77S7/CGg/75b/g
3/rj+dyd6/yZg7vtLv8ACGg/75b/AIN/64/ncnev8mYO77S7/CGg/wC+W/4N/wCuP53J3r/JmDu+
0u/whoP++W/4N/64/ncnev8AJmDu+0u/whoP++W/4N/64/ncnev8mYO77S7/AAhoP++W/wCDf+uP
53J3r/JmDu+0oTVPL/l2wsZbqSFjwHwL6jfEx+yOuWYtTlnIAFp1Gi0+KBkR9pYRm3edZF5F/wCO
tN/zDt/xNMwe0PoHv/W7Xsf+9P8AV/SGc5p3o3lmpf8AHRuv+M0n/EjnRYvpHueMz/3kveWGebv9
7Yf+MX/GxzbaL6T73Qdp/WPcmH5Vf8praf6k3/Jpso7X/wAXPw+9yvZz/HI+6X3MRzZujdir0P8A
Jb/jvX3/ADC/8zFzR9u/3cf636HqfZT+/n/U/SHsOcu92+a/MH/He1L/AJip/wDk42d7pv7uP9Uf
c+Sa3+/n/Xl96X5e4z2j8qPNH6R0k6VcvW809QIyTu8HRf8AgPs/Kmcp2xpOCfGPpl9/7Xv/AGc7
Q8XF4Uj6of7n9nL5M8zTPSuxVZPOkELzOGKIKsERpGp7IgZj9AyUY2aDGcxEWf1/YN2NN+ZvkhGK
tqJVlNGUwXAII7H93mcOytQf4ftj+t1J7f0Y2M/9jL9TX/Kz/I3/AFcv+SFx/wBU8P8AJOo/m/aP
1o/0QaP+f/sZfqV7X8w/J13J6UGohpKV4mKZSflyQVyE+zc8RZj9o/W2Y+29JM1Ge/ul+pF/4s8v
/wDLV/yTk/5pyr8nl7vub/5SwfzvsP6nf4s8v/8ALV/yTk/5px/J5e77l/lLB/O+w/qd/izy/wD8
tX/JOT/mnH8nl7vuX+UsH877D+p3+LPL/wDy1f8AJOT/AJpx/J5e77l/lLB/O+w/qVrbzFpF1KIb
eZpZG6Kscp/41yM9NOIsj7Qzx67FM1E2fcf1JjlDluxV2KsD836v9bvfqsTVgtiQadDJ0J+jpm50
WHhjxHmXmu09Txz4R9MfvSDM11jIvIv/AB1pv+Ydv+JpmD2h9A9/63a9j/3p/q/pDOc070byzUv+
Ojdf8ZpP+JHOixfSPc8Zn/vJe8sM83f72w/8Yv8AjY5ttF9J97oO0/rHuTD8qv8AlNbT/Um/5NNl
Ha/+Ln4fe5Xs5/jkfdL7mI5s3RuxV6H+S3/Hevv+YX/mYuaPt3+7j/W/Q9T7Kf38/wCp+kPYc5d7
t81+YP8Ajval/wAxU/8AycbO90393H+qPufJNb/fz/ry+9L8vcZMfL+tXOi6vbajb7tC3xpWgdDs
6H5jKNTgGWBgerlaLVy0+WOSPT7R1D6MsL62v7KC9tX529wgkjb2YV39/HOFyYzCRieYfVcOaOSA
nHeMhavkG12Ksd8zeRNB19We4i9C9p8N5DQP7cx0cfP7xmdpe0MmHkbj3F1Wv7HwaneQqf8AOHP4
97yLzP5A17QC0skf1mxHS7hBKgf5a9U+nb3zp9J2jjzbDaXcXhu0Oxc+m3I4ofzh+nuY2rMrBlJV
gagjYgjM4h1INMn0fzKsnG3viFfos/QH/W8Pnmvz6Wt4u40uvv0z+bIMwnaNqrMQqgljsANycVAt
kekeTbq44y3xNvCdxGP7wj/jX6cwM2ujHaO5drpuypS3n6R9v7GYWWn2djF6VrEI1706n3JO5zV5
MkpmyXfYsEMYqIpEZBtdiqVeZNWGnaczIaXE1UhHcHu3+xzJ0uHjl5BwtfqfCx7fUeTzkkk1PXN6
8o7FWReRf+OtN/zDt/xNMwe0PoHv/W7Xsf8AvT/V/SGc5p3o3lmpf8dG6/4zSf8AEjnRYvpHueMz
/wB5L3lhnm7/AHth/wCMX/GxzbaL6T73Qdp/WPcmH5Vf8praf6k3/Jpso7X/AMXPw+9yvZz/AByP
ul9zEc2bo3Yq9D/Jb/jvX3/ML/zMXNH27/dx/rfoep9lP7+f9T9Iew5y73b5r8wf8d7Uv+Yqf/k4
2d7pv7uP9Ufc+Sa3+/n/AF5fel+XuM7FXp/5P+aeEj+X7p/hflLYkno3WSMfP7Q+nOe7a0ljxR8f
0F7D2Y7RonBL3x/SP0/N6rnOPaPPNa826z5O136teo1/od1WW0cn99GK/FGrn7XAno3am+bzBo8e
qx3H05Bz7j5/F5bV9pZdBm4Z+vDLePePK+tefSt2YaH5k0bXLf19OuFlp/eRHaRP9ZDuPn0zV6jS
5MJqYp3uj12LURvGb8uo+CZkAggioOxBzHcwhgvmn8qdI1Pnc6WV0+9O5QD9w591H2Pmv3ZuNJ2x
PHtP1R+15vtD2cxZrlj9E/8AYn9Xw+TyfXPLusaJc+hqNu0JP2JOsbjxRxsc6TT6nHlFwNvFavQ5
dPLhyCvuPuLLPIegeZtSVeURj0qnw3U1Rt/xWOrj8PfNb2jqcOPr6+4fp7nddj6LUZeYrH3n9Hf9
3m9U0ry/p2mgGJOc/ed92+jw+jOdzamWTnye002ix4uQ370yzHctKdW8y6fpwKcvWuR0hQ9D/lHt
mTh0sp+QcHU6/Hi25y7lnl+41DUA2o3Z4RNVbaBdlCjqx8T23yWpjGHoj8Sx0U8mX95Ll0CckhQW
Y0A3JPQDMR2BLzbzBqp1LUXlU/uI/ggH+SO/09c32mw+HGuryWt1Pi5L6DkluZDiOxVkXkX/AI60
3/MO3/E0zB7Q+ge/9btex/70/wBX9IZzmnejeWal/wAdG6/4zSf8SOdFi+ke54zP/eS95YZ5u/3t
h/4xf8bHNtovpPvdB2n9Y9yYflV/ymtp/qTf8mmyjtf/ABc/D73K9nP8cj7pfcxHNm6N2KvQ/wAl
v+O9ff8AML/zMXNH27/dx/rfoep9lP7+f9T9Iew5y73b5r8wf8d7Uv8AmKn/AOTjZ3um/u4/1R9z
5Jrf7+f9eX3pfl7jOxVVtLqe0uorq3cxzwOskTjqGU1ByM4CQIPIs8eSUJCUTRG76K8sa9Brui2+
oxUDOOM8Y/YlXZ1+/p7Zw2r05w5DA/gPqnZ+sjqcIyDrz8j1Qvnby0nmDQprVQPrcX72zc9pFH2a
+Dj4T9/bLNBqvByCX8PVp7W0A1OEx/iG8ff+3k8Ctrq+068E1vJJa3cLEclJR1I2IP8AEZ2koRnG
iLBfM8eSeKdxJjIPSvK/5wfYtfMKewv4l/5ORj9a/dmg1fYvXF8v1H9b1vZ/tP8Aw5x/nD9I/V8n
plne2l7bpc2kyTwOKpLGwZT9IzQThKBqQovXYssckeKJBie5u5tbW6iMVzCk8RIJjkUOtRuDRgRg
jMxNg0U5McZipAEeaqAAKDYDIs0JqGrWGnpyuZQrUqsY3dvkuW4sMp8g0Z9TDEPUf1sN1fzffXfK
K2rbW522P7xh7t2+jNph0UY7ncuh1Pac57R9MftS3SNOk1G/jtlqAx5Sv/Kg+0cyM2UQjbh6bAcs
xF6bFFHFEkUahY0AVFHQAbDOfJJNl6+MREUOQY95y1f6vaCyiak1wP3lOoj/AObumZ2hw8UuI8g6
vtTU8MeAc5fcwfNu867FXYqyLyL/AMdab/mHb/iaZg9ofQPf+t2vY/8Aen+r+kM5zTvRvLNS/wCO
jdf8ZpP+JHOixfSPc8Zn/vJe8sM83f72w/8AGL/jY5ttF9J97oO0/rHuTD8qv+U1tP8AUm/5NNlH
a/8Ai5+H3uV7Of45H3S+5iObN0bsVeh/kt/x3r7/AJhf+Zi5o+3f7uP9b9D1Psp/fz/qfpD2HOXe
7fNfmD/jval/zFT/APJxs73Tf3cf6o+58k1v9/P+vL70vy9xnYq7FWbflb5o/ROtfULh6WOoEIST
sk3RG+n7J+jwzU9r6TxMfEPqj9z0Hs92h4ObgkfRP7D0/U9uzkX0R47+bflf6lqS61bJS1vTS5AG
yz06/wCzG/zrnU9javjh4Z5x5e79jwftL2f4eTxoj0z5/wBb9v3vPc3by6Z6F5k1nQ7j1tOuGiqf
3kR+KN6fzIdj+vMfUaXHmFTFuZo9fl08rxmvLofg+hdGvZL/AEexvpFCyXVvFO6rXiGkQMQK9t84
jPjEMkojoSH1HS5TkxQmecog/MMe/MrzLqWg6LFNp5VJ7iX0fVYcig4M1VB2rt3zO7L0sM2QiXIC
3Vdva/JpsIOP6pGr7tnl3lu+urvULua6meeeVQzySEsxoadT886HVY4xiBEUA8doM0p5JGRuR72R
5gu1Z/5S0j6lYevKKXFzRj4qn7I/jml1mbjlQ5B6bs3TeHDiP1STe6uYrW3kuJjxjiUsx+WYsImR
oOfkyCETI8g8x1C+lvryW6l+1IageA6AfQM6DFjEIgB4/PmOSZkeqHyxqdirsVZF5F/4603/ADDt
/wATTMHtD6B7/wBbtex/70/1f0hnOad6N5ZqX/HRuv8AjNJ/xI50WL6R7njM/wDeS95YZ5u/3th/
4xf8bHNtovpPvdB2n9Y9yYflV/ymtp/qTf8AJpso7X/xc/D73K9nP8cj7pfcxHNm6N2KvQ/yW/47
19/zC/8AMxc0fbv93H+t+h6n2U/v5/1P0h7DnLvdvmvzB/x3tS/5ip/+TjZ3um/u4/1R9z5Jrf7+
f9eX3pfl7jOxV2KuxV73+Xfmj9O6EonauoWdIbqvVtvgk/2QG/uDnGdp6Twcm30y3H6n0vsPtD8z
h3+uGx/Qfj96d63pFrq+lXGnXI/dXCFeXUq3VWHup3zE0+Y4piY6Ow1emjnxHHLlL8W+c9U0260z
ULiwul4z27lHHY06EexG4zusWUZIiQ5F8q1GCWHIYS+qJQuWNL6Q8qf8ovo//MDbf8mVzg9Z/fT/
AK0vvfV+zv8AFsf9SP8AuQxH86f+ODY/8xX/ADLbNp2F/eS/q/pdH7V/3Ef6/wCgvN/Kb01Jx/NE
w/FTm91g9HxeU7NP7z4PR/LGkfpDUAZBW2go8vgT+yv05otXm4I7cy9V2fpvFyb/AEx5vQ80b1TD
vOur85F02JvhSj3BHdv2V+jrm00GGhxn4Oh7W1Nnwx8WK5snSuxV2KuxVkXkX/jrTf8AMO3/ABNM
we0PoHv/AFu17H/vT/V/SGc5p3o3lmpf8dG6/wCM0n/EjnRYvpHueMz/AN5L3lhnm7/e2H/jF/xs
c22i+k+90Haf1j3Jh+VX/Ka2n+pN/wAmmyjtf/Fz8Pvcr2c/xyPul9zEc2bo3Yq9D/Jb/jvX3/ML
/wAzFzR9u/3cf636HqfZT+/n/U/SHsOcu92+a/MH/He1L/mKn/5ONne6b+7j/VH3Pkmt/v5/15fe
l+XuM7FU+8v+SPMOuqZbO342wBP1iU8IyR+ypP2iem305hanX4sO0jv3B2Wi7Jz6kXAenvOwSOSO
SKRo5FKSISrowoQQaEEZmAgiw66USDR5hPPJXmSTy/rsN2Sfqsn7q7Qd42O5p4qdxmHr9KM2Mx69
Pe7HsnXnTZhL+E7S937H0JHIkkayRsGjcBkYbggioIziSCDRfUYyBFjk84/N7yv69qmvWqfvbcCO
9AHWMmiv/sSaH2Ptm97F1dHwjyPL3vJ+03Z/FEZ4jeO0vd0Pw/HJ5JnTPEPpDyp/yi+j/wDMDbf8
mVzg9Z/fT/rS+99X7O/xbH/Uj/uQxH86f+ODY/8AMV/zLbNp2F/eS/q/pdH7V/3Ef6/6C8z8r8jr
UEaAlpAyKo3JJUkD8M3+r/uyXkez78YAdXv2haWum6fHBQeqfjmbxc9fu6ZxeozeJK+j6bo9OMWM
R69V+salHp1hJctQsPhiU/tOegyODEZyAZarOMUDL5e95nLLJLI0sh5O5LMx7k7nOgAAFB5CUiTZ
5ojTdNudRuhb24HMgsWbZQB3NPuyGXKICy24MEssuGKy9sLyylMVzEY27V6H3B6HDjyRmLBY5cM8
ZqQpQybW7FWReRf+OtN/zDt/xNMwe0PoHv8A1u17H/vT/V/SGc5p3o3lmpf8dG6/4zSf8SOdFi+k
e54zP/eS95YZ5u/3th/4xf8AGxzbaL6T73Qdp/WPcmH5Vf8AKa2n+pN/yabKO1/8XPw+9yvZz/HI
+6X3MRzZujdir0P8lv8AjvX3/ML/AMzFzR9u/wB3H+t+h6n2U/v5/wBT9Iew5y73b5r8wf8AHe1L
/mKn/wCTjZ3um/u4/wBUfc+Sa3+/n/Xl97Wj6Fq2s3X1bTrdp5P2iNlUeLsdlHzw59RDELmaXS6P
Lnlw442fxzereVvyl0yw4XOsMt/dihEAr6CH5Hd/p29s5vV9szntj9Mft/Y9p2d7N48fqy+uXd/D
+38bM+RERAiKFRRRVAoAB2AGaYm3pgABQeO/m95cistUi1a34rHf1E8YIBEyj7QHgw6+/wA86jsX
VGcDA/w/c8H7TaEY8gyx5T5+/v8Aj9/vefZu3mHsX5R+aPrmntoly9bmyHK2J6tBXp/sCfuI8M5f
tnScMvEHKXP3/te79mu0PEx+DL6ocv6v7PuZ/PBDcQSQTIJIZVKSI24ZWFCD8xmkjIxNjmHp5wEg
YncF87+bfL02ga5PYPUw152sh/bib7J+Y6H3Gdzo9SM2MS69fe+WdpaE6bMYHl09z3fyp/yi+j/8
wNt/yZXON1n99P8ArS+99I7O/wAWx/1I/wC5DEfzp/44Nj/zFf8AMts2nYX95L+r+l0ftX/cR/r/
AKCkX5Q+WDc3767cL+4tCUtQf2piKFvkin7z7Zl9tavhj4Y5y5+513sz2fxz8aX0x5e/9j1/OYe6
YB5s1f67f+jG1be2qq06M/7TfwGbrR4eCNnmXmO0tT4k6H0xSPMx1zPvKOlpaacLg0aa6o5I3ov7
K/1zS63LxTroHpuzNOIY+LrJOLq0trqIw3Eayxn9lh+I8MxYTMTYLn5MUZipCwxLV/JUsfKXTm9R
OpgY/EP9U9/pzZ4deDtP5uj1PZJG+PfyYxJHJE7RyKUdTRlYUIPuDmwBB3Dp5RINHmyDyL/x1pv+
Ydv+JpmF2h9A9/63adj/AN6f6v6QznNO9G8s1L/jo3X/ABmk/wCJHOixfSPc8Zn/ALyXvLDPN3+9
sP8Axi/42ObbRfSfe6DtP6x7kw/Kr/lNbT/Um/5NNlHa/wDi5+H3uV7Of45H3S+5iObN0bsVeh/k
t/x3r7/mF/5mLmj7d/u4/wBb9D1Psp/fz/qfpD2HOXe7eZ2H5TNeaxeahrUvC2luJZIrSE/Gys5I
5v8As18Bv7jOgydscOMRxjcAbl5DD7NnJllkzGomRND39T0/HJ6Hp+m2GnWq2tjAlvbp0jjFB8z4
n3OaPJllM8UjZeqwYIYo8MAIxVbm5t7WB57mVIYIxV5ZGCqB7k7ZGMDI0BZZZMkYDikaA73m3mj8
4IY+dt5fj9V+hvpR8A/4xodz82+45vtJ2KTvl+X63k+0PacC44Bf9I/oH6/k8wv9RvtQuWub2d7i
d/tSSGp+Q8B7DOgx4owFRFB4/NnnllxTJlLzQ+WNSN0XVrrSNUttRtj+9t3DAdAy9GU+zLUZTnwj
LAwPIuRpdTLBkjkjziX0bpWpWup6db6hatyguUDp4ivVT7qdjnC5sRxzMTzD6tps8c2MTjykGM/m
Z5W/TWhm4t05X9gDLFTq6U+NPuFR7j3zYdlavwslH6ZOo7f7O/MYeKI9cNx5jqE88qf8ovo//MDb
f8mVzD1n99P+tL73Ydnf4tj/AKkf9yGOfmnpd1qtnpOn2q8p7i9CL4Aem5LH2UbnM/sjKMcpylyE
f0uq9otPLNDHjjzlP9BZXo+lWuk6Zb6faikNugUHux6sx92O5zW58xyTMjzLutLpo4cYxx5RQXmj
V/0fp5WNqXNxVIqdQP2m+jLdJh45b8g0do6nwsdD6pPPc3jyzsVRum6xf6c/K2kohNWibdG+Y/pl
OXBGY3DkYNVPEfSfh0ZnpHmywvuMcx+rXJ24sfhY/wCS38DmqzaOUNxuHf6btKGTY+mSd5iOxQWp
aNp+opS5j+MbLKuzj6f65dizyhycfUaWGUeofHqlWheXLnS9WklLiW2eFlSQbEEupAI+QzI1GqGS
AHW3C0ehlhyk3ca/SGRZgu1eWal/x0br/jNJ/wASOdFi+ke54zP/AHkveWGebv8Ae2H/AIxf8bHN
tovpPvdB2n9Y9yYflV/ymtp/qTf8mmyjtf8Axc/D73K9nP8AHI+6X3MRzZujdir0P8lv+O9ff8wv
/Mxc0fbv93H+t+h6n2U/v5/1P0h7DnLvduxVhnmj80NE0jnb2ZGoX424Rn90h/y5BXp4L+GbXSdk
5Mu8vTH7XQdoe0GHB6YeuflyHvP6nkvmDzVrevT+pqFwWRTWO3T4Yk/1V/id86bTaTHhFRHx6vEa
3tHNqTeQ7d3QfBKMyXBdirsVdir0j8ofNH1e7fQbl/3NyTJZk9pafEn+yAqPf55oe2tJxR8Qcxz9
z1nsz2hwyOCXKW8ff3fH8c3rmcy9wtiijiiSKJQkcahURdgFUUAHywkkmyiMREUOQc0UbOjsoLpX
gxG4qKGn0YglTEE33OmlihieaVgkUal5HbYBVFST8hjGJJoc0SkIgk8g811zVG1HUJJ9/SHwwqey
Dp9/XN/p8Xhxp5LV6g5chl06IDLnGdirsVdiqc6R5p1Cw4xufrFsP91udwP8lu2YubSRnvyLn6bt
HJi2PqizPS9b0/UkrBJSWlWhbZx9Hf6M1OXBLHzeg0+rx5R6Tv3I/KXJdiryzUv+Ojdf8ZpP+JHO
ixfSPc8Zn/vJe8sM83f72w/8Yv8AjY5ttF9J97oO0/rHuTD8qv8AlNbT/Um/5NNlHa/+Ln4fe5Xs
5/jkfdL7mI5s3RuxVlP5eeabLy7rEtxexu1vcReizx0JT4g3Lieo2zXdpaSWfGBHmDbuexO0YaXK
ZTB4ZCtuj3HTdU07U7VbqwuEuYG6OhrQ+DDqp9jnIZcMsZ4ZCi+i4NRjzR4oESiiJYopYnilQSRS
Aq6MAVZSKEEHtkASDYbZREhR3Beb+aPygtpudzoDiCXqbKQkxn/Uc1K/I7fLN9pO2iNsu473k+0P
ZiMvVgNH+aeXwPT8cnl+o6ZqGm3LWt/bvbzr1RxTbxB6Ee4zocWWOQXE2Hjs+nnilwzBjJC5Y0ux
V2KuxVfBNLBNHPC5jliYPG67FWU1BGRlEEUeTKEzEgjYh9D+UPMUWv6HBfLQTj93dRj9mVQOX0H7
Q9jnEa3THDkMenT3PqXZmuGpwifXkff+N06zEdg7FXnP5u+afqtkmhWz0nuwHuyOqwg7L/syPuHv
m97F0nFLxDyHL3/seU9pu0OCHgxPql9Xu/b93vSaFucMb/zKD94zKkKLgQNgFUwMnYq7FXYqjtM0
XUNRelvH+7Bo0zbIPp7/AEZTlzxhzcjT6TJlPpG3f0Zpo/lew08rK/7+6G4kbop/yVzVZ9XKe3IP
QaXs6GLc7yTnMR2CA1PW9P01K3ElZCKrCu7n6O305diwSycnG1Grx4h6jv3dXm91MJrmaYDiJHZw
PDka5voRoAPJZJcUie8sQ83f72w/8Yv+Njm00X0n3uj7T+se5MPyq/5TW0/1Jv8Ak02Udr/4ufh9
7lezn+OR90vuYjmzdG7FXYqjtI1vVNIuhc6dcvby/tcT8LAdmU/Cw+eU5sEMoqYsORptXkwS4scu
E/jm9U8r/m3p15wttaUWVydhcrX0GPv1KfTt75zmr7GlHfH6h3df2vadn+0uPJUc3ol3/wAP7HoM
ciSIskbB0cBldTUEHoQRmlII2L04IIsckFq+h6VrFqbbUbZLiP8AZLbMp8VYfEp+WW4dRPEbgacf
VaTFnjw5I8Q/HJ5V5o/KTUrHnc6MxvrUVJtzT11HtTaT6N/bOj0nbMJ7ZPSe/p+x4vtD2ayY7lh9
ce7+L9v3+TAHR0co6lXU0ZSKEEdiDm6Bt5kgg0VuFDsVdirL/wAtfNP6E1wQTvSwv+MU9eiPX93J
9BND7HNZ2ppPFx2Pqj+CHedg9ofl81S+iex/QXuucc+kIPWNUtdK0y41C6NIbdC7DuT0VR7saAZb
gwnJMRHMtGq1EcOM5Jcoh856vql1qupXGoXTcp7hy7eAHQKPZRsM7rDijjgIx5B8p1OolmyHJLnI
s00x+enWreMSV+fEZqsoqZ97v8BvHH3BE5W3OxVVtbS5u5hDbRtLIf2VH4nwGRnMRFks8eKUzURZ
ZdpHkqGPjLqLCV+ogX7A/wBY9Tmsza4naGzvNN2SBvk3PcyaOOONAkahEUUVVFAB7AZrySdy7iMQ
BQU7u8tbSIzXMixRjux6+wHfJQgZGgGGTLGAuRoMR1fzpPLyi09TDH0MzfbPyHRc2eHQgby3dHqe
1Sdsew7+rGXd5HLuxd2NWZjUk+5OZ4FcnUEkmyluo63ZWIKs3qTdok6/Se2ZGLTyn7nEz6uGPzPc
xLUtSmv5xLKAvEcUVewrXNlixCAoOkz5zllZZH+VX/Ka2n+pN/yabMHtf/Fz8Pvdr7Of45H3S+56
H5o/K/RNX53FkBp9+d+cY/dOf8uMU6+K/jmj0na2TFtL1R+16ntD2fw5/VD0T8uR94/U8l8weVdb
0Gf09QtyqMaR3CfFE/8Aqt/A7502m1ePMLifh1eI1vZ2bTGsg27+h+KUZkuC7FXYqn/lrztrvl+Q
C0m9S0rV7OWrRnxp3U+4zC1Wgx5h6h6u/q7PQdrZtMfSbj/NPL9j1zyv+Ymha9xh5/U9QO31WYj4
j/xW+wf9ftnM6vszJh3+qPeP0vcdn9t4dTt9M+4/oPX7/JlOa53KQeZfJGheYELXUXpXlKJeRUWQ
U6cuzD55m6XX5MPI3HudZr+ycOpHqFS/nDn+15F5o/L3XdBLTFPrdgOl3CCQo/4sXqn6vfOm0naW
PNt9Mu4/oeG7Q7EzabeuKHeP0933MXzYundirsVe6fln5p/TWhi3uH5X9gBFLXq6U+B/uFD7j3zj
+1dJ4WSx9Mn0fsDtH8xh4ZH1w2PmOhYh+bvmj63fJods9be0PO6IOzTEbL/sB+PyzZ9jaThj4h5y
5e79rovabtDjn4MT6Y8/f+z73nWb15VnWhPz0i2P+SR9xI/hmn1AqZej0ZvFFMFVmYKoLMdgBuSc
oJckC+TJNI8mXM9Jb8mCLr6Q/vD8/wCXMHNrgNo7l22m7KlLeew7urL7OxtLKERW0Sxp3p1PuT1O
aueSUzZLvcWGOMVEUrO6opZyFVRVmJoAB4nIgW2EgbljWr+c7eHlFYATy9DKf7sfL+bM/DoSd5bO
p1PasY7Q3Pf0YjeX13eTGW5lMrnoT0HsB0GbOGOMRQDosuaWQ3I2UBeX9pZx87iQIOy9WPyGXQxy
kdnGy5owFyLGNS8zXVxWO2rBF/N+2fp7fRmwxaQR3O5dRn18pbR2H2pKSSanrmW69lvlb8ttc1vh
PKv1HT239eUHkw/4rTYn5mgzWavtTHi2Hql3frd32d2Dm1FSPoh3n9AeueXPJ2h6BEBZQA3BFJLu
T4pW+n9key0zmdVrcmY+o7d3R7jQ9l4dMPQPV3nn+PcneYjsVO5tre6geC5iSaCQUeKRQyke4O2S
jMxNg0WGTHGY4ZCwe95t5o/KCGTnc+X3ET9TYyk8D/xjc7j5N94zfaTtojbLv5/reT7Q9mAfVgNf
0T+g/r+bzC/06+0+5a2vYHt50+1HIKH5jxHuM6DHljMXE2Hj82CeKXDMGMvND5Y1OxV2Ks28r/ml
rOlcLe/rqFiNhzP75B/kuevyb7xmo1fZGPJvH0y+x6Hs/wBoc2H0z9cPtHx/W9a0HzPouuwerp1w
JGArJA3wyp/rId/p6Zzeo0mTCamP1PbaPtDDqY3jN+XUfBNCARQ7g5jOawjzR+VejapzudOpp98d
6KP3Dn/KQfZ+a/cc2+k7XyY9p+qP2vO9oezuLNcsfon9h+HT4fJ5NrvlrWdDuPR1G3aIE0jmHxRv
/quNj8uudLp9VjzC4H9bxOs0GbTyrIK8+h+KV5kOGmfl7zDqGg6gL6xI9Tg0bI26sGH7Q9jQ/RmP
qdNHNHhk5ei1s9Nk44c6pL5ZZJZXllYvJIxZ3bclmNST88vAAFBxZSMiSeZWYUPTPIvlnU9Q0iBm
Q29tVqSyClVLE1RerdevTOf7Q1cITPUvXdj9n5MuIEjhj3n9D0fS9B07TVrCnKanxTPu5+Xh9GaL
NqJZOfJ6zT6PHi5DfvTHKHKSjVvM+n6fyjB9e5G3pIeh/wApu2ZWHSSnvyDgantDHi25y7mF6pru
oak379+MVfhhTZB/X6c2uHTxx8uboNRrMmX6jt3JZLLHEhkkYIi9WY0AzIAJ2DhykALLHtS81AVj
sVqenrMP+Ir/AFzNxaPrJ1eftHpD5sdmmmmkMkrl3PVmNTmfGIAoOrlMyNncpr5f8p65r03DT7cm
IGkly/wxJ82/gKnMbU6zHhHqO/d1czRdm5tSagNu/oHrflb8sdE0bhcXQGoX4ofUkX92h6/BGa/e
an5ZzOr7VyZdo+mP46vcdnez+HB6peufnyHuDMc1bvnYq7FXYq7FUv1nQNJ1m2+r6jbLOn7DHZ0P
irDcZfg1E8RuBpxdVo8Wojw5I3+OjynzT+U2qafzudILX9oNzDQeug+Q2f8A2O/tnR6TtiE9snpl
9n7Hi+0PZvJi9WL1x7v4v2/D5MCZWRirAqymjKdiCOxzcg280RWxawodiqta3d1aXCXFrK8E8Zqk
sbFWHyIyM4CQqQsM8eWUJcUSQR3PSvK/5wOvC28wJyXYC+iXf5yRjr81+7NBq+xeuL5H9B/W9b2f
7TkenOP84fpH6vk9Nsb+yv7ZbmznS4t3+zJGQw+W3fOfyY5QNSFF7DDmhkjxQIlHybu7O1vLd7a7
hSeCQUeKQBlP0HBCcom4miuXFHJExkLie95p5p/J8HndeX3oepsJT+Ech/U335v9J210y/P9YeS7
R9mOcsB/zT+g/r+bzO9sbyxuXtryF4LiM0eKQFWH350GPJGYuJsPIZcM8cjGYMZDvR2g+WNa1249
LTrcyKDSSdvhiT/Wfp9HXKdRq8eEXM/rcnR9n5tTKsYvz6D4vWfK/wCVui6TwuL+mo3woQXH7lD/
AJKHr82/DOa1fa+TJtH0x+17bs/2ew4fVP1z+wfD9bNs1L0KD1HV7DTo+dzIFY/ZjG7t8hluLDKZ
2Dj59TDELkWG6v5tv73lFb1trc7UU/Gw92/gM2uHRxhudy6HU9pTybR9MftSLMx1qT6l5ktLascF
J5htsfgB9z3+jMrFpZS3OwcDPr4w2juWL3uo3d6/OeQsB9lBso+QzYY8UYDZ0+XPLIbkXadpl/qV
0trYwPcXDdI0FTTxPYD3OOXLHGOKRoLg088suGAMpPUPK35QW8PC519xNJ1FlETwH+u43b5Db3Oc
9q+2idsW3m9j2d7MRjUs5s/zRy+J6vR7e3t7aFILeNYYYxRI0AVVHgAM0UpGRsmy9ZCEYARiKAVM
iydirsVdirsVdirsVdirHfM3kXQfMCs9xF6F7T4byKgfptzHRx8/oIzO0naGTDsDce4uq7Q7Hwan
eQqf84c/j3vIvM/kDXtALSyR/WbEdLuEEqB/lr1T6dvfOn0naOPNsNpdxeG7Q7Gz6bcjih/OH6e5
jWZ7qXYq7FUy0TzDrGiXPr6dcNCT9uPqjjwZDscoz6aGUVMW5ek12XTy4scq+4/B6v5X/NfSdS4W
2qhdPvDsJCf3Dn2Y/Y/2X35zWr7Hnj3h6o/b+17Xs/2jxZfTl9E/9j+z4/NnYIIBBqDuCM070gKX
6x5f0bWYlj1K0S5VDVGaoZe+zrRgD33y/BqcmI3A04uq0WHOKyREvx3ou1tLW0gS3tYkggjFEijU
KoHsBlU5mRsmy348cYREYigO5Zf6hY6fbNdXs6W9un2pJCAPkPE+ww48cpmoiyxzZ4Yo8UyIx82F
TfmVFqLXEOjoVjiIX61IKFq13RD06ftfdm2j2WYUcnXo8/Pt4ZSRiGw6n9ASOWaWaRpJXMkjbs7G
pP0nMwRAFB1spGRs7lL9Q1iysRSV+UvaJd2+nw+nL8eCU+XJxc+qhj58+5i2pa9e3tUr6UB/3Uvc
f5R75sMWnjDzLp8+snk25BL0R3cIilnY0VQKkk9gBl5NOKASaDPvK/5S6nf8LnWGNjamhEAoZ2Hu
Dsn07+2abV9swhtj9R+z9r03Z/s1kyVLL6I938X7Pxs9W0fQtJ0e2Ftp1slvH+0RuzHxdj8TH55z
efUTym5m3tNLo8WCPDjjwj8c0dlLkuxV2KuxV2KuxV2KuxV2KuxV2KuIBBBFQdiD0pipDBfNP5U6
RqfO50srp96akoB+4c+6j7HzX7s3Gk7Ynj2n6o/a832j7OYs3qx+if8AsT+r4fJ5Prnl3WNEufQ1
G3aEn+7k6xuPFXGx/XnSafU48ouBt4rV6HLp5cOQV9x9xS3MhxHYq7FWSeWPP2vaAVjik+s2I62c
xJUD/IPVPo29swNX2djzbnaXePxu7bs/tnNptgeKH80/o7nrnlrz9oGuxgRyi2uwKvazkKwp1Kno
w+X3ZzOq7Oy4TuLj3h7jQds4NSNjwy7j+N0m80/mxpWn87bSAuoXY2Mtf3CH/WH2/wDY7e+ZWk7H
nPefpj9v7HA7Q9pMWL04vXLv/h/b8Pm8p1rX9X1q5+sajcNO4+wp2RB4Io2GdJg00MQqAp4rV63L
qJcWSV/cPcEX5Zvra0F208gRSEIr1NK7Ad+uVavGZVTfoM0YcXEa5N6l5onmrHZgwx/78P2z/THF
pAN5brn7QlLaGw+1I2ZmJZiSx3JO5JzLdcTbJvK/5fa9rxWVE+qWB3N3MCAR/wAVrsX/AFe+YGr7
Sx4ducu4fp7nb9n9i59TuBww/nH9Hf8Ad5vXfLPkfQfL6BraL1rynxXktGk368eyj5ZzGq7QyZuZ
qPcHudB2Rh0wuIuX848/2MgzCdo7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYqoXtjZ31s9teQpc
W8go8cgDA/f3yePJKBuJoteXDDJHhmBKJ73mfmj8n2HO68vvyG5NjKd/lHIf1N9+dBpO2umX5/rD
yHaHsxzlgP8Amn9B/X83ml3Z3VncPb3ULwTxmjxSKVYfQc30JxkLibDyOTFLHLhkCCO9RybB2Kux
V2KuxV2KpnoflvWdcuPR063aWhpJKfhjT/Wc7D9eY+o1WPCLmaczR6DLqJVjF+fQfF6z5X/KrR9L
4XGpU1G9G4Vh+4Q+yH7Xzb7hnNavtfJk2h6Y/a9t2f7O4sPqyeuf+xHw6/H5M4AAFBsBmoeidirs
VdirsVdirsVdirsVdirsVdirsVdirsVdirsVdirsVSvXvLOja7b+jqNuJCARHMPhlSv8rjf6OmZG
n1WTCbgf1OHrNBh1MayC/PqPi8m80flZrOlc7jTq6hYip+AfvkH+Ug+181+4Z0uk7Xx5Np+mX2PE
doezuXDcsfrh9o+H6mEEEGh2IzbvPOxV2Kq9nZXd7cJbWkLzzyGiRxgsx+gZCeSMBcjQbMWKWSQj
EEyPc9L8r/k/9i68wv7iwib/AJOSD9S/fmg1fbXTF8/1D9b13Z/sx/FnP+aP0n9XzemWdlaWVult
aQpBAgokUahVH0DNBOcpm5Gy9dixRxx4YgCI7lbINjsVdirsVdirsVdirsVdirsVdirsVdirsVdi
rsVdirsVdirsVdirsVYv5o/LzQteDzFPql+el1EBuf8AixNg/wCv3zY6TtLJh2+qPcf0On7Q7Ew6
neuGfeP0jq8j8yeR9e0CQm5h9a0JpHdw1aM16A91PsfornTaXX4sw2NHuLw2v7Iz6Y+oXH+cOX7E
58r/AJVaxqnC41InT7I7hWH79x7Ifs/NvuzE1fa8Me0PVL7HYdn+zuXNUsnoh/svl0+Pyes6H5b0
bQ7f0NOt1iqB6kp+KR6fzOdz8umc3qNVkzG5m3ttJocWnjWONefU+8plmO5bsVdirsVdirsVdirs
VdirsVdirsVf/9k=
+
+
+
+ xmp.iid:FC7F1174072068118A6D8E7604A8DD47
+ xmp.did:FC7F1174072068118A6D8E7604A8DD47
+ uuid:5D20892493BFDB11914A8590D31508C8
+ proof:pdf
+
+ uuid:59c3d2b6-5649-5e44-a715-bf3fd3ae5c1a
+ xmp.did:3767F9907037E211A8BAC2B830C85A7E
+ uuid:5D20892493BFDB11914A8590D31508C8
+ proof:pdf
+
+
+
+
+ saved
+ xmp.iid:3767F9907037E211A8BAC2B830C85A7E
+ 2012-11-25T21:25:38-05:00
+ Adobe Illustrator CS5.1
+ /
+
+
+ saved
+ xmp.iid:FC7F1174072068118A6D8E7604A8DD47
+ 2012-11-29T13:57:06-05:00
+ Adobe Illustrator CS5.1
+ /
+
+
+
+ Print
+ False
+ False
+ 1
+
+ 2048.000000
+ 2048.000000
+ Pixels
+
+
+
+ Cyan
+ Magenta
+ Yellow
+
+
+
+
+
+ 默认色板组
+ 0
+
+
+
+ White
+ RGB
+ PROCESS
+ 255
+ 255
+ 255
+
+
+ Black
+ RGB
+ PROCESS
+ 35
+ 31
+ 32
+
+
+ CMYK Red
+ RGB
+ PROCESS
+ 237
+ 28
+ 36
+
+
+ CMYK Yellow
+ RGB
+ PROCESS
+ 255
+ 242
+ 0
+
+
+ CMYK Green
+ RGB
+ PROCESS
+ 0
+ 166
+ 81
+
+
+ CMYK Cyan
+ RGB
+ PROCESS
+ 0
+ 174
+ 239
+
+
+ CMYK Blue
+ RGB
+ PROCESS
+ 46
+ 49
+ 146
+
+
+ CMYK Magenta
+ RGB
+ PROCESS
+ 236
+ 0
+ 140
+
+
+ C=15 M=100 Y=90 K=10
+ RGB
+ PROCESS
+ 190
+ 30
+ 45
+
+
+ C=0 M=90 Y=85 K=0
+ RGB
+ PROCESS
+ 239
+ 65
+ 54
+
+
+ C=0 M=80 Y=95 K=0
+ RGB
+ PROCESS
+ 241
+ 90
+ 41
+
+
+ C=0 M=50 Y=100 K=0
+ RGB
+ PROCESS
+ 247
+ 148
+ 30
+
+
+ C=0 M=35 Y=85 K=0
+ RGB
+ PROCESS
+ 251
+ 176
+ 64
+
+
+ C=5 M=0 Y=90 K=0
+ RGB
+ PROCESS
+ 249
+ 237
+ 50
+
+
+ C=20 M=0 Y=100 K=0
+ RGB
+ PROCESS
+ 215
+ 223
+ 35
+
+
+ C=50 M=0 Y=100 K=0
+ RGB
+ PROCESS
+ 141
+ 198
+ 63
+
+
+ C=75 M=0 Y=100 K=0
+ RGB
+ PROCESS
+ 57
+ 181
+ 74
+
+
+ C=85 M=10 Y=100 K=10
+ RGB
+ PROCESS
+ 0
+ 148
+ 68
+
+
+ C=90 M=30 Y=95 K=30
+ RGB
+ PROCESS
+ 0
+ 104
+ 56
+
+
+ C=75 M=0 Y=75 K=0
+ RGB
+ PROCESS
+ 43
+ 182
+ 115
+
+
+ C=80 M=10 Y=45 K=0
+ RGB
+ PROCESS
+ 0
+ 167
+ 157
+
+
+ C=70 M=15 Y=0 K=0
+ RGB
+ PROCESS
+ 39
+ 170
+ 225
+
+
+ C=85 M=50 Y=0 K=0
+ RGB
+ PROCESS
+ 28
+ 117
+ 188
+
+
+ C=100 M=95 Y=5 K=0
+ RGB
+ PROCESS
+ 43
+ 57
+ 144
+
+
+ C=100 M=100 Y=25 K=25
+ RGB
+ PROCESS
+ 38
+ 34
+ 98
+
+
+ C=75 M=100 Y=0 K=0
+ RGB
+ PROCESS
+ 102
+ 45
+ 145
+
+
+ C=50 M=100 Y=0 K=0
+ RGB
+ PROCESS
+ 146
+ 39
+ 143
+
+
+ C=35 M=100 Y=35 K=10
+ RGB
+ PROCESS
+ 158
+ 31
+ 99
+
+
+ C=10 M=100 Y=50 K=0
+ RGB
+ PROCESS
+ 218
+ 28
+ 92
+
+
+ C=0 M=95 Y=20 K=0
+ RGB
+ PROCESS
+ 238
+ 42
+ 123
+
+
+ C=25 M=25 Y=40 K=0
+ RGB
+ PROCESS
+ 194
+ 181
+ 155
+
+
+ C=40 M=45 Y=50 K=5
+ RGB
+ PROCESS
+ 155
+ 133
+ 121
+
+
+ C=50 M=50 Y=60 K=25
+ RGB
+ PROCESS
+ 114
+ 102
+ 88
+
+
+ C=55 M=60 Y=65 K=40
+ RGB
+ PROCESS
+ 89
+ 74
+ 66
+
+
+ C=25 M=40 Y=65 K=0
+ RGB
+ PROCESS
+ 196
+ 154
+ 108
+
+
+ C=30 M=50 Y=75 K=10
+ RGB
+ PROCESS
+ 169
+ 124
+ 80
+
+
+ C=35 M=60 Y=80 K=25
+ RGB
+ PROCESS
+ 139
+ 94
+ 60
+
+
+ C=40 M=65 Y=90 K=35
+ RGB
+ PROCESS
+ 117
+ 76
+ 41
+
+
+ C=40 M=70 Y=100 K=50
+ RGB
+ PROCESS
+ 96
+ 57
+ 19
+
+
+ C=50 M=70 Y=80 K=70
+ RGB
+ PROCESS
+ 60
+ 36
+ 21
+
+
+
+
+
+ Grays
+ 1
+
+
+
+ C=0 M=0 Y=0 K=100
+ RGB
+ PROCESS
+ 35
+ 31
+ 32
+
+
+ C=0 M=0 Y=0 K=90
+ RGB
+ PROCESS
+ 65
+ 64
+ 66
+
+
+ C=0 M=0 Y=0 K=80
+ RGB
+ PROCESS
+ 88
+ 89
+ 91
+
+
+ C=0 M=0 Y=0 K=70
+ RGB
+ PROCESS
+ 109
+ 110
+ 113
+
+
+ C=0 M=0 Y=0 K=60
+ RGB
+ PROCESS
+ 128
+ 130
+ 133
+
+
+ C=0 M=0 Y=0 K=50
+ RGB
+ PROCESS
+ 147
+ 149
+ 152
+
+
+ C=0 M=0 Y=0 K=40
+ RGB
+ PROCESS
+ 167
+ 169
+ 172
+
+
+ C=0 M=0 Y=0 K=30
+ RGB
+ PROCESS
+ 188
+ 190
+ 192
+
+
+ C=0 M=0 Y=0 K=20
+ RGB
+ PROCESS
+ 209
+ 211
+ 212
+
+
+ C=0 M=0 Y=0 K=10
+ RGB
+ PROCESS
+ 230
+ 231
+ 232
+
+
+ C=0 M=0 Y=0 K=5
+ RGB
+ PROCESS
+ 241
+ 242
+ 242
+
+
+
+
+
+ Brights
+ 1
+
+
+
+ C=0 M=100 Y=100 K=0
+ RGB
+ PROCESS
+ 237
+ 28
+ 36
+
+
+ C=0 M=75 Y=100 K=0
+ RGB
+ PROCESS
+ 242
+ 101
+ 34
+
+
+ C=0 M=10 Y=95 K=0
+ RGB
+ PROCESS
+ 255
+ 222
+ 23
+
+
+ C=85 M=10 Y=100 K=0
+ RGB
+ PROCESS
+ 0
+ 161
+ 75
+
+
+ C=100 M=90 Y=0 K=0
+ RGB
+ PROCESS
+ 33
+ 64
+ 154
+
+
+ C=60 M=90 Y=0 K=0
+ RGB
+ PROCESS
+ 127
+ 63
+ 152
+
+
+
+
+
+
+ Adobe PDF library 9.90
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/instagram.svg b/icon/instagram.svg
new file mode 100644
index 0000000..77a0d8e
--- /dev/null
+++ b/icon/instagram.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/issuehunt.svg b/icon/issuehunt.svg
new file mode 100644
index 0000000..22bb495
--- /dev/null
+++ b/icon/issuehunt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icon/jasmine.svg b/icon/jasmine.svg
new file mode 100644
index 0000000..b499595
--- /dev/null
+++ b/icon/jasmine.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/java.svg b/icon/java.svg
new file mode 100644
index 0000000..228b75f
--- /dev/null
+++ b/icon/java.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/javascript.svg b/icon/javascript.svg
new file mode 100644
index 0000000..23243bb
--- /dev/null
+++ b/icon/javascript.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/icon/jest.svg b/icon/jest.svg
new file mode 100644
index 0000000..c6ce668
--- /dev/null
+++ b/icon/jest.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/jsfiddle.svg b/icon/jsfiddle.svg
new file mode 100644
index 0000000..073191f
--- /dev/null
+++ b/icon/jsfiddle.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icon/juejin_translation.svg b/icon/juejin_translation.svg
new file mode 100644
index 0000000..b4b8708
--- /dev/null
+++ b/icon/juejin_translation.svg
@@ -0,0 +1,37 @@
+
+
+
+
+Mask Copy + Fill 1 Copy Copy Copy
+Created with Sketch.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/kibana.svg b/icon/kibana.svg
new file mode 100644
index 0000000..abff449
--- /dev/null
+++ b/icon/kibana.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icon/koenigsegg.svg b/icon/koenigsegg.svg
new file mode 100644
index 0000000..97b694e
--- /dev/null
+++ b/icon/koenigsegg.svg
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/kotlin.svg b/icon/kotlin.svg
new file mode 100644
index 0000000..45d1b41
--- /dev/null
+++ b/icon/kotlin.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/lamborghini.svg b/icon/lamborghini.svg
new file mode 100644
index 0000000..78bc78a
--- /dev/null
+++ b/icon/lamborghini.svg
@@ -0,0 +1,865 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/land_rover.svg b/icon/land_rover.svg
new file mode 100644
index 0000000..697ce31
--- /dev/null
+++ b/icon/land_rover.svg
@@ -0,0 +1,2255 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/line.svg b/icon/line.svg
new file mode 100644
index 0000000..86f8830
--- /dev/null
+++ b/icon/line.svg
@@ -0,0 +1,56 @@
+
+image/svg+xml
\ No newline at end of file
diff --git a/icon/liverpool.svg b/icon/liverpool.svg
new file mode 100644
index 0000000..d10a5a0
--- /dev/null
+++ b/icon/liverpool.svg
@@ -0,0 +1,2456 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/logstash.svg b/icon/logstash.svg
new file mode 100644
index 0000000..ef4e7ed
--- /dev/null
+++ b/icon/logstash.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/lunkr.svg b/icon/lunkr.svg
new file mode 100644
index 0000000..22d20eb
--- /dev/null
+++ b/icon/lunkr.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/manchester_united.svg b/icon/manchester_united.svg
new file mode 100644
index 0000000..5741d00
--- /dev/null
+++ b/icon/manchester_united.svg
@@ -0,0 +1,313 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/marussia.svg b/icon/marussia.svg
new file mode 100644
index 0000000..d7c3507
--- /dev/null
+++ b/icon/marussia.svg
@@ -0,0 +1,1134 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/maserati.svg b/icon/maserati.svg
new file mode 100644
index 0000000..812743c
--- /dev/null
+++ b/icon/maserati.svg
@@ -0,0 +1,89 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/medium.svg b/icon/medium.svg
new file mode 100644
index 0000000..f85a551
--- /dev/null
+++ b/icon/medium.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icon/mercedes_benz.svg b/icon/mercedes_benz.svg
new file mode 100644
index 0000000..cc2eae0
--- /dev/null
+++ b/icon/mercedes_benz.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
diff --git a/icon/messenger.svg b/icon/messenger.svg
new file mode 100644
index 0000000..93cef6a
--- /dev/null
+++ b/icon/messenger.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/mitsubishi.svg b/icon/mitsubishi.svg
new file mode 100644
index 0000000..8a560d2
--- /dev/null
+++ b/icon/mitsubishi.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
diff --git a/icon/mocha.svg b/icon/mocha.svg
new file mode 100644
index 0000000..bdae876
--- /dev/null
+++ b/icon/mocha.svg
@@ -0,0 +1,80 @@
+
+
+
+
+Mocha Logo
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/modernizr.svg b/icon/modernizr.svg
new file mode 100644
index 0000000..504277f
--- /dev/null
+++ b/icon/modernizr.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
diff --git a/icon/monsoon.svg b/icon/monsoon.svg
new file mode 100644
index 0000000..73e084b
--- /dev/null
+++ b/icon/monsoon.svg
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/nasa.svg b/icon/nasa.svg
new file mode 100644
index 0000000..42fb127
--- /dev/null
+++ b/icon/nasa.svg
@@ -0,0 +1,136 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/node.svg b/icon/node.svg
new file mode 100644
index 0000000..abf449b
--- /dev/null
+++ b/icon/node.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icon/npm.svg b/icon/npm.svg
new file mode 100644
index 0000000..17432fa
--- /dev/null
+++ b/icon/npm.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/osu.png b/icon/osu.png
new file mode 100644
index 0000000..29b22b2
Binary files /dev/null and b/icon/osu.png differ
diff --git a/icon/osu.svg b/icon/osu.svg
new file mode 100644
index 0000000..015989f
--- /dev/null
+++ b/icon/osu.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/parcel.svg b/icon/parcel.svg
new file mode 100644
index 0000000..42892c4
--- /dev/null
+++ b/icon/parcel.svg
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/patreon.svg b/icon/patreon.svg
new file mode 100644
index 0000000..4ed9167
--- /dev/null
+++ b/icon/patreon.svg
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+ image/svg+xml
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/paypal.svg b/icon/paypal.svg
new file mode 100644
index 0000000..4097838
--- /dev/null
+++ b/icon/paypal.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/photoshop.svg b/icon/photoshop.svg
new file mode 100644
index 0000000..bee76f9
--- /dev/null
+++ b/icon/photoshop.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icon/pinterest.svg b/icon/pinterest.svg
new file mode 100644
index 0000000..57ece34
--- /dev/null
+++ b/icon/pinterest.svg
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/plainjs.svg b/icon/plainjs.svg
new file mode 100644
index 0000000..f2f7733
--- /dev/null
+++ b/icon/plainjs.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icon/porsche.svg b/icon/porsche.svg
new file mode 100644
index 0000000..30ce538
--- /dev/null
+++ b/icon/porsche.svg
@@ -0,0 +1,1089 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/postcss.svg b/icon/postcss.svg
new file mode 100644
index 0000000..c276acd
--- /dev/null
+++ b/icon/postcss.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/icon/preact.svg b/icon/preact.svg
new file mode 100644
index 0000000..dd2015d
--- /dev/null
+++ b/icon/preact.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icon/premiere.svg b/icon/premiere.svg
new file mode 100644
index 0000000..16e69c0
--- /dev/null
+++ b/icon/premiere.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icon/python.svg b/icon/python.svg
new file mode 100644
index 0000000..cfbb36f
--- /dev/null
+++ b/icon/python.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/qunit.svg b/icon/qunit.svg
new file mode 100644
index 0000000..e17ddf9
--- /dev/null
+++ b/icon/qunit.svg
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/react-router.svg b/icon/react-router.svg
new file mode 100644
index 0000000..5d42f49
--- /dev/null
+++ b/icon/react-router.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icon/react.svg b/icon/react.svg
new file mode 100644
index 0000000..d338d72
--- /dev/null
+++ b/icon/react.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
diff --git a/icon/reactivex.svg b/icon/reactivex.svg
new file mode 100644
index 0000000..b8bb606
--- /dev/null
+++ b/icon/reactivex.svg
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/real_madrid.svg b/icon/real_madrid.svg
new file mode 100644
index 0000000..e4a0fa3
--- /dev/null
+++ b/icon/real_madrid.svg
@@ -0,0 +1,445 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/reddit.svg b/icon/reddit.svg
new file mode 100644
index 0000000..d802b53
--- /dev/null
+++ b/icon/reddit.svg
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/redux.svg b/icon/redux.svg
new file mode 100644
index 0000000..63324e6
--- /dev/null
+++ b/icon/redux.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icon/rollup.svg b/icon/rollup.svg
new file mode 100644
index 0000000..d57d421
--- /dev/null
+++ b/icon/rollup.svg
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/rome.svg b/icon/rome.svg
new file mode 100644
index 0000000..d1cc067
--- /dev/null
+++ b/icon/rome.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/rss.svg b/icon/rss.svg
new file mode 100644
index 0000000..77498a5
--- /dev/null
+++ b/icon/rss.svg
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/serverfault.svg b/icon/serverfault.svg
new file mode 100644
index 0000000..acd9e18
--- /dev/null
+++ b/icon/serverfault.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/sina_weibo.svg b/icon/sina_weibo.svg
new file mode 100644
index 0000000..c713572
--- /dev/null
+++ b/icon/sina_weibo.svg
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/skype.svg b/icon/skype.svg
new file mode 100644
index 0000000..c39456e
--- /dev/null
+++ b/icon/skype.svg
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
diff --git a/icon/slack.svg b/icon/slack.svg
new file mode 100644
index 0000000..f47f474
--- /dev/null
+++ b/icon/slack.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/snapchat.svg b/icon/snapchat.svg
new file mode 100644
index 0000000..f5cbe61
--- /dev/null
+++ b/icon/snapchat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icon/soundcloud.svg b/icon/soundcloud.svg
new file mode 100644
index 0000000..25cdd05
--- /dev/null
+++ b/icon/soundcloud.svg
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/soundtooth.svg b/icon/soundtooth.svg
new file mode 100644
index 0000000..2caa215
--- /dev/null
+++ b/icon/soundtooth.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/spotify.svg b/icon/spotify.svg
new file mode 100644
index 0000000..fc3a68b
--- /dev/null
+++ b/icon/spotify.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/icon/stackexchange.svg b/icon/stackexchange.svg
new file mode 100644
index 0000000..7191cff
--- /dev/null
+++ b/icon/stackexchange.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
diff --git a/icon/stackoverflow.svg b/icon/stackoverflow.svg
new file mode 100644
index 0000000..ea5759f
--- /dev/null
+++ b/icon/stackoverflow.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
diff --git a/icon/steam.svg b/icon/steam.svg
new file mode 100644
index 0000000..dc5db3c
--- /dev/null
+++ b/icon/steam.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
diff --git a/icon/sublime_text.png b/icon/sublime_text.png
new file mode 100644
index 0000000..b62b8c1
Binary files /dev/null and b/icon/sublime_text.png differ
diff --git a/icon/superuser.svg b/icon/superuser.svg
new file mode 100644
index 0000000..388a153
--- /dev/null
+++ b/icon/superuser.svg
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/svelte.svg b/icon/svelte.svg
new file mode 100644
index 0000000..4bf2796
--- /dev/null
+++ b/icon/svelte.svg
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
diff --git a/icon/tailwindcss.svg b/icon/tailwindcss.svg
new file mode 100644
index 0000000..a662506
--- /dev/null
+++ b/icon/tailwindcss.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/tc39.svg b/icon/tc39.svg
new file mode 100644
index 0000000..9a1b095
--- /dev/null
+++ b/icon/tc39.svg
@@ -0,0 +1 @@
+Artboard 1
\ No newline at end of file
diff --git a/icon/telegram.svg b/icon/telegram.svg
new file mode 100644
index 0000000..1edff13
--- /dev/null
+++ b/icon/telegram.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/tensorflow.svg b/icon/tensorflow.svg
new file mode 100644
index 0000000..9dc926a
--- /dev/null
+++ b/icon/tensorflow.svg
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+ image/svg+xml
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/terser.svg b/icon/terser.svg
new file mode 100644
index 0000000..a952b9d
--- /dev/null
+++ b/icon/terser.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/tesla.svg b/icon/tesla.svg
new file mode 100644
index 0000000..40167f2
--- /dev/null
+++ b/icon/tesla.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/toyota.svg b/icon/toyota.svg
new file mode 100644
index 0000000..027a1d4
--- /dev/null
+++ b/icon/toyota.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
diff --git a/icon/twitter.svg b/icon/twitter.svg
new file mode 100644
index 0000000..eea6442
--- /dev/null
+++ b/icon/twitter.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icon/typescript.svg b/icon/typescript.svg
new file mode 100644
index 0000000..cbf194f
--- /dev/null
+++ b/icon/typescript.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/icon/visual_studio.svg b/icon/visual_studio.svg
new file mode 100644
index 0000000..5e5096a
--- /dev/null
+++ b/icon/visual_studio.svg
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+
+
+
+ image/svg+xml
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/visual_studio_code.svg b/icon/visual_studio_code.svg
new file mode 100644
index 0000000..1993e78
--- /dev/null
+++ b/icon/visual_studio_code.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/vitejs.svg b/icon/vitejs.svg
new file mode 100644
index 0000000..7ac5068
--- /dev/null
+++ b/icon/vitejs.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icon/vue.svg b/icon/vue.svg
new file mode 100644
index 0000000..69683c7
--- /dev/null
+++ b/icon/vue.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/vuepress.svg b/icon/vuepress.svg
new file mode 100644
index 0000000..056ed2d
--- /dev/null
+++ b/icon/vuepress.svg
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/webpack.svg b/icon/webpack.svg
new file mode 100644
index 0000000..4f34cfc
--- /dev/null
+++ b/icon/webpack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icon/wechat.svg b/icon/wechat.svg
new file mode 100644
index 0000000..d2e12c5
--- /dev/null
+++ b/icon/wechat.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icon/whatsapp.svg b/icon/whatsapp.svg
new file mode 100644
index 0000000..58e3163
--- /dev/null
+++ b/icon/whatsapp.svg
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/xitu.svg b/icon/xitu.svg
new file mode 100644
index 0000000..b4b8708
--- /dev/null
+++ b/icon/xitu.svg
@@ -0,0 +1,37 @@
+
+
+
+
+Mask Copy + Fill 1 Copy Copy Copy
+Created with Sketch.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icon/youtube.svg b/icon/youtube.svg
new file mode 100644
index 0000000..cae613d
--- /dev/null
+++ b/icon/youtube.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
diff --git a/icon/zeplin.svg b/icon/zeplin.svg
new file mode 100644
index 0000000..9d65dfc
--- /dev/null
+++ b/icon/zeplin.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..1d81391
--- /dev/null
+++ b/package.json
@@ -0,0 +1,38 @@
+{
+ "name": "badges-cli",
+ "version": "1.2.2",
+ "description": "A command line tool for generating badges automatically.",
+ "main": "./tool/lib/index.js",
+ "scripts": {
+ "test": "./node_modules/.bin/mocha ./tool/test/ --reporter spec",
+ "debug": "npm rm -g cls-cli && npm link",
+ "build": "npm run build:document",
+ "build:document": "node ./script/setup.js"
+ },
+ "bin": {
+ "badge": "./tool/lib/start.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/aleen42/badges.git"
+ },
+ "keywords": [
+ "badges",
+ "command-line"
+ ],
+ "author": "aleen42 (http://aleen42.github.io/pc.html)",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/aleen42/badges/issues"
+ },
+ "homepage": "https://github.com/aleen42/badges#readme",
+ "dependencies": {
+ "@ctrl/tinycolor": "3.1.4",
+ "canvas": "2.11.2",
+ "node-getopt": "npm:@aleen42/node-getopt"
+ },
+ "devDependencies": {
+ "chai": "3.5.0",
+ "mocha": "3.2.0"
+ }
+}
diff --git a/part/footer.md b/part/footer.md
new file mode 100644
index 0000000..15e7238
--- /dev/null
+++ b/part/footer.md
@@ -0,0 +1,7 @@
+### :fuelpump: How to contribute
+
+Have an idea? Found a bug? See [how to contribute](https://wiki.aleen42.com/contribution.html).
+
+### :scroll: License
+
+[MIT](https://wiki.aleen42.com/MIT.html) © aleen42
diff --git a/part/introduction.md b/part/introduction.md
new file mode 100644
index 0000000..e373a79
--- /dev/null
+++ b/part/introduction.md
@@ -0,0 +1,67 @@
+## badges
+
+
+
+
+
+To make badges more standard and acceptable.
+
+
+
+
+
+![npm](dist/npm.svg) ![cli](dist/cli.svg) ![javascript](https://img.shields.io/badge/%20%20JavaScript-%20%20%20%20730L-f1e05a.svg) ![html](https://img.shields.io/badge/%20%20HTML-%20%20%20%20164L-e34c26.svg)
+
+Alternative: [**default**](./README.md), [**flat-square**](./README_flat_square.md), [**dynamic-fore-color**](./README_dfc.md), [**dynamic-fore-color (flat_square)**](./README_flat_square_dfc.md).
+
+A collection of badges designed for personal repositories, and I hope that all of these badges can be widely accepted and used in the document of any project so that they can become more and more standard. If you also have some new ideas about badges, just open an issue. Always remember that: **More than a coder, more than a designer.**
+
+So, how to create such cute badges? It's very simple. As it's only registered on [npm](https://www.npmjs.com/), you should install it by typing:
+
+```bash
+sudo npm install -g badges-cli
+```
+
+Then you can use this command-line tool for creating badges yourself:
+
+Take the following command as an example, `t` means text content, and `c` means color. If you want to create a badge with SVG sources, you can specify with `p` to tell the tool where to find your sources. Finally, `o` is used to specify where to export the badge.
+
+```bash
+badge {{ARGS}}
+```
+
+One more thing, according to [the suggestion](https://github.com/facebook/jest/issues/5438#issuecomment-362553867) during creating badges for Jest, this tool has been extended to support skins with `s` to specify, which value can be "light" or "dark" temporarily at this moment.
+
+To uninstall the tool, you can just uninstall it by typing:
+
+```bash
+sudo npm uninstall -g badges-cli
+```
+
+As for how to create a badge and add it to the collection? There are some steps you may need to follow:
+
+1. Fork the repository
+2. Install `badges-cli`
+3. Create a logo with SVG formatted (**recommended**) or other formats like PNG. (_**The logo should be wrapped into a square, in another word, the width should be equal to the height, or it would have been horizontally squished.**_)
+4. Save the logo in the folder `dist`
+5. Add data for your badge in the file `script/data.js`
+ ```js
+ const data = {
+ // ...
+ 'React Router': {
+ fileName: 'react-router.svg',
+ color: '#D0021B',
+ description: 'A badge used for projects using React Router'
+ },
+ };
+ ```
+5. Run the script by typing `npm run build`
+6. If successful, the readme file will be automatically updated
+7. Finally, push all updates and create a pull request for your change
+8. **Done!!**
+
+> Note that: so far haven't I thought out a perfect solution for calculating the width of text accurately yet, and it means that the text can not be aligned in some cases.
+
+*Note: if you like this project, feel free to buy me a swimming chance:*
+
+[![badges](dist/paypal.svg)](http://paypal.me/aleen42) [![badges](dist/patreon.svg)](https://www.patreon.com/aleen42) [![badges](dist/buymeacoffee.svg)](https://www.buymeacoffee.com/aleen42)
diff --git a/script/data.js b/script/data.js
new file mode 100644
index 0000000..e5e3c9f
--- /dev/null
+++ b/script/data.js
@@ -0,0 +1,225 @@
+/***********************************************************************
+ * _
+ * _____ _ ____ _ |_|
+ * | _ |/ \ ____ ____ __ ___ / ___\/ \ __ _ ____ _
+ * | |_| || | / __ \/ __ \\ '_ \ _ / / | |___\ \ | |/ __ \| |
+ * | _ || |__. ___/. ___/| | | ||_|\ \___ | _ | |_| |. ___/| |
+ * |_/ \_|\___/\____|\____||_| |_| \____/|_| |_|_____|\____||_|
+ *
+ * ================================================================
+ * More than a coder, More than a designer
+ * ================================================================
+ *
+ *
+ * - Document: data.js
+ * - Author: aleen42
+ * - Description: data for building badges
+ * - Create Time: Apr 20th, 2017
+ * - Update Time: Jan 30th, 2024
+ *
+ *
+ **********************************************************************/
+
+module.exports = [
+ {
+ 'name': 'Coder',
+ 'data': {
+ 'CLI': { fileName: 'cli.svg', color: '#0D0D0D', description: 'A badge used for projects which provide command-line interfaces' },
+ 'Terser': { fileName: 'terser.svg', color: '#0D0D0D', description: 'A badge used for projects using [Terser](https://github.com/terser/terser) for compressing JavaScript' },
+ 'CodePen': { fileName: 'codepen.svg', color: '#1C1C1C', description: 'A badge used for projects running on CodePen' },
+ 'GitHub': { fileName: 'github.svg', color: '#1C1C1C', description: 'A badge used for GitHub repositories' },
+ 'Hacker': { fileName: 'hacker.svg', color: '#1C1C1C', description: 'A badge used for hacking projects (**Business Using is not allowed)**' },
+ 'IDEA': { fileName: 'idea.svg', color: '#1C1C1C', description: 'A badge for the IDEA editor' },
+ 'Rome': { fileName: 'rome.svg', color: '#1C1C1C', description: 'A badge used for projects built with [Rome](https://github.com/rome/tools)' },
+ 'Elasticsearch': { fileName: 'elasticsearch.svg', color: '#232323', description: 'A badge used for projects using [Elasticsearch](https://github.com/elastic/elasticsearch)' },
+ 'Kibana': { fileName: 'kibana.svg', color: '#353535', description: 'A badge used for projects using [Kibana](https://github.com/elastic/kibana)' },
+ 'Logstash': { fileName: 'logstash.svg', color: '#373737', description: 'A badge used for projects using [Logstash](https://github.com/elastic/logstash)' },
+ 'Gitbook': [
+ { fileName: 'gitbook.png', color: '#B7B7B7', description: 'A badge used for books publish by Gitbook' },
+ { fileName: 'gitbook.svg', color: '#3681FC', description: 'A badge used for books publish by Gitbook' }
+ ],
+ 'Chrome Extensions': { fileName: 'chrome_extensions.svg', color: '#DADADA', description: 'A badge used for Chrome extensions' },
+ 'Gulp': { fileName: 'gulp.svg', color: '#D34A47', description: 'A badge used for projects using Gulp to build' },
+ 'Angular': { fileName: 'angular.svg', color: '#DD1B16', description: 'A badge used for repositories which has used the framework, Angular' },
+ 'PostCSS': { fileName: 'postcss.svg', color: '#DD3A0A', description: 'A badge used for projects using [PostCSS](https://github.com/postcss/postcss)' },
+ 'Svelte': { fileName: 'svelte.svg', color: '#ff3e00', description: 'A badge used for repositories that using [Svelte](https://github.com/sveltejs/svelte)' },
+ 'Gitlab': { fileName: 'gitlab.svg', color: '#FC6D26', description: 'A badge used for Gitlab repositories' },
+ 'Mocha': { fileName: 'mocha.svg', color: '#8D6748', description: 'A badge used for projects using Mocha for unit tests' },
+ 'Bower': { fileName: 'bower.svg', color: '#F68A31', description: 'A badge used for bower packages' },
+ 'Java': { fileName: 'java.svg', color: '#E76F00', description: 'A badge used for projects that coded with Java' },
+ 'TC39': [
+ { fileName: 'tc39.svg', color: '#FC7C00', description: 'A badge used for [TC39](https://github.com/tc39) committee' },
+ { text: 'stage 1', fileName: 'tc39.svg', color: '#FC7C00', description: 'A badge used for proposals under stage 1 of [TC39](https://github.com/tc39) committee' },
+ { text: 'stage 2', fileName: 'tc39.svg', color: '#FC7C00', description: 'A badge used for proposals under stage 2 of [TC39](https://github.com/tc39) committee' },
+ { text: 'stage 3', fileName: 'tc39.svg', color: '#FC7C00', description: 'A badge used for proposals under stage 3 of [TC39](https://github.com/tc39) committee' },
+ { text: 'stage 4', fileName: 'tc39.svg', color: '#FC7C00', description: 'A badge used for proposals under stage 4 of [TC39](https://github.com/tc39) committee' }
+ ],
+ 'Parcel': { fileName: 'parcel.svg', color: '#E4AF76', description: 'A badge used for projects built with [Parcel](https://github.com/parcel-bundler/parcel)' },
+ 'Grafana': { fileName: 'grafana.svg', color: '#F69319', description: 'A badge used for projects using [Grafana](https://github.com/grafana/grafana)' },
+ 'Sublime Text': { fileName: 'sublime_text.png', color: '#FFAD46', description: 'A badge for the Sulime Text editor' },
+ 'RSS': { fileName: 'rss.svg', color: '#FF9911', description: 'A badge used for RSS subscribing' },
+ 'Grunt': { fileName: 'grunt.svg', color: '#FBA919', description: 'A badge used for projects using grunt to build' },
+ 'Tensorflow': { fileName: 'tensorflow.svg', color: '#F8BF3C', description: 'A badge use for projects using Tensorflow' },
+ 'ESBuild': { fileName: 'esbuild.svg', color: '#FFCF00', description: 'A badge used for projects built with [ESBuild](https://github.com/evanw/esbuild)' },
+ 'JavaScript': { fileName: 'javascript.svg', color: '#F7DF1E', description: 'A badge used for projects that coded with JavaScript' },
+ 'Node': { fileName: 'node.svg', color: '#689F63', description: 'A badge used for projects built with Node.js' },
+ 'Atom': { fileName: 'atom.svg', color: '#7ECE8D', description: 'A badge for the Atom editor' },
+ 'CSSNano': { fileName: 'cssnano.svg', color: '#40B97B', description: 'A badge used for projects using [CSSNano](https://github.com/cssnano/cssnano) for compacting CSS' },
+ 'Vue': { fileName: 'vue.svg', color: '#3eaf7c', description: 'A badge used for repositories which has used the framework, Vue' },
+ 'VuePress': { fileName: 'vuepress.svg', color: '#3eaf7c', description: 'A badge used for books publish by Vuepress' },
+ 'Apiary': { fileName: 'apiary.svg', color: '#59C5AC', description: 'A badge used for documents written on Apiary' },
+ 'TailwindCSS': { fileName: 'tailwindcss.svg', color: '#18B5B9', description: 'A badge used for projects using [TailwindCSS](https://github.com/tailwindlabs/tailwindcss)' },
+ 'Golang': { fileName: 'golang.svg', color: '#00ACD7', description: 'A badge used for projects that coded with Golang' },
+ 'React': { fileName: 'react.svg', color: '#61DAFB', description: 'A badge used for repositories that using [React](https://github.com/facebook/react)' },
+ 'Docker': { fileName: 'docker.svg', color: '#1D91B4', description: 'A badge used for projects deployed on Docker' },
+ 'Kotlin': { fileName: 'kotlin.svg', color: '#0593D6', description: 'A badge used for projects that coded with Kotlin' },
+ 'Visual Studio Code': { fileName: 'visual_studio_code.svg', color: '#028FD6', description: 'A badge for the Visual Studio Code IDE' },
+ 'TypeScript': { fileName: 'typescript.svg', color: '#007ACC', description: 'A badge used for projects that coded with TypeScript' },
+ 'Python': { fileName: 'python.svg', color: '#3771A1', description: 'A badge used for projects that coded with Python' },
+ 'JSFiddle': { fileName: 'jsfiddle.svg', color: '#4679A4', description: 'A badge used for projects running on JSFiddle' },
+ 'Webpack': { fileName: 'webpack.svg', color: '#6F95DB', description: 'A badge used for projects built with [Webpack](https://github.com/webpack/webpack)' },
+ 'Vite': { fileName: 'vitejs.svg', color: '#8779FF', description: 'A badge used for projects using [Vite](https://github.com/vitejs/vite)' },
+ 'ESLint': { fileName: 'eslint.svg', color: '#4B32C3', description: 'A badge used for projects using ESLint' },
+ 'Eclipse': { fileName: 'eclipse.svg', color: '#2b2152', description: 'A badge for the Eclipse editor' },
+ 'Preact': { fileName: 'preact.svg', color: '#673AB8', description: 'A badge used for repositories that using [Preact](https://github.com/preactjs/preact)' },
+ 'Redux': { fileName: 'redux.svg', color: '#764ABC', description: 'A badge used for projects using React Redux' },
+ 'Visual Studio': { fileName: 'visual_studio.svg', color: '#68217A', description: 'A badge for the Visual Studio IDE' },
+ 'Jasmine': { fileName: 'jasmine.svg', color: '#8A4182', description: 'A badge used for projects using Jasmine for testing JavaScript' },
+ 'QUnit': { fileName: 'qunit.svg', color: '#9E2087', description: 'A badge for projects using QUnit for unit tests' },
+ 'ReactiveX': { fileName: 'reactivex.svg', color: '#C7008F', description: 'A badge for projects using ReactiveX' },
+ 'Modernizr': { fileName: 'modernizr.svg', color: '#D91B77', description: 'A badge for projects using Modernizr' },
+ 'Jest': [
+ { fileName: 'jest.svg', color: '#99425b', description: 'A badge used for projects using [Jest](https://github.com/facebook/jest) for testing JavaScript.' },
+ { fileName: 'jest.svg', skin: 'light', color: '#99425b', description: 'A badge used for projects using [Jest](https://github.com/facebook/jest) for testing JavaScript. *(**official accepted** by [facebook/jest#5348](https://github.com/facebook/jest/issues/5438))*' }
+ ],
+ 'Erlang': { fileName: 'erlang.svg', color: '#A90533', description: 'A badge used for projects that coded with Erlang' },
+ 'React Router': { fileName: 'react-router.svg', color: '#D0021B', description: 'A badge used for projects using [React Router](https://github.com/remix-run/react-router)' },
+ 'npm': { fileName: 'npm.svg', color: '#C12127', description: 'A badge used for npm packages' },
+ 'Rollup': { fileName: 'rollup.svg', color: '#DA3336', description: 'A badge used for projects built with [Rollup](https://github.com/rollup/rollup)' }
+ }
+ },
+ {
+ 'name': 'Community',
+ 'data': {
+ 'Stack Overflow': { fileName: 'stackoverflow.svg', color: '#F48023', description: 'A badge used for references on Stack Overflow.' },
+ 'Medium': { fileName: 'medium.svg', color: '#14C767', description: 'A badge used for articles shared on Medium.' },
+ 'Super User': { fileName: 'superuser.svg', color: '#2EACE3', description: 'A badge used for references on Super User' },
+ 'Stack Exchange': { fileName: 'stackexchange.svg', color: '#205296', description: 'A badge used for references on Stack Exchange.' },
+ '掘金翻译计划': { fileName: 'juejin_translation.svg', color: '#006CFF', description: 'A badge used for any articles translated by [gold-miner](https://github.com/xitu/gold-miner).' },
+ 'Server Fault': { fileName: 'serverfault.svg', color: '#231F20', description: 'A badge used for references on Server Fault.' }
+ }
+ },
+ {
+ 'name': 'Communication',
+ 'data': {
+ 'Coremail Lunkr': { fileName: 'lunkr.svg', color: '#FAF00A', description: 'A badge used for sharing communication ways on Coremail Lunkr' },
+ 'WeChat': { fileName: 'wechat.svg', color: '#2DC100', description: 'A badge used for sharing communication ways on WeChat' },
+ 'Line': { fileName: 'line.svg', color: '#00B900', description: 'A badge used for sharing communication ways on Line' },
+ 'WhatsApp': { fileName: 'whatsapp.svg', color: '#4CCA5A', description: 'A badge used for sharing communication ways on WhatsApp' },
+ 'Skype': { fileName: 'skype.svg', color: '#00AFF0', description: 'A badge used for sharing communication ways on Skype' },
+ 'Telegram': { fileName: 'telegram.svg', color: '#2EA5D8', description: 'A badge used for sharing communication ways on Telegram' },
+ 'Messenger': { fileName: 'messenger.svg', color: '#009BFF', description: 'A badge used for sharing communication ways on Messenger' },
+ 'Discord': { fileName: 'discord.svg', color: '#5865F2', description: 'A badge used for groups discussed on [Discord](https://discord.com/)' },
+ 'Slack': { fileName: 'slack.svg', color: '#392538', description: 'A badge used for groups discussed on [Slack](https://slack.com/)' },
+ 'Gitter': { fileName: 'gitter.svg', color: '#F30761', description: 'A badge used for groups discussed on [Gitter](https://gitter.im/)' }
+ }
+ },
+ {
+ 'name': 'Multimedia',
+ 'data': {
+ 'SoundCloud': { fileName: 'soundcloud.svg', color: '#FF4700', description: 'A badge used for music shared on SoundCloud' },
+ 'Spotify': { fileName: 'spotify.svg', color: '#1ED760', description: 'A badge used for music shared on Spotify' }
+ }
+ },
+ {
+ 'name': 'Inc',
+ 'data': {
+ 'Soundtooth': { fileName: 'soundtooth.svg', color: '#E15132', description: 'A badge used for any project of Soundtooth Inc.' },
+ 'Bitcoin': { fileName: 'bitcoin.svg', color: '#F7931A', description: 'A badge used for the Bitcoin Inc.' },
+ 'Amazon': { fileName: 'amazon.svg', color: '#FF9900', description: 'A badge used for the Amazon Inc.' },
+ 'Monsoon': { fileName: 'monsoon.svg', color: '#64AA51', description: 'A badge used for the Monsoon Inc.' },
+ 'Codrops': { fileName: 'codrops.svg', color: '#237DAC', description: 'A badge used for any project of Codrops Inc.' },
+ 'Coremail': { fileName: 'coremail.svg', color: '#0065AC', description: 'A badge used for the Coremail Inc.' },
+ 'NASA': { fileName: 'nasa.svg', color: '#1A5DAD', description: 'A badge used for projects of NASA' },
+ 'xitu': { fileName: 'xitu.svg', color: '#006CFF', description: 'A badge used for any articles of Xitu Inc.' },
+ 'Airbnb': { fileName: 'airbnb.svg', color: '#FF5A5F', description: 'A badge used for the Airbnb Inc.' }
+ }
+ },
+ {
+ 'name': 'Social Media',
+ 'data': {
+ 'Youtube': { fileName: 'youtube.svg', color: '#FF0000', description: 'A badge used for Youtube.' },
+ 'Google+': { fileName: 'google_plus.svg', color: '#DC4A38', description: 'A badge used for sharing communities on Google Plus.' },
+ 'Reddit': { fileName: 'reddit.svg', color: '#FF4500', description: 'A badge used for articles shared on Reddit.' },
+ 'Snapchat': { fileName: 'snapchat.svg', color: '#FFFC00', description: 'A badge used for Snapchat.' },
+ 'Twitter': { fileName: 'twitter.svg', color: '#1DA1F2', description: 'A badge used for Twitter.' },
+ 'Facebook': { fileName: 'facebook.svg', color: '#3C5A99', description: 'A badge used for Facebook.' },
+ 'Instagram': { fileName: 'instagram.svg', color: '#B900B4', description: 'A badge used for Instagram.' },
+ 'Sina': { fileName: 'sina_weibo.svg', color: '#E6162D', description: 'A badge used for sharing communities on Sina Weibo.' },
+ 'Pinterest': { fileName: 'pinterest.svg', color: '#CE0F19', description: 'A badge used for sharing communities on Pinterest.' }
+ }
+ },
+ {
+ 'name': 'Sponsors',
+ 'data': {
+ 'Patreon': { fileName: 'patreon.svg', color: '#FF5900', description: 'A badge used for Patreon sponsors.' },
+ 'Buy Me A Coffee': { fileName: 'buymeacoffee.svg', color: '#FFDD00', description: 'A badge used for BuyMeACoffee sponsors.' },
+ 'IssueHunt': { fileName: 'issuehunt.svg', color: '#2CC28C', description: 'A badge used for IssueHunt sponsors.' },
+ 'Alipay': { fileName: 'alipay.svg', color: '#1CACEB', description: 'A badge used for Alipay sponsors.' },
+ 'Paypal': { fileName: 'paypal.svg', color: '#179BD7', description: 'A badge used for Paypal sponsors.' }
+ }
+ },
+ {
+ 'name': 'Car',
+ 'data': {
+ 'Mercedes Benz': { fileName: 'mercedes_benz.svg', color: '#333333', description: 'A badge used for cars of Mercedes Benz' },
+ 'Toyota': { fileName: 'toyota.svg', color: '#FF0000', description: 'A badge used for cars of Toyota' },
+ 'Lamborghini': { fileName: 'lamborghini.svg', color: '#D8A016', description: 'A badge used for cars of Lamborghini' },
+ 'Land Rover': { fileName: 'land_rover.svg', color: '#008948', description: 'A badge used for cars of Land Rover' },
+ 'BMW': { fileName: 'bmw.svg', color: '#318DBB', description: 'A badge used for cars of BMW' },
+ 'Audi': { fileName: 'audi.svg', color: '#888A8C', description: 'A badge used for cars of Audi' },
+ 'Marussia': { fileName: 'marussia.svg', color: '#003C84', description: 'A badge used for cars of Marussia' },
+ 'Maserati': { fileName: 'maserati.svg', color: '#0C2E59', description: 'A badge used for cars of Maserati' },
+ 'Koenigsegg': { fileName: 'koenigsegg.svg', color: '#304B84', description: 'A badge used for cars of Koenigsegg' },
+ 'Bugatti': { fileName: 'bugatti.svg', color: '#BE0030', description: 'A badge used for cars of Bugatti' },
+ 'Porsche': { fileName: 'porsche.svg', color: '#E2001A', description: 'A badge used for cars of Porsche' },
+ 'Mitsubishi': { fileName: 'mitsubishi.svg', color: '#E60012', description: 'A badge used for cars of Mitsubishi' },
+ 'Ferrari': { fileName: 'ferrari.svg', color: '#ED1C24', description: 'A badge used for cars of Ferrari' },
+ 'Tesla': { fileName: 'tesla.svg', color: '#E82127', description: 'A badge used for cars of Tesla' }
+ }
+ },
+ {
+ 'name': 'Football Clubs',
+ 'data': {
+ 'Manchester United': { fileName: 'manchester_united.svg', color: '#E12F22', description: 'A badge used for FC Manchester United' },
+ 'Real Madrid': { fileName: 'real_madrid.svg', color: '#FEBE10', description: 'A badge used for FC Real Madrid' },
+ 'Liverpool': { fileName: 'liverpool.svg', color: '#00A398', description: 'A badge used for FC Liverpool' },
+ 'Chelsea': { fileName: 'chelsea.svg', color: '#034694', description: 'A badge used for FC Chelsea' },
+ 'Barcelona': { fileName: 'barcelona.svg', color: '#A50044', description: 'A badge used for FC Barcelona' },
+ 'Bayern Munchen': { fileName: 'bayern_munchen.svg', color: '#EF325B', description: 'A badge used for FC Bayern Munchen' },
+ 'Arsenal': { fileName: 'arsenal.svg', color: '#EF0107', description: 'A badge used for FC Arsenal' },
+ 'AC Milan': { fileName: 'ac_milan.svg', color: '#EA2A2D', description: 'A badge used for FC AC Milan' }
+ }
+ },
+ {
+ 'name': 'Game',
+ 'data': {
+ 'Ingress': { fileName: 'ingress.svg', color: '#09AEED', description: 'A badge used for the game Ingress published by Niantic Inc.' },
+ 'Steam': { fileName: 'steam.svg', color: '#171A21', description: 'A badge used for any game supported on the platform Steam' },
+ 'OSU!': { fileName: 'osu.png', color: '#F58AAB', description: 'A badge used for the game osu! published by ppy' }
+ }
+ },
+ {
+ 'name': 'Designer',
+ 'data': {
+ 'Flash': { fileName: 'flash.svg', color: '#FE3A0C', description: 'A badge used for designing projects using Flash as a tool' },
+ 'Illustrator': { fileName: 'illustrator.svg', color: '#FF7F18', description: 'A badge used for designing projects using Illustrator as a tool' },
+ 'Zeplin': { fileName: 'zeplin.svg', color: '#FDBD39', description: 'A badge used for designing projects with Zeplin' },
+ 'Dreamweaver': { fileName: 'dreamweaver.svg', color: '#4CF900', description: 'A badge used for projects using Dreamweaver as a tool' },
+ 'Photoshop': { fileName: 'photoshop.svg', color: '#289CC7', description: 'A badge used for designing projects using Photoshop as a tool' },
+ 'Behance': { fileName: 'behance.svg', color: '#0155E5', description: 'A badge used for designing projects sharing on Behance' },
+ 'After Effects': { fileName: 'after_effects.svg', color: '#B696CF', description: 'A badge used for designing projects using After Effect as a tool' },
+ 'Premiere': { fileName: 'premiere.svg', color: '#E579FF', description: 'A badge used for designing projects using Premiere as a tool' }
+ }
+ }
+];
diff --git a/script/setup.js b/script/setup.js
new file mode 100644
index 0000000..4f48f10
--- /dev/null
+++ b/script/setup.js
@@ -0,0 +1,113 @@
+/***********************************************************************
+ * _
+ * _____ _ ____ _ |_|
+ * | _ |/ \ ____ ____ __ ___ / ___\/ \ __ _ ____ _
+ * | |_| || | / __ \/ __ \\ '_ \ _ / / | |___\ \ | |/ __ \| |
+ * | _ || |__. ___/. ___/| | | ||_|\ \___ | _ | |_| |. ___/| |
+ * |_/ \_|\___/\____|\____||_| |_| \____/|_| |_|_____|\____||_|
+ *
+ * ================================================================
+ * More than a coder, More than a designer
+ * ================================================================
+ *
+ *
+ * - Document: data.js
+ * - Author: aleen42
+ * - Description: a script for building README.md
+ * - Create Time: Apr 20th, 2017
+ * - Update Time: Jan 30th, 2024
+ *
+ *
+ **********************************************************************/
+
+const SUCCESS = `\x1b[32m${'success '}\x1b[0m`;
+
+/**
+ * [fs: file system module]
+ * @type {[type]}
+ */
+const fs = require('fs');
+
+/**
+ * [exec: shell_exec module]
+ * @type {[type]}
+ */
+const execSync = require('child_process').execSync;
+
+/**
+ * [data: data for badges]
+ * @param {[type]} 'data' [description]
+ * @return {[type]} [description]
+ */
+const data = require('./sorted-data');
+
+const rootPath = './';
+const inputPath = `${rootPath}icon/`;
+const outputPath = `${rootPath}dist/`;
+const linkPath = 'https://badges.aleen42.com/src/';
+
+const suffix = (base, ...suffix) => [base, ...suffix].filter(x => x).join('_');
+
+const generateBadge = (style, dfc) => (name, badgeItem, index) => {
+ /** check whether badgeItem is an array */
+ const {text, fileName: fname, color, skin, description} = badgeItem;
+
+ /** extracting name from the file name */
+ let fileName = /([\s\S]+)\.[\s\S]+/.exec(fname);
+ if (fileName) {
+ fileName = fileName[1];
+ } else {
+ return '';
+ }
+
+ /** generating */
+ const outputName = `${suffix(`${fileName}${index !== void 0 ? `_${index + 1}` : ''}`, style, dfc ? 'dfc' : '')}.svg`;
+ const output = `${outputPath}${outputName}`;
+
+ if (!fs.existsSync(output)) {
+ console.log(execSync(`badge ${[
+ dfc ? '--dynamic-fore-color' : '',
+ `-c "${color}"`,
+ `-s ${skin || 'dark'}`,
+ `-t "${text || name}"`,
+ `-p ${inputPath}${fname}`,
+ `--style=${style}`,
+ `-o ${output}`,
+ ].join(' ')}`, {
+ encoding: 'utf8'
+ }));
+ }
+
+ /** documenting */
+ return `- [![${fileName}](${output})](${linkPath}${outputName}) ${description}\n`;
+};
+
+/** generate badges and document it */
+const content = (style = '', dfc) => data.reduce((text, {name, data}) => text
+ + `\n### ${name}\n\n`
+ + Object.entries(data).reduce((text, [name, badgeItem]) => {
+ const _generate = generateBadge(style, dfc);
+ if (Object.prototype.toString.call(badgeItem) === '[object Array]') {
+ /** badgeItem is an array */
+ return text + badgeItem.map((item, j) => {
+ return _generate(name, item, j);
+ }).join('');
+ } else {
+ return text + _generate(name, badgeItem);
+ }
+ }, '')
+ + '\n', fs.readFileSync(`${rootPath}/part/introduction.md`, 'utf8')
+ .replace(/{{ARGS}}/, [
+ '-t Alipay', '-c "#1CACEB"', '-p alipay.svg',
+ ...style ? [`--style=${style}`] : [],
+ ...dfc ? [`--dynamic-fore-color`] : [],
+ '-o output.svg',
+ ].join(' '))
+ .replace(//g, ''))
+ + fs.readFileSync(`${rootPath}/part/footer.md`, 'utf8');
+
+fs.writeFileSync(`${rootPath}README.md`, content());
+fs.writeFileSync(`${rootPath}README_flat_square.md`, content('flat_square'));
+fs.writeFileSync(`${rootPath}README_dfc.md`, content('', true));
+fs.writeFileSync(`${rootPath}README_flat_square_dfc.md`, content('flat_square', true));
+console.log(`${SUCCESS}Build completed`);
diff --git a/script/sorted-data.js b/script/sorted-data.js
new file mode 100644
index 0000000..7b35d7b
--- /dev/null
+++ b/script/sorted-data.js
@@ -0,0 +1,63 @@
+const fs = require('fs');
+const path = require('path');
+const data = require('./data');
+const TinyColor = require('@ctrl/tinycolor').default;
+
+data.forEach(category => {
+ const l = element => new TinyColor([].concat(element)[0].color).toHsl().l;
+ const h = element => new TinyColor([].concat(element)[0].color).toHsl().h;
+ category.data = Object.fromEntries(
+ Object.entries(category.data)
+ .sort((a, b) => a[0] < b[0] ? -1 : a[0] === b[0] ? 0 : 1) // sort by name
+ .sort((a, b) => l(a[1]) - l(b[1])) // sort by lightness
+ .sort((a, b) => h(a[1]) - h(b[1])) // sort by hue
+ )
+});
+
+const date = new Date();
+const [y, m, d] = [
+ date.getFullYear(),
+ date.getMonth(),
+ `${date.getDate()}`,
+];
+
+fs.writeFileSync(path.resolve(__dirname, './data.js'), `/***********************************************************************
+ * _
+ * _____ _ ____ _ |_|
+ * | _ |/ \\ ____ ____ __ ___ / ___\\/ \\ __ _ ____ _
+ * | |_| || | / __ \\/ __ \\\\ '_ \\ _ / / | |___\\ \\ | |/ __ \\| |
+ * | _ || |__. ___/. ___/| | | ||_|\\ \\___ | _ | |_| |. ___/| |
+ * |_/ \\_|\\___/\\____|\\____||_| |_| \\____/|_| |_|_____|\\____||_|
+ *
+ * ================================================================
+ * More than a coder, More than a designer
+ * ================================================================
+ *
+ *
+ * - Document: data.js
+ * - Author: aleen42
+ * - Description: data for building badges
+ * - Create Time: Apr 20th, 2017
+ * - Update Time: ${[
+ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec',
+][m]} ${d + (/1$/.test(d) ? 'st' : /2$/.test(d) ? 'nd' : /3$/.test(d) ? 'rd' : 'th')}, ${y}
+ *
+ *
+ **********************************************************************/
+
+module.exports = ${
+ JSON.stringify(data, (k, v) => v.color
+ ? JSON.stringify(v, null, 1)
+ .replace(/^[\t ]*"[^:\n\r]+(? match.replace(/"/g, ''))
+ .replace(/{\n\s/g, '{ ')
+ .replace(/\n}/g, ' }')
+ .replace(/\n/g, '')
+ : v, 4)
+ .replace(/\\"/g, '"')
+ .replace(/"{/g, '{')
+ .replace(/}"/g, '}')
+ .replace(/"/g, '\'')
+};
+`, {encoding: 'utf8'});
+
+module.exports = data;
diff --git a/script/tc39-bot.js b/script/tc39-bot.js
new file mode 100644
index 0000000..c3a93cf
--- /dev/null
+++ b/script/tc39-bot.js
@@ -0,0 +1,107 @@
+const [, , GITHUB_ACCESS_TOKEN, VERBOSE] = process.argv;
+
+listOrgRepos('tc39').then(repos => {
+ const proposals = repos.map(({full_name, name, default_branch}) => [full_name, name, default_branch]).filter(([fullName]) => /tc39\/proposal-/.test(fullName));
+ Promise.all(proposals.map(([fullName, name, base]) => readRepo(fullName).then(([content]) => {
+ const RegExp = /Stage\s*([1234])/gi;
+ if (RegExp.test(content)) {
+ return forkRepo(fullName).then(modify);
+ }
+
+ function modify() {
+ return readRepo(`badges-bot/${name}`).then(([content, path, sha]) => {
+ const stage = content.match(RegExp).map(s => parseInt(s.replace(RegExp, '$1'))).sort((a, b) => b - a)[0];
+ if (!content.includes('aleen42')) {
+ return commitContent().then(createPR);
+
+ function commitContent() {
+ return request(`/repos/badges-bot/${name}/contents/${path}`, {
+ message: 'Use badges for states',
+ sha,
+ content: Buffer.from(content.replace(/^(#)+(\s)*(.*)\n/, `$&\n![Stage ${stage}](https://badges.aleen42.com/src/tc39_${stage + 1}.svg)\n`)).toString('base64'),
+ committer: {name: 'Aleen', email: 'aleen42@vip.qq.com'},
+ }, 'PUT');
+ }
+
+ function createPR() {
+ return request(`/repos/tc39/${name}/pulls`, {
+ title: 'Add a badge for specifying current stage',
+ head: `badges-bot:${base}`,
+ base,
+ body: 'According to https://es.discourse.group/t/a-standard-badge-for-tc39/731, automatically generate a badge for specifying current stage of the proposal.',
+ }, 'POST');
+ }
+ }
+ });
+
+ }
+ }))).then(() => console.log('done'));
+});
+
+// listOrgRepos('badges-bot').then(repos => Promise.all(repos.map(({full_name}) => request(`/repos/${full_name}`, {}, 'DELETE'))))
+// .then(() => console.log('done'));
+
+// helpers
+
+function request(path, data, method) {
+ if (method === 'GET') {
+ const params = new URLSearchParams();
+ Object.entries(data).forEach(([key, value]) => params.append(key, `${value}`));
+ path += `?${params}`;
+ }
+
+ return new Promise((resolve, reject) => {
+ if (VERBOSE) {
+ console.log(path);
+ }
+ const req = require('https').request({
+ hostname: 'api.github.com',
+ port: 443,
+ path,
+ method,
+ headers: {
+ 'Accept': 'application/vnd.github.v3+json',
+ 'Authorization': `token ${GITHUB_ACCESS_TOKEN}`,
+ 'User-Agent': 'node.js',
+ },
+ }, res => {
+ let body = '';
+ res.on('data', chunk => {
+ body += chunk;
+ });
+ res.on('end', () => {
+ resolve(body ? JSON.parse(body) : body);
+ });
+ });
+
+ req.on('error', reject);
+ /POST|PUT|DELETE/.test(method) && req.write(JSON.stringify(data));
+ req.end();
+ });
+}
+
+function requestAll(path, data, method) {
+ const result = [];
+
+ let _recursive;
+ return (_recursive = pageNum => request(path, {...data, page: pageNum, per_page: 100}, method).then(data => {
+ if (data[0]) {
+ result.push(...data);
+ return _recursive(++pageNum);
+ } else {
+ return result;
+ }
+ }))(1);
+}
+
+function forkRepo(repo) {
+ return request(`/repos/${repo}/forks`, {organization: 'badges-bot'}, 'POST');
+}
+
+function listOrgRepos(org) {
+ return requestAll(`/orgs/${org}/repos`, {type: 'public'}, 'GET');
+}
+
+function readRepo(repo) {
+ return request(`/repos/${repo}/readme`).then(({content, path, sha, encoding}) => [`${Buffer.from(content, encoding)}`, path, sha]);
+}
diff --git a/tool/lib/index.js b/tool/lib/index.js
new file mode 100644
index 0000000..4c3c15c
--- /dev/null
+++ b/tool/lib/index.js
@@ -0,0 +1,144 @@
+/***********************************************************************
+ * _
+ * _____ _ ____ _ |_|
+ * | _ |/ \ ____ ____ __ ___ / ___\/ \ __ _ ____ _
+ * | |_| || | / __ \/ __ \\ '_ \ _ / / | |___\ \ | |/ __ \| |
+ * | _ || |__. ___/. ___/| | | ||_|\ \___ | _ | |_| |. ___/| |
+ * |_/ \_|\___/\____|\____||_| |_| \____/|_| |_|_____|\____||_|
+ *
+ * ================================================================
+ * More than a coder, More than a designer
+ * ================================================================
+ *
+ *
+ * - Document: index.js
+ * - Author: aleen42
+ * - Description: the main entrance for badge
+ * - Create Time: Mar 20th, 2017
+ * - Update Time: Sep 8th, 2022
+ *
+ *
+ **********************************************************************/
+
+const execSync = require('child_process').execSync;
+const skins = require('./skins');
+const fs = require('fs');
+
+const TinyColor = require('@ctrl/tinycolor').default;
+
+const ERROR = `\x1b[31merror \x1b[0m`;
+const SUCCESS = `\x1b[32msuccess \x1b[0m`;
+
+const badges = {
+ run: options => {
+ const FONT_FAMILY = 'DejaVu Sans,Verdana,Geneva,sans-serif';
+ const optFontSize = +options.fontSize, FONT_SIZE = optFontSize > 0 ? +options.fontSize : 12;
+ /** options validation */
+ if (options.text === void 0) {
+ console.log(`${ERROR} Text missed`);
+ return;
+ }
+
+ if (options.output === void 0) {
+ console.log(`${ERROR} Missed Output Name`);
+ return;
+ }
+
+ options = {
+ path: '', data: '',
+ ...options,
+ skin: skins[options.skin || 'dark'] || skins['dark'],
+ color: new TinyColor(options.color || '000').toHexString(),
+ y: options.y != null,
+ dynamicFC: options['dynamic-fore-color'] != null,
+ };
+
+ /** calculate the width of a given text */
+ const textBlockWidth = measureWidth(options.text, FONT_SIZE, FONT_FAMILY);
+
+ if (!textBlockWidth) {
+ console.log(`${ERROR} Text contains non-ascii characters`);
+ return;
+ }
+
+ const imgBlockWidth = 25;
+ const [totalWidth, leftDistance] = [imgBlockWidth + textBlockWidth, imgBlockWidth + textBlockWidth / 2 - 1];
+
+ let imageData = options.data;
+ if (options.path !== '') {
+ const content = fs.readFileSync(options.path).toString('base64');
+ // vector
+ /[\s\S]*?\.svg$/i.test(options.path) && (imageData = `data:image/svg+xml;base64,${content}`);
+ // image
+ /[\s\S]*?\.(?:gif|png|jpg|jpeg)$/i.test(options.path) && (imageData = `data:image;base64,${fs.readFileSync(options.path).toString('base64')}`);
+ }
+
+ // language=HTML
+ const content = {
+ 'default': `
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${options.text}
+ ${options.text}
+
+ `,
+ 'flat_square': `
+
+
+
+
+
+
+ ${options.text}
+
+ `
+ }[options.style || 'default'];
+
+ /** start to create a local file */
+ fs.open(options.output, 'wx', err => {
+ if (err && !options.y && err.code === 'EEXIST') {
+ console.log(`${ERROR} File already exists`);
+ return;
+ }
+
+ /** write to the file when it is not existed */
+ fs.writeFile(options.output, content.split('\t').join(''), err => {
+ if (err) {
+ console.log(`${ERROR} Failed to create the file`);
+ return;
+ }
+
+ console.log(`${SUCCESS}Create a badge for ${options.text}`);
+ });
+ });
+ },
+
+ test: () => execSync('badge -h').toString(),
+};
+
+/** start to calculate the width of text */
+function measureWidth(text, FONT_SIZE, FONT_FAMILY) {
+ const {createCanvas} = require('canvas');
+ const measure = createCanvas(200, 50);
+ const measureContext = measure.getContext('2d');
+ measureContext.font = `${FONT_SIZE}px ${FONT_FAMILY}`;
+ return measureContext.measureText(text).width + /* padding = */5 * 2;
+}
+
+module.exports = badges;
diff --git a/tool/lib/skins.js b/tool/lib/skins.js
new file mode 100644
index 0000000..a7802b3
--- /dev/null
+++ b/tool/lib/skins.js
@@ -0,0 +1,26 @@
+/***********************************************************************
+ * _
+ * _____ _ ____ _ |_|
+ * | _ |/ \ ____ ____ __ ___ / ___\/ \ __ _ ____ _
+ * | |_| || | / __ \/ __ \\ '_ \ _ / / | |___\ \ | |/ __ \| |
+ * | _ || |__. ___/. ___/| | | ||_|\ \___ | _ | |_| |. ___/| |
+ * |_/ \_|\___/\____|\____||_| |_| \____/|_| |_|_____|\____||_|
+ *
+ * ================================================================
+ * More than a coder, More than a designer
+ * ================================================================
+ *
+ *
+ * - Document: skins.js
+ * - Author: aleen42
+ * - Description: skins for badges
+ * - Create Time: Feb 3rd, 2018
+ * - Update Time: Feb 3rd, 2018
+ *
+ *
+ **********************************************************************/
+
+module.exports = {
+ dark: { color: '555' },
+ light: { color: 'fff' }
+};
diff --git a/tool/lib/start.js b/tool/lib/start.js
new file mode 100755
index 0000000..ca1cecb
--- /dev/null
+++ b/tool/lib/start.js
@@ -0,0 +1,91 @@
+#! /usr/bin/env node
+
+/***********************************************************************
+ * _
+ * _____ _ ____ _ |_|
+ * | _ |/ \ ____ ____ __ ___ / ___\/ \ __ _ ____ _
+ * | |_| || | / __ \/ __ \\ '_ \ _ / / | |___\ \ | |/ __ \| |
+ * | _ || |__. ___/. ___/| | | ||_|\ \___ | _ | |_| |. ___/| |
+ * |_/ \_|\___/\____|\____||_| |_| \____/|_| |_|_____|\____||_|
+ *
+ * ================================================================
+ * More than a coder, More than a designer
+ * ================================================================
+ *
+ *
+ * - Document: start.js
+ * - Author: aleen42
+ * - Description: for shell script to use
+ * - Create Time: Mar 20th, 2017
+ * - Update Time: Sep 8th, 2022
+ *
+ *
+ **********************************************************************/
+
+const stats = require('../../package.json');
+const enhance = str => `\x1b[32m${str}\x1b[0m`;
+const brand = `
+ _
+ _____ _ ____ _ |_|
+ | _ |/ \\ ____ ____ __ ___ / ___\\/ \\ __ _ ____ _
+ | |_| || | / __ \\/ __ \\\\ '_ \\ _ / / | |___\\ \\ | |/ __ \\| |
+ | _ || |__. ___/. ___/| | | ||_|\\ \\___ | _ | |_| |. ___/| |
+ |_/ \\_|\\___/\\____|\\____||_| |_| \\____/|_| |_|_____|\\____||_|
+
+ ================================================================
+ More than a coder, More than a designer
+ ================================================================
+`;
+
+/**
+ * [badge: import the module]
+ * @type {Object}
+ */
+const badge = require('./index');
+
+/**
+ * [opt: help options]
+ * @type {[type]}
+ */
+const opt = require('node-getopt')
+ .create([
+ ['t', 'text=[Any text]', '\tThe text of your badge'],
+ ['', 'dynamic-fore-color', '\tDynamic Fore Color'],
+ ['c', 'color=[Color Value]', `\tThe color of your badge
+\t${enhance('--color=#000')} \t\t\t\t\tBlack background (${enhance('default')})
+\t${enhance('--color=rgb(0, 0, 0)')} \t\t\t\tBlack background
+\t${enhance('--color=black')} \t\t\t\t\tBlack background
+`],
+ ['s', 'skin=[Skin]', `\tThe skin of your badge
+\t${enhance('--skin=dark')} \t\t\t\t\tDark theme (${enhance('default')})
+\t${enhance('--skin=light')} \t\t\t\t\tLight theme
+`],
+ ['d', 'data=[Image Data Value with base64 encoding]', '\tThe image data value of your badge'],
+ ['p', 'path=[SVG Path]', '\tLocal SVG file'],
+ ['o', 'output=[File Name]', '\tThe image data value of your badge'],
+ ['', 'style=[Badge Style]', `\tThe badge style
+\t${enhance('--style=default')} \t\t\t\tDefault style (${enhance('default')})
+\t${enhance('--style=flat_square')} \t\t\t\tFlat square style`],
+ ['', 'fontSize=[size]', `\tThe font size of your badge
+\t${enhance('--fontSize=12')} \t\t\t\t\tUse 12px (${enhance('default')})
+`],
+ ['y', '', '\tOverride'],
+ ['v', 'version', '\tShow current version'],
+ ['h' , 'help', '\tTutorial for this command']
+ ])
+ .setHelp(`${brand}
+\tVersion: ${enhance(stats.version)}
+\tUsage: badge -t ${enhance('')} -o ${enhance('')} [-c ${enhance('')} -p ${enhance('')}]
+
+[[OPTIONS]]`)
+ .bindHelp()
+ .parseSystem();
+
+const {version} = opt.options;
+if (version) {
+ console.log(`${brand}
+\t\tBadges v${enhance(stats.version)}, Copyright © aleen42 2012-2019`);
+ return;
+}
+
+badge.run(opt.options);
diff --git a/tool/test/index.js b/tool/test/index.js
new file mode 100755
index 0000000..4766ec1
--- /dev/null
+++ b/tool/test/index.js
@@ -0,0 +1,35 @@
+/***********************************************************************
+ * _
+ * _____ _ ____ _ |_|
+ * | _ |/ \ ____ ____ __ ___ / ___\/ \ __ _ ____ _
+ * | |_| || | / __ \/ __ \\ '_ \ _ / / | |___\ \ | |/ __ \| |
+ * | _ || |__. ___/. ___/| | | ||_|\ \___ | _ | |_| |. ___/| |
+ * |_/ \_|\___/\____|\____||_| |_| \____/|_| |_|_____|\____||_|
+ *
+ * ================================================================
+ * More than a coder, More than a designer
+ * ================================================================
+ *
+ *
+ * - Document: index.js
+ * - Author: aleen42
+ * - Description: this is the entrace of some tests
+ * - Create Time: Mar 20th, 2017
+ * - Update Time: Jun 26th, 2019
+ *
+ *
+ **********************************************************************/
+
+const {test} = require('../lib/index');
+
+/**
+ * [should: test framework module]
+ * @type {Object}
+ */
+require('chai').should();
+
+describe('tests', () => {
+ it('test case', () => {
+ test().should.contain('Usage: badge -t');
+ });
+});