From 584d6bcc262204d071b802c1daccbd10036cbcfe Mon Sep 17 00:00:00 2001 From: dtomlinson Date: Mon, 17 Feb 2020 02:37:02 +0000 Subject: [PATCH] adding initial fast-api --- fast-api/.DS_Store | Bin 0 -> 8196 bytes fast-api/README.rst | 0 fast-api/__pycache__/fast.cpython-37.pyc | Bin 0 -> 641 bytes .../bower_components/Morphext/.bower.json | 47 + .../Morphext/Gruntfile.coffee | 20 + fast-api/bower_components/Morphext/LICENSE | 20 + fast-api/bower_components/Morphext/README.md | 128 + fast-api/bower_components/Morphext/bower.json | 36 + .../Morphext/dist/morphext.css | 3 + .../Morphext/dist/morphext.js | 77 + .../Morphext/dist/morphext.min.js | 1 + fast-api/bower_components/Morphext/index.html | 29 + .../bower_components/Morphext/package.json | 29 + .../bower_components/animate.css/.bower.json | 23 + .../bower_components/animate.css/Gruntfile.js | 79 + .../animate.css/animate-config.json | 118 + .../bower_components/animate.css/animate.css | 3181 + .../animate.css/animate.min.css | 6 + .../bower_components/animate.css/bower.json | 13 + .../bower_components/animate.css/package.json | 19 + .../animate.css/source/_base.css | 30 + .../source/attention_seekers/bounce.css | 25 + .../source/attention_seekers/flash.css | 13 + .../source/attention_seekers/pulse.css | 19 + .../source/attention_seekers/rubberBand.css | 33 + .../source/attention_seekers/shake.css | 17 + .../source/attention_seekers/swing.css | 26 + .../source/attention_seekers/tada.css | 25 + .../source/attention_seekers/wobble.css | 35 + .../source/bouncing_entrances/bounceIn.css | 36 + .../bouncing_entrances/bounceInDown.css | 31 + .../bouncing_entrances/bounceInLeft.css | 31 + .../bouncing_entrances/bounceInRight.css | 31 + .../source/bouncing_entrances/bounceInUp.css | 31 + .../source/bouncing_exits/bounceOut.css | 19 + .../source/bouncing_exits/bounceOutDown.css | 19 + .../source/bouncing_exits/bounceOutLeft.css | 15 + .../source/bouncing_exits/bounceOutRight.css | 15 + .../source/bouncing_exits/bounceOutUp.css | 19 + .../source/fading_entrances/fadeIn.css | 8 + .../source/fading_entrances/fadeInDown.css | 15 + .../source/fading_entrances/fadeInDownBig.css | 15 + .../source/fading_entrances/fadeInLeft.css | 15 + .../source/fading_entrances/fadeInLeftBig.css | 15 + .../source/fading_entrances/fadeInRight.css | 15 + .../fading_entrances/fadeInRightBig.css | 15 + .../source/fading_entrances/fadeInUp.css | 15 + .../source/fading_entrances/fadeInUpBig.css | 15 + .../source/fading_exits/fadeOut.css | 8 + .../source/fading_exits/fadeOutDown.css | 14 + .../source/fading_exits/fadeOutDownBig.css | 14 + .../source/fading_exits/fadeOutLeft.css | 14 + .../source/fading_exits/fadeOutLeftBig.css | 14 + .../source/fading_exits/fadeOutRight.css | 14 + .../source/fading_exits/fadeOutRightBig.css | 14 + .../source/fading_exits/fadeOutUp.css | 14 + .../source/fading_exits/fadeOutUpBig.css | 14 + .../animate.css/source/flippers/flip.css | 31 + .../animate.css/source/flippers/flipInX.css | 30 + .../animate.css/source/flippers/flipInY.css | 30 + .../animate.css/source/flippers/flipOutX.css | 20 + .../animate.css/source/flippers/flipOutY.css | 20 + .../source/lightspeed/lightSpeedIn.css | 26 + .../source/lightspeed/lightSpeedOut.css | 15 + .../source/rotating_entrances/rotateIn.css | 17 + .../rotating_entrances/rotateInDownLeft.css | 17 + .../rotating_entrances/rotateInDownRight.css | 17 + .../rotating_entrances/rotateInUpLeft.css | 17 + .../rotating_entrances/rotateInUpRight.css | 17 + .../source/rotating_exits/rotateOut.css | 16 + .../rotating_exits/rotateOutDownLeft.css | 16 + .../rotating_exits/rotateOutDownRight.css | 16 + .../source/rotating_exits/rotateOutUpLeft.css | 16 + .../rotating_exits/rotateOutUpRight.css | 16 + .../source/sliding_entrances/slideInDown.css | 14 + .../source/sliding_entrances/slideInLeft.css | 14 + .../source/sliding_entrances/slideInRight.css | 14 + .../source/sliding_entrances/slideInUp.css | 14 + .../source/sliding_exits/slideOutDown.css | 14 + .../source/sliding_exits/slideOutLeft.css | 14 + .../source/sliding_exits/slideOutRight.css | 14 + .../source/sliding_exits/slideOutUp.css | 14 + .../animate.css/source/specials/hinge.css | 28 + .../animate.css/source/specials/rollIn.css | 17 + .../animate.css/source/specials/rollOut.css | 16 + .../source/zooming_entrances/zoomIn.css | 14 + .../source/zooming_entrances/zoomInDown.css | 17 + .../source/zooming_entrances/zoomInLeft.css | 17 + .../source/zooming_entrances/zoomInRight.css | 17 + .../source/zooming_entrances/zoomInUp.css | 17 + .../source/zooming_exits/zoomOut.css | 18 + .../source/zooming_exits/zoomOutDown.css | 18 + .../source/zooming_exits/zoomOutLeft.css | 16 + .../source/zooming_exits/zoomOutRight.css | 16 + .../source/zooming_exits/zoomOutUp.css | 18 + fast-api/bower_components/jquery/.bower.json | 38 + .../bower_components/jquery/MIT-LICENSE.txt | 21 + fast-api/bower_components/jquery/bower.json | 28 + .../bower_components/jquery/dist/jquery.js | 9210 +++ .../jquery/dist/jquery.min.js | 5 + .../jquery/dist/jquery.min.map | 1 + fast-api/bower_components/jquery/src/ajax.js | 786 + .../bower_components/jquery/src/ajax/jsonp.js | 89 + .../bower_components/jquery/src/ajax/load.js | 75 + .../jquery/src/ajax/parseJSON.js | 13 + .../jquery/src/ajax/parseXML.js | 28 + .../jquery/src/ajax/script.js | 64 + .../jquery/src/ajax/var/nonce.js | 5 + .../jquery/src/ajax/var/rquery.js | 3 + .../bower_components/jquery/src/ajax/xhr.js | 136 + .../bower_components/jquery/src/attributes.js | 11 + .../jquery/src/attributes/attr.js | 141 + .../jquery/src/attributes/classes.js | 158 + .../jquery/src/attributes/prop.js | 94 + .../jquery/src/attributes/support.js | 35 + .../jquery/src/attributes/val.js | 161 + .../bower_components/jquery/src/callbacks.js | 205 + fast-api/bower_components/jquery/src/core.js | 502 + .../jquery/src/core/access.js | 60 + .../bower_components/jquery/src/core/init.js | 123 + .../jquery/src/core/parseHTML.js | 39 + .../bower_components/jquery/src/core/ready.js | 97 + .../jquery/src/core/var/rsingleTag.js | 4 + fast-api/bower_components/jquery/src/css.js | 450 + .../jquery/src/css/addGetHookIf.js | 22 + .../bower_components/jquery/src/css/curCSS.js | 57 + .../jquery/src/css/defaultDisplay.js | 70 + .../jquery/src/css/hiddenVisibleSelectors.js | 15 + .../jquery/src/css/support.js | 96 + .../bower_components/jquery/src/css/swap.js | 28 + .../jquery/src/css/var/cssExpand.js | 3 + .../jquery/src/css/var/getStyles.js | 12 + .../jquery/src/css/var/isHidden.js | 13 + .../jquery/src/css/var/rmargin.js | 3 + .../jquery/src/css/var/rnumnonpx.js | 5 + fast-api/bower_components/jquery/src/data.js | 178 + .../bower_components/jquery/src/data/Data.js | 181 + .../jquery/src/data/accepts.js | 20 + .../jquery/src/data/var/data_priv.js | 5 + .../jquery/src/data/var/data_user.js | 5 + .../bower_components/jquery/src/deferred.js | 149 + .../bower_components/jquery/src/deprecated.js | 13 + .../bower_components/jquery/src/dimensions.js | 50 + .../bower_components/jquery/src/effects.js | 648 + .../jquery/src/effects/Tween.js | 114 + .../jquery/src/effects/animatedSelector.js | 13 + fast-api/bower_components/jquery/src/event.js | 868 + .../bower_components/jquery/src/event/ajax.js | 13 + .../jquery/src/event/alias.js | 39 + .../jquery/src/event/support.js | 9 + .../jquery/src/exports/amd.js | 24 + .../jquery/src/exports/global.js | 32 + fast-api/bower_components/jquery/src/intro.js | 44 + .../bower_components/jquery/src/jquery.js | 37 + .../jquery/src/manipulation.js | 580 + .../jquery/src/manipulation/_evalUrl.js | 18 + .../jquery/src/manipulation/support.js | 32 + .../src/manipulation/var/rcheckableType.js | 3 + .../bower_components/jquery/src/offset.js | 207 + fast-api/bower_components/jquery/src/outro.js | 1 + fast-api/bower_components/jquery/src/queue.js | 142 + .../jquery/src/queue/delay.js | 22 + .../jquery/src/selector-native.js | 172 + .../jquery/src/selector-sizzle.js | 14 + .../bower_components/jquery/src/selector.js | 1 + .../bower_components/jquery/src/serialize.js | 111 + .../jquery/src/sizzle/dist/sizzle.js | 2067 + .../jquery/src/sizzle/dist/sizzle.min.js | 3 + .../jquery/src/sizzle/dist/sizzle.min.map | 1 + .../bower_components/jquery/src/traversing.js | 199 + .../jquery/src/traversing/findFilter.js | 100 + .../src/traversing/var/rneedsContext.js | 6 + .../bower_components/jquery/src/var/arr.js | 3 + .../jquery/src/var/class2type.js | 4 + .../bower_components/jquery/src/var/concat.js | 5 + .../bower_components/jquery/src/var/hasOwn.js | 5 + .../jquery/src/var/indexOf.js | 5 + .../bower_components/jquery/src/var/pnum.js | 3 + .../bower_components/jquery/src/var/push.js | 5 + .../jquery/src/var/rnotwhite.js | 3 + .../bower_components/jquery/src/var/slice.js | 5 + .../jquery/src/var/strundefined.js | 3 + .../jquery/src/var/support.js | 4 + .../jquery/src/var/toString.js | 5 + fast-api/bower_components/jquery/src/wrap.js | 79 + fast-api/fast_api/.DS_Store | Bin 0 -> 8196 bytes .../fast_api/__pycache__/fast.cpython-37.pyc | Bin 0 -> 986 bytes fast-api/fast_api/fast.py | 38 + fast-api/fast_api/templates/gn.html | 111 + fast-api/fast_api/templates/index.html | 123 + fast-api/node_modules/bootswatch/.DS_Store | Bin 0 -> 6148 bytes .../node_modules/bootswatch/.github/stale.yml | 17 + fast-api/node_modules/bootswatch/LICENSE | 21 + fast-api/node_modules/bootswatch/README.md | 150 + .../bootswatch/bootswatch.gemspec | 14 + .../bootswatch/dist/cerulean/_bootswatch.scss | 103 + .../bootswatch/dist/cerulean/_variables.scss | 57 + .../bootswatch/dist/cerulean/bootstrap.css | 10872 +++ .../dist/cerulean/bootstrap.min.css | 12 + .../bootswatch/dist/cosmo/_bootswatch.scss | 38 + .../bootswatch/dist/cosmo/_variables.scss | 68 + .../bootswatch/dist/cosmo/bootstrap.css | 10502 +++ .../bootswatch/dist/cosmo/bootstrap.min.css | 12 + .../bootswatch/dist/cyborg/_bootswatch.scss | 286 + .../bootswatch/dist/cyborg/_variables.scss | 173 + .../bootswatch/dist/cyborg/bootstrap.css | 11022 +++ .../bootswatch/dist/cyborg/bootstrap.min.css | 12 + .../bootswatch/dist/darkly/_bootswatch.scss | 240 + .../bootswatch/dist/darkly/_variables.scss | 174 + .../bootswatch/dist/darkly/bootstrap.css | 10954 +++ .../bootswatch/dist/darkly/bootstrap.min.css | 12 + .../bootswatch/dist/flatly/_bootswatch.scss | 247 + .../bootswatch/dist/flatly/_variables.scss | 113 + .../bootswatch/dist/flatly/bootstrap.css | 10948 +++ .../bootswatch/dist/flatly/bootstrap.min.css | 12 + .../bootswatch/dist/journal/_bootswatch.scss | 73 + .../bootswatch/dist/journal/_variables.scss | 60 + .../bootswatch/dist/journal/bootstrap.css | 10798 +++ .../bootswatch/dist/journal/bootstrap.min.css | 12 + .../bootswatch/dist/litera/_bootswatch.scss | 255 + .../bootswatch/dist/litera/_variables.scss | 94 + .../bootswatch/dist/litera/bootstrap.css | 10979 +++ .../bootswatch/dist/litera/bootstrap.min.css | 12 + .../bootswatch/dist/lumen/_bootswatch.scss | 505 + .../bootswatch/dist/lumen/_variables.scss | 90 + .../bootswatch/dist/lumen/bootstrap.css | 11159 +++ .../bootswatch/dist/lumen/bootstrap.min.css | 12 + .../bootswatch/dist/lux/_bootswatch.scss | 178 + .../bootswatch/dist/lux/_variables.scss | 124 + .../bootswatch/dist/lux/bootstrap.css | 10625 +++ .../bootswatch/dist/lux/bootstrap.min.css | 12 + .../bootswatch/dist/materia/_bootswatch.scss | 739 + .../bootswatch/dist/materia/_variables.scss | 136 + .../bootswatch/dist/materia/bootstrap.css | 12344 ++++ .../bootswatch/dist/materia/bootstrap.min.css | 12 + .../bootswatch/dist/minty/_bootswatch.scss | 325 + .../bootswatch/dist/minty/_variables.scss | 97 + .../bootswatch/dist/minty/bootstrap.css | 11006 +++ .../bootswatch/dist/minty/bootstrap.min.css | 12 + .../bootswatch/dist/pulse/_bootswatch.scss | 154 + .../bootswatch/dist/pulse/_variables.scss | 100 + .../bootswatch/dist/pulse/bootstrap.css | 10615 +++ .../bootswatch/dist/pulse/bootstrap.min.css | 12 + .../dist/sandstone/_bootswatch.scss | 235 + .../bootswatch/dist/sandstone/_variables.scss | 143 + .../bootswatch/dist/sandstone/bootstrap.css | 10896 +++ .../dist/sandstone/bootstrap.min.css | 12 + .../bootswatch/dist/simplex/_bootswatch.scss | 134 + .../bootswatch/dist/simplex/_variables.scss | 108 + .../bootswatch/dist/simplex/bootstrap.css | 10889 +++ .../bootswatch/dist/simplex/bootstrap.min.css | 12 + .../bootswatch/dist/sketchy/_bootswatch.scss | 452 + .../bootswatch/dist/sketchy/_variables.scss | 164 + .../bootswatch/dist/sketchy/bootstrap.css | 11146 +++ .../bootswatch/dist/sketchy/bootstrap.min.css | 12 + .../bootswatch/dist/slate/_bootswatch.scss | 497 + .../bootswatch/dist/slate/_variables.scss | 164 + .../bootswatch/dist/slate/bootstrap.css | 11256 +++ .../bootswatch/dist/slate/bootstrap.min.css | 12 + .../bootswatch/dist/solar/_bootswatch.scss | 215 + .../bootswatch/dist/solar/_variables.scss | 177 + .../bootswatch/dist/solar/bootstrap.css | 11067 +++ .../bootswatch/dist/solar/bootstrap.min.css | 12 + .../bootswatch/dist/spacelab/_bootswatch.scss | 102 + .../bootswatch/dist/spacelab/_variables.scss | 63 + .../bootswatch/dist/spacelab/bootstrap.css | 10972 +++ .../dist/spacelab/bootstrap.min.css | 12 + .../dist/superhero/_bootswatch.scss | 279 + .../bootswatch/dist/superhero/_variables.scss | 157 + .../bootswatch/dist/superhero/bootstrap.css | 11015 +++ .../dist/superhero/bootstrap.min.css | 12 + .../bootswatch/dist/united/_bootswatch.scss | 26 + .../bootswatch/dist/united/_variables.scss | 53 + .../bootswatch/dist/united/bootstrap.css | 10753 +++ .../bootswatch/dist/united/bootstrap.min.css | 12 + .../bootswatch/dist/yeti/_bootswatch.scss | 542 + .../bootswatch/dist/yeti/_variables.scss | 114 + .../bootswatch/dist/yeti/bootstrap.css | 11192 +++ .../bootswatch/dist/yeti/bootstrap.min.css | 12 + fast-api/node_modules/bootswatch/package.json | 68 + fast-api/node_modules/jq-fakeloader/LICENSE | 21 + fast-api/node_modules/jq-fakeloader/README.md | 53 + .../jq-fakeloader/css/fakeLoader.css | 347 + .../jq-fakeloader/demo/css/bootstrap.min.css | 7 + .../jq-fakeloader/demo/css/demo.css | 175 + .../jq-fakeloader/demo/css/fakeLoader.min.css | 1 + .../jq-fakeloader/demo/demo1.html | 55 + .../jq-fakeloader/demo/demo2.html | 61 + .../jq-fakeloader/demo/demo3.html | 63 + .../jq-fakeloader/demo/demo4.html | 63 + .../jq-fakeloader/demo/demo5.html | 62 + .../jq-fakeloader/demo/demo6.html | 61 + .../jq-fakeloader/demo/demo7.html | 61 + .../jq-fakeloader/demo/js/fakeLoader.min.js | 1 + .../jq-fakeloader/dist/fakeLoader.min.css | 1 + .../jq-fakeloader/dist/fakeLoader.min.js | 1 + .../node_modules/jq-fakeloader/gulpfile.js | 48 + .../jq-fakeloader/js/fakeLoader.js | 70 + .../node_modules/jq-fakeloader/package.json | 64 + .../jq-fakeloader/scss/fakeLoader.scss | 16 + .../scss/spinners/spinner_01.scss | 34 + .../scss/spinners/spinner_02.scss | 90 + .../scss/spinners/spinner_03.scss | 38 + .../scss/spinners/spinner_04.scss | 20 + .../scss/spinners/spinner_05.scss | 35 + .../scss/spinners/spinner_06.scss | 35 + .../scss/spinners/spinner_07.scss | 55 + fast-api/package-lock.json | 18 + fast-api/package.json | 19 + fast-api/poetry.lock | 526 + fast-api/public/scripts/test.txt | 1 + fast-api/pyproject.toml | 29 + fast-api/static/.DS_Store | Bin 0 -> 8196 bytes .../assets/favicon/favicon-192x192-wh.png | Bin 0 -> 14538 bytes fast-api/static/css/bootstrap.css | 10038 +++ fast-api/static/css/bootstrap.css.map | 1 + fast-api/static/css/capacity.css | 0 fast-api/static/font-awesome/.DS_Store | Bin 0 -> 8196 bytes fast-api/static/font-awesome/LICENSE.txt | 34 + fast-api/static/font-awesome/css/all.css | 4463 ++ fast-api/static/font-awesome/css/all.min.css | 5 + fast-api/static/font-awesome/css/brands.css | 15 + .../static/font-awesome/css/brands.min.css | 5 + .../static/font-awesome/css/fontawesome.css | 4429 ++ .../font-awesome/css/fontawesome.min.css | 5 + fast-api/static/font-awesome/css/regular.css | 15 + .../static/font-awesome/css/regular.min.css | 5 + fast-api/static/font-awesome/css/solid.css | 16 + .../static/font-awesome/css/solid.min.css | 5 + .../static/font-awesome/css/svg-with-js.css | 371 + .../font-awesome/css/svg-with-js.min.css | 5 + fast-api/static/font-awesome/css/v4-shims.css | 2172 + .../static/font-awesome/css/v4-shims.min.css | 5 + fast-api/static/font-awesome/js/all.js | 4391 ++ fast-api/static/font-awesome/js/all.min.js | 5 + fast-api/static/font-awesome/js/brands.js | 571 + fast-api/static/font-awesome/js/brands.min.js | 5 + .../font-awesome/js/conflict-detection.js | 998 + .../font-awesome/js/conflict-detection.min.js | 5 + .../static/font-awesome/js/fontawesome.js | 2459 + .../static/font-awesome/js/fontawesome.min.js | 5 + fast-api/static/font-awesome/js/regular.js | 280 + .../static/font-awesome/js/regular.min.js | 5 + fast-api/static/font-awesome/js/solid.js | 1093 + fast-api/static/font-awesome/js/solid.min.js | 5 + fast-api/static/font-awesome/js/v4-shims.js | 68 + .../static/font-awesome/js/v4-shims.min.js | 5 + .../static/font-awesome/less/_animated.less | 19 + .../font-awesome/less/_bordered-pulled.less | 16 + fast-api/static/font-awesome/less/_core.less | 12 + .../font-awesome/less/_fixed-width.less | 6 + fast-api/static/font-awesome/less/_icons.less | 1410 + .../static/font-awesome/less/_larger.less | 27 + fast-api/static/font-awesome/less/_list.less | 18 + .../static/font-awesome/less/_mixins.less | 56 + .../font-awesome/less/_rotated-flipped.less | 24 + .../font-awesome/less/_screen-reader.less | 5 + fast-api/static/font-awesome/less/_shims.less | 2066 + .../static/font-awesome/less/_stacked.less | 22 + .../static/font-awesome/less/_variables.less | 1422 + fast-api/static/font-awesome/less/brands.less | 23 + .../static/font-awesome/less/fontawesome.less | 16 + .../static/font-awesome/less/regular.less | 23 + fast-api/static/font-awesome/less/solid.less | 24 + .../static/font-awesome/less/v4-shims.less | 6 + .../font-awesome/metadata/categories.yml | 2525 + .../static/font-awesome/metadata/icons.json | 56511 ++++++++++++++++ .../static/font-awesome/metadata/icons.yml | 20978 ++++++ .../static/font-awesome/metadata/shims.json | 2317 + .../static/font-awesome/metadata/shims.yml | 298 + .../static/font-awesome/metadata/sponsors.yml | 685 + .../static/font-awesome/scss/_animated.scss | 20 + .../font-awesome/scss/_bordered-pulled.scss | 20 + fast-api/static/font-awesome/scss/_core.scss | 21 + .../font-awesome/scss/_fixed-width.scss | 6 + fast-api/static/font-awesome/scss/_icons.scss | 1410 + .../static/font-awesome/scss/_larger.scss | 23 + fast-api/static/font-awesome/scss/_list.scss | 18 + .../static/font-awesome/scss/_mixins.scss | 56 + .../font-awesome/scss/_rotated-flipped.scss | 24 + .../font-awesome/scss/_screen-reader.scss | 5 + fast-api/static/font-awesome/scss/_shims.scss | 2066 + .../static/font-awesome/scss/_stacked.scss | 31 + .../static/font-awesome/scss/_variables.scss | 1427 + fast-api/static/font-awesome/scss/brands.scss | 23 + .../static/font-awesome/scss/fontawesome.scss | 16 + .../static/font-awesome/scss/regular.scss | 23 + fast-api/static/font-awesome/scss/solid.scss | 24 + .../static/font-awesome/scss/v4-shims.scss | 6 + .../static/font-awesome/sprites/brands.svg | 1336 + .../static/font-awesome/sprites/regular.svg | 463 + .../static/font-awesome/sprites/solid.svg | 2902 + .../static/font-awesome/svgs/brands/500px.svg | 1 + .../svgs/brands/accessible-icon.svg | 1 + .../font-awesome/svgs/brands/accusoft.svg | 1 + .../svgs/brands/acquisitions-incorporated.svg | 1 + .../static/font-awesome/svgs/brands/adn.svg | 1 + .../static/font-awesome/svgs/brands/adobe.svg | 1 + .../font-awesome/svgs/brands/adversal.svg | 1 + .../svgs/brands/affiliatetheme.svg | 1 + .../font-awesome/svgs/brands/airbnb.svg | 1 + .../font-awesome/svgs/brands/algolia.svg | 1 + .../font-awesome/svgs/brands/alipay.svg | 1 + .../font-awesome/svgs/brands/amazon-pay.svg | 1 + .../font-awesome/svgs/brands/amazon.svg | 1 + .../font-awesome/svgs/brands/amilia.svg | 1 + .../font-awesome/svgs/brands/android.svg | 1 + .../font-awesome/svgs/brands/angellist.svg | 1 + .../svgs/brands/angrycreative.svg | 1 + .../font-awesome/svgs/brands/angular.svg | 1 + .../svgs/brands/app-store-ios.svg | 1 + .../font-awesome/svgs/brands/app-store.svg | 1 + .../static/font-awesome/svgs/brands/apper.svg | 1 + .../font-awesome/svgs/brands/apple-pay.svg | 1 + .../static/font-awesome/svgs/brands/apple.svg | 1 + .../font-awesome/svgs/brands/artstation.svg | 1 + .../font-awesome/svgs/brands/asymmetrik.svg | 1 + .../font-awesome/svgs/brands/atlassian.svg | 1 + .../font-awesome/svgs/brands/audible.svg | 1 + .../font-awesome/svgs/brands/autoprefixer.svg | 1 + .../font-awesome/svgs/brands/avianex.svg | 1 + .../font-awesome/svgs/brands/aviato.svg | 1 + .../static/font-awesome/svgs/brands/aws.svg | 1 + .../font-awesome/svgs/brands/bandcamp.svg | 1 + .../font-awesome/svgs/brands/battle-net.svg | 1 + .../svgs/brands/behance-square.svg | 1 + .../font-awesome/svgs/brands/behance.svg | 1 + .../font-awesome/svgs/brands/bimobject.svg | 1 + .../font-awesome/svgs/brands/bitbucket.svg | 1 + .../font-awesome/svgs/brands/bitcoin.svg | 1 + .../static/font-awesome/svgs/brands/bity.svg | 1 + .../font-awesome/svgs/brands/black-tie.svg | 1 + .../font-awesome/svgs/brands/blackberry.svg | 1 + .../font-awesome/svgs/brands/blogger-b.svg | 1 + .../font-awesome/svgs/brands/blogger.svg | 1 + .../font-awesome/svgs/brands/bluetooth-b.svg | 1 + .../font-awesome/svgs/brands/bluetooth.svg | 1 + .../font-awesome/svgs/brands/bootstrap.svg | 1 + .../static/font-awesome/svgs/brands/btc.svg | 1 + .../font-awesome/svgs/brands/buffer.svg | 1 + .../svgs/brands/buromobelexperte.svg | 1 + .../font-awesome/svgs/brands/buy-n-large.svg | 1 + .../font-awesome/svgs/brands/buysellads.svg | 1 + .../svgs/brands/canadian-maple-leaf.svg | 1 + .../svgs/brands/cc-amazon-pay.svg | 1 + .../font-awesome/svgs/brands/cc-amex.svg | 1 + .../font-awesome/svgs/brands/cc-apple-pay.svg | 1 + .../svgs/brands/cc-diners-club.svg | 1 + .../font-awesome/svgs/brands/cc-discover.svg | 1 + .../font-awesome/svgs/brands/cc-jcb.svg | 1 + .../svgs/brands/cc-mastercard.svg | 1 + .../font-awesome/svgs/brands/cc-paypal.svg | 1 + .../font-awesome/svgs/brands/cc-stripe.svg | 1 + .../font-awesome/svgs/brands/cc-visa.svg | 1 + .../font-awesome/svgs/brands/centercode.svg | 1 + .../font-awesome/svgs/brands/centos.svg | 1 + .../font-awesome/svgs/brands/chrome.svg | 1 + .../font-awesome/svgs/brands/chromecast.svg | 1 + .../font-awesome/svgs/brands/cloudscale.svg | 1 + .../font-awesome/svgs/brands/cloudsmith.svg | 1 + .../font-awesome/svgs/brands/cloudversify.svg | 1 + .../font-awesome/svgs/brands/codepen.svg | 1 + .../font-awesome/svgs/brands/codiepie.svg | 1 + .../font-awesome/svgs/brands/confluence.svg | 1 + .../svgs/brands/connectdevelop.svg | 1 + .../font-awesome/svgs/brands/contao.svg | 1 + .../svgs/brands/cotton-bureau.svg | 1 + .../font-awesome/svgs/brands/cpanel.svg | 1 + .../svgs/brands/creative-commons-by.svg | 1 + .../svgs/brands/creative-commons-nc-eu.svg | 1 + .../svgs/brands/creative-commons-nc-jp.svg | 1 + .../svgs/brands/creative-commons-nc.svg | 1 + .../svgs/brands/creative-commons-nd.svg | 1 + .../svgs/brands/creative-commons-pd-alt.svg | 1 + .../svgs/brands/creative-commons-pd.svg | 1 + .../svgs/brands/creative-commons-remix.svg | 1 + .../svgs/brands/creative-commons-sa.svg | 1 + .../brands/creative-commons-sampling-plus.svg | 1 + .../svgs/brands/creative-commons-sampling.svg | 1 + .../svgs/brands/creative-commons-share.svg | 1 + .../svgs/brands/creative-commons-zero.svg | 1 + .../svgs/brands/creative-commons.svg | 1 + .../svgs/brands/critical-role.svg | 1 + .../font-awesome/svgs/brands/css3-alt.svg | 1 + .../static/font-awesome/svgs/brands/css3.svg | 1 + .../font-awesome/svgs/brands/cuttlefish.svg | 1 + .../svgs/brands/d-and-d-beyond.svg | 1 + .../font-awesome/svgs/brands/d-and-d.svg | 1 + .../font-awesome/svgs/brands/dailymotion.svg | 1 + .../font-awesome/svgs/brands/dashcube.svg | 1 + .../font-awesome/svgs/brands/delicious.svg | 1 + .../font-awesome/svgs/brands/deploydog.svg | 1 + .../font-awesome/svgs/brands/deskpro.svg | 1 + .../static/font-awesome/svgs/brands/dev.svg | 1 + .../font-awesome/svgs/brands/deviantart.svg | 1 + .../static/font-awesome/svgs/brands/dhl.svg | 1 + .../font-awesome/svgs/brands/diaspora.svg | 1 + .../static/font-awesome/svgs/brands/digg.svg | 1 + .../svgs/brands/digital-ocean.svg | 1 + .../font-awesome/svgs/brands/discord.svg | 1 + .../font-awesome/svgs/brands/discourse.svg | 1 + .../font-awesome/svgs/brands/dochub.svg | 1 + .../font-awesome/svgs/brands/docker.svg | 1 + .../svgs/brands/draft2digital.svg | 1 + .../svgs/brands/dribbble-square.svg | 1 + .../font-awesome/svgs/brands/dribbble.svg | 1 + .../font-awesome/svgs/brands/dropbox.svg | 1 + .../font-awesome/svgs/brands/drupal.svg | 1 + .../font-awesome/svgs/brands/dyalog.svg | 1 + .../font-awesome/svgs/brands/earlybirds.svg | 1 + .../static/font-awesome/svgs/brands/ebay.svg | 1 + .../static/font-awesome/svgs/brands/edge.svg | 1 + .../font-awesome/svgs/brands/elementor.svg | 1 + .../static/font-awesome/svgs/brands/ello.svg | 1 + .../static/font-awesome/svgs/brands/ember.svg | 1 + .../font-awesome/svgs/brands/empire.svg | 1 + .../font-awesome/svgs/brands/envira.svg | 1 + .../font-awesome/svgs/brands/erlang.svg | 1 + .../font-awesome/svgs/brands/ethereum.svg | 1 + .../static/font-awesome/svgs/brands/etsy.svg | 1 + .../font-awesome/svgs/brands/evernote.svg | 1 + .../font-awesome/svgs/brands/expeditedssl.svg | 1 + .../font-awesome/svgs/brands/facebook-f.svg | 1 + .../svgs/brands/facebook-messenger.svg | 1 + .../svgs/brands/facebook-square.svg | 1 + .../font-awesome/svgs/brands/facebook.svg | 1 + .../svgs/brands/fantasy-flight-games.svg | 1 + .../static/font-awesome/svgs/brands/fedex.svg | 1 + .../font-awesome/svgs/brands/fedora.svg | 1 + .../static/font-awesome/svgs/brands/figma.svg | 1 + .../svgs/brands/firefox-browser.svg | 1 + .../font-awesome/svgs/brands/firefox.svg | 1 + .../svgs/brands/first-order-alt.svg | 1 + .../font-awesome/svgs/brands/first-order.svg | 1 + .../font-awesome/svgs/brands/firstdraft.svg | 1 + .../font-awesome/svgs/brands/flickr.svg | 1 + .../font-awesome/svgs/brands/flipboard.svg | 1 + .../static/font-awesome/svgs/brands/fly.svg | 1 + .../svgs/brands/font-awesome-alt.svg | 1 + .../svgs/brands/font-awesome-flag.svg | 1 + .../svgs/brands/font-awesome-logo-full.svg | 1 + .../font-awesome/svgs/brands/font-awesome.svg | 1 + .../font-awesome/svgs/brands/fonticons-fi.svg | 1 + .../font-awesome/svgs/brands/fonticons.svg | 1 + .../svgs/brands/fort-awesome-alt.svg | 1 + .../font-awesome/svgs/brands/fort-awesome.svg | 1 + .../font-awesome/svgs/brands/forumbee.svg | 1 + .../font-awesome/svgs/brands/foursquare.svg | 1 + .../svgs/brands/free-code-camp.svg | 1 + .../font-awesome/svgs/brands/freebsd.svg | 1 + .../font-awesome/svgs/brands/fulcrum.svg | 1 + .../svgs/brands/galactic-republic.svg | 1 + .../svgs/brands/galactic-senate.svg | 1 + .../font-awesome/svgs/brands/get-pocket.svg | 1 + .../font-awesome/svgs/brands/gg-circle.svg | 1 + .../static/font-awesome/svgs/brands/gg.svg | 1 + .../font-awesome/svgs/brands/git-alt.svg | 1 + .../font-awesome/svgs/brands/git-square.svg | 1 + .../static/font-awesome/svgs/brands/git.svg | 1 + .../font-awesome/svgs/brands/github-alt.svg | 1 + .../svgs/brands/github-square.svg | 1 + .../font-awesome/svgs/brands/github.svg | 1 + .../font-awesome/svgs/brands/gitkraken.svg | 1 + .../font-awesome/svgs/brands/gitlab.svg | 1 + .../font-awesome/svgs/brands/gitter.svg | 1 + .../font-awesome/svgs/brands/glide-g.svg | 1 + .../static/font-awesome/svgs/brands/glide.svg | 1 + .../font-awesome/svgs/brands/gofore.svg | 1 + .../font-awesome/svgs/brands/goodreads-g.svg | 1 + .../font-awesome/svgs/brands/goodreads.svg | 1 + .../font-awesome/svgs/brands/google-drive.svg | 1 + .../font-awesome/svgs/brands/google-play.svg | 1 + .../svgs/brands/google-plus-g.svg | 1 + .../svgs/brands/google-plus-square.svg | 1 + .../font-awesome/svgs/brands/google-plus.svg | 1 + .../svgs/brands/google-wallet.svg | 1 + .../font-awesome/svgs/brands/google.svg | 1 + .../font-awesome/svgs/brands/gratipay.svg | 1 + .../static/font-awesome/svgs/brands/grav.svg | 1 + .../font-awesome/svgs/brands/gripfire.svg | 1 + .../static/font-awesome/svgs/brands/grunt.svg | 1 + .../static/font-awesome/svgs/brands/gulp.svg | 1 + .../svgs/brands/hacker-news-square.svg | 1 + .../font-awesome/svgs/brands/hacker-news.svg | 1 + .../font-awesome/svgs/brands/hackerrank.svg | 1 + .../static/font-awesome/svgs/brands/hips.svg | 1 + .../svgs/brands/hire-a-helper.svg | 1 + .../static/font-awesome/svgs/brands/hooli.svg | 1 + .../font-awesome/svgs/brands/hornbill.svg | 1 + .../font-awesome/svgs/brands/hotjar.svg | 1 + .../static/font-awesome/svgs/brands/houzz.svg | 1 + .../static/font-awesome/svgs/brands/html5.svg | 1 + .../font-awesome/svgs/brands/hubspot.svg | 1 + .../static/font-awesome/svgs/brands/ideal.svg | 1 + .../static/font-awesome/svgs/brands/imdb.svg | 1 + .../svgs/brands/instagram-square.svg | 1 + .../font-awesome/svgs/brands/instagram.svg | 1 + .../font-awesome/svgs/brands/intercom.svg | 1 + .../svgs/brands/internet-explorer.svg | 1 + .../font-awesome/svgs/brands/invision.svg | 1 + .../font-awesome/svgs/brands/ioxhost.svg | 1 + .../font-awesome/svgs/brands/itch-io.svg | 1 + .../font-awesome/svgs/brands/itunes-note.svg | 1 + .../font-awesome/svgs/brands/itunes.svg | 1 + .../static/font-awesome/svgs/brands/java.svg | 1 + .../font-awesome/svgs/brands/jedi-order.svg | 1 + .../font-awesome/svgs/brands/jenkins.svg | 1 + .../static/font-awesome/svgs/brands/jira.svg | 1 + .../static/font-awesome/svgs/brands/joget.svg | 1 + .../font-awesome/svgs/brands/joomla.svg | 1 + .../font-awesome/svgs/brands/js-square.svg | 1 + .../static/font-awesome/svgs/brands/js.svg | 1 + .../font-awesome/svgs/brands/jsfiddle.svg | 1 + .../font-awesome/svgs/brands/kaggle.svg | 1 + .../font-awesome/svgs/brands/keybase.svg | 1 + .../font-awesome/svgs/brands/keycdn.svg | 1 + .../svgs/brands/kickstarter-k.svg | 1 + .../font-awesome/svgs/brands/kickstarter.svg | 1 + .../font-awesome/svgs/brands/korvue.svg | 1 + .../font-awesome/svgs/brands/laravel.svg | 1 + .../svgs/brands/lastfm-square.svg | 1 + .../font-awesome/svgs/brands/lastfm.svg | 1 + .../font-awesome/svgs/brands/leanpub.svg | 1 + .../static/font-awesome/svgs/brands/less.svg | 1 + .../static/font-awesome/svgs/brands/line.svg | 1 + .../font-awesome/svgs/brands/linkedin-in.svg | 1 + .../font-awesome/svgs/brands/linkedin.svg | 1 + .../font-awesome/svgs/brands/linode.svg | 1 + .../static/font-awesome/svgs/brands/linux.svg | 1 + .../static/font-awesome/svgs/brands/lyft.svg | 1 + .../font-awesome/svgs/brands/magento.svg | 1 + .../font-awesome/svgs/brands/mailchimp.svg | 1 + .../font-awesome/svgs/brands/mandalorian.svg | 1 + .../font-awesome/svgs/brands/markdown.svg | 1 + .../font-awesome/svgs/brands/mastodon.svg | 1 + .../font-awesome/svgs/brands/maxcdn.svg | 1 + .../static/font-awesome/svgs/brands/mdb.svg | 1 + .../font-awesome/svgs/brands/medapps.svg | 1 + .../font-awesome/svgs/brands/medium-m.svg | 1 + .../font-awesome/svgs/brands/medium.svg | 1 + .../static/font-awesome/svgs/brands/medrt.svg | 1 + .../font-awesome/svgs/brands/meetup.svg | 1 + .../font-awesome/svgs/brands/megaport.svg | 1 + .../font-awesome/svgs/brands/mendeley.svg | 1 + .../font-awesome/svgs/brands/microblog.svg | 1 + .../font-awesome/svgs/brands/microsoft.svg | 1 + .../static/font-awesome/svgs/brands/mix.svg | 1 + .../font-awesome/svgs/brands/mixcloud.svg | 1 + .../static/font-awesome/svgs/brands/mixer.svg | 1 + .../font-awesome/svgs/brands/mizuni.svg | 1 + .../static/font-awesome/svgs/brands/modx.svg | 1 + .../font-awesome/svgs/brands/monero.svg | 1 + .../font-awesome/svgs/brands/napster.svg | 1 + .../static/font-awesome/svgs/brands/neos.svg | 1 + .../font-awesome/svgs/brands/nimblr.svg | 1 + .../font-awesome/svgs/brands/node-js.svg | 1 + .../static/font-awesome/svgs/brands/node.svg | 1 + .../static/font-awesome/svgs/brands/npm.svg | 1 + .../static/font-awesome/svgs/brands/ns8.svg | 1 + .../font-awesome/svgs/brands/nutritionix.svg | 1 + .../svgs/brands/odnoklassniki-square.svg | 1 + .../svgs/brands/odnoklassniki.svg | 1 + .../font-awesome/svgs/brands/old-republic.svg | 1 + .../font-awesome/svgs/brands/opencart.svg | 1 + .../font-awesome/svgs/brands/openid.svg | 1 + .../static/font-awesome/svgs/brands/opera.svg | 1 + .../svgs/brands/optin-monster.svg | 1 + .../static/font-awesome/svgs/brands/orcid.svg | 1 + .../static/font-awesome/svgs/brands/osi.svg | 1 + .../static/font-awesome/svgs/brands/page4.svg | 1 + .../font-awesome/svgs/brands/pagelines.svg | 1 + .../font-awesome/svgs/brands/palfed.svg | 1 + .../font-awesome/svgs/brands/patreon.svg | 1 + .../font-awesome/svgs/brands/paypal.svg | 1 + .../font-awesome/svgs/brands/penny-arcade.svg | 1 + .../font-awesome/svgs/brands/periscope.svg | 1 + .../font-awesome/svgs/brands/phabricator.svg | 1 + .../svgs/brands/phoenix-framework.svg | 1 + .../svgs/brands/phoenix-squadron.svg | 1 + .../static/font-awesome/svgs/brands/php.svg | 1 + .../svgs/brands/pied-piper-alt.svg | 1 + .../svgs/brands/pied-piper-hat.svg | 1 + .../svgs/brands/pied-piper-pp.svg | 1 + .../svgs/brands/pied-piper-square.svg | 1 + .../font-awesome/svgs/brands/pied-piper.svg | 1 + .../font-awesome/svgs/brands/pinterest-p.svg | 1 + .../svgs/brands/pinterest-square.svg | 1 + .../font-awesome/svgs/brands/pinterest.svg | 1 + .../font-awesome/svgs/brands/playstation.svg | 1 + .../font-awesome/svgs/brands/product-hunt.svg | 1 + .../font-awesome/svgs/brands/pushed.svg | 1 + .../font-awesome/svgs/brands/python.svg | 1 + .../static/font-awesome/svgs/brands/qq.svg | 1 + .../font-awesome/svgs/brands/quinscape.svg | 1 + .../static/font-awesome/svgs/brands/quora.svg | 1 + .../font-awesome/svgs/brands/r-project.svg | 1 + .../font-awesome/svgs/brands/raspberry-pi.svg | 1 + .../font-awesome/svgs/brands/ravelry.svg | 1 + .../static/font-awesome/svgs/brands/react.svg | 1 + .../font-awesome/svgs/brands/reacteurope.svg | 1 + .../font-awesome/svgs/brands/readme.svg | 1 + .../static/font-awesome/svgs/brands/rebel.svg | 1 + .../font-awesome/svgs/brands/red-river.svg | 1 + .../font-awesome/svgs/brands/reddit-alien.svg | 1 + .../svgs/brands/reddit-square.svg | 1 + .../font-awesome/svgs/brands/reddit.svg | 1 + .../font-awesome/svgs/brands/redhat.svg | 1 + .../font-awesome/svgs/brands/renren.svg | 1 + .../font-awesome/svgs/brands/replyd.svg | 1 + .../font-awesome/svgs/brands/researchgate.svg | 1 + .../font-awesome/svgs/brands/resolving.svg | 1 + .../static/font-awesome/svgs/brands/rev.svg | 1 + .../font-awesome/svgs/brands/rocketchat.svg | 1 + .../font-awesome/svgs/brands/rockrms.svg | 1 + .../font-awesome/svgs/brands/safari.svg | 1 + .../font-awesome/svgs/brands/salesforce.svg | 1 + .../static/font-awesome/svgs/brands/sass.svg | 1 + .../font-awesome/svgs/brands/schlix.svg | 1 + .../font-awesome/svgs/brands/scribd.svg | 1 + .../font-awesome/svgs/brands/searchengin.svg | 1 + .../font-awesome/svgs/brands/sellcast.svg | 1 + .../font-awesome/svgs/brands/sellsy.svg | 1 + .../font-awesome/svgs/brands/servicestack.svg | 1 + .../font-awesome/svgs/brands/shirtsinbulk.svg | 1 + .../font-awesome/svgs/brands/shopify.svg | 1 + .../font-awesome/svgs/brands/shopware.svg | 1 + .../font-awesome/svgs/brands/simplybuilt.svg | 1 + .../font-awesome/svgs/brands/sistrix.svg | 1 + .../static/font-awesome/svgs/brands/sith.svg | 1 + .../font-awesome/svgs/brands/sketch.svg | 1 + .../font-awesome/svgs/brands/skyatlas.svg | 1 + .../static/font-awesome/svgs/brands/skype.svg | 1 + .../font-awesome/svgs/brands/slack-hash.svg | 1 + .../static/font-awesome/svgs/brands/slack.svg | 1 + .../font-awesome/svgs/brands/slideshare.svg | 1 + .../svgs/brands/snapchat-ghost.svg | 1 + .../svgs/brands/snapchat-square.svg | 1 + .../font-awesome/svgs/brands/snapchat.svg | 1 + .../font-awesome/svgs/brands/soundcloud.svg | 1 + .../font-awesome/svgs/brands/sourcetree.svg | 1 + .../font-awesome/svgs/brands/speakap.svg | 1 + .../font-awesome/svgs/brands/speaker-deck.svg | 1 + .../font-awesome/svgs/brands/spotify.svg | 1 + .../font-awesome/svgs/brands/squarespace.svg | 1 + .../svgs/brands/stack-exchange.svg | 1 + .../svgs/brands/stack-overflow.svg | 1 + .../font-awesome/svgs/brands/stackpath.svg | 1 + .../font-awesome/svgs/brands/staylinked.svg | 1 + .../font-awesome/svgs/brands/steam-square.svg | 1 + .../font-awesome/svgs/brands/steam-symbol.svg | 1 + .../static/font-awesome/svgs/brands/steam.svg | 1 + .../font-awesome/svgs/brands/sticker-mule.svg | 1 + .../font-awesome/svgs/brands/strava.svg | 1 + .../font-awesome/svgs/brands/stripe-s.svg | 1 + .../font-awesome/svgs/brands/stripe.svg | 1 + .../font-awesome/svgs/brands/studiovinari.svg | 1 + .../svgs/brands/stumbleupon-circle.svg | 1 + .../font-awesome/svgs/brands/stumbleupon.svg | 1 + .../font-awesome/svgs/brands/superpowers.svg | 1 + .../font-awesome/svgs/brands/supple.svg | 1 + .../static/font-awesome/svgs/brands/suse.svg | 1 + .../static/font-awesome/svgs/brands/swift.svg | 1 + .../font-awesome/svgs/brands/symfony.svg | 1 + .../font-awesome/svgs/brands/teamspeak.svg | 1 + .../svgs/brands/telegram-plane.svg | 1 + .../font-awesome/svgs/brands/telegram.svg | 1 + .../svgs/brands/tencent-weibo.svg | 1 + .../font-awesome/svgs/brands/the-red-yeti.svg | 1 + .../font-awesome/svgs/brands/themeco.svg | 1 + .../font-awesome/svgs/brands/themeisle.svg | 1 + .../font-awesome/svgs/brands/think-peaks.svg | 1 + .../svgs/brands/trade-federation.svg | 1 + .../font-awesome/svgs/brands/trello.svg | 1 + .../font-awesome/svgs/brands/tripadvisor.svg | 1 + .../svgs/brands/tumblr-square.svg | 1 + .../font-awesome/svgs/brands/tumblr.svg | 1 + .../font-awesome/svgs/brands/twitch.svg | 1 + .../svgs/brands/twitter-square.svg | 1 + .../font-awesome/svgs/brands/twitter.svg | 1 + .../static/font-awesome/svgs/brands/typo3.svg | 1 + .../static/font-awesome/svgs/brands/uber.svg | 1 + .../font-awesome/svgs/brands/ubuntu.svg | 1 + .../static/font-awesome/svgs/brands/uikit.svg | 1 + .../font-awesome/svgs/brands/umbraco.svg | 1 + .../font-awesome/svgs/brands/uniregistry.svg | 1 + .../static/font-awesome/svgs/brands/unity.svg | 1 + .../font-awesome/svgs/brands/untappd.svg | 1 + .../static/font-awesome/svgs/brands/ups.svg | 1 + .../static/font-awesome/svgs/brands/usb.svg | 1 + .../static/font-awesome/svgs/brands/usps.svg | 1 + .../font-awesome/svgs/brands/ussunnah.svg | 1 + .../font-awesome/svgs/brands/vaadin.svg | 1 + .../font-awesome/svgs/brands/viacoin.svg | 1 + .../svgs/brands/viadeo-square.svg | 1 + .../font-awesome/svgs/brands/viadeo.svg | 1 + .../static/font-awesome/svgs/brands/viber.svg | 1 + .../font-awesome/svgs/brands/vimeo-square.svg | 1 + .../font-awesome/svgs/brands/vimeo-v.svg | 1 + .../static/font-awesome/svgs/brands/vimeo.svg | 1 + .../static/font-awesome/svgs/brands/vine.svg | 1 + .../static/font-awesome/svgs/brands/vk.svg | 1 + .../static/font-awesome/svgs/brands/vnv.svg | 1 + .../static/font-awesome/svgs/brands/vuejs.svg | 1 + .../static/font-awesome/svgs/brands/waze.svg | 1 + .../font-awesome/svgs/brands/weebly.svg | 1 + .../static/font-awesome/svgs/brands/weibo.svg | 1 + .../font-awesome/svgs/brands/weixin.svg | 1 + .../svgs/brands/whatsapp-square.svg | 1 + .../font-awesome/svgs/brands/whatsapp.svg | 1 + .../static/font-awesome/svgs/brands/whmcs.svg | 1 + .../font-awesome/svgs/brands/wikipedia-w.svg | 1 + .../font-awesome/svgs/brands/windows.svg | 1 + .../static/font-awesome/svgs/brands/wix.svg | 1 + .../svgs/brands/wizards-of-the-coast.svg | 1 + .../svgs/brands/wolf-pack-battalion.svg | 1 + .../svgs/brands/wordpress-simple.svg | 1 + .../font-awesome/svgs/brands/wordpress.svg | 1 + .../font-awesome/svgs/brands/wpbeginner.svg | 1 + .../font-awesome/svgs/brands/wpexplorer.svg | 1 + .../font-awesome/svgs/brands/wpforms.svg | 1 + .../font-awesome/svgs/brands/wpressr.svg | 1 + .../static/font-awesome/svgs/brands/xbox.svg | 1 + .../font-awesome/svgs/brands/xing-square.svg | 1 + .../static/font-awesome/svgs/brands/xing.svg | 1 + .../font-awesome/svgs/brands/y-combinator.svg | 1 + .../static/font-awesome/svgs/brands/yahoo.svg | 1 + .../font-awesome/svgs/brands/yammer.svg | 1 + .../svgs/brands/yandex-international.svg | 1 + .../font-awesome/svgs/brands/yandex.svg | 1 + .../static/font-awesome/svgs/brands/yarn.svg | 1 + .../static/font-awesome/svgs/brands/yelp.svg | 1 + .../static/font-awesome/svgs/brands/yoast.svg | 1 + .../svgs/brands/youtube-square.svg | 1 + .../font-awesome/svgs/brands/youtube.svg | 1 + .../static/font-awesome/svgs/brands/zhihu.svg | 1 + .../svgs/regular/address-book.svg | 1 + .../svgs/regular/address-card.svg | 1 + .../font-awesome/svgs/regular/angry.svg | 1 + .../svgs/regular/arrow-alt-circle-down.svg | 1 + .../svgs/regular/arrow-alt-circle-left.svg | 1 + .../svgs/regular/arrow-alt-circle-right.svg | 1 + .../svgs/regular/arrow-alt-circle-up.svg | 1 + .../font-awesome/svgs/regular/bell-slash.svg | 1 + .../static/font-awesome/svgs/regular/bell.svg | 1 + .../font-awesome/svgs/regular/bookmark.svg | 1 + .../font-awesome/svgs/regular/building.svg | 1 + .../svgs/regular/calendar-alt.svg | 1 + .../svgs/regular/calendar-check.svg | 1 + .../svgs/regular/calendar-minus.svg | 1 + .../svgs/regular/calendar-plus.svg | 1 + .../svgs/regular/calendar-times.svg | 1 + .../font-awesome/svgs/regular/calendar.svg | 1 + .../svgs/regular/caret-square-down.svg | 1 + .../svgs/regular/caret-square-left.svg | 1 + .../svgs/regular/caret-square-right.svg | 1 + .../svgs/regular/caret-square-up.svg | 1 + .../font-awesome/svgs/regular/chart-bar.svg | 1 + .../svgs/regular/check-circle.svg | 1 + .../svgs/regular/check-square.svg | 1 + .../font-awesome/svgs/regular/circle.svg | 1 + .../font-awesome/svgs/regular/clipboard.svg | 1 + .../font-awesome/svgs/regular/clock.svg | 1 + .../font-awesome/svgs/regular/clone.svg | 1 + .../svgs/regular/closed-captioning.svg | 1 + .../font-awesome/svgs/regular/comment-alt.svg | 1 + .../svgs/regular/comment-dots.svg | 1 + .../font-awesome/svgs/regular/comment.svg | 1 + .../font-awesome/svgs/regular/comments.svg | 1 + .../font-awesome/svgs/regular/compass.svg | 1 + .../static/font-awesome/svgs/regular/copy.svg | 1 + .../font-awesome/svgs/regular/copyright.svg | 1 + .../font-awesome/svgs/regular/credit-card.svg | 1 + .../font-awesome/svgs/regular/dizzy.svg | 1 + .../font-awesome/svgs/regular/dot-circle.svg | 1 + .../static/font-awesome/svgs/regular/edit.svg | 1 + .../svgs/regular/envelope-open.svg | 1 + .../font-awesome/svgs/regular/envelope.svg | 1 + .../font-awesome/svgs/regular/eye-slash.svg | 1 + .../static/font-awesome/svgs/regular/eye.svg | 1 + .../font-awesome/svgs/regular/file-alt.svg | 1 + .../svgs/regular/file-archive.svg | 1 + .../font-awesome/svgs/regular/file-audio.svg | 1 + .../font-awesome/svgs/regular/file-code.svg | 1 + .../font-awesome/svgs/regular/file-excel.svg | 1 + .../font-awesome/svgs/regular/file-image.svg | 1 + .../font-awesome/svgs/regular/file-pdf.svg | 1 + .../svgs/regular/file-powerpoint.svg | 1 + .../font-awesome/svgs/regular/file-video.svg | 1 + .../font-awesome/svgs/regular/file-word.svg | 1 + .../static/font-awesome/svgs/regular/file.svg | 1 + .../static/font-awesome/svgs/regular/flag.svg | 1 + .../font-awesome/svgs/regular/flushed.svg | 1 + .../font-awesome/svgs/regular/folder-open.svg | 1 + .../font-awesome/svgs/regular/folder.svg | 1 + .../svgs/regular/font-awesome-logo-full.svg | 1 + .../font-awesome/svgs/regular/frown-open.svg | 1 + .../font-awesome/svgs/regular/frown.svg | 1 + .../font-awesome/svgs/regular/futbol.svg | 1 + .../static/font-awesome/svgs/regular/gem.svg | 1 + .../font-awesome/svgs/regular/grimace.svg | 1 + .../font-awesome/svgs/regular/grin-alt.svg | 1 + .../svgs/regular/grin-beam-sweat.svg | 1 + .../font-awesome/svgs/regular/grin-beam.svg | 1 + .../font-awesome/svgs/regular/grin-hearts.svg | 1 + .../svgs/regular/grin-squint-tears.svg | 1 + .../font-awesome/svgs/regular/grin-squint.svg | 1 + .../font-awesome/svgs/regular/grin-stars.svg | 1 + .../font-awesome/svgs/regular/grin-tears.svg | 1 + .../svgs/regular/grin-tongue-squint.svg | 1 + .../svgs/regular/grin-tongue-wink.svg | 1 + .../font-awesome/svgs/regular/grin-tongue.svg | 1 + .../font-awesome/svgs/regular/grin-wink.svg | 1 + .../static/font-awesome/svgs/regular/grin.svg | 1 + .../font-awesome/svgs/regular/hand-lizard.svg | 1 + .../font-awesome/svgs/regular/hand-paper.svg | 1 + .../font-awesome/svgs/regular/hand-peace.svg | 1 + .../svgs/regular/hand-point-down.svg | 1 + .../svgs/regular/hand-point-left.svg | 1 + .../svgs/regular/hand-point-right.svg | 1 + .../svgs/regular/hand-point-up.svg | 1 + .../svgs/regular/hand-pointer.svg | 1 + .../font-awesome/svgs/regular/hand-rock.svg | 1 + .../svgs/regular/hand-scissors.svg | 1 + .../font-awesome/svgs/regular/hand-spock.svg | 1 + .../font-awesome/svgs/regular/handshake.svg | 1 + .../static/font-awesome/svgs/regular/hdd.svg | 1 + .../font-awesome/svgs/regular/heart.svg | 1 + .../font-awesome/svgs/regular/hospital.svg | 1 + .../font-awesome/svgs/regular/hourglass.svg | 1 + .../font-awesome/svgs/regular/id-badge.svg | 1 + .../font-awesome/svgs/regular/id-card.svg | 1 + .../font-awesome/svgs/regular/image.svg | 1 + .../font-awesome/svgs/regular/images.svg | 1 + .../font-awesome/svgs/regular/keyboard.svg | 1 + .../font-awesome/svgs/regular/kiss-beam.svg | 1 + .../svgs/regular/kiss-wink-heart.svg | 1 + .../static/font-awesome/svgs/regular/kiss.svg | 1 + .../font-awesome/svgs/regular/laugh-beam.svg | 1 + .../svgs/regular/laugh-squint.svg | 1 + .../font-awesome/svgs/regular/laugh-wink.svg | 1 + .../font-awesome/svgs/regular/laugh.svg | 1 + .../font-awesome/svgs/regular/lemon.svg | 1 + .../font-awesome/svgs/regular/life-ring.svg | 1 + .../font-awesome/svgs/regular/lightbulb.svg | 1 + .../font-awesome/svgs/regular/list-alt.svg | 1 + .../static/font-awesome/svgs/regular/map.svg | 1 + .../font-awesome/svgs/regular/meh-blank.svg | 1 + .../svgs/regular/meh-rolling-eyes.svg | 1 + .../static/font-awesome/svgs/regular/meh.svg | 1 + .../svgs/regular/minus-square.svg | 1 + .../svgs/regular/money-bill-alt.svg | 1 + .../static/font-awesome/svgs/regular/moon.svg | 1 + .../font-awesome/svgs/regular/newspaper.svg | 1 + .../svgs/regular/object-group.svg | 1 + .../svgs/regular/object-ungroup.svg | 1 + .../font-awesome/svgs/regular/paper-plane.svg | 1 + .../svgs/regular/pause-circle.svg | 1 + .../font-awesome/svgs/regular/play-circle.svg | 1 + .../font-awesome/svgs/regular/plus-square.svg | 1 + .../svgs/regular/question-circle.svg | 1 + .../font-awesome/svgs/regular/registered.svg | 1 + .../font-awesome/svgs/regular/sad-cry.svg | 1 + .../font-awesome/svgs/regular/sad-tear.svg | 1 + .../static/font-awesome/svgs/regular/save.svg | 1 + .../svgs/regular/share-square.svg | 1 + .../font-awesome/svgs/regular/smile-beam.svg | 1 + .../font-awesome/svgs/regular/smile-wink.svg | 1 + .../font-awesome/svgs/regular/smile.svg | 1 + .../font-awesome/svgs/regular/snowflake.svg | 1 + .../font-awesome/svgs/regular/square.svg | 1 + .../font-awesome/svgs/regular/star-half.svg | 1 + .../static/font-awesome/svgs/regular/star.svg | 1 + .../font-awesome/svgs/regular/sticky-note.svg | 1 + .../font-awesome/svgs/regular/stop-circle.svg | 1 + .../static/font-awesome/svgs/regular/sun.svg | 1 + .../font-awesome/svgs/regular/surprise.svg | 1 + .../font-awesome/svgs/regular/thumbs-down.svg | 1 + .../font-awesome/svgs/regular/thumbs-up.svg | 1 + .../svgs/regular/times-circle.svg | 1 + .../font-awesome/svgs/regular/tired.svg | 1 + .../font-awesome/svgs/regular/trash-alt.svg | 1 + .../font-awesome/svgs/regular/user-circle.svg | 1 + .../static/font-awesome/svgs/regular/user.svg | 1 + .../svgs/regular/window-close.svg | 1 + .../svgs/regular/window-maximize.svg | 1 + .../svgs/regular/window-minimize.svg | 1 + .../svgs/regular/window-restore.svg | 1 + .../static/font-awesome/svgs/solid/ad.svg | 1 + .../font-awesome/svgs/solid/address-book.svg | 1 + .../font-awesome/svgs/solid/address-card.svg | 1 + .../static/font-awesome/svgs/solid/adjust.svg | 1 + .../font-awesome/svgs/solid/air-freshener.svg | 1 + .../font-awesome/svgs/solid/align-center.svg | 1 + .../font-awesome/svgs/solid/align-justify.svg | 1 + .../font-awesome/svgs/solid/align-left.svg | 1 + .../font-awesome/svgs/solid/align-right.svg | 1 + .../font-awesome/svgs/solid/allergies.svg | 1 + .../font-awesome/svgs/solid/ambulance.svg | 1 + .../american-sign-language-interpreting.svg | 1 + .../static/font-awesome/svgs/solid/anchor.svg | 1 + .../svgs/solid/angle-double-down.svg | 1 + .../svgs/solid/angle-double-left.svg | 1 + .../svgs/solid/angle-double-right.svg | 1 + .../svgs/solid/angle-double-up.svg | 1 + .../font-awesome/svgs/solid/angle-down.svg | 1 + .../font-awesome/svgs/solid/angle-left.svg | 1 + .../font-awesome/svgs/solid/angle-right.svg | 1 + .../font-awesome/svgs/solid/angle-up.svg | 1 + .../static/font-awesome/svgs/solid/angry.svg | 1 + .../static/font-awesome/svgs/solid/ankh.svg | 1 + .../font-awesome/svgs/solid/apple-alt.svg | 1 + .../font-awesome/svgs/solid/archive.svg | 1 + .../font-awesome/svgs/solid/archway.svg | 1 + .../svgs/solid/arrow-alt-circle-down.svg | 1 + .../svgs/solid/arrow-alt-circle-left.svg | 1 + .../svgs/solid/arrow-alt-circle-right.svg | 1 + .../svgs/solid/arrow-alt-circle-up.svg | 1 + .../svgs/solid/arrow-circle-down.svg | 1 + .../svgs/solid/arrow-circle-left.svg | 1 + .../svgs/solid/arrow-circle-right.svg | 1 + .../svgs/solid/arrow-circle-up.svg | 1 + .../font-awesome/svgs/solid/arrow-down.svg | 1 + .../font-awesome/svgs/solid/arrow-left.svg | 1 + .../font-awesome/svgs/solid/arrow-right.svg | 1 + .../font-awesome/svgs/solid/arrow-up.svg | 1 + .../font-awesome/svgs/solid/arrows-alt-h.svg | 1 + .../font-awesome/svgs/solid/arrows-alt-v.svg | 1 + .../font-awesome/svgs/solid/arrows-alt.svg | 1 + .../solid/assistive-listening-systems.svg | 1 + .../font-awesome/svgs/solid/asterisk.svg | 1 + .../static/font-awesome/svgs/solid/at.svg | 1 + .../static/font-awesome/svgs/solid/atlas.svg | 1 + .../static/font-awesome/svgs/solid/atom.svg | 1 + .../svgs/solid/audio-description.svg | 1 + .../static/font-awesome/svgs/solid/award.svg | 1 + .../font-awesome/svgs/solid/baby-carriage.svg | 1 + .../static/font-awesome/svgs/solid/baby.svg | 1 + .../font-awesome/svgs/solid/backspace.svg | 1 + .../font-awesome/svgs/solid/backward.svg | 1 + .../static/font-awesome/svgs/solid/bacon.svg | 1 + .../static/font-awesome/svgs/solid/bahai.svg | 1 + .../svgs/solid/balance-scale-left.svg | 1 + .../svgs/solid/balance-scale-right.svg | 1 + .../font-awesome/svgs/solid/balance-scale.svg | 1 + .../static/font-awesome/svgs/solid/ban.svg | 1 + .../font-awesome/svgs/solid/band-aid.svg | 1 + .../font-awesome/svgs/solid/barcode.svg | 1 + .../static/font-awesome/svgs/solid/bars.svg | 1 + .../font-awesome/svgs/solid/baseball-ball.svg | 1 + .../svgs/solid/basketball-ball.svg | 1 + .../static/font-awesome/svgs/solid/bath.svg | 1 + .../font-awesome/svgs/solid/battery-empty.svg | 1 + .../font-awesome/svgs/solid/battery-full.svg | 1 + .../font-awesome/svgs/solid/battery-half.svg | 1 + .../svgs/solid/battery-quarter.svg | 1 + .../svgs/solid/battery-three-quarters.svg | 1 + .../static/font-awesome/svgs/solid/bed.svg | 1 + .../static/font-awesome/svgs/solid/beer.svg | 1 + .../font-awesome/svgs/solid/bell-slash.svg | 1 + .../static/font-awesome/svgs/solid/bell.svg | 1 + .../font-awesome/svgs/solid/bezier-curve.svg | 1 + .../static/font-awesome/svgs/solid/bible.svg | 1 + .../font-awesome/svgs/solid/bicycle.svg | 1 + .../static/font-awesome/svgs/solid/biking.svg | 1 + .../font-awesome/svgs/solid/binoculars.svg | 1 + .../font-awesome/svgs/solid/biohazard.svg | 1 + .../font-awesome/svgs/solid/birthday-cake.svg | 1 + .../font-awesome/svgs/solid/blender-phone.svg | 1 + .../font-awesome/svgs/solid/blender.svg | 1 + .../static/font-awesome/svgs/solid/blind.svg | 1 + .../static/font-awesome/svgs/solid/blog.svg | 1 + .../static/font-awesome/svgs/solid/bold.svg | 1 + .../static/font-awesome/svgs/solid/bolt.svg | 1 + .../static/font-awesome/svgs/solid/bomb.svg | 1 + .../static/font-awesome/svgs/solid/bone.svg | 1 + .../static/font-awesome/svgs/solid/bong.svg | 1 + .../font-awesome/svgs/solid/book-dead.svg | 1 + .../font-awesome/svgs/solid/book-medical.svg | 1 + .../font-awesome/svgs/solid/book-open.svg | 1 + .../font-awesome/svgs/solid/book-reader.svg | 1 + .../static/font-awesome/svgs/solid/book.svg | 1 + .../font-awesome/svgs/solid/bookmark.svg | 1 + .../font-awesome/svgs/solid/border-all.svg | 1 + .../font-awesome/svgs/solid/border-none.svg | 1 + .../font-awesome/svgs/solid/border-style.svg | 1 + .../font-awesome/svgs/solid/bowling-ball.svg | 1 + .../font-awesome/svgs/solid/box-open.svg | 1 + .../static/font-awesome/svgs/solid/box.svg | 1 + .../static/font-awesome/svgs/solid/boxes.svg | 1 + .../font-awesome/svgs/solid/braille.svg | 1 + .../static/font-awesome/svgs/solid/brain.svg | 1 + .../font-awesome/svgs/solid/bread-slice.svg | 1 + .../svgs/solid/briefcase-medical.svg | 1 + .../font-awesome/svgs/solid/briefcase.svg | 1 + .../svgs/solid/broadcast-tower.svg | 1 + .../static/font-awesome/svgs/solid/broom.svg | 1 + .../static/font-awesome/svgs/solid/brush.svg | 1 + .../static/font-awesome/svgs/solid/bug.svg | 1 + .../font-awesome/svgs/solid/building.svg | 1 + .../font-awesome/svgs/solid/bullhorn.svg | 1 + .../font-awesome/svgs/solid/bullseye.svg | 1 + .../static/font-awesome/svgs/solid/burn.svg | 1 + .../font-awesome/svgs/solid/bus-alt.svg | 1 + .../static/font-awesome/svgs/solid/bus.svg | 1 + .../font-awesome/svgs/solid/business-time.svg | 1 + .../font-awesome/svgs/solid/calculator.svg | 1 + .../font-awesome/svgs/solid/calendar-alt.svg | 1 + .../svgs/solid/calendar-check.svg | 1 + .../font-awesome/svgs/solid/calendar-day.svg | 1 + .../svgs/solid/calendar-minus.svg | 1 + .../font-awesome/svgs/solid/calendar-plus.svg | 1 + .../svgs/solid/calendar-times.svg | 1 + .../font-awesome/svgs/solid/calendar-week.svg | 1 + .../font-awesome/svgs/solid/calendar.svg | 1 + .../font-awesome/svgs/solid/camera-retro.svg | 1 + .../static/font-awesome/svgs/solid/camera.svg | 1 + .../font-awesome/svgs/solid/campground.svg | 1 + .../font-awesome/svgs/solid/candy-cane.svg | 1 + .../font-awesome/svgs/solid/cannabis.svg | 1 + .../font-awesome/svgs/solid/capsules.svg | 1 + .../font-awesome/svgs/solid/car-alt.svg | 1 + .../font-awesome/svgs/solid/car-battery.svg | 1 + .../font-awesome/svgs/solid/car-crash.svg | 1 + .../font-awesome/svgs/solid/car-side.svg | 1 + .../static/font-awesome/svgs/solid/car.svg | 1 + .../font-awesome/svgs/solid/caravan.svg | 1 + .../font-awesome/svgs/solid/caret-down.svg | 1 + .../font-awesome/svgs/solid/caret-left.svg | 1 + .../font-awesome/svgs/solid/caret-right.svg | 1 + .../svgs/solid/caret-square-down.svg | 1 + .../svgs/solid/caret-square-left.svg | 1 + .../svgs/solid/caret-square-right.svg | 1 + .../svgs/solid/caret-square-up.svg | 1 + .../font-awesome/svgs/solid/caret-up.svg | 1 + .../static/font-awesome/svgs/solid/carrot.svg | 1 + .../svgs/solid/cart-arrow-down.svg | 1 + .../font-awesome/svgs/solid/cart-plus.svg | 1 + .../font-awesome/svgs/solid/cash-register.svg | 1 + .../static/font-awesome/svgs/solid/cat.svg | 1 + .../font-awesome/svgs/solid/certificate.svg | 1 + .../static/font-awesome/svgs/solid/chair.svg | 1 + .../svgs/solid/chalkboard-teacher.svg | 1 + .../font-awesome/svgs/solid/chalkboard.svg | 1 + .../svgs/solid/charging-station.svg | 1 + .../font-awesome/svgs/solid/chart-area.svg | 1 + .../font-awesome/svgs/solid/chart-bar.svg | 1 + .../font-awesome/svgs/solid/chart-line.svg | 1 + .../font-awesome/svgs/solid/chart-pie.svg | 1 + .../font-awesome/svgs/solid/check-circle.svg | 1 + .../font-awesome/svgs/solid/check-double.svg | 1 + .../font-awesome/svgs/solid/check-square.svg | 1 + .../static/font-awesome/svgs/solid/check.svg | 1 + .../static/font-awesome/svgs/solid/cheese.svg | 1 + .../font-awesome/svgs/solid/chess-bishop.svg | 1 + .../font-awesome/svgs/solid/chess-board.svg | 1 + .../font-awesome/svgs/solid/chess-king.svg | 1 + .../font-awesome/svgs/solid/chess-knight.svg | 1 + .../font-awesome/svgs/solid/chess-pawn.svg | 1 + .../font-awesome/svgs/solid/chess-queen.svg | 1 + .../font-awesome/svgs/solid/chess-rook.svg | 1 + .../static/font-awesome/svgs/solid/chess.svg | 1 + .../svgs/solid/chevron-circle-down.svg | 1 + .../svgs/solid/chevron-circle-left.svg | 1 + .../svgs/solid/chevron-circle-right.svg | 1 + .../svgs/solid/chevron-circle-up.svg | 1 + .../font-awesome/svgs/solid/chevron-down.svg | 1 + .../font-awesome/svgs/solid/chevron-left.svg | 1 + .../font-awesome/svgs/solid/chevron-right.svg | 1 + .../font-awesome/svgs/solid/chevron-up.svg | 1 + .../static/font-awesome/svgs/solid/child.svg | 1 + .../static/font-awesome/svgs/solid/church.svg | 1 + .../font-awesome/svgs/solid/circle-notch.svg | 1 + .../static/font-awesome/svgs/solid/circle.svg | 1 + .../static/font-awesome/svgs/solid/city.svg | 1 + .../svgs/solid/clinic-medical.svg | 1 + .../svgs/solid/clipboard-check.svg | 1 + .../svgs/solid/clipboard-list.svg | 1 + .../font-awesome/svgs/solid/clipboard.svg | 1 + .../static/font-awesome/svgs/solid/clock.svg | 1 + .../static/font-awesome/svgs/solid/clone.svg | 1 + .../svgs/solid/closed-captioning.svg | 1 + .../svgs/solid/cloud-download-alt.svg | 1 + .../svgs/solid/cloud-meatball.svg | 1 + .../svgs/solid/cloud-moon-rain.svg | 1 + .../font-awesome/svgs/solid/cloud-moon.svg | 1 + .../font-awesome/svgs/solid/cloud-rain.svg | 1 + .../svgs/solid/cloud-showers-heavy.svg | 1 + .../svgs/solid/cloud-sun-rain.svg | 1 + .../font-awesome/svgs/solid/cloud-sun.svg | 1 + .../svgs/solid/cloud-upload-alt.svg | 1 + .../static/font-awesome/svgs/solid/cloud.svg | 1 + .../font-awesome/svgs/solid/cocktail.svg | 1 + .../font-awesome/svgs/solid/code-branch.svg | 1 + .../static/font-awesome/svgs/solid/code.svg | 1 + .../static/font-awesome/svgs/solid/coffee.svg | 1 + .../static/font-awesome/svgs/solid/cog.svg | 1 + .../static/font-awesome/svgs/solid/cogs.svg | 1 + .../static/font-awesome/svgs/solid/coins.svg | 1 + .../font-awesome/svgs/solid/columns.svg | 1 + .../font-awesome/svgs/solid/comment-alt.svg | 1 + .../svgs/solid/comment-dollar.svg | 1 + .../font-awesome/svgs/solid/comment-dots.svg | 1 + .../svgs/solid/comment-medical.svg | 1 + .../font-awesome/svgs/solid/comment-slash.svg | 1 + .../font-awesome/svgs/solid/comment.svg | 1 + .../svgs/solid/comments-dollar.svg | 1 + .../font-awesome/svgs/solid/comments.svg | 1 + .../font-awesome/svgs/solid/compact-disc.svg | 1 + .../font-awesome/svgs/solid/compass.svg | 1 + .../font-awesome/svgs/solid/compress-alt.svg | 1 + .../svgs/solid/compress-arrows-alt.svg | 1 + .../font-awesome/svgs/solid/compress.svg | 1 + .../svgs/solid/concierge-bell.svg | 1 + .../font-awesome/svgs/solid/cookie-bite.svg | 1 + .../static/font-awesome/svgs/solid/cookie.svg | 1 + .../static/font-awesome/svgs/solid/copy.svg | 1 + .../font-awesome/svgs/solid/copyright.svg | 1 + .../static/font-awesome/svgs/solid/couch.svg | 1 + .../font-awesome/svgs/solid/credit-card.svg | 1 + .../font-awesome/svgs/solid/crop-alt.svg | 1 + .../static/font-awesome/svgs/solid/crop.svg | 1 + .../static/font-awesome/svgs/solid/cross.svg | 1 + .../font-awesome/svgs/solid/crosshairs.svg | 1 + .../static/font-awesome/svgs/solid/crow.svg | 1 + .../static/font-awesome/svgs/solid/crown.svg | 1 + .../static/font-awesome/svgs/solid/crutch.svg | 1 + .../static/font-awesome/svgs/solid/cube.svg | 1 + .../static/font-awesome/svgs/solid/cubes.svg | 1 + .../static/font-awesome/svgs/solid/cut.svg | 1 + .../font-awesome/svgs/solid/database.svg | 1 + .../static/font-awesome/svgs/solid/deaf.svg | 1 + .../font-awesome/svgs/solid/democrat.svg | 1 + .../font-awesome/svgs/solid/desktop.svg | 1 + .../font-awesome/svgs/solid/dharmachakra.svg | 1 + .../font-awesome/svgs/solid/diagnoses.svg | 1 + .../font-awesome/svgs/solid/dice-d20.svg | 1 + .../font-awesome/svgs/solid/dice-d6.svg | 1 + .../font-awesome/svgs/solid/dice-five.svg | 1 + .../font-awesome/svgs/solid/dice-four.svg | 1 + .../font-awesome/svgs/solid/dice-one.svg | 1 + .../font-awesome/svgs/solid/dice-six.svg | 1 + .../font-awesome/svgs/solid/dice-three.svg | 1 + .../font-awesome/svgs/solid/dice-two.svg | 1 + .../static/font-awesome/svgs/solid/dice.svg | 1 + .../svgs/solid/digital-tachograph.svg | 1 + .../font-awesome/svgs/solid/directions.svg | 1 + .../static/font-awesome/svgs/solid/divide.svg | 1 + .../static/font-awesome/svgs/solid/dizzy.svg | 1 + .../static/font-awesome/svgs/solid/dna.svg | 1 + .../static/font-awesome/svgs/solid/dog.svg | 1 + .../font-awesome/svgs/solid/dollar-sign.svg | 1 + .../font-awesome/svgs/solid/dolly-flatbed.svg | 1 + .../static/font-awesome/svgs/solid/dolly.svg | 1 + .../static/font-awesome/svgs/solid/donate.svg | 1 + .../font-awesome/svgs/solid/door-closed.svg | 1 + .../font-awesome/svgs/solid/door-open.svg | 1 + .../font-awesome/svgs/solid/dot-circle.svg | 1 + .../static/font-awesome/svgs/solid/dove.svg | 1 + .../font-awesome/svgs/solid/download.svg | 1 + .../svgs/solid/drafting-compass.svg | 1 + .../static/font-awesome/svgs/solid/dragon.svg | 1 + .../font-awesome/svgs/solid/draw-polygon.svg | 1 + .../font-awesome/svgs/solid/drum-steelpan.svg | 1 + .../static/font-awesome/svgs/solid/drum.svg | 1 + .../svgs/solid/drumstick-bite.svg | 1 + .../font-awesome/svgs/solid/dumbbell.svg | 1 + .../font-awesome/svgs/solid/dumpster-fire.svg | 1 + .../font-awesome/svgs/solid/dumpster.svg | 1 + .../font-awesome/svgs/solid/dungeon.svg | 1 + .../static/font-awesome/svgs/solid/edit.svg | 1 + .../static/font-awesome/svgs/solid/egg.svg | 1 + .../static/font-awesome/svgs/solid/eject.svg | 1 + .../font-awesome/svgs/solid/ellipsis-h.svg | 1 + .../font-awesome/svgs/solid/ellipsis-v.svg | 1 + .../svgs/solid/envelope-open-text.svg | 1 + .../font-awesome/svgs/solid/envelope-open.svg | 1 + .../svgs/solid/envelope-square.svg | 1 + .../font-awesome/svgs/solid/envelope.svg | 1 + .../static/font-awesome/svgs/solid/equals.svg | 1 + .../static/font-awesome/svgs/solid/eraser.svg | 1 + .../font-awesome/svgs/solid/ethernet.svg | 1 + .../font-awesome/svgs/solid/euro-sign.svg | 1 + .../font-awesome/svgs/solid/exchange-alt.svg | 1 + .../svgs/solid/exclamation-circle.svg | 1 + .../svgs/solid/exclamation-triangle.svg | 1 + .../font-awesome/svgs/solid/exclamation.svg | 1 + .../font-awesome/svgs/solid/expand-alt.svg | 1 + .../svgs/solid/expand-arrows-alt.svg | 1 + .../static/font-awesome/svgs/solid/expand.svg | 1 + .../svgs/solid/external-link-alt.svg | 1 + .../svgs/solid/external-link-square-alt.svg | 1 + .../font-awesome/svgs/solid/eye-dropper.svg | 1 + .../font-awesome/svgs/solid/eye-slash.svg | 1 + .../static/font-awesome/svgs/solid/eye.svg | 1 + .../static/font-awesome/svgs/solid/fan.svg | 1 + .../font-awesome/svgs/solid/fast-backward.svg | 1 + .../font-awesome/svgs/solid/fast-forward.svg | 1 + .../static/font-awesome/svgs/solid/fax.svg | 1 + .../font-awesome/svgs/solid/feather-alt.svg | 1 + .../font-awesome/svgs/solid/feather.svg | 1 + .../static/font-awesome/svgs/solid/female.svg | 1 + .../font-awesome/svgs/solid/fighter-jet.svg | 1 + .../font-awesome/svgs/solid/file-alt.svg | 1 + .../font-awesome/svgs/solid/file-archive.svg | 1 + .../font-awesome/svgs/solid/file-audio.svg | 1 + .../font-awesome/svgs/solid/file-code.svg | 1 + .../font-awesome/svgs/solid/file-contract.svg | 1 + .../font-awesome/svgs/solid/file-csv.svg | 1 + .../font-awesome/svgs/solid/file-download.svg | 1 + .../font-awesome/svgs/solid/file-excel.svg | 1 + .../font-awesome/svgs/solid/file-export.svg | 1 + .../font-awesome/svgs/solid/file-image.svg | 1 + .../font-awesome/svgs/solid/file-import.svg | 1 + .../svgs/solid/file-invoice-dollar.svg | 1 + .../font-awesome/svgs/solid/file-invoice.svg | 1 + .../svgs/solid/file-medical-alt.svg | 1 + .../font-awesome/svgs/solid/file-medical.svg | 1 + .../font-awesome/svgs/solid/file-pdf.svg | 1 + .../svgs/solid/file-powerpoint.svg | 1 + .../svgs/solid/file-prescription.svg | 1 + .../svgs/solid/file-signature.svg | 1 + .../font-awesome/svgs/solid/file-upload.svg | 1 + .../font-awesome/svgs/solid/file-video.svg | 1 + .../font-awesome/svgs/solid/file-word.svg | 1 + .../static/font-awesome/svgs/solid/file.svg | 1 + .../font-awesome/svgs/solid/fill-drip.svg | 1 + .../static/font-awesome/svgs/solid/fill.svg | 1 + .../static/font-awesome/svgs/solid/film.svg | 1 + .../static/font-awesome/svgs/solid/filter.svg | 1 + .../font-awesome/svgs/solid/fingerprint.svg | 1 + .../font-awesome/svgs/solid/fire-alt.svg | 1 + .../svgs/solid/fire-extinguisher.svg | 1 + .../static/font-awesome/svgs/solid/fire.svg | 1 + .../font-awesome/svgs/solid/first-aid.svg | 1 + .../static/font-awesome/svgs/solid/fish.svg | 1 + .../font-awesome/svgs/solid/fist-raised.svg | 1 + .../svgs/solid/flag-checkered.svg | 1 + .../font-awesome/svgs/solid/flag-usa.svg | 1 + .../static/font-awesome/svgs/solid/flag.svg | 1 + .../static/font-awesome/svgs/solid/flask.svg | 1 + .../font-awesome/svgs/solid/flushed.svg | 1 + .../font-awesome/svgs/solid/folder-minus.svg | 1 + .../font-awesome/svgs/solid/folder-open.svg | 1 + .../font-awesome/svgs/solid/folder-plus.svg | 1 + .../static/font-awesome/svgs/solid/folder.svg | 1 + .../svgs/solid/font-awesome-logo-full.svg | 1 + .../static/font-awesome/svgs/solid/font.svg | 1 + .../font-awesome/svgs/solid/football-ball.svg | 1 + .../font-awesome/svgs/solid/forward.svg | 1 + .../static/font-awesome/svgs/solid/frog.svg | 1 + .../font-awesome/svgs/solid/frown-open.svg | 1 + .../static/font-awesome/svgs/solid/frown.svg | 1 + .../font-awesome/svgs/solid/funnel-dollar.svg | 1 + .../static/font-awesome/svgs/solid/futbol.svg | 1 + .../font-awesome/svgs/solid/gamepad.svg | 1 + .../font-awesome/svgs/solid/gas-pump.svg | 1 + .../static/font-awesome/svgs/solid/gavel.svg | 1 + .../static/font-awesome/svgs/solid/gem.svg | 1 + .../font-awesome/svgs/solid/genderless.svg | 1 + .../static/font-awesome/svgs/solid/ghost.svg | 1 + .../static/font-awesome/svgs/solid/gift.svg | 1 + .../static/font-awesome/svgs/solid/gifts.svg | 1 + .../font-awesome/svgs/solid/glass-cheers.svg | 1 + .../svgs/solid/glass-martini-alt.svg | 1 + .../font-awesome/svgs/solid/glass-martini.svg | 1 + .../font-awesome/svgs/solid/glass-whiskey.svg | 1 + .../font-awesome/svgs/solid/glasses.svg | 1 + .../font-awesome/svgs/solid/globe-africa.svg | 1 + .../svgs/solid/globe-americas.svg | 1 + .../font-awesome/svgs/solid/globe-asia.svg | 1 + .../font-awesome/svgs/solid/globe-europe.svg | 1 + .../static/font-awesome/svgs/solid/globe.svg | 1 + .../font-awesome/svgs/solid/golf-ball.svg | 1 + .../font-awesome/svgs/solid/gopuram.svg | 1 + .../svgs/solid/graduation-cap.svg | 1 + .../svgs/solid/greater-than-equal.svg | 1 + .../font-awesome/svgs/solid/greater-than.svg | 1 + .../font-awesome/svgs/solid/grimace.svg | 1 + .../font-awesome/svgs/solid/grin-alt.svg | 1 + .../svgs/solid/grin-beam-sweat.svg | 1 + .../font-awesome/svgs/solid/grin-beam.svg | 1 + .../font-awesome/svgs/solid/grin-hearts.svg | 1 + .../svgs/solid/grin-squint-tears.svg | 1 + .../font-awesome/svgs/solid/grin-squint.svg | 1 + .../font-awesome/svgs/solid/grin-stars.svg | 1 + .../font-awesome/svgs/solid/grin-tears.svg | 1 + .../svgs/solid/grin-tongue-squint.svg | 1 + .../svgs/solid/grin-tongue-wink.svg | 1 + .../font-awesome/svgs/solid/grin-tongue.svg | 1 + .../font-awesome/svgs/solid/grin-wink.svg | 1 + .../static/font-awesome/svgs/solid/grin.svg | 1 + .../svgs/solid/grip-horizontal.svg | 1 + .../svgs/solid/grip-lines-vertical.svg | 1 + .../font-awesome/svgs/solid/grip-lines.svg | 1 + .../font-awesome/svgs/solid/grip-vertical.svg | 1 + .../static/font-awesome/svgs/solid/guitar.svg | 1 + .../font-awesome/svgs/solid/h-square.svg | 1 + .../font-awesome/svgs/solid/hamburger.svg | 1 + .../static/font-awesome/svgs/solid/hammer.svg | 1 + .../static/font-awesome/svgs/solid/hamsa.svg | 1 + .../svgs/solid/hand-holding-heart.svg | 1 + .../svgs/solid/hand-holding-usd.svg | 1 + .../font-awesome/svgs/solid/hand-holding.svg | 1 + .../font-awesome/svgs/solid/hand-lizard.svg | 1 + .../svgs/solid/hand-middle-finger.svg | 1 + .../font-awesome/svgs/solid/hand-paper.svg | 1 + .../font-awesome/svgs/solid/hand-peace.svg | 1 + .../svgs/solid/hand-point-down.svg | 1 + .../svgs/solid/hand-point-left.svg | 1 + .../svgs/solid/hand-point-right.svg | 1 + .../font-awesome/svgs/solid/hand-point-up.svg | 1 + .../font-awesome/svgs/solid/hand-pointer.svg | 1 + .../font-awesome/svgs/solid/hand-rock.svg | 1 + .../font-awesome/svgs/solid/hand-scissors.svg | 1 + .../font-awesome/svgs/solid/hand-spock.svg | 1 + .../font-awesome/svgs/solid/hands-helping.svg | 1 + .../static/font-awesome/svgs/solid/hands.svg | 1 + .../font-awesome/svgs/solid/handshake.svg | 1 + .../font-awesome/svgs/solid/hanukiah.svg | 1 + .../font-awesome/svgs/solid/hard-hat.svg | 1 + .../font-awesome/svgs/solid/hashtag.svg | 1 + .../svgs/solid/hat-cowboy-side.svg | 1 + .../font-awesome/svgs/solid/hat-cowboy.svg | 1 + .../font-awesome/svgs/solid/hat-wizard.svg | 1 + .../static/font-awesome/svgs/solid/hdd.svg | 1 + .../font-awesome/svgs/solid/heading.svg | 1 + .../svgs/solid/headphones-alt.svg | 1 + .../font-awesome/svgs/solid/headphones.svg | 1 + .../font-awesome/svgs/solid/headset.svg | 1 + .../font-awesome/svgs/solid/heart-broken.svg | 1 + .../static/font-awesome/svgs/solid/heart.svg | 1 + .../font-awesome/svgs/solid/heartbeat.svg | 1 + .../font-awesome/svgs/solid/helicopter.svg | 1 + .../font-awesome/svgs/solid/highlighter.svg | 1 + .../static/font-awesome/svgs/solid/hiking.svg | 1 + .../static/font-awesome/svgs/solid/hippo.svg | 1 + .../font-awesome/svgs/solid/history.svg | 1 + .../font-awesome/svgs/solid/hockey-puck.svg | 1 + .../font-awesome/svgs/solid/holly-berry.svg | 1 + .../static/font-awesome/svgs/solid/home.svg | 1 + .../font-awesome/svgs/solid/horse-head.svg | 1 + .../static/font-awesome/svgs/solid/horse.svg | 1 + .../font-awesome/svgs/solid/hospital-alt.svg | 1 + .../svgs/solid/hospital-symbol.svg | 1 + .../font-awesome/svgs/solid/hospital.svg | 1 + .../font-awesome/svgs/solid/hot-tub.svg | 1 + .../static/font-awesome/svgs/solid/hotdog.svg | 1 + .../static/font-awesome/svgs/solid/hotel.svg | 1 + .../font-awesome/svgs/solid/hourglass-end.svg | 1 + .../svgs/solid/hourglass-half.svg | 1 + .../svgs/solid/hourglass-start.svg | 1 + .../font-awesome/svgs/solid/hourglass.svg | 1 + .../font-awesome/svgs/solid/house-damage.svg | 1 + .../font-awesome/svgs/solid/hryvnia.svg | 1 + .../font-awesome/svgs/solid/i-cursor.svg | 1 + .../font-awesome/svgs/solid/ice-cream.svg | 1 + .../font-awesome/svgs/solid/icicles.svg | 1 + .../static/font-awesome/svgs/solid/icons.svg | 1 + .../font-awesome/svgs/solid/id-badge.svg | 1 + .../font-awesome/svgs/solid/id-card-alt.svg | 1 + .../font-awesome/svgs/solid/id-card.svg | 1 + .../static/font-awesome/svgs/solid/igloo.svg | 1 + .../static/font-awesome/svgs/solid/image.svg | 1 + .../static/font-awesome/svgs/solid/images.svg | 1 + .../static/font-awesome/svgs/solid/inbox.svg | 1 + .../static/font-awesome/svgs/solid/indent.svg | 1 + .../font-awesome/svgs/solid/industry.svg | 1 + .../font-awesome/svgs/solid/infinity.svg | 1 + .../font-awesome/svgs/solid/info-circle.svg | 1 + .../static/font-awesome/svgs/solid/info.svg | 1 + .../static/font-awesome/svgs/solid/italic.svg | 1 + .../static/font-awesome/svgs/solid/jedi.svg | 1 + .../static/font-awesome/svgs/solid/joint.svg | 1 + .../svgs/solid/journal-whills.svg | 1 + .../static/font-awesome/svgs/solid/kaaba.svg | 1 + .../static/font-awesome/svgs/solid/key.svg | 1 + .../font-awesome/svgs/solid/keyboard.svg | 1 + .../static/font-awesome/svgs/solid/khanda.svg | 1 + .../font-awesome/svgs/solid/kiss-beam.svg | 1 + .../svgs/solid/kiss-wink-heart.svg | 1 + .../static/font-awesome/svgs/solid/kiss.svg | 1 + .../font-awesome/svgs/solid/kiwi-bird.svg | 1 + .../font-awesome/svgs/solid/landmark.svg | 1 + .../font-awesome/svgs/solid/language.svg | 1 + .../font-awesome/svgs/solid/laptop-code.svg | 1 + .../svgs/solid/laptop-medical.svg | 1 + .../static/font-awesome/svgs/solid/laptop.svg | 1 + .../font-awesome/svgs/solid/laugh-beam.svg | 1 + .../font-awesome/svgs/solid/laugh-squint.svg | 1 + .../font-awesome/svgs/solid/laugh-wink.svg | 1 + .../static/font-awesome/svgs/solid/laugh.svg | 1 + .../font-awesome/svgs/solid/layer-group.svg | 1 + .../static/font-awesome/svgs/solid/leaf.svg | 1 + .../static/font-awesome/svgs/solid/lemon.svg | 1 + .../svgs/solid/less-than-equal.svg | 1 + .../font-awesome/svgs/solid/less-than.svg | 1 + .../svgs/solid/level-down-alt.svg | 1 + .../font-awesome/svgs/solid/level-up-alt.svg | 1 + .../font-awesome/svgs/solid/life-ring.svg | 1 + .../font-awesome/svgs/solid/lightbulb.svg | 1 + .../static/font-awesome/svgs/solid/link.svg | 1 + .../font-awesome/svgs/solid/lira-sign.svg | 1 + .../font-awesome/svgs/solid/list-alt.svg | 1 + .../font-awesome/svgs/solid/list-ol.svg | 1 + .../font-awesome/svgs/solid/list-ul.svg | 1 + .../static/font-awesome/svgs/solid/list.svg | 1 + .../svgs/solid/location-arrow.svg | 1 + .../font-awesome/svgs/solid/lock-open.svg | 1 + .../static/font-awesome/svgs/solid/lock.svg | 1 + .../svgs/solid/long-arrow-alt-down.svg | 1 + .../svgs/solid/long-arrow-alt-left.svg | 1 + .../svgs/solid/long-arrow-alt-right.svg | 1 + .../svgs/solid/long-arrow-alt-up.svg | 1 + .../font-awesome/svgs/solid/low-vision.svg | 1 + .../font-awesome/svgs/solid/luggage-cart.svg | 1 + .../static/font-awesome/svgs/solid/magic.svg | 1 + .../static/font-awesome/svgs/solid/magnet.svg | 1 + .../font-awesome/svgs/solid/mail-bulk.svg | 1 + .../static/font-awesome/svgs/solid/male.svg | 1 + .../svgs/solid/map-marked-alt.svg | 1 + .../font-awesome/svgs/solid/map-marked.svg | 1 + .../svgs/solid/map-marker-alt.svg | 1 + .../font-awesome/svgs/solid/map-marker.svg | 1 + .../font-awesome/svgs/solid/map-pin.svg | 1 + .../font-awesome/svgs/solid/map-signs.svg | 1 + .../static/font-awesome/svgs/solid/map.svg | 1 + .../static/font-awesome/svgs/solid/marker.svg | 1 + .../font-awesome/svgs/solid/mars-double.svg | 1 + .../font-awesome/svgs/solid/mars-stroke-h.svg | 1 + .../font-awesome/svgs/solid/mars-stroke-v.svg | 1 + .../font-awesome/svgs/solid/mars-stroke.svg | 1 + .../static/font-awesome/svgs/solid/mars.svg | 1 + .../static/font-awesome/svgs/solid/mask.svg | 1 + .../static/font-awesome/svgs/solid/medal.svg | 1 + .../static/font-awesome/svgs/solid/medkit.svg | 1 + .../font-awesome/svgs/solid/meh-blank.svg | 1 + .../svgs/solid/meh-rolling-eyes.svg | 1 + .../static/font-awesome/svgs/solid/meh.svg | 1 + .../static/font-awesome/svgs/solid/memory.svg | 1 + .../font-awesome/svgs/solid/menorah.svg | 1 + .../font-awesome/svgs/solid/mercury.svg | 1 + .../static/font-awesome/svgs/solid/meteor.svg | 1 + .../font-awesome/svgs/solid/microchip.svg | 1 + .../svgs/solid/microphone-alt-slash.svg | 1 + .../svgs/solid/microphone-alt.svg | 1 + .../svgs/solid/microphone-slash.svg | 1 + .../font-awesome/svgs/solid/microphone.svg | 1 + .../font-awesome/svgs/solid/microscope.svg | 1 + .../font-awesome/svgs/solid/minus-circle.svg | 1 + .../font-awesome/svgs/solid/minus-square.svg | 1 + .../static/font-awesome/svgs/solid/minus.svg | 1 + .../static/font-awesome/svgs/solid/mitten.svg | 1 + .../font-awesome/svgs/solid/mobile-alt.svg | 1 + .../static/font-awesome/svgs/solid/mobile.svg | 1 + .../svgs/solid/money-bill-alt.svg | 1 + .../svgs/solid/money-bill-wave-alt.svg | 1 + .../svgs/solid/money-bill-wave.svg | 1 + .../font-awesome/svgs/solid/money-bill.svg | 1 + .../svgs/solid/money-check-alt.svg | 1 + .../font-awesome/svgs/solid/money-check.svg | 1 + .../font-awesome/svgs/solid/monument.svg | 1 + .../static/font-awesome/svgs/solid/moon.svg | 1 + .../font-awesome/svgs/solid/mortar-pestle.svg | 1 + .../static/font-awesome/svgs/solid/mosque.svg | 1 + .../font-awesome/svgs/solid/motorcycle.svg | 1 + .../font-awesome/svgs/solid/mountain.svg | 1 + .../font-awesome/svgs/solid/mouse-pointer.svg | 1 + .../static/font-awesome/svgs/solid/mouse.svg | 1 + .../font-awesome/svgs/solid/mug-hot.svg | 1 + .../static/font-awesome/svgs/solid/music.svg | 1 + .../font-awesome/svgs/solid/network-wired.svg | 1 + .../static/font-awesome/svgs/solid/neuter.svg | 1 + .../font-awesome/svgs/solid/newspaper.svg | 1 + .../font-awesome/svgs/solid/not-equal.svg | 1 + .../font-awesome/svgs/solid/notes-medical.svg | 1 + .../font-awesome/svgs/solid/object-group.svg | 1 + .../svgs/solid/object-ungroup.svg | 1 + .../font-awesome/svgs/solid/oil-can.svg | 1 + .../static/font-awesome/svgs/solid/om.svg | 1 + .../static/font-awesome/svgs/solid/otter.svg | 1 + .../font-awesome/svgs/solid/outdent.svg | 1 + .../static/font-awesome/svgs/solid/pager.svg | 1 + .../font-awesome/svgs/solid/paint-brush.svg | 1 + .../font-awesome/svgs/solid/paint-roller.svg | 1 + .../font-awesome/svgs/solid/palette.svg | 1 + .../static/font-awesome/svgs/solid/pallet.svg | 1 + .../font-awesome/svgs/solid/paper-plane.svg | 1 + .../font-awesome/svgs/solid/paperclip.svg | 1 + .../font-awesome/svgs/solid/parachute-box.svg | 1 + .../font-awesome/svgs/solid/paragraph.svg | 1 + .../font-awesome/svgs/solid/parking.svg | 1 + .../font-awesome/svgs/solid/passport.svg | 1 + .../svgs/solid/pastafarianism.svg | 1 + .../static/font-awesome/svgs/solid/paste.svg | 1 + .../font-awesome/svgs/solid/pause-circle.svg | 1 + .../static/font-awesome/svgs/solid/pause.svg | 1 + .../static/font-awesome/svgs/solid/paw.svg | 1 + .../static/font-awesome/svgs/solid/peace.svg | 1 + .../font-awesome/svgs/solid/pen-alt.svg | 1 + .../font-awesome/svgs/solid/pen-fancy.svg | 1 + .../font-awesome/svgs/solid/pen-nib.svg | 1 + .../font-awesome/svgs/solid/pen-square.svg | 1 + .../static/font-awesome/svgs/solid/pen.svg | 1 + .../font-awesome/svgs/solid/pencil-alt.svg | 1 + .../font-awesome/svgs/solid/pencil-ruler.svg | 1 + .../font-awesome/svgs/solid/people-carry.svg | 1 + .../font-awesome/svgs/solid/pepper-hot.svg | 1 + .../font-awesome/svgs/solid/percent.svg | 1 + .../font-awesome/svgs/solid/percentage.svg | 1 + .../font-awesome/svgs/solid/person-booth.svg | 1 + .../font-awesome/svgs/solid/phone-alt.svg | 1 + .../font-awesome/svgs/solid/phone-slash.svg | 1 + .../svgs/solid/phone-square-alt.svg | 1 + .../font-awesome/svgs/solid/phone-square.svg | 1 + .../font-awesome/svgs/solid/phone-volume.svg | 1 + .../static/font-awesome/svgs/solid/phone.svg | 1 + .../font-awesome/svgs/solid/photo-video.svg | 1 + .../font-awesome/svgs/solid/piggy-bank.svg | 1 + .../static/font-awesome/svgs/solid/pills.svg | 1 + .../font-awesome/svgs/solid/pizza-slice.svg | 1 + .../svgs/solid/place-of-worship.svg | 1 + .../font-awesome/svgs/solid/plane-arrival.svg | 1 + .../svgs/solid/plane-departure.svg | 1 + .../static/font-awesome/svgs/solid/plane.svg | 1 + .../font-awesome/svgs/solid/play-circle.svg | 1 + .../static/font-awesome/svgs/solid/play.svg | 1 + .../static/font-awesome/svgs/solid/plug.svg | 1 + .../font-awesome/svgs/solid/plus-circle.svg | 1 + .../font-awesome/svgs/solid/plus-square.svg | 1 + .../static/font-awesome/svgs/solid/plus.svg | 1 + .../font-awesome/svgs/solid/podcast.svg | 1 + .../static/font-awesome/svgs/solid/poll-h.svg | 1 + .../static/font-awesome/svgs/solid/poll.svg | 1 + .../font-awesome/svgs/solid/poo-storm.svg | 1 + .../static/font-awesome/svgs/solid/poo.svg | 1 + .../static/font-awesome/svgs/solid/poop.svg | 1 + .../font-awesome/svgs/solid/portrait.svg | 1 + .../font-awesome/svgs/solid/pound-sign.svg | 1 + .../font-awesome/svgs/solid/power-off.svg | 1 + .../static/font-awesome/svgs/solid/pray.svg | 1 + .../font-awesome/svgs/solid/praying-hands.svg | 1 + .../svgs/solid/prescription-bottle-alt.svg | 1 + .../svgs/solid/prescription-bottle.svg | 1 + .../font-awesome/svgs/solid/prescription.svg | 1 + .../static/font-awesome/svgs/solid/print.svg | 1 + .../font-awesome/svgs/solid/procedures.svg | 1 + .../svgs/solid/project-diagram.svg | 1 + .../font-awesome/svgs/solid/puzzle-piece.svg | 1 + .../static/font-awesome/svgs/solid/qrcode.svg | 1 + .../svgs/solid/question-circle.svg | 1 + .../font-awesome/svgs/solid/question.svg | 1 + .../font-awesome/svgs/solid/quidditch.svg | 1 + .../font-awesome/svgs/solid/quote-left.svg | 1 + .../font-awesome/svgs/solid/quote-right.svg | 1 + .../static/font-awesome/svgs/solid/quran.svg | 1 + .../font-awesome/svgs/solid/radiation-alt.svg | 1 + .../font-awesome/svgs/solid/radiation.svg | 1 + .../font-awesome/svgs/solid/rainbow.svg | 1 + .../static/font-awesome/svgs/solid/random.svg | 1 + .../font-awesome/svgs/solid/receipt.svg | 1 + .../font-awesome/svgs/solid/record-vinyl.svg | 1 + .../font-awesome/svgs/solid/recycle.svg | 1 + .../font-awesome/svgs/solid/redo-alt.svg | 1 + .../static/font-awesome/svgs/solid/redo.svg | 1 + .../font-awesome/svgs/solid/registered.svg | 1 + .../font-awesome/svgs/solid/remove-format.svg | 1 + .../font-awesome/svgs/solid/reply-all.svg | 1 + .../static/font-awesome/svgs/solid/reply.svg | 1 + .../font-awesome/svgs/solid/republican.svg | 1 + .../font-awesome/svgs/solid/restroom.svg | 1 + .../font-awesome/svgs/solid/retweet.svg | 1 + .../static/font-awesome/svgs/solid/ribbon.svg | 1 + .../static/font-awesome/svgs/solid/ring.svg | 1 + .../static/font-awesome/svgs/solid/road.svg | 1 + .../static/font-awesome/svgs/solid/robot.svg | 1 + .../static/font-awesome/svgs/solid/rocket.svg | 1 + .../static/font-awesome/svgs/solid/route.svg | 1 + .../font-awesome/svgs/solid/rss-square.svg | 1 + .../static/font-awesome/svgs/solid/rss.svg | 1 + .../font-awesome/svgs/solid/ruble-sign.svg | 1 + .../svgs/solid/ruler-combined.svg | 1 + .../svgs/solid/ruler-horizontal.svg | 1 + .../svgs/solid/ruler-vertical.svg | 1 + .../static/font-awesome/svgs/solid/ruler.svg | 1 + .../font-awesome/svgs/solid/running.svg | 1 + .../font-awesome/svgs/solid/rupee-sign.svg | 1 + .../font-awesome/svgs/solid/sad-cry.svg | 1 + .../font-awesome/svgs/solid/sad-tear.svg | 1 + .../svgs/solid/satellite-dish.svg | 1 + .../font-awesome/svgs/solid/satellite.svg | 1 + .../static/font-awesome/svgs/solid/save.svg | 1 + .../static/font-awesome/svgs/solid/school.svg | 1 + .../font-awesome/svgs/solid/screwdriver.svg | 1 + .../static/font-awesome/svgs/solid/scroll.svg | 1 + .../font-awesome/svgs/solid/sd-card.svg | 1 + .../font-awesome/svgs/solid/search-dollar.svg | 1 + .../svgs/solid/search-location.svg | 1 + .../font-awesome/svgs/solid/search-minus.svg | 1 + .../font-awesome/svgs/solid/search-plus.svg | 1 + .../static/font-awesome/svgs/solid/search.svg | 1 + .../font-awesome/svgs/solid/seedling.svg | 1 + .../static/font-awesome/svgs/solid/server.svg | 1 + .../static/font-awesome/svgs/solid/shapes.svg | 1 + .../svgs/solid/share-alt-square.svg | 1 + .../font-awesome/svgs/solid/share-alt.svg | 1 + .../font-awesome/svgs/solid/share-square.svg | 1 + .../static/font-awesome/svgs/solid/share.svg | 1 + .../font-awesome/svgs/solid/shekel-sign.svg | 1 + .../font-awesome/svgs/solid/shield-alt.svg | 1 + .../static/font-awesome/svgs/solid/ship.svg | 1 + .../font-awesome/svgs/solid/shipping-fast.svg | 1 + .../font-awesome/svgs/solid/shoe-prints.svg | 1 + .../font-awesome/svgs/solid/shopping-bag.svg | 1 + .../svgs/solid/shopping-basket.svg | 1 + .../font-awesome/svgs/solid/shopping-cart.svg | 1 + .../static/font-awesome/svgs/solid/shower.svg | 1 + .../font-awesome/svgs/solid/shuttle-van.svg | 1 + .../font-awesome/svgs/solid/sign-in-alt.svg | 1 + .../font-awesome/svgs/solid/sign-language.svg | 1 + .../font-awesome/svgs/solid/sign-out-alt.svg | 1 + .../static/font-awesome/svgs/solid/sign.svg | 1 + .../static/font-awesome/svgs/solid/signal.svg | 1 + .../font-awesome/svgs/solid/signature.svg | 1 + .../font-awesome/svgs/solid/sim-card.svg | 1 + .../font-awesome/svgs/solid/sitemap.svg | 1 + .../font-awesome/svgs/solid/skating.svg | 1 + .../font-awesome/svgs/solid/skiing-nordic.svg | 1 + .../static/font-awesome/svgs/solid/skiing.svg | 1 + .../svgs/solid/skull-crossbones.svg | 1 + .../static/font-awesome/svgs/solid/skull.svg | 1 + .../static/font-awesome/svgs/solid/slash.svg | 1 + .../static/font-awesome/svgs/solid/sleigh.svg | 1 + .../font-awesome/svgs/solid/sliders-h.svg | 1 + .../font-awesome/svgs/solid/smile-beam.svg | 1 + .../font-awesome/svgs/solid/smile-wink.svg | 1 + .../static/font-awesome/svgs/solid/smile.svg | 1 + .../static/font-awesome/svgs/solid/smog.svg | 1 + .../font-awesome/svgs/solid/smoking-ban.svg | 1 + .../font-awesome/svgs/solid/smoking.svg | 1 + .../static/font-awesome/svgs/solid/sms.svg | 1 + .../font-awesome/svgs/solid/snowboarding.svg | 1 + .../font-awesome/svgs/solid/snowflake.svg | 1 + .../font-awesome/svgs/solid/snowman.svg | 1 + .../font-awesome/svgs/solid/snowplow.svg | 1 + .../static/font-awesome/svgs/solid/socks.svg | 1 + .../font-awesome/svgs/solid/solar-panel.svg | 1 + .../svgs/solid/sort-alpha-down-alt.svg | 1 + .../svgs/solid/sort-alpha-down.svg | 1 + .../svgs/solid/sort-alpha-up-alt.svg | 1 + .../font-awesome/svgs/solid/sort-alpha-up.svg | 1 + .../svgs/solid/sort-amount-down-alt.svg | 1 + .../svgs/solid/sort-amount-down.svg | 1 + .../svgs/solid/sort-amount-up-alt.svg | 1 + .../svgs/solid/sort-amount-up.svg | 1 + .../font-awesome/svgs/solid/sort-down.svg | 1 + .../svgs/solid/sort-numeric-down-alt.svg | 1 + .../svgs/solid/sort-numeric-down.svg | 1 + .../svgs/solid/sort-numeric-up-alt.svg | 1 + .../svgs/solid/sort-numeric-up.svg | 1 + .../font-awesome/svgs/solid/sort-up.svg | 1 + .../static/font-awesome/svgs/solid/sort.svg | 1 + .../static/font-awesome/svgs/solid/spa.svg | 1 + .../font-awesome/svgs/solid/space-shuttle.svg | 1 + .../font-awesome/svgs/solid/spell-check.svg | 1 + .../static/font-awesome/svgs/solid/spider.svg | 1 + .../font-awesome/svgs/solid/spinner.svg | 1 + .../font-awesome/svgs/solid/splotch.svg | 1 + .../font-awesome/svgs/solid/spray-can.svg | 1 + .../font-awesome/svgs/solid/square-full.svg | 1 + .../svgs/solid/square-root-alt.svg | 1 + .../static/font-awesome/svgs/solid/square.svg | 1 + .../static/font-awesome/svgs/solid/stamp.svg | 1 + .../svgs/solid/star-and-crescent.svg | 1 + .../font-awesome/svgs/solid/star-half-alt.svg | 1 + .../font-awesome/svgs/solid/star-half.svg | 1 + .../font-awesome/svgs/solid/star-of-david.svg | 1 + .../font-awesome/svgs/solid/star-of-life.svg | 1 + .../static/font-awesome/svgs/solid/star.svg | 1 + .../font-awesome/svgs/solid/step-backward.svg | 1 + .../font-awesome/svgs/solid/step-forward.svg | 1 + .../font-awesome/svgs/solid/stethoscope.svg | 1 + .../font-awesome/svgs/solid/sticky-note.svg | 1 + .../font-awesome/svgs/solid/stop-circle.svg | 1 + .../static/font-awesome/svgs/solid/stop.svg | 1 + .../font-awesome/svgs/solid/stopwatch.svg | 1 + .../font-awesome/svgs/solid/store-alt.svg | 1 + .../static/font-awesome/svgs/solid/store.svg | 1 + .../static/font-awesome/svgs/solid/stream.svg | 1 + .../font-awesome/svgs/solid/street-view.svg | 1 + .../font-awesome/svgs/solid/strikethrough.svg | 1 + .../font-awesome/svgs/solid/stroopwafel.svg | 1 + .../font-awesome/svgs/solid/subscript.svg | 1 + .../static/font-awesome/svgs/solid/subway.svg | 1 + .../svgs/solid/suitcase-rolling.svg | 1 + .../font-awesome/svgs/solid/suitcase.svg | 1 + .../static/font-awesome/svgs/solid/sun.svg | 1 + .../font-awesome/svgs/solid/superscript.svg | 1 + .../font-awesome/svgs/solid/surprise.svg | 1 + .../font-awesome/svgs/solid/swatchbook.svg | 1 + .../font-awesome/svgs/solid/swimmer.svg | 1 + .../font-awesome/svgs/solid/swimming-pool.svg | 1 + .../font-awesome/svgs/solid/synagogue.svg | 1 + .../font-awesome/svgs/solid/sync-alt.svg | 1 + .../static/font-awesome/svgs/solid/sync.svg | 1 + .../font-awesome/svgs/solid/syringe.svg | 1 + .../font-awesome/svgs/solid/table-tennis.svg | 1 + .../static/font-awesome/svgs/solid/table.svg | 1 + .../font-awesome/svgs/solid/tablet-alt.svg | 1 + .../static/font-awesome/svgs/solid/tablet.svg | 1 + .../font-awesome/svgs/solid/tablets.svg | 1 + .../svgs/solid/tachometer-alt.svg | 1 + .../static/font-awesome/svgs/solid/tag.svg | 1 + .../static/font-awesome/svgs/solid/tags.svg | 1 + .../static/font-awesome/svgs/solid/tape.svg | 1 + .../static/font-awesome/svgs/solid/tasks.svg | 1 + .../static/font-awesome/svgs/solid/taxi.svg | 1 + .../font-awesome/svgs/solid/teeth-open.svg | 1 + .../static/font-awesome/svgs/solid/teeth.svg | 1 + .../svgs/solid/temperature-high.svg | 1 + .../svgs/solid/temperature-low.svg | 1 + .../static/font-awesome/svgs/solid/tenge.svg | 1 + .../font-awesome/svgs/solid/terminal.svg | 1 + .../font-awesome/svgs/solid/text-height.svg | 1 + .../font-awesome/svgs/solid/text-width.svg | 1 + .../font-awesome/svgs/solid/th-large.svg | 1 + .../font-awesome/svgs/solid/th-list.svg | 1 + .../static/font-awesome/svgs/solid/th.svg | 1 + .../font-awesome/svgs/solid/theater-masks.svg | 1 + .../svgs/solid/thermometer-empty.svg | 1 + .../svgs/solid/thermometer-full.svg | 1 + .../svgs/solid/thermometer-half.svg | 1 + .../svgs/solid/thermometer-quarter.svg | 1 + .../svgs/solid/thermometer-three-quarters.svg | 1 + .../font-awesome/svgs/solid/thermometer.svg | 1 + .../font-awesome/svgs/solid/thumbs-down.svg | 1 + .../font-awesome/svgs/solid/thumbs-up.svg | 1 + .../font-awesome/svgs/solid/thumbtack.svg | 1 + .../font-awesome/svgs/solid/ticket-alt.svg | 1 + .../font-awesome/svgs/solid/times-circle.svg | 1 + .../static/font-awesome/svgs/solid/times.svg | 1 + .../font-awesome/svgs/solid/tint-slash.svg | 1 + .../static/font-awesome/svgs/solid/tint.svg | 1 + .../static/font-awesome/svgs/solid/tired.svg | 1 + .../font-awesome/svgs/solid/toggle-off.svg | 1 + .../font-awesome/svgs/solid/toggle-on.svg | 1 + .../font-awesome/svgs/solid/toilet-paper.svg | 1 + .../static/font-awesome/svgs/solid/toilet.svg | 1 + .../font-awesome/svgs/solid/toolbox.svg | 1 + .../static/font-awesome/svgs/solid/tools.svg | 1 + .../static/font-awesome/svgs/solid/tooth.svg | 1 + .../static/font-awesome/svgs/solid/torah.svg | 1 + .../font-awesome/svgs/solid/torii-gate.svg | 1 + .../font-awesome/svgs/solid/tractor.svg | 1 + .../font-awesome/svgs/solid/trademark.svg | 1 + .../font-awesome/svgs/solid/traffic-light.svg | 1 + .../font-awesome/svgs/solid/trailer.svg | 1 + .../static/font-awesome/svgs/solid/train.svg | 1 + .../static/font-awesome/svgs/solid/tram.svg | 1 + .../svgs/solid/transgender-alt.svg | 1 + .../font-awesome/svgs/solid/transgender.svg | 1 + .../font-awesome/svgs/solid/trash-alt.svg | 1 + .../svgs/solid/trash-restore-alt.svg | 1 + .../font-awesome/svgs/solid/trash-restore.svg | 1 + .../static/font-awesome/svgs/solid/trash.svg | 1 + .../static/font-awesome/svgs/solid/tree.svg | 1 + .../static/font-awesome/svgs/solid/trophy.svg | 1 + .../font-awesome/svgs/solid/truck-loading.svg | 1 + .../font-awesome/svgs/solid/truck-monster.svg | 1 + .../font-awesome/svgs/solid/truck-moving.svg | 1 + .../font-awesome/svgs/solid/truck-pickup.svg | 1 + .../static/font-awesome/svgs/solid/truck.svg | 1 + .../static/font-awesome/svgs/solid/tshirt.svg | 1 + .../static/font-awesome/svgs/solid/tty.svg | 1 + .../static/font-awesome/svgs/solid/tv.svg | 1 + .../svgs/solid/umbrella-beach.svg | 1 + .../font-awesome/svgs/solid/umbrella.svg | 1 + .../font-awesome/svgs/solid/underline.svg | 1 + .../font-awesome/svgs/solid/undo-alt.svg | 1 + .../static/font-awesome/svgs/solid/undo.svg | 1 + .../svgs/solid/universal-access.svg | 1 + .../font-awesome/svgs/solid/university.svg | 1 + .../static/font-awesome/svgs/solid/unlink.svg | 1 + .../font-awesome/svgs/solid/unlock-alt.svg | 1 + .../static/font-awesome/svgs/solid/unlock.svg | 1 + .../static/font-awesome/svgs/solid/upload.svg | 1 + .../svgs/solid/user-alt-slash.svg | 1 + .../font-awesome/svgs/solid/user-alt.svg | 1 + .../svgs/solid/user-astronaut.svg | 1 + .../font-awesome/svgs/solid/user-check.svg | 1 + .../font-awesome/svgs/solid/user-circle.svg | 1 + .../font-awesome/svgs/solid/user-clock.svg | 1 + .../font-awesome/svgs/solid/user-cog.svg | 1 + .../font-awesome/svgs/solid/user-edit.svg | 1 + .../font-awesome/svgs/solid/user-friends.svg | 1 + .../font-awesome/svgs/solid/user-graduate.svg | 1 + .../font-awesome/svgs/solid/user-injured.svg | 1 + .../font-awesome/svgs/solid/user-lock.svg | 1 + .../font-awesome/svgs/solid/user-md.svg | 1 + .../font-awesome/svgs/solid/user-minus.svg | 1 + .../font-awesome/svgs/solid/user-ninja.svg | 1 + .../font-awesome/svgs/solid/user-nurse.svg | 1 + .../font-awesome/svgs/solid/user-plus.svg | 1 + .../font-awesome/svgs/solid/user-secret.svg | 1 + .../font-awesome/svgs/solid/user-shield.svg | 1 + .../font-awesome/svgs/solid/user-slash.svg | 1 + .../font-awesome/svgs/solid/user-tag.svg | 1 + .../font-awesome/svgs/solid/user-tie.svg | 1 + .../font-awesome/svgs/solid/user-times.svg | 1 + .../static/font-awesome/svgs/solid/user.svg | 1 + .../font-awesome/svgs/solid/users-cog.svg | 1 + .../static/font-awesome/svgs/solid/users.svg | 1 + .../font-awesome/svgs/solid/utensil-spoon.svg | 1 + .../font-awesome/svgs/solid/utensils.svg | 1 + .../font-awesome/svgs/solid/vector-square.svg | 1 + .../font-awesome/svgs/solid/venus-double.svg | 1 + .../font-awesome/svgs/solid/venus-mars.svg | 1 + .../static/font-awesome/svgs/solid/venus.svg | 1 + .../static/font-awesome/svgs/solid/vial.svg | 1 + .../static/font-awesome/svgs/solid/vials.svg | 1 + .../font-awesome/svgs/solid/video-slash.svg | 1 + .../static/font-awesome/svgs/solid/video.svg | 1 + .../static/font-awesome/svgs/solid/vihara.svg | 1 + .../font-awesome/svgs/solid/voicemail.svg | 1 + .../svgs/solid/volleyball-ball.svg | 1 + .../font-awesome/svgs/solid/volume-down.svg | 1 + .../font-awesome/svgs/solid/volume-mute.svg | 1 + .../font-awesome/svgs/solid/volume-off.svg | 1 + .../font-awesome/svgs/solid/volume-up.svg | 1 + .../font-awesome/svgs/solid/vote-yea.svg | 1 + .../font-awesome/svgs/solid/vr-cardboard.svg | 1 + .../font-awesome/svgs/solid/walking.svg | 1 + .../static/font-awesome/svgs/solid/wallet.svg | 1 + .../font-awesome/svgs/solid/warehouse.svg | 1 + .../static/font-awesome/svgs/solid/water.svg | 1 + .../font-awesome/svgs/solid/wave-square.svg | 1 + .../svgs/solid/weight-hanging.svg | 1 + .../static/font-awesome/svgs/solid/weight.svg | 1 + .../font-awesome/svgs/solid/wheelchair.svg | 1 + .../static/font-awesome/svgs/solid/wifi.svg | 1 + .../static/font-awesome/svgs/solid/wind.svg | 1 + .../font-awesome/svgs/solid/window-close.svg | 1 + .../svgs/solid/window-maximize.svg | 1 + .../svgs/solid/window-minimize.svg | 1 + .../svgs/solid/window-restore.svg | 1 + .../font-awesome/svgs/solid/wine-bottle.svg | 1 + .../svgs/solid/wine-glass-alt.svg | 1 + .../font-awesome/svgs/solid/wine-glass.svg | 1 + .../font-awesome/svgs/solid/won-sign.svg | 1 + .../static/font-awesome/svgs/solid/wrench.svg | 1 + .../static/font-awesome/svgs/solid/x-ray.svg | 1 + .../font-awesome/svgs/solid/yen-sign.svg | 1 + .../font-awesome/svgs/solid/yin-yang.svg | 1 + .../font-awesome/webfonts/fa-brands-400.eot | Bin 0 -> 133034 bytes .../font-awesome/webfonts/fa-brands-400.svg | 3570 + .../font-awesome/webfonts/fa-brands-400.ttf | Bin 0 -> 132728 bytes .../font-awesome/webfonts/fa-brands-400.woff | Bin 0 -> 89824 bytes .../font-awesome/webfonts/fa-brands-400.woff2 | Bin 0 -> 76548 bytes .../font-awesome/webfonts/fa-regular-400.eot | Bin 0 -> 34390 bytes .../font-awesome/webfonts/fa-regular-400.svg | 803 + .../font-awesome/webfonts/fa-regular-400.ttf | Bin 0 -> 34092 bytes .../font-awesome/webfonts/fa-regular-400.woff | Bin 0 -> 16800 bytes .../webfonts/fa-regular-400.woff2 | Bin 0 -> 13600 bytes .../font-awesome/webfonts/fa-solid-900.eot | Bin 0 -> 194078 bytes .../font-awesome/webfonts/fa-solid-900.svg | 4700 ++ .../font-awesome/webfonts/fa-solid-900.ttf | Bin 0 -> 193792 bytes .../font-awesome/webfonts/fa-solid-900.woff | Bin 0 -> 99004 bytes .../font-awesome/webfonts/fa-solid-900.woff2 | Bin 0 -> 76120 bytes fast-api/static/js/bootstrap.bundle.js | 7013 ++ fast-api/static/js/bootstrap.bundle.js.map | 1 + fast-api/static/js/capacity.js | 3 + fast-api/static/js/jquery-3.4.1.js | 10598 +++ fast-api/static/js/jquery-3.4.1.min.map | 1 + fast-api/tests/__init__.py | 0 fast-api/tests/test_fast_api.py | 5 + fast-api/yarn-error.log | 54 + 1975 files changed, 424591 insertions(+) create mode 100644 fast-api/.DS_Store create mode 100644 fast-api/README.rst create mode 100644 fast-api/__pycache__/fast.cpython-37.pyc create mode 100644 fast-api/bower_components/Morphext/.bower.json create mode 100644 fast-api/bower_components/Morphext/Gruntfile.coffee create mode 100644 fast-api/bower_components/Morphext/LICENSE create mode 100644 fast-api/bower_components/Morphext/README.md create mode 100644 fast-api/bower_components/Morphext/bower.json create mode 100644 fast-api/bower_components/Morphext/dist/morphext.css create mode 100644 fast-api/bower_components/Morphext/dist/morphext.js create mode 100644 fast-api/bower_components/Morphext/dist/morphext.min.js create mode 100644 fast-api/bower_components/Morphext/index.html create mode 100644 fast-api/bower_components/Morphext/package.json create mode 100644 fast-api/bower_components/animate.css/.bower.json create mode 100644 fast-api/bower_components/animate.css/Gruntfile.js create mode 100644 fast-api/bower_components/animate.css/animate-config.json create mode 100755 fast-api/bower_components/animate.css/animate.css create mode 100755 fast-api/bower_components/animate.css/animate.min.css create mode 100644 fast-api/bower_components/animate.css/bower.json create mode 100644 fast-api/bower_components/animate.css/package.json create mode 100644 fast-api/bower_components/animate.css/source/_base.css create mode 100644 fast-api/bower_components/animate.css/source/attention_seekers/bounce.css create mode 100644 fast-api/bower_components/animate.css/source/attention_seekers/flash.css create mode 100644 fast-api/bower_components/animate.css/source/attention_seekers/pulse.css create mode 100644 fast-api/bower_components/animate.css/source/attention_seekers/rubberBand.css create mode 100644 fast-api/bower_components/animate.css/source/attention_seekers/shake.css create mode 100644 fast-api/bower_components/animate.css/source/attention_seekers/swing.css create mode 100644 fast-api/bower_components/animate.css/source/attention_seekers/tada.css create mode 100644 fast-api/bower_components/animate.css/source/attention_seekers/wobble.css create mode 100644 fast-api/bower_components/animate.css/source/bouncing_entrances/bounceIn.css create mode 100644 fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInDown.css create mode 100644 fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInLeft.css create mode 100644 fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInRight.css create mode 100644 fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInUp.css create mode 100644 fast-api/bower_components/animate.css/source/bouncing_exits/bounceOut.css create mode 100644 fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutDown.css create mode 100644 fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutLeft.css create mode 100644 fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutRight.css create mode 100644 fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutUp.css create mode 100644 fast-api/bower_components/animate.css/source/fading_entrances/fadeIn.css create mode 100644 fast-api/bower_components/animate.css/source/fading_entrances/fadeInDown.css create mode 100644 fast-api/bower_components/animate.css/source/fading_entrances/fadeInDownBig.css create mode 100644 fast-api/bower_components/animate.css/source/fading_entrances/fadeInLeft.css create mode 100644 fast-api/bower_components/animate.css/source/fading_entrances/fadeInLeftBig.css create mode 100644 fast-api/bower_components/animate.css/source/fading_entrances/fadeInRight.css create mode 100644 fast-api/bower_components/animate.css/source/fading_entrances/fadeInRightBig.css create mode 100644 fast-api/bower_components/animate.css/source/fading_entrances/fadeInUp.css create mode 100644 fast-api/bower_components/animate.css/source/fading_entrances/fadeInUpBig.css create mode 100644 fast-api/bower_components/animate.css/source/fading_exits/fadeOut.css create mode 100644 fast-api/bower_components/animate.css/source/fading_exits/fadeOutDown.css create mode 100644 fast-api/bower_components/animate.css/source/fading_exits/fadeOutDownBig.css create mode 100644 fast-api/bower_components/animate.css/source/fading_exits/fadeOutLeft.css create mode 100644 fast-api/bower_components/animate.css/source/fading_exits/fadeOutLeftBig.css create mode 100644 fast-api/bower_components/animate.css/source/fading_exits/fadeOutRight.css create mode 100644 fast-api/bower_components/animate.css/source/fading_exits/fadeOutRightBig.css create mode 100644 fast-api/bower_components/animate.css/source/fading_exits/fadeOutUp.css create mode 100644 fast-api/bower_components/animate.css/source/fading_exits/fadeOutUpBig.css create mode 100644 fast-api/bower_components/animate.css/source/flippers/flip.css create mode 100644 fast-api/bower_components/animate.css/source/flippers/flipInX.css create mode 100644 fast-api/bower_components/animate.css/source/flippers/flipInY.css create mode 100644 fast-api/bower_components/animate.css/source/flippers/flipOutX.css create mode 100644 fast-api/bower_components/animate.css/source/flippers/flipOutY.css create mode 100644 fast-api/bower_components/animate.css/source/lightspeed/lightSpeedIn.css create mode 100644 fast-api/bower_components/animate.css/source/lightspeed/lightSpeedOut.css create mode 100644 fast-api/bower_components/animate.css/source/rotating_entrances/rotateIn.css create mode 100644 fast-api/bower_components/animate.css/source/rotating_entrances/rotateInDownLeft.css create mode 100644 fast-api/bower_components/animate.css/source/rotating_entrances/rotateInDownRight.css create mode 100644 fast-api/bower_components/animate.css/source/rotating_entrances/rotateInUpLeft.css create mode 100644 fast-api/bower_components/animate.css/source/rotating_entrances/rotateInUpRight.css create mode 100644 fast-api/bower_components/animate.css/source/rotating_exits/rotateOut.css create mode 100644 fast-api/bower_components/animate.css/source/rotating_exits/rotateOutDownLeft.css create mode 100644 fast-api/bower_components/animate.css/source/rotating_exits/rotateOutDownRight.css create mode 100644 fast-api/bower_components/animate.css/source/rotating_exits/rotateOutUpLeft.css create mode 100644 fast-api/bower_components/animate.css/source/rotating_exits/rotateOutUpRight.css create mode 100644 fast-api/bower_components/animate.css/source/sliding_entrances/slideInDown.css create mode 100644 fast-api/bower_components/animate.css/source/sliding_entrances/slideInLeft.css create mode 100644 fast-api/bower_components/animate.css/source/sliding_entrances/slideInRight.css create mode 100644 fast-api/bower_components/animate.css/source/sliding_entrances/slideInUp.css create mode 100644 fast-api/bower_components/animate.css/source/sliding_exits/slideOutDown.css create mode 100644 fast-api/bower_components/animate.css/source/sliding_exits/slideOutLeft.css create mode 100644 fast-api/bower_components/animate.css/source/sliding_exits/slideOutRight.css create mode 100644 fast-api/bower_components/animate.css/source/sliding_exits/slideOutUp.css create mode 100644 fast-api/bower_components/animate.css/source/specials/hinge.css create mode 100644 fast-api/bower_components/animate.css/source/specials/rollIn.css create mode 100644 fast-api/bower_components/animate.css/source/specials/rollOut.css create mode 100644 fast-api/bower_components/animate.css/source/zooming_entrances/zoomIn.css create mode 100644 fast-api/bower_components/animate.css/source/zooming_entrances/zoomInDown.css create mode 100644 fast-api/bower_components/animate.css/source/zooming_entrances/zoomInLeft.css create mode 100644 fast-api/bower_components/animate.css/source/zooming_entrances/zoomInRight.css create mode 100644 fast-api/bower_components/animate.css/source/zooming_entrances/zoomInUp.css create mode 100644 fast-api/bower_components/animate.css/source/zooming_exits/zoomOut.css create mode 100644 fast-api/bower_components/animate.css/source/zooming_exits/zoomOutDown.css create mode 100644 fast-api/bower_components/animate.css/source/zooming_exits/zoomOutLeft.css create mode 100644 fast-api/bower_components/animate.css/source/zooming_exits/zoomOutRight.css create mode 100644 fast-api/bower_components/animate.css/source/zooming_exits/zoomOutUp.css create mode 100644 fast-api/bower_components/jquery/.bower.json create mode 100644 fast-api/bower_components/jquery/MIT-LICENSE.txt create mode 100644 fast-api/bower_components/jquery/bower.json create mode 100644 fast-api/bower_components/jquery/dist/jquery.js create mode 100644 fast-api/bower_components/jquery/dist/jquery.min.js create mode 100644 fast-api/bower_components/jquery/dist/jquery.min.map create mode 100644 fast-api/bower_components/jquery/src/ajax.js create mode 100644 fast-api/bower_components/jquery/src/ajax/jsonp.js create mode 100644 fast-api/bower_components/jquery/src/ajax/load.js create mode 100644 fast-api/bower_components/jquery/src/ajax/parseJSON.js create mode 100644 fast-api/bower_components/jquery/src/ajax/parseXML.js create mode 100644 fast-api/bower_components/jquery/src/ajax/script.js create mode 100644 fast-api/bower_components/jquery/src/ajax/var/nonce.js create mode 100644 fast-api/bower_components/jquery/src/ajax/var/rquery.js create mode 100644 fast-api/bower_components/jquery/src/ajax/xhr.js create mode 100644 fast-api/bower_components/jquery/src/attributes.js create mode 100644 fast-api/bower_components/jquery/src/attributes/attr.js create mode 100644 fast-api/bower_components/jquery/src/attributes/classes.js create mode 100644 fast-api/bower_components/jquery/src/attributes/prop.js create mode 100644 fast-api/bower_components/jquery/src/attributes/support.js create mode 100644 fast-api/bower_components/jquery/src/attributes/val.js create mode 100644 fast-api/bower_components/jquery/src/callbacks.js create mode 100644 fast-api/bower_components/jquery/src/core.js create mode 100644 fast-api/bower_components/jquery/src/core/access.js create mode 100644 fast-api/bower_components/jquery/src/core/init.js create mode 100644 fast-api/bower_components/jquery/src/core/parseHTML.js create mode 100644 fast-api/bower_components/jquery/src/core/ready.js create mode 100644 fast-api/bower_components/jquery/src/core/var/rsingleTag.js create mode 100644 fast-api/bower_components/jquery/src/css.js create mode 100644 fast-api/bower_components/jquery/src/css/addGetHookIf.js create mode 100644 fast-api/bower_components/jquery/src/css/curCSS.js create mode 100644 fast-api/bower_components/jquery/src/css/defaultDisplay.js create mode 100644 fast-api/bower_components/jquery/src/css/hiddenVisibleSelectors.js create mode 100644 fast-api/bower_components/jquery/src/css/support.js create mode 100644 fast-api/bower_components/jquery/src/css/swap.js create mode 100644 fast-api/bower_components/jquery/src/css/var/cssExpand.js create mode 100644 fast-api/bower_components/jquery/src/css/var/getStyles.js create mode 100644 fast-api/bower_components/jquery/src/css/var/isHidden.js create mode 100644 fast-api/bower_components/jquery/src/css/var/rmargin.js create mode 100644 fast-api/bower_components/jquery/src/css/var/rnumnonpx.js create mode 100644 fast-api/bower_components/jquery/src/data.js create mode 100644 fast-api/bower_components/jquery/src/data/Data.js create mode 100644 fast-api/bower_components/jquery/src/data/accepts.js create mode 100644 fast-api/bower_components/jquery/src/data/var/data_priv.js create mode 100644 fast-api/bower_components/jquery/src/data/var/data_user.js create mode 100644 fast-api/bower_components/jquery/src/deferred.js create mode 100644 fast-api/bower_components/jquery/src/deprecated.js create mode 100644 fast-api/bower_components/jquery/src/dimensions.js create mode 100644 fast-api/bower_components/jquery/src/effects.js create mode 100644 fast-api/bower_components/jquery/src/effects/Tween.js create mode 100644 fast-api/bower_components/jquery/src/effects/animatedSelector.js create mode 100644 fast-api/bower_components/jquery/src/event.js create mode 100644 fast-api/bower_components/jquery/src/event/ajax.js create mode 100644 fast-api/bower_components/jquery/src/event/alias.js create mode 100644 fast-api/bower_components/jquery/src/event/support.js create mode 100644 fast-api/bower_components/jquery/src/exports/amd.js create mode 100644 fast-api/bower_components/jquery/src/exports/global.js create mode 100644 fast-api/bower_components/jquery/src/intro.js create mode 100644 fast-api/bower_components/jquery/src/jquery.js create mode 100644 fast-api/bower_components/jquery/src/manipulation.js create mode 100644 fast-api/bower_components/jquery/src/manipulation/_evalUrl.js create mode 100644 fast-api/bower_components/jquery/src/manipulation/support.js create mode 100644 fast-api/bower_components/jquery/src/manipulation/var/rcheckableType.js create mode 100644 fast-api/bower_components/jquery/src/offset.js create mode 100644 fast-api/bower_components/jquery/src/outro.js create mode 100644 fast-api/bower_components/jquery/src/queue.js create mode 100644 fast-api/bower_components/jquery/src/queue/delay.js create mode 100644 fast-api/bower_components/jquery/src/selector-native.js create mode 100644 fast-api/bower_components/jquery/src/selector-sizzle.js create mode 100644 fast-api/bower_components/jquery/src/selector.js create mode 100644 fast-api/bower_components/jquery/src/serialize.js create mode 100644 fast-api/bower_components/jquery/src/sizzle/dist/sizzle.js create mode 100644 fast-api/bower_components/jquery/src/sizzle/dist/sizzle.min.js create mode 100644 fast-api/bower_components/jquery/src/sizzle/dist/sizzle.min.map create mode 100644 fast-api/bower_components/jquery/src/traversing.js create mode 100644 fast-api/bower_components/jquery/src/traversing/findFilter.js create mode 100644 fast-api/bower_components/jquery/src/traversing/var/rneedsContext.js create mode 100644 fast-api/bower_components/jquery/src/var/arr.js create mode 100644 fast-api/bower_components/jquery/src/var/class2type.js create mode 100644 fast-api/bower_components/jquery/src/var/concat.js create mode 100644 fast-api/bower_components/jquery/src/var/hasOwn.js create mode 100644 fast-api/bower_components/jquery/src/var/indexOf.js create mode 100644 fast-api/bower_components/jquery/src/var/pnum.js create mode 100644 fast-api/bower_components/jquery/src/var/push.js create mode 100644 fast-api/bower_components/jquery/src/var/rnotwhite.js create mode 100644 fast-api/bower_components/jquery/src/var/slice.js create mode 100644 fast-api/bower_components/jquery/src/var/strundefined.js create mode 100644 fast-api/bower_components/jquery/src/var/support.js create mode 100644 fast-api/bower_components/jquery/src/var/toString.js create mode 100644 fast-api/bower_components/jquery/src/wrap.js create mode 100644 fast-api/fast_api/.DS_Store create mode 100644 fast-api/fast_api/__pycache__/fast.cpython-37.pyc create mode 100644 fast-api/fast_api/fast.py create mode 100644 fast-api/fast_api/templates/gn.html create mode 100644 fast-api/fast_api/templates/index.html create mode 100644 fast-api/node_modules/bootswatch/.DS_Store create mode 100644 fast-api/node_modules/bootswatch/.github/stale.yml create mode 100644 fast-api/node_modules/bootswatch/LICENSE create mode 100644 fast-api/node_modules/bootswatch/README.md create mode 100755 fast-api/node_modules/bootswatch/bootswatch.gemspec create mode 100644 fast-api/node_modules/bootswatch/dist/cerulean/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/cerulean/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/cerulean/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/cerulean/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/cosmo/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/cosmo/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/cosmo/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/cosmo/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/cyborg/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/cyborg/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/cyborg/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/cyborg/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/darkly/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/darkly/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/darkly/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/darkly/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/flatly/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/flatly/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/flatly/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/flatly/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/journal/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/journal/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/journal/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/journal/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/litera/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/litera/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/litera/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/litera/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/lumen/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/lumen/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/lumen/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/lumen/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/lux/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/lux/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/lux/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/lux/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/materia/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/materia/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/materia/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/materia/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/minty/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/minty/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/minty/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/minty/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/pulse/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/pulse/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/pulse/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/pulse/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/sandstone/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/sandstone/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/sandstone/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/sandstone/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/simplex/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/simplex/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/simplex/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/simplex/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/sketchy/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/sketchy/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/sketchy/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/sketchy/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/slate/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/slate/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/slate/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/slate/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/solar/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/solar/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/solar/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/solar/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/spacelab/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/spacelab/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/spacelab/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/spacelab/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/superhero/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/superhero/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/superhero/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/superhero/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/united/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/united/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/united/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/united/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/dist/yeti/_bootswatch.scss create mode 100755 fast-api/node_modules/bootswatch/dist/yeti/_variables.scss create mode 100644 fast-api/node_modules/bootswatch/dist/yeti/bootstrap.css create mode 100644 fast-api/node_modules/bootswatch/dist/yeti/bootstrap.min.css create mode 100644 fast-api/node_modules/bootswatch/package.json create mode 100644 fast-api/node_modules/jq-fakeloader/LICENSE create mode 100644 fast-api/node_modules/jq-fakeloader/README.md create mode 100644 fast-api/node_modules/jq-fakeloader/css/fakeLoader.css create mode 100644 fast-api/node_modules/jq-fakeloader/demo/css/bootstrap.min.css create mode 100644 fast-api/node_modules/jq-fakeloader/demo/css/demo.css create mode 100644 fast-api/node_modules/jq-fakeloader/demo/css/fakeLoader.min.css create mode 100644 fast-api/node_modules/jq-fakeloader/demo/demo1.html create mode 100644 fast-api/node_modules/jq-fakeloader/demo/demo2.html create mode 100644 fast-api/node_modules/jq-fakeloader/demo/demo3.html create mode 100644 fast-api/node_modules/jq-fakeloader/demo/demo4.html create mode 100644 fast-api/node_modules/jq-fakeloader/demo/demo5.html create mode 100644 fast-api/node_modules/jq-fakeloader/demo/demo6.html create mode 100644 fast-api/node_modules/jq-fakeloader/demo/demo7.html create mode 100644 fast-api/node_modules/jq-fakeloader/demo/js/fakeLoader.min.js create mode 100644 fast-api/node_modules/jq-fakeloader/dist/fakeLoader.min.css create mode 100644 fast-api/node_modules/jq-fakeloader/dist/fakeLoader.min.js create mode 100755 fast-api/node_modules/jq-fakeloader/gulpfile.js create mode 100644 fast-api/node_modules/jq-fakeloader/js/fakeLoader.js create mode 100644 fast-api/node_modules/jq-fakeloader/package.json create mode 100644 fast-api/node_modules/jq-fakeloader/scss/fakeLoader.scss create mode 100644 fast-api/node_modules/jq-fakeloader/scss/spinners/spinner_01.scss create mode 100644 fast-api/node_modules/jq-fakeloader/scss/spinners/spinner_02.scss create mode 100644 fast-api/node_modules/jq-fakeloader/scss/spinners/spinner_03.scss create mode 100644 fast-api/node_modules/jq-fakeloader/scss/spinners/spinner_04.scss create mode 100644 fast-api/node_modules/jq-fakeloader/scss/spinners/spinner_05.scss create mode 100644 fast-api/node_modules/jq-fakeloader/scss/spinners/spinner_06.scss create mode 100644 fast-api/node_modules/jq-fakeloader/scss/spinners/spinner_07.scss create mode 100644 fast-api/package-lock.json create mode 100644 fast-api/package.json create mode 100644 fast-api/poetry.lock create mode 100644 fast-api/public/scripts/test.txt create mode 100644 fast-api/pyproject.toml create mode 100644 fast-api/static/.DS_Store create mode 100644 fast-api/static/assets/favicon/favicon-192x192-wh.png create mode 100644 fast-api/static/css/bootstrap.css create mode 100644 fast-api/static/css/bootstrap.css.map create mode 100644 fast-api/static/css/capacity.css create mode 100644 fast-api/static/font-awesome/.DS_Store create mode 100644 fast-api/static/font-awesome/LICENSE.txt create mode 100644 fast-api/static/font-awesome/css/all.css create mode 100644 fast-api/static/font-awesome/css/all.min.css create mode 100644 fast-api/static/font-awesome/css/brands.css create mode 100644 fast-api/static/font-awesome/css/brands.min.css create mode 100644 fast-api/static/font-awesome/css/fontawesome.css create mode 100644 fast-api/static/font-awesome/css/fontawesome.min.css create mode 100644 fast-api/static/font-awesome/css/regular.css create mode 100644 fast-api/static/font-awesome/css/regular.min.css create mode 100644 fast-api/static/font-awesome/css/solid.css create mode 100644 fast-api/static/font-awesome/css/solid.min.css create mode 100644 fast-api/static/font-awesome/css/svg-with-js.css create mode 100644 fast-api/static/font-awesome/css/svg-with-js.min.css create mode 100644 fast-api/static/font-awesome/css/v4-shims.css create mode 100644 fast-api/static/font-awesome/css/v4-shims.min.css create mode 100644 fast-api/static/font-awesome/js/all.js create mode 100644 fast-api/static/font-awesome/js/all.min.js create mode 100644 fast-api/static/font-awesome/js/brands.js create mode 100644 fast-api/static/font-awesome/js/brands.min.js create mode 100644 fast-api/static/font-awesome/js/conflict-detection.js create mode 100644 fast-api/static/font-awesome/js/conflict-detection.min.js create mode 100644 fast-api/static/font-awesome/js/fontawesome.js create mode 100644 fast-api/static/font-awesome/js/fontawesome.min.js create mode 100644 fast-api/static/font-awesome/js/regular.js create mode 100644 fast-api/static/font-awesome/js/regular.min.js create mode 100644 fast-api/static/font-awesome/js/solid.js create mode 100644 fast-api/static/font-awesome/js/solid.min.js create mode 100644 fast-api/static/font-awesome/js/v4-shims.js create mode 100644 fast-api/static/font-awesome/js/v4-shims.min.js create mode 100644 fast-api/static/font-awesome/less/_animated.less create mode 100644 fast-api/static/font-awesome/less/_bordered-pulled.less create mode 100644 fast-api/static/font-awesome/less/_core.less create mode 100644 fast-api/static/font-awesome/less/_fixed-width.less create mode 100644 fast-api/static/font-awesome/less/_icons.less create mode 100644 fast-api/static/font-awesome/less/_larger.less create mode 100644 fast-api/static/font-awesome/less/_list.less create mode 100644 fast-api/static/font-awesome/less/_mixins.less create mode 100644 fast-api/static/font-awesome/less/_rotated-flipped.less create mode 100644 fast-api/static/font-awesome/less/_screen-reader.less create mode 100644 fast-api/static/font-awesome/less/_shims.less create mode 100644 fast-api/static/font-awesome/less/_stacked.less create mode 100644 fast-api/static/font-awesome/less/_variables.less create mode 100644 fast-api/static/font-awesome/less/brands.less create mode 100644 fast-api/static/font-awesome/less/fontawesome.less create mode 100644 fast-api/static/font-awesome/less/regular.less create mode 100644 fast-api/static/font-awesome/less/solid.less create mode 100644 fast-api/static/font-awesome/less/v4-shims.less create mode 100644 fast-api/static/font-awesome/metadata/categories.yml create mode 100644 fast-api/static/font-awesome/metadata/icons.json create mode 100644 fast-api/static/font-awesome/metadata/icons.yml create mode 100644 fast-api/static/font-awesome/metadata/shims.json create mode 100644 fast-api/static/font-awesome/metadata/shims.yml create mode 100644 fast-api/static/font-awesome/metadata/sponsors.yml create mode 100644 fast-api/static/font-awesome/scss/_animated.scss create mode 100644 fast-api/static/font-awesome/scss/_bordered-pulled.scss create mode 100644 fast-api/static/font-awesome/scss/_core.scss create mode 100644 fast-api/static/font-awesome/scss/_fixed-width.scss create mode 100644 fast-api/static/font-awesome/scss/_icons.scss create mode 100644 fast-api/static/font-awesome/scss/_larger.scss create mode 100644 fast-api/static/font-awesome/scss/_list.scss create mode 100644 fast-api/static/font-awesome/scss/_mixins.scss create mode 100644 fast-api/static/font-awesome/scss/_rotated-flipped.scss create mode 100644 fast-api/static/font-awesome/scss/_screen-reader.scss create mode 100644 fast-api/static/font-awesome/scss/_shims.scss create mode 100644 fast-api/static/font-awesome/scss/_stacked.scss create mode 100644 fast-api/static/font-awesome/scss/_variables.scss create mode 100644 fast-api/static/font-awesome/scss/brands.scss create mode 100644 fast-api/static/font-awesome/scss/fontawesome.scss create mode 100644 fast-api/static/font-awesome/scss/regular.scss create mode 100644 fast-api/static/font-awesome/scss/solid.scss create mode 100644 fast-api/static/font-awesome/scss/v4-shims.scss create mode 100644 fast-api/static/font-awesome/sprites/brands.svg create mode 100644 fast-api/static/font-awesome/sprites/regular.svg create mode 100644 fast-api/static/font-awesome/sprites/solid.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/500px.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/accessible-icon.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/accusoft.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/acquisitions-incorporated.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/adn.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/adobe.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/adversal.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/affiliatetheme.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/airbnb.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/algolia.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/alipay.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/amazon-pay.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/amazon.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/amilia.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/android.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/angellist.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/angrycreative.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/angular.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/app-store-ios.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/app-store.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/apper.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/apple-pay.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/apple.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/artstation.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/asymmetrik.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/atlassian.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/audible.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/autoprefixer.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/avianex.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/aviato.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/aws.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/bandcamp.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/battle-net.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/behance-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/behance.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/bimobject.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/bitbucket.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/bitcoin.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/bity.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/black-tie.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/blackberry.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/blogger-b.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/blogger.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/bluetooth-b.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/bluetooth.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/bootstrap.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/btc.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/buffer.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/buromobelexperte.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/buy-n-large.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/buysellads.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/canadian-maple-leaf.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cc-amazon-pay.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cc-amex.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cc-apple-pay.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cc-diners-club.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cc-discover.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cc-jcb.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cc-mastercard.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cc-paypal.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cc-stripe.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cc-visa.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/centercode.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/centos.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/chrome.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/chromecast.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cloudscale.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cloudsmith.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cloudversify.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/codepen.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/codiepie.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/confluence.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/connectdevelop.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/contao.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cotton-bureau.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cpanel.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-by.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-nc-eu.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-nc-jp.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-nc.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-nd.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-pd-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-pd.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-remix.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-sa.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-sampling-plus.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-sampling.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-share.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons-zero.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/creative-commons.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/critical-role.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/css3-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/css3.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/cuttlefish.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/d-and-d-beyond.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/d-and-d.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/dailymotion.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/dashcube.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/delicious.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/deploydog.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/deskpro.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/dev.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/deviantart.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/dhl.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/diaspora.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/digg.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/digital-ocean.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/discord.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/discourse.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/dochub.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/docker.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/draft2digital.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/dribbble-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/dribbble.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/dropbox.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/drupal.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/dyalog.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/earlybirds.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/ebay.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/edge.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/elementor.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/ello.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/ember.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/empire.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/envira.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/erlang.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/ethereum.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/etsy.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/evernote.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/expeditedssl.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/facebook-f.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/facebook-messenger.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/facebook-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/facebook.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/fantasy-flight-games.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/fedex.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/fedora.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/figma.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/firefox-browser.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/firefox.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/first-order-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/first-order.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/firstdraft.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/flickr.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/flipboard.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/fly.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/font-awesome-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/font-awesome-flag.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/font-awesome-logo-full.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/font-awesome.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/fonticons-fi.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/fonticons.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/fort-awesome-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/fort-awesome.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/forumbee.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/foursquare.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/free-code-camp.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/freebsd.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/fulcrum.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/galactic-republic.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/galactic-senate.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/get-pocket.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/gg-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/gg.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/git-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/git-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/git.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/github-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/github-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/github.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/gitkraken.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/gitlab.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/gitter.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/glide-g.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/glide.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/gofore.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/goodreads-g.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/goodreads.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/google-drive.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/google-play.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/google-plus-g.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/google-plus-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/google-plus.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/google-wallet.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/google.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/gratipay.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/grav.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/gripfire.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/grunt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/gulp.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/hacker-news-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/hacker-news.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/hackerrank.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/hips.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/hire-a-helper.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/hooli.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/hornbill.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/hotjar.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/houzz.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/html5.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/hubspot.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/ideal.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/imdb.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/instagram-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/instagram.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/intercom.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/internet-explorer.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/invision.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/ioxhost.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/itch-io.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/itunes-note.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/itunes.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/java.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/jedi-order.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/jenkins.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/jira.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/joget.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/joomla.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/js-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/js.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/jsfiddle.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/kaggle.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/keybase.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/keycdn.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/kickstarter-k.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/kickstarter.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/korvue.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/laravel.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/lastfm-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/lastfm.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/leanpub.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/less.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/line.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/linkedin-in.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/linkedin.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/linode.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/linux.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/lyft.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/magento.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/mailchimp.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/mandalorian.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/markdown.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/mastodon.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/maxcdn.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/mdb.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/medapps.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/medium-m.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/medium.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/medrt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/meetup.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/megaport.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/mendeley.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/microblog.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/microsoft.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/mix.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/mixcloud.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/mixer.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/mizuni.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/modx.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/monero.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/napster.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/neos.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/nimblr.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/node-js.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/node.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/npm.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/ns8.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/nutritionix.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/odnoklassniki-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/odnoklassniki.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/old-republic.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/opencart.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/openid.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/opera.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/optin-monster.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/orcid.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/osi.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/page4.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/pagelines.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/palfed.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/patreon.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/paypal.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/penny-arcade.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/periscope.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/phabricator.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/phoenix-framework.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/phoenix-squadron.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/php.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/pied-piper-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/pied-piper-hat.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/pied-piper-pp.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/pied-piper-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/pied-piper.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/pinterest-p.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/pinterest-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/pinterest.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/playstation.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/product-hunt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/pushed.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/python.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/qq.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/quinscape.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/quora.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/r-project.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/raspberry-pi.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/ravelry.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/react.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/reacteurope.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/readme.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/rebel.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/red-river.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/reddit-alien.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/reddit-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/reddit.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/redhat.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/renren.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/replyd.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/researchgate.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/resolving.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/rev.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/rocketchat.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/rockrms.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/safari.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/salesforce.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/sass.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/schlix.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/scribd.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/searchengin.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/sellcast.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/sellsy.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/servicestack.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/shirtsinbulk.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/shopify.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/shopware.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/simplybuilt.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/sistrix.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/sith.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/sketch.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/skyatlas.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/skype.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/slack-hash.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/slack.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/slideshare.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/snapchat-ghost.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/snapchat-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/snapchat.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/soundcloud.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/sourcetree.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/speakap.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/speaker-deck.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/spotify.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/squarespace.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/stack-exchange.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/stack-overflow.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/stackpath.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/staylinked.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/steam-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/steam-symbol.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/steam.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/sticker-mule.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/strava.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/stripe-s.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/stripe.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/studiovinari.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/stumbleupon-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/stumbleupon.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/superpowers.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/supple.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/suse.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/swift.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/symfony.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/teamspeak.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/telegram-plane.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/telegram.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/tencent-weibo.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/the-red-yeti.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/themeco.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/themeisle.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/think-peaks.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/trade-federation.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/trello.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/tripadvisor.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/tumblr-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/tumblr.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/twitch.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/twitter-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/twitter.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/typo3.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/uber.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/ubuntu.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/uikit.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/umbraco.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/uniregistry.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/unity.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/untappd.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/ups.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/usb.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/usps.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/ussunnah.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/vaadin.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/viacoin.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/viadeo-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/viadeo.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/viber.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/vimeo-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/vimeo-v.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/vimeo.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/vine.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/vk.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/vnv.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/vuejs.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/waze.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/weebly.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/weibo.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/weixin.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/whatsapp-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/whatsapp.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/whmcs.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/wikipedia-w.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/windows.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/wix.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/wizards-of-the-coast.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/wolf-pack-battalion.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/wordpress-simple.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/wordpress.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/wpbeginner.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/wpexplorer.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/wpforms.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/wpressr.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/xbox.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/xing-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/xing.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/y-combinator.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/yahoo.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/yammer.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/yandex-international.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/yandex.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/yarn.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/yelp.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/yoast.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/youtube-square.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/youtube.svg create mode 100644 fast-api/static/font-awesome/svgs/brands/zhihu.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/address-book.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/address-card.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/angry.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/arrow-alt-circle-down.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/arrow-alt-circle-left.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/arrow-alt-circle-right.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/arrow-alt-circle-up.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/bell-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/bell.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/bookmark.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/building.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/calendar-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/calendar-check.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/calendar-minus.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/calendar-plus.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/calendar-times.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/calendar.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/caret-square-down.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/caret-square-left.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/caret-square-right.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/caret-square-up.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/chart-bar.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/check-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/check-square.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/circle.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/clipboard.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/clock.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/clone.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/closed-captioning.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/comment-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/comment-dots.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/comment.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/comments.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/compass.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/copy.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/copyright.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/credit-card.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/dizzy.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/dot-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/edit.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/envelope-open.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/envelope.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/eye-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/eye.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/file-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/file-archive.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/file-audio.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/file-code.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/file-excel.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/file-image.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/file-pdf.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/file-powerpoint.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/file-video.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/file-word.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/file.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/flag.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/flushed.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/folder-open.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/folder.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/font-awesome-logo-full.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/frown-open.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/frown.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/futbol.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/gem.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grimace.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-beam-sweat.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-beam.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-hearts.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-squint-tears.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-squint.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-stars.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-tears.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-tongue-squint.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-tongue-wink.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-tongue.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin-wink.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/grin.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hand-lizard.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hand-paper.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hand-peace.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hand-point-down.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hand-point-left.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hand-point-right.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hand-point-up.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hand-pointer.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hand-rock.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hand-scissors.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hand-spock.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/handshake.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hdd.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/heart.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hospital.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/hourglass.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/id-badge.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/id-card.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/image.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/images.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/keyboard.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/kiss-beam.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/kiss-wink-heart.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/kiss.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/laugh-beam.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/laugh-squint.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/laugh-wink.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/laugh.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/lemon.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/life-ring.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/lightbulb.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/list-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/map.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/meh-blank.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/meh-rolling-eyes.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/meh.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/minus-square.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/money-bill-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/moon.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/newspaper.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/object-group.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/object-ungroup.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/paper-plane.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/pause-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/play-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/plus-square.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/question-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/registered.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/sad-cry.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/sad-tear.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/save.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/share-square.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/smile-beam.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/smile-wink.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/smile.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/snowflake.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/square.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/star-half.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/star.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/sticky-note.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/stop-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/sun.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/surprise.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/thumbs-down.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/thumbs-up.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/times-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/tired.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/trash-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/user-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/user.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/window-close.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/window-maximize.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/window-minimize.svg create mode 100644 fast-api/static/font-awesome/svgs/regular/window-restore.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ad.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/address-book.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/address-card.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/adjust.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/air-freshener.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/align-center.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/align-justify.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/align-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/align-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/allergies.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ambulance.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/american-sign-language-interpreting.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/anchor.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/angle-double-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/angle-double-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/angle-double-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/angle-double-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/angle-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/angle-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/angle-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/angle-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/angry.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ankh.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/apple-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/archive.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/archway.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-alt-circle-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-alt-circle-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-alt-circle-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-alt-circle-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-circle-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-circle-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-circle-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-circle-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrow-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrows-alt-h.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrows-alt-v.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/arrows-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/assistive-listening-systems.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/asterisk.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/at.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/atlas.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/atom.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/audio-description.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/award.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/baby-carriage.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/baby.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/backspace.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/backward.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bacon.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bahai.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/balance-scale-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/balance-scale-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/balance-scale.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ban.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/band-aid.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/barcode.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bars.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/baseball-ball.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/basketball-ball.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bath.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/battery-empty.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/battery-full.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/battery-half.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/battery-quarter.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/battery-three-quarters.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bed.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/beer.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bell-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bell.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bezier-curve.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bible.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bicycle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/biking.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/binoculars.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/biohazard.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/birthday-cake.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/blender-phone.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/blender.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/blind.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/blog.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bold.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bolt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bomb.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bone.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bong.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/book-dead.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/book-medical.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/book-open.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/book-reader.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/book.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bookmark.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/border-all.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/border-none.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/border-style.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bowling-ball.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/box-open.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/box.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/boxes.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/braille.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/brain.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bread-slice.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/briefcase-medical.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/briefcase.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/broadcast-tower.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/broom.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/brush.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bug.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/building.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bullhorn.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bullseye.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/burn.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bus-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/bus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/business-time.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/calculator.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/calendar-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/calendar-check.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/calendar-day.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/calendar-minus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/calendar-plus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/calendar-times.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/calendar-week.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/calendar.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/camera-retro.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/camera.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/campground.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/candy-cane.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cannabis.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/capsules.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/car-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/car-battery.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/car-crash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/car-side.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/car.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/caravan.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/caret-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/caret-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/caret-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/caret-square-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/caret-square-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/caret-square-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/caret-square-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/caret-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/carrot.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cart-arrow-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cart-plus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cash-register.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cat.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/certificate.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chair.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chalkboard-teacher.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chalkboard.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/charging-station.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chart-area.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chart-bar.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chart-line.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chart-pie.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/check-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/check-double.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/check-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/check.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cheese.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chess-bishop.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chess-board.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chess-king.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chess-knight.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chess-pawn.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chess-queen.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chess-rook.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chess.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chevron-circle-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chevron-circle-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chevron-circle-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chevron-circle-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chevron-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chevron-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chevron-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/chevron-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/child.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/church.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/circle-notch.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/city.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/clinic-medical.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/clipboard-check.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/clipboard-list.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/clipboard.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/clock.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/clone.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/closed-captioning.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cloud-download-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cloud-meatball.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cloud-moon-rain.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cloud-moon.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cloud-rain.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cloud-showers-heavy.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cloud-sun-rain.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cloud-sun.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cloud-upload-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cloud.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cocktail.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/code-branch.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/code.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/coffee.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cog.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cogs.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/coins.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/columns.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/comment-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/comment-dollar.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/comment-dots.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/comment-medical.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/comment-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/comment.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/comments-dollar.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/comments.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/compact-disc.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/compass.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/compress-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/compress-arrows-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/compress.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/concierge-bell.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cookie-bite.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cookie.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/copy.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/copyright.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/couch.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/credit-card.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/crop-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/crop.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cross.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/crosshairs.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/crow.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/crown.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/crutch.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cube.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cubes.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/cut.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/database.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/deaf.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/democrat.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/desktop.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dharmachakra.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/diagnoses.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dice-d20.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dice-d6.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dice-five.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dice-four.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dice-one.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dice-six.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dice-three.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dice-two.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dice.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/digital-tachograph.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/directions.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/divide.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dizzy.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dna.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dog.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dollar-sign.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dolly-flatbed.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dolly.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/donate.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/door-closed.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/door-open.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dot-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dove.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/download.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/drafting-compass.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dragon.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/draw-polygon.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/drum-steelpan.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/drum.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/drumstick-bite.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dumbbell.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dumpster-fire.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dumpster.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/dungeon.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/edit.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/egg.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/eject.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ellipsis-h.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ellipsis-v.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/envelope-open-text.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/envelope-open.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/envelope-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/envelope.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/equals.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/eraser.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ethernet.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/euro-sign.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/exchange-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/exclamation-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/exclamation-triangle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/exclamation.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/expand-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/expand-arrows-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/expand.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/external-link-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/external-link-square-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/eye-dropper.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/eye-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/eye.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fan.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fast-backward.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fast-forward.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fax.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/feather-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/feather.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/female.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fighter-jet.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-archive.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-audio.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-code.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-contract.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-csv.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-download.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-excel.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-export.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-image.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-import.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-invoice-dollar.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-invoice.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-medical-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-medical.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-pdf.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-powerpoint.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-prescription.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-signature.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-upload.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-video.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file-word.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/file.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fill-drip.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fill.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/film.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/filter.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fingerprint.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fire-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fire-extinguisher.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fire.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/first-aid.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fish.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/fist-raised.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/flag-checkered.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/flag-usa.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/flag.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/flask.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/flushed.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/folder-minus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/folder-open.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/folder-plus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/folder.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/font-awesome-logo-full.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/font.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/football-ball.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/forward.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/frog.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/frown-open.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/frown.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/funnel-dollar.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/futbol.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/gamepad.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/gas-pump.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/gavel.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/gem.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/genderless.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ghost.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/gift.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/gifts.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/glass-cheers.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/glass-martini-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/glass-martini.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/glass-whiskey.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/glasses.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/globe-africa.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/globe-americas.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/globe-asia.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/globe-europe.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/globe.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/golf-ball.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/gopuram.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/graduation-cap.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/greater-than-equal.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/greater-than.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grimace.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-beam-sweat.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-beam.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-hearts.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-squint-tears.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-squint.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-stars.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-tears.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-tongue-squint.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-tongue-wink.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-tongue.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin-wink.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grin.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grip-horizontal.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grip-lines-vertical.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grip-lines.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/grip-vertical.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/guitar.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/h-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hamburger.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hammer.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hamsa.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-holding-heart.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-holding-usd.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-holding.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-lizard.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-middle-finger.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-paper.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-peace.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-point-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-point-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-point-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-point-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-pointer.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-rock.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-scissors.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hand-spock.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hands-helping.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hands.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/handshake.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hanukiah.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hard-hat.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hashtag.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hat-cowboy-side.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hat-cowboy.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hat-wizard.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hdd.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/heading.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/headphones-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/headphones.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/headset.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/heart-broken.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/heart.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/heartbeat.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/helicopter.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/highlighter.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hiking.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hippo.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/history.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hockey-puck.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/holly-berry.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/home.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/horse-head.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/horse.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hospital-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hospital-symbol.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hospital.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hot-tub.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hotdog.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hotel.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hourglass-end.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hourglass-half.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hourglass-start.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hourglass.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/house-damage.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/hryvnia.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/i-cursor.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ice-cream.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/icicles.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/icons.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/id-badge.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/id-card-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/id-card.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/igloo.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/image.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/images.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/inbox.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/indent.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/industry.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/infinity.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/info-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/info.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/italic.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/jedi.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/joint.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/journal-whills.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/kaaba.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/key.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/keyboard.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/khanda.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/kiss-beam.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/kiss-wink-heart.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/kiss.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/kiwi-bird.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/landmark.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/language.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/laptop-code.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/laptop-medical.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/laptop.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/laugh-beam.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/laugh-squint.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/laugh-wink.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/laugh.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/layer-group.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/leaf.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/lemon.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/less-than-equal.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/less-than.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/level-down-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/level-up-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/life-ring.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/lightbulb.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/link.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/lira-sign.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/list-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/list-ol.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/list-ul.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/list.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/location-arrow.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/lock-open.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/lock.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/long-arrow-alt-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/long-arrow-alt-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/long-arrow-alt-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/long-arrow-alt-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/low-vision.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/luggage-cart.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/magic.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/magnet.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mail-bulk.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/male.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/map-marked-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/map-marked.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/map-marker-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/map-marker.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/map-pin.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/map-signs.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/map.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/marker.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mars-double.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mars-stroke-h.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mars-stroke-v.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mars-stroke.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mars.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mask.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/medal.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/medkit.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/meh-blank.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/meh-rolling-eyes.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/meh.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/memory.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/menorah.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mercury.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/meteor.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/microchip.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/microphone-alt-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/microphone-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/microphone-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/microphone.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/microscope.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/minus-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/minus-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/minus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mitten.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mobile-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mobile.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/money-bill-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/money-bill-wave-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/money-bill-wave.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/money-bill.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/money-check-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/money-check.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/monument.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/moon.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mortar-pestle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mosque.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/motorcycle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mountain.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mouse-pointer.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mouse.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/mug-hot.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/music.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/network-wired.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/neuter.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/newspaper.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/not-equal.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/notes-medical.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/object-group.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/object-ungroup.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/oil-can.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/om.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/otter.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/outdent.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pager.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/paint-brush.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/paint-roller.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/palette.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pallet.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/paper-plane.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/paperclip.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/parachute-box.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/paragraph.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/parking.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/passport.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pastafarianism.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/paste.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pause-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pause.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/paw.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/peace.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pen-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pen-fancy.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pen-nib.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pen-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pen.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pencil-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pencil-ruler.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/people-carry.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pepper-hot.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/percent.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/percentage.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/person-booth.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/phone-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/phone-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/phone-square-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/phone-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/phone-volume.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/phone.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/photo-video.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/piggy-bank.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pills.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pizza-slice.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/place-of-worship.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/plane-arrival.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/plane-departure.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/plane.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/play-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/play.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/plug.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/plus-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/plus-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/plus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/podcast.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/poll-h.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/poll.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/poo-storm.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/poo.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/poop.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/portrait.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pound-sign.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/power-off.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/pray.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/praying-hands.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/prescription-bottle-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/prescription-bottle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/prescription.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/print.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/procedures.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/project-diagram.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/puzzle-piece.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/qrcode.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/question-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/question.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/quidditch.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/quote-left.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/quote-right.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/quran.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/radiation-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/radiation.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/rainbow.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/random.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/receipt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/record-vinyl.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/recycle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/redo-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/redo.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/registered.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/remove-format.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/reply-all.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/reply.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/republican.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/restroom.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/retweet.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ribbon.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ring.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/road.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/robot.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/rocket.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/route.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/rss-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/rss.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ruble-sign.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ruler-combined.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ruler-horizontal.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ruler-vertical.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ruler.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/running.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/rupee-sign.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sad-cry.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sad-tear.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/satellite-dish.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/satellite.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/save.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/school.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/screwdriver.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/scroll.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sd-card.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/search-dollar.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/search-location.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/search-minus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/search-plus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/search.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/seedling.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/server.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/shapes.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/share-alt-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/share-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/share-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/share.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/shekel-sign.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/shield-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ship.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/shipping-fast.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/shoe-prints.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/shopping-bag.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/shopping-basket.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/shopping-cart.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/shower.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/shuttle-van.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sign-in-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sign-language.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sign-out-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sign.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/signal.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/signature.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sim-card.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sitemap.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/skating.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/skiing-nordic.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/skiing.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/skull-crossbones.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/skull.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/slash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sleigh.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sliders-h.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/smile-beam.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/smile-wink.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/smile.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/smog.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/smoking-ban.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/smoking.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sms.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/snowboarding.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/snowflake.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/snowman.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/snowplow.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/socks.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/solar-panel.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-alpha-down-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-alpha-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-alpha-up-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-alpha-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-amount-down-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-amount-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-amount-up-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-amount-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-numeric-down-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-numeric-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-numeric-up-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-numeric-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sort.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/spa.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/space-shuttle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/spell-check.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/spider.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/spinner.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/splotch.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/spray-can.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/square-full.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/square-root-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/stamp.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/star-and-crescent.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/star-half-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/star-half.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/star-of-david.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/star-of-life.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/star.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/step-backward.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/step-forward.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/stethoscope.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sticky-note.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/stop-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/stop.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/stopwatch.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/store-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/store.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/stream.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/street-view.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/strikethrough.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/stroopwafel.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/subscript.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/subway.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/suitcase-rolling.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/suitcase.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sun.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/superscript.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/surprise.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/swatchbook.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/swimmer.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/swimming-pool.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/synagogue.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sync-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/sync.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/syringe.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/table-tennis.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/table.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tablet-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tablet.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tablets.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tachometer-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tag.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tags.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tape.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tasks.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/taxi.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/teeth-open.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/teeth.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/temperature-high.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/temperature-low.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tenge.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/terminal.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/text-height.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/text-width.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/th-large.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/th-list.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/th.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/theater-masks.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/thermometer-empty.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/thermometer-full.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/thermometer-half.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/thermometer-quarter.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/thermometer-three-quarters.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/thermometer.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/thumbs-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/thumbs-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/thumbtack.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/ticket-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/times-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/times.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tint-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tint.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tired.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/toggle-off.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/toggle-on.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/toilet-paper.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/toilet.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/toolbox.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tools.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tooth.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/torah.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/torii-gate.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tractor.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/trademark.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/traffic-light.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/trailer.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/train.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tram.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/transgender-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/transgender.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/trash-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/trash-restore-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/trash-restore.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/trash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tree.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/trophy.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/truck-loading.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/truck-monster.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/truck-moving.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/truck-pickup.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/truck.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tshirt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tty.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/tv.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/umbrella-beach.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/umbrella.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/underline.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/undo-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/undo.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/universal-access.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/university.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/unlink.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/unlock-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/unlock.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/upload.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-alt-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-astronaut.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-check.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-circle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-clock.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-cog.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-edit.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-friends.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-graduate.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-injured.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-lock.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-md.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-minus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-ninja.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-nurse.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-plus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-secret.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-shield.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-tag.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-tie.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user-times.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/user.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/users-cog.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/users.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/utensil-spoon.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/utensils.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/vector-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/venus-double.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/venus-mars.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/venus.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/vial.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/vials.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/video-slash.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/video.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/vihara.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/voicemail.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/volleyball-ball.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/volume-down.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/volume-mute.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/volume-off.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/volume-up.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/vote-yea.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/vr-cardboard.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/walking.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/wallet.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/warehouse.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/water.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/wave-square.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/weight-hanging.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/weight.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/wheelchair.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/wifi.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/wind.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/window-close.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/window-maximize.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/window-minimize.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/window-restore.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/wine-bottle.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/wine-glass-alt.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/wine-glass.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/won-sign.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/wrench.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/x-ray.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/yen-sign.svg create mode 100644 fast-api/static/font-awesome/svgs/solid/yin-yang.svg create mode 100644 fast-api/static/font-awesome/webfonts/fa-brands-400.eot create mode 100644 fast-api/static/font-awesome/webfonts/fa-brands-400.svg create mode 100644 fast-api/static/font-awesome/webfonts/fa-brands-400.ttf create mode 100644 fast-api/static/font-awesome/webfonts/fa-brands-400.woff create mode 100644 fast-api/static/font-awesome/webfonts/fa-brands-400.woff2 create mode 100644 fast-api/static/font-awesome/webfonts/fa-regular-400.eot create mode 100644 fast-api/static/font-awesome/webfonts/fa-regular-400.svg create mode 100644 fast-api/static/font-awesome/webfonts/fa-regular-400.ttf create mode 100644 fast-api/static/font-awesome/webfonts/fa-regular-400.woff create mode 100644 fast-api/static/font-awesome/webfonts/fa-regular-400.woff2 create mode 100644 fast-api/static/font-awesome/webfonts/fa-solid-900.eot create mode 100644 fast-api/static/font-awesome/webfonts/fa-solid-900.svg create mode 100644 fast-api/static/font-awesome/webfonts/fa-solid-900.ttf create mode 100644 fast-api/static/font-awesome/webfonts/fa-solid-900.woff create mode 100644 fast-api/static/font-awesome/webfonts/fa-solid-900.woff2 create mode 100644 fast-api/static/js/bootstrap.bundle.js create mode 100644 fast-api/static/js/bootstrap.bundle.js.map create mode 100644 fast-api/static/js/capacity.js create mode 100644 fast-api/static/js/jquery-3.4.1.js create mode 100644 fast-api/static/js/jquery-3.4.1.min.map create mode 100644 fast-api/tests/__init__.py create mode 100644 fast-api/tests/test_fast_api.py create mode 100644 fast-api/yarn-error.log diff --git a/fast-api/.DS_Store b/fast-api/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..d14d5af7d0809b00b68b2233234c0164e120b513 GIT binary patch literal 8196 zcmeHMO=}ZD7=9-ox-nF9C^YD05d{xzNqSI0gfymy9)w~<5tVfFVH4eCmh8q*V`O{q zN9e_~cfAN6ya@gRe~2gXpwE1eX0u757qK`4GtcbI^UUl#?`Eg7B_dWHG>b%eBC?PL z=CUZ}B+)N&EG2ZyGLS(})F21BO)aX$*rvfaU>qOdin0KgQQWkMb20I9JxmNbS6r4(bT(*x5|rjHm*${l$@BJnduV>le0r-OFFTVLQ@(Cj0158#MwQI(|V0O+K-&yYuhew)LmW& zL;R?2AYb_{6KV@p?q0Fl;9XC0C~>fu+2xgr9^XptjJ*%PzHA=FZXSc}wWsewz7s5Z zg0B-k1z4+t)plmq_a1XkuP?^04}DMH@3*?=cKo1F_|6i^RQl9uE0eJ@OPR;jHXl|4 zCm8r;r~gn~?KnZZuIqO>cPDkHey`IS)^f|YcrS1|y;fg}JIxj-kM4JRO+GC1L9gk{ zajL3APE^a~N29gEs=ZbiuiB&H)$6Di3mezQ_jS2(PZ%sO< zt|#SN)M5*bgz)^kkMlUw!CSg`@L2~hHddD(hV3X`Bw!ch{l&(5UhVf>-rGa3SWgx~ z5PBWSxGnzEUZpp{ak1`X^VrC=)L=V868fV)3PnR~*Uw_IUPK0sj`g}&jZ@uSY zmPisN+sFb-8bgJmNwmvd7-;r?VTeh_ffM9FQr&A_od35LfB!#0D>Aog954BgU$$SWqHkiUV@K+u9 E1CXi?{r~^~ literal 0 HcmV?d00001 diff --git a/fast-api/README.rst b/fast-api/README.rst new file mode 100644 index 0000000..e69de29 diff --git a/fast-api/__pycache__/fast.cpython-37.pyc b/fast-api/__pycache__/fast.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6cb5e1054b9e62ee65794413c9cc03d324c7ebba GIT binary patch literal 641 zcmYjPy>1jS5cbdh?;g2GB=4}z9im1EQ3NRxDUwt!kd~XtWs$wR*j_{;%Cz?mQ1TqS z#kN#*)KrW&35TT_&&)US%=gK!7mI??IeGTx-EYp=&yYNxgo0OO?h`p+z%?^maUNo! zg^^0mvDA@?RcsQK%z30!lc|g|ln_I*<0^*~vOA^`WKq~zeV?LIWmFVPIT@#tzX#pnI#af;veW9O-* zq<-ISPFjs_%Kg7idI?&K8{gZT4KbcixMQ*(WNt~$v#%UDh%c<=-vsR;&u)vh1N^+Y z_C`;s#g8L8UkjU3yIMZ3a*l53J4Z{}oPh7l27UkJtMygm{A#$FqU+vZC^|uoaa)B3 zzOK2-u!Es*JAa$5-Mqd^?r$O#b&bKxz!dQPxSbLk2)na-p^mBPUYk`j47%MAb6UcN z0qW@uVf*!xZua~FHh;A?*IS* literal 0 HcmV?d00001 diff --git a/fast-api/bower_components/Morphext/.bower.json b/fast-api/bower_components/Morphext/.bower.json new file mode 100644 index 0000000..3de5432 --- /dev/null +++ b/fast-api/bower_components/Morphext/.bower.json @@ -0,0 +1,47 @@ +{ + "name": "Morphext", + "version": "2.4.4", + "description": "A simple, high-performance and cross-browser jQuery rotating / carousel plugin for text phrases powered by Animate.css.", + "authors": [ + "Ian Lai " + ], + "main": [ + "dist/morphext.min.js", + "dist/morphext.css" + ], + "keywords": [ + "jquery", + "text rotator", + "rotating text", + "ticker", + "cycle", + "animate.css", + "text animation", + "carousel", + "inline" + ], + "license": "http://ian.mit-license.org/", + "private": false, + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ], + "dependencies": { + "animate.css": "~3.2.5", + "jquery": "~2.1.4" + }, + "homepage": "https://github.com/MrSaints/Morphext", + "_release": "2.4.4", + "_resolution": { + "type": "version", + "tag": "2.4.4", + "commit": "5e534f48aaadfc7cc8ce415c472e56b9badf7c15" + }, + "_source": "https://github.com/MrSaints/Morphext.git", + "_target": "^2.4.4", + "_originalSource": "Morphext", + "_direct": true +} \ No newline at end of file diff --git a/fast-api/bower_components/Morphext/Gruntfile.coffee b/fast-api/bower_components/Morphext/Gruntfile.coffee new file mode 100644 index 0000000..b1edb80 --- /dev/null +++ b/fast-api/bower_components/Morphext/Gruntfile.coffee @@ -0,0 +1,20 @@ +module.exports = (grunt) -> + grunt.initConfig + pkg: grunt.file.readJSON 'package.json' + + uglify: + options: + banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' + + '<%= grunt.template.today("yyyy-mm-dd") %> */' + dist: + files: + 'dist/morphext.min.js': ['dist/morphext.js'] + + eslint: + all: ['dist/morphext.js'] + + grunt.loadNpmTasks 'grunt-contrib-uglify' + grunt.loadNpmTasks 'grunt-eslint' + + grunt.registerTask 'default', ['test', 'uglify'] + grunt.registerTask 'test', ['eslint'] \ No newline at end of file diff --git a/fast-api/bower_components/Morphext/LICENSE b/fast-api/bower_components/Morphext/LICENSE new file mode 100644 index 0000000..6d431a9 --- /dev/null +++ b/fast-api/bower_components/Morphext/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) +Copyright © 2014 Ian Lai + +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. \ No newline at end of file diff --git a/fast-api/bower_components/Morphext/README.md b/fast-api/bower_components/Morphext/README.md new file mode 100644 index 0000000..b77ceee --- /dev/null +++ b/fast-api/bower_components/Morphext/README.md @@ -0,0 +1,128 @@ +Morphext +======== + +[![Dev Dependency Status](https://david-dm.org/MrSaints/Morphext/dev-status.svg?style=flat)](https://david-dm.org/MrSaints/Morphext#info=devDependencies) + +A simple, high-performance and cross-browser [jQuery][jquery] rotating / carousel plugin for text phrases powered by [Animate.css][animatecss]. It is more succinctly described by [Softpedia](http://webscripts.softpedia.com/script/Text-Management/Text-Tools/Morphext-82875.html) as: + +> A [jQuery][jquery] plugin for creating text-based carousels, rotating small or large pieces of text one after the other, just like a slider does with images... This can be a great tool for displaying catch phrases, mission statements, tag lines, and so on. + +If you would like to achieve a similar effect with more flexibility (e.g. out animation) and with HTML objects rather than text phrases (e.g. unordered list items), please check out [Morphist][morphist]. + +[Website][website] / [Demo][demo] + + +Install +------- + +Download from the [project page][downloads]. + +Install with [Bower][bower]: `bower install --save Morphext` + + +Usage +----- + +1. Import the latest [Animate.css][animatecss] and [jQuery][jquery] library into your HTML. + +2. Import `morphext.css` and include `morphext.min.js` in your HTML document. + +3. Encapsulate your rotating phrases in an element and separate each phrase with a comma or a separator of your choice: + + ```html + I am a So Simple, Very Doge, Much Wow, Such Cool Text Rotator + ``` + +4. Trigger the plugin by calling Morphext() on the element containing the rotating phrases: + + ```js + $("#js-rotating").Morphext(); + ``` + +A demo titled `index.html` is included in this repository. Open it to see the end-result. + + +Options +------- + +Morphext exposes the following options to alter the behaviour of the plugin: + +Option | Type | Default | Description +--- | --- | --- | --- +animation | `string` | `bounceIn` | The [in] animation type. Refer to [Animate.css][animatecss] for a list of available animations. +separator | `string` | `,` | An array of phrases to rotate are created based on this separator. Change it if you wish to separate the phrases differently (e.g. So Simple / Very Doge / Much Wow / Such Cool). +speed | `int` | `2000` | The delay between the changing of each phrase in milliseconds. +complete | `object Function` | `null` | A callback that is executed after an item is animated in. + +They may be used like so: + +```js +$("#js-rotating").Morphext({ + animation: "fadeIn", // Overrides default "bounceIn" + separator: "|", // Overrides default "," + speed: 3000, // Overrides default 2000 + complete: function () { + // Overrides default empty function + } +}); +``` + +The plugin relies heavily on [Animate.css][animatecss] for its [smooth, high performance animations](http://www.html5rocks.com/en/tutorials/speed/high-performance-animations/) to transition between each phrase. Thus, the default animation speed (different from the interval between each phrase as described above) may be altered via CSS: + +```css +#yourElement, .yourClass { + /* Overrides Animate.css 1s duration */ + -vendor-animation-duration: 3s; +} +``` + + +"Issues" +---------- + +Issue | Description | Solution +--- | --- | --- +Viewport | Certain animations (e.g. "up" and "down") by [Animate.css][animatecss] involves translating the element beyond the viewport thereby leading to unintended vertical and/or horizontal whitespace (further evident by the scrollbar "following" the animation effect. This is not a bug. | It may be eradicated by applying `overflow: hidden;` (CSS) to the parent of the element being animated. +JavaScript | JavaScript is required for the addition / removal of elements with [Animate.css][animatecss] [CSS animation] classes thereby creating the "transitioning effect". If JavaScript is disabled or unavailable, nothing will happen. All the phrases and its separator will be shown as it is (graceful degradation). | N/A +CSS3 | [Animate.css][animatecss] relies on CSS3 animations and transformations (available in most modern browsers). If CSS3 is disabled or unavailable, the phrases will continue to transition from one to another (assuming JavaScript is enabled), but there will be no animation effect. | No fallback is provided by this plugin. You may however, handle the fallback through the use of [Modernizr](http://modernizr.com/) (for feature detection) and [polyfills](http://html5polyfill.com/). + +Should you encounter any problems or require assistance with this plugin, simply open a GitHub issue in this repository or you may contact [me via Twitter][twitter]. + + +Prerequisites +------------- + +- [jQuery][jquery] +- [Animate.css][animatecss] + + +Others +------ + +Native ports of Morphext have been developed in other JavaScript frameworks (e.g. [React](http://facebook.github.io/react/) and [Polymer](http://www.polymer-project.org/)): + +- [Morphext React][morphext-react] +- [Morphext Polymer][morphext-polymer] + +They are not part of the official plugin development and the approach used in developing these ports may not be idiomatic. Please use them at your own risk. + +Issues and pull requests are welcomed. + + +License +------- + +Morphext is licensed under the MIT license [(http://ian.mit-license.org/)](http://ian.mit-license.org/). + + [website]: http://morphext.fyianlai.com/ + [twitter]: https://www.twitter.com/MrSaints + [demo]: http://www.enactuslse.co.uk/ + [downloads]: https://github.com/MrSaints/Morphext/releases + + [bower]: http://bower.io/ + [jquery]: https://www.jquery.com/ + [animatecss]: //daneden.github.io/animate.css/ + + [morphist]: https://github.com/MrSaints/Morphist + [morphext-react]: https://gist.github.com/MrSaints/7e84c68c086d5a6a3ee2#file-morphext-react-jsx + [morphext-polymer]: https://gist.github.com/MrSaints/7e84c68c086d5a6a3ee2#file-morphext-polymer-html diff --git a/fast-api/bower_components/Morphext/bower.json b/fast-api/bower_components/Morphext/bower.json new file mode 100644 index 0000000..5066055 --- /dev/null +++ b/fast-api/bower_components/Morphext/bower.json @@ -0,0 +1,36 @@ +{ + "name": "Morphext", + "version": "2.4.4", + "description": "A simple, high-performance and cross-browser jQuery rotating / carousel plugin for text phrases powered by Animate.css.", + "authors": [ + "Ian Lai " + ], + "main": [ + "dist/morphext.min.js", + "dist/morphext.css" + ], + "keywords": [ + "jquery", + "text rotator", + "rotating text", + "ticker", + "cycle", + "animate.css", + "text animation", + "carousel", + "inline" + ], + "license": "http://ian.mit-license.org/", + "private": false, + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ], + "dependencies": { + "animate.css": "~3.2.5", + "jquery": "~2.1.4" + } +} diff --git a/fast-api/bower_components/Morphext/dist/morphext.css b/fast-api/bower_components/Morphext/dist/morphext.css new file mode 100644 index 0000000..a9d743c --- /dev/null +++ b/fast-api/bower_components/Morphext/dist/morphext.css @@ -0,0 +1,3 @@ +.morphext > .animated { + display: inline-block; +} \ No newline at end of file diff --git a/fast-api/bower_components/Morphext/dist/morphext.js b/fast-api/bower_components/Morphext/dist/morphext.js new file mode 100644 index 0000000..171a4fb --- /dev/null +++ b/fast-api/bower_components/Morphext/dist/morphext.js @@ -0,0 +1,77 @@ +/*! + * Morphext - Text Rotating Plugin for jQuery + * https://github.com/MrSaints/Morphext + * + * Built on jQuery Boilerplate + * http://jqueryboilerplate.com/ + * + * Copyright 2014 Ian Lai and other contributors + * Released under the MIT license + * http://ian.mit-license.org/ + */ + +/*eslint-env browser */ +/*global jQuery:false */ +/*eslint-disable no-underscore-dangle */ + +(function ($) { + "use strict"; + + var pluginName = "Morphext", + defaults = { + animation: "bounceIn", + separator: ",", + speed: 2000, + complete: $.noop + }; + + function Plugin (element, options) { + this.element = $(element); + + this.settings = $.extend({}, defaults, options); + this._defaults = defaults; + this._init(); + } + + Plugin.prototype = { + _init: function () { + var $that = this; + this.phrases = []; + + this.element.addClass("morphext"); + + $.each(this.element.text().split(this.settings.separator), function (key, value) { + $that.phrases.push($.trim(value)); + }); + + this.index = -1; + this.animate(); + this.start(); + }, + animate: function () { + this.index = ++this.index % this.phrases.length; + this.element[0].innerHTML = "" + this.phrases[this.index] + ""; + + if ($.isFunction(this.settings.complete)) { + this.settings.complete.call(this); + } + }, + start: function () { + var $that = this; + this._interval = setInterval(function () { + $that.animate(); + }, this.settings.speed); + }, + stop: function () { + this._interval = clearInterval(this._interval); + } + }; + + $.fn[pluginName] = function (options) { + return this.each(function() { + if (!$.data(this, "plugin_" + pluginName)) { + $.data(this, "plugin_" + pluginName, new Plugin(this, options)); + } + }); + }; +})(jQuery); diff --git a/fast-api/bower_components/Morphext/dist/morphext.min.js b/fast-api/bower_components/Morphext/dist/morphext.min.js new file mode 100644 index 0000000..2b2643e --- /dev/null +++ b/fast-api/bower_components/Morphext/dist/morphext.min.js @@ -0,0 +1 @@ +/*! Morphext - v2.4.4 - 2015-05-21 */!function(a){"use strict";function b(b,c){this.element=a(b),this.settings=a.extend({},d,c),this._defaults=d,this._init()}var c="Morphext",d={animation:"bounceIn",separator:",",speed:2e3,complete:a.noop};b.prototype={_init:function(){var b=this;this.phrases=[],this.element.addClass("morphext"),a.each(this.element.text().split(this.settings.separator),function(c,d){b.phrases.push(a.trim(d))}),this.index=-1,this.animate(),this.start()},animate:function(){this.index=++this.index%this.phrases.length,this.element[0].innerHTML=''+this.phrases[this.index]+"",a.isFunction(this.settings.complete)&&this.settings.complete.call(this)},start:function(){var a=this;this._interval=setInterval(function(){a.animate()},this.settings.speed)},stop:function(){this._interval=clearInterval(this._interval)}},a.fn[c]=function(d){return this.each(function(){a.data(this,"plugin_"+c)||a.data(this,"plugin_"+c,new b(this,d))})}}(jQuery); \ No newline at end of file diff --git a/fast-api/bower_components/Morphext/index.html b/fast-api/bower_components/Morphext/index.html new file mode 100644 index 0000000..616aa27 --- /dev/null +++ b/fast-api/bower_components/Morphext/index.html @@ -0,0 +1,29 @@ + + + + + + Morphext Example / Demo + + + + + + +
+ I am a So Simple, Very Doge, Much Wow, Such Cool Text Rotator +
+ + + + + + + \ No newline at end of file diff --git a/fast-api/bower_components/Morphext/package.json b/fast-api/bower_components/Morphext/package.json new file mode 100644 index 0000000..8998856 --- /dev/null +++ b/fast-api/bower_components/Morphext/package.json @@ -0,0 +1,29 @@ +{ + "name": "Morphext", + "version": "2.4.4", + "description": "A simple, high-performance and cross-browser jQuery rotating / carousel plugin for text phrases powered by Animate.css.", + "main": "Gruntfile.coffee", + "scripts": { + "test": "grunt test" + }, + "repository": { + "type": "git", + "url": "git://github.com/MrSaints/Morphext.git" + }, + "author": "Ian Lai ", + "licenses": [ + { + "type": "MIT", + "url": "http://ian.mit-license.org/" + } + ], + "bugs": { + "url": "https://github.com/MrSaints/Morphext/issues" + }, + "homepage": "https://github.com/MrSaints/Morphext", + "devDependencies": { + "grunt": "^0.4.5", + "grunt-contrib-uglify": "^0.9.1", + "grunt-eslint": "^13.0.0" + } +} diff --git a/fast-api/bower_components/animate.css/.bower.json b/fast-api/bower_components/animate.css/.bower.json new file mode 100644 index 0000000..c7d6e94 --- /dev/null +++ b/fast-api/bower_components/animate.css/.bower.json @@ -0,0 +1,23 @@ +{ + "name": "animate.css", + "version": "3.2.6", + "main": "./animate.css", + "ignore": [ + ".*", + "src", + "*.yml", + "Gemfile", + "Gemfile.lock", + "*.md" + ], + "homepage": "https://github.com/daneden/animate.css", + "_release": "3.2.6", + "_resolution": { + "type": "version", + "tag": "3.2.6", + "commit": "64d14c1b65c89d588aefe6fccd3a8b76eefd534a" + }, + "_source": "https://github.com/daneden/animate.css.git", + "_target": "~3.2.5", + "_originalSource": "animate.css" +} \ No newline at end of file diff --git a/fast-api/bower_components/animate.css/Gruntfile.js b/fast-api/bower_components/animate.css/Gruntfile.js new file mode 100644 index 0000000..c0a1665 --- /dev/null +++ b/fast-api/bower_components/animate.css/Gruntfile.js @@ -0,0 +1,79 @@ +module.exports = function(grunt) { + + require('load-grunt-tasks')(grunt); + + var concatAnim; + + grunt.initConfig({ + + pkg: grunt.file.readJSON('package.json'), + + concat: { + dist: { + src: [ 'source/_base.css', 'source/**/*.css' ], // _base.css required for .animated helper class + dest: 'animate.css' + } + }, + + autoprefixer: { // https://github.com/nDmitry/grunt-autoprefixer + options: { + browsers: ['last 2 versions', 'bb 10'] + }, + no_dest: { + src: 'animate.css' // output file + } + }, + + cssmin: { + minify: { + src: ['animate.css'], + dest: 'animate.min.css', + } + }, + + watch: { + css: { + files: [ 'source/**/*', 'animate-config.json' ], + tasks: ['default'] + } + } + + }); + + // fuction to perform custom task + concatAnim = function () { + + var categories = grunt.file.readJSON('animate-config.json'), + category, files, file, + target = [ 'source/_base.css' ], + count = 0; + + for ( category in categories ) { + if ( categories.hasOwnProperty(category) ) { + files = categories[category] + for (file in files) { + if ( files.hasOwnProperty(file) && files[file] ) { + target.push('source/' + category + '/' + file + '.css'); + count += 1; + } + } + } + } + + if (!count) { + grunt.log.writeln('No animations activated.'); + } else { + grunt.log.writeln(count + (count > 1 ? ' animations' : ' animation') + ' activated.'); + } + + grunt.config('concat', { 'animate.css': target }); + grunt.task.run('concat'); + + }; + + // register task + grunt.registerTask('concat-anim', 'Concatenates activated animations', concatAnim); // custom task + grunt.registerTask('default', ['concat-anim', 'autoprefixer', 'cssmin']); + grunt.registerTask('dev', ['watch']); + +}; diff --git a/fast-api/bower_components/animate.css/animate-config.json b/fast-api/bower_components/animate.css/animate-config.json new file mode 100644 index 0000000..da14ac6 --- /dev/null +++ b/fast-api/bower_components/animate.css/animate-config.json @@ -0,0 +1,118 @@ +{ + + "attention_seekers": { + "bounce": true, + "flash": true, + "pulse": true, + "rubberBand": true, + "shake": true, + "swing": true, + "tada": true, + "wobble": true + }, + + "bouncing_entrances": { + "bounceIn": true, + "bounceInDown": true, + "bounceInLeft": true, + "bounceInRight": true, + "bounceInUp": true + }, + + "bouncing_exits": { + "bounceOut": true, + "bounceOutDown": true, + "bounceOutLeft": true, + "bounceOutRight": true, + "bounceOutUp": true + }, + + "fading_entrances": { + "fadeIn": true, + "fadeInDown": true, + "fadeInDownBig": true, + "fadeInLeft": true, + "fadeInLeftBig": true, + "fadeInRight": true, + "fadeInRightBig": true, + "fadeInUp": true, + "fadeInUpBig": true + }, + + "fading_exits": { + "fadeOut": true, + "fadeOutDown": true, + "fadeOutDownBig": true, + "fadeOutLeft": true, + "fadeOutLeftBig": true, + "fadeOutRight": true, + "fadeOutRightBig": true, + "fadeOutUp": true, + "fadeOutUpBig": true + }, + + "flippers": { + "flip": true, + "flipInX": true, + "flipInY": true, + "flipOutX": true, + "flipOutY": true + }, + + "lightspeed": { + "lightSpeedIn": true, + "lightSpeedOut": true + }, + + "rotating_entrances": { + "rotateIn": true, + "rotateInDownLeft": true, + "rotateInDownRight": true, + "rotateInUpLeft": true, + "rotateInUpRight": true + }, + + "rotating_exits": { + "rotateOut": true, + "rotateOutDownLeft": true, + "rotateOutDownRight": true, + "rotateOutUpLeft": true, + "rotateOutUpRight": true + }, + + "specials": { + "hinge": true, + "rollIn": true, + "rollOut": true + }, + + "zooming_entrances": { + "zoomIn": true, + "zoomInDown": true, + "zoomInLeft": true, + "zoomInRight": true, + "zoomInUp": true + }, + + "zooming_exits": { + "zoomOut": true, + "zoomOutDown": true, + "zoomOutLeft": true, + "zoomOutRight": true, + "zoomOutUp": true + }, + + "sliding_entrances": { + "slideInDown": true, + "slideInLeft": true, + "slideInRight": true, + "slideInUp": true + }, + + "sliding_exits": { + "slideOutDown": true, + "slideOutLeft": true, + "slideOutRight": true, + "slideOutUp": true + } +} diff --git a/fast-api/bower_components/animate.css/animate.css b/fast-api/bower_components/animate.css/animate.css new file mode 100755 index 0000000..60025f3 --- /dev/null +++ b/fast-api/bower_components/animate.css/animate.css @@ -0,0 +1,3181 @@ +@charset "UTF-8"; + +/*! +Animate.css - http://daneden.me/animate +Licensed under the MIT license - http://opensource.org/licenses/MIT + +Copyright (c) 2015 Daniel Eden +*/ + +.animated { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} + +.animated.infinite { + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; +} + +.animated.hinge { + -webkit-animation-duration: 2s; + animation-duration: 2s; +} + +.animated.bounceIn, +.animated.bounceOut { + -webkit-animation-duration: .75s; + animation-duration: .75s; +} + +.animated.flipOutX, +.animated.flipOutY { + -webkit-animation-duration: .75s; + animation-duration: .75s; +} + +@-webkit-keyframes bounce { + 0%, 20%, 53%, 80%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + -webkit-transform: translate3d(0,0,0); + transform: translate3d(0,0,0); + } + + 40%, 43% { + -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); + } + + 70% { + -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0); + } + + 90% { + -webkit-transform: translate3d(0,-4px,0); + transform: translate3d(0,-4px,0); + } +} + +@keyframes bounce { + 0%, 20%, 53%, 80%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + -webkit-transform: translate3d(0,0,0); + transform: translate3d(0,0,0); + } + + 40%, 43% { + -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); + } + + 70% { + -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + -webkit-transform: translate3d(0, -15px, 0); + transform: translate3d(0, -15px, 0); + } + + 90% { + -webkit-transform: translate3d(0,-4px,0); + transform: translate3d(0,-4px,0); + } +} + +.bounce { + -webkit-animation-name: bounce; + animation-name: bounce; + -webkit-transform-origin: center bottom; + transform-origin: center bottom; +} + +@-webkit-keyframes flash { + 0%, 50%, 100% { + opacity: 1; + } + + 25%, 75% { + opacity: 0; + } +} + +@keyframes flash { + 0%, 50%, 100% { + opacity: 1; + } + + 25%, 75% { + opacity: 0; + } +} + +.flash { + -webkit-animation-name: flash; + animation-name: flash; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes pulse { + 0% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); + } + + 100% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes pulse { + 0% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 50% { + -webkit-transform: scale3d(1.05, 1.05, 1.05); + transform: scale3d(1.05, 1.05, 1.05); + } + + 100% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.pulse { + -webkit-animation-name: pulse; + animation-name: pulse; +} + +@-webkit-keyframes rubberBand { + 0% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + -webkit-transform: scale3d(.95, 1.05, 1); + transform: scale3d(.95, 1.05, 1); + } + + 75% { + -webkit-transform: scale3d(1.05, .95, 1); + transform: scale3d(1.05, .95, 1); + } + + 100% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes rubberBand { + 0% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 30% { + -webkit-transform: scale3d(1.25, 0.75, 1); + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + -webkit-transform: scale3d(0.75, 1.25, 1); + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + -webkit-transform: scale3d(1.15, 0.85, 1); + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + -webkit-transform: scale3d(.95, 1.05, 1); + transform: scale3d(.95, 1.05, 1); + } + + 75% { + -webkit-transform: scale3d(1.05, .95, 1); + transform: scale3d(1.05, .95, 1); + } + + 100% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.rubberBand { + -webkit-animation-name: rubberBand; + animation-name: rubberBand; +} + +@-webkit-keyframes shake { + 0%, 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 10%, 30%, 50%, 70%, 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 20%, 40%, 60%, 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } +} + +@keyframes shake { + 0%, 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 10%, 30%, 50%, 70%, 90% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 20%, 40%, 60%, 80% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } +} + +.shake { + -webkit-animation-name: shake; + animation-name: shake; +} + +@-webkit-keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); + } + + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); + } + + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); + } + + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); + } + + 100% { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } +} + +@keyframes swing { + 20% { + -webkit-transform: rotate3d(0, 0, 1, 15deg); + transform: rotate3d(0, 0, 1, 15deg); + } + + 40% { + -webkit-transform: rotate3d(0, 0, 1, -10deg); + transform: rotate3d(0, 0, 1, -10deg); + } + + 60% { + -webkit-transform: rotate3d(0, 0, 1, 5deg); + transform: rotate3d(0, 0, 1, 5deg); + } + + 80% { + -webkit-transform: rotate3d(0, 0, 1, -5deg); + transform: rotate3d(0, 0, 1, -5deg); + } + + 100% { + -webkit-transform: rotate3d(0, 0, 1, 0deg); + transform: rotate3d(0, 0, 1, 0deg); + } +} + +.swing { + -webkit-transform-origin: top center; + transform-origin: top center; + -webkit-animation-name: swing; + animation-name: swing; +} + +@-webkit-keyframes tada { + 0% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, 20% { + -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); + } + + 30%, 50%, 70%, 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + + 40%, 60%, 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + + 100% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes tada { + 0% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } + + 10%, 20% { + -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); + transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); + } + + 30%, 50%, 70%, 90% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + + 40%, 60%, 80% { + -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + + 100% { + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.tada { + -webkit-animation-name: tada; + animation-name: tada; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes wobble { + 0% { + -webkit-transform: none; + transform: none; + } + + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + 100% { + -webkit-transform: none; + transform: none; + } +} + +@keyframes wobble { + 0% { + -webkit-transform: none; + transform: none; + } + + 15% { + -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% { + -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% { + -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% { + -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% { + -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + 100% { + -webkit-transform: none; + transform: none; + } +} + +.wobble { + -webkit-animation-name: wobble; + animation-name: wobble; +} + +@-webkit-keyframes bounceIn { + 0%, 20%, 40%, 60%, 80%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + -webkit-transform: scale3d(.97, .97, .97); + transform: scale3d(.97, .97, .97); + } + + 100% { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +@keyframes bounceIn { + 0%, 20%, 40%, 60%, 80%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + 20% { + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(1.03, 1.03, 1.03); + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + -webkit-transform: scale3d(.97, .97, .97); + transform: scale3d(.97, .97, .97); + } + + 100% { + opacity: 1; + -webkit-transform: scale3d(1, 1, 1); + transform: scale3d(1, 1, 1); + } +} + +.bounceIn { + -webkit-animation-name: bounceIn; + animation-name: bounceIn; +} + +@-webkit-keyframes bounceInDown { + 0%, 60%, 75%, 90%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + transform: translate3d(0, 25px, 0); + } + + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); + } + + 100% { + -webkit-transform: none; + transform: none; + } +} + +@keyframes bounceInDown { + 0%, 60%, 75%, 90%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -3000px, 0); + transform: translate3d(0, -3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, 25px, 0); + transform: translate3d(0, 25px, 0); + } + + 75% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); + } + + 100% { + -webkit-transform: none; + transform: none; + } +} + +.bounceInDown { + -webkit-animation-name: bounceInDown; + animation-name: bounceInDown; +} + +@-webkit-keyframes bounceInLeft { + 0%, 60%, 75%, 90%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + transform: translate3d(25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0); + } + + 100% { + -webkit-transform: none; + transform: none; + } +} + +@keyframes bounceInLeft { + 0%, 60%, 75%, 90%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(-3000px, 0, 0); + transform: translate3d(-3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(25px, 0, 0); + transform: translate3d(25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(-10px, 0, 0); + transform: translate3d(-10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(5px, 0, 0); + transform: translate3d(5px, 0, 0); + } + + 100% { + -webkit-transform: none; + transform: none; + } +} + +.bounceInLeft { + -webkit-animation-name: bounceInLeft; + animation-name: bounceInLeft; +} + +@-webkit-keyframes bounceInRight { + 0%, 60%, 75%, 90%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + transform: translate3d(-25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0); + } + + 100% { + -webkit-transform: none; + transform: none; + } +} + +@keyframes bounceInRight { + 0%, 60%, 75%, 90%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(3000px, 0, 0); + transform: translate3d(3000px, 0, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(-25px, 0, 0); + transform: translate3d(-25px, 0, 0); + } + + 75% { + -webkit-transform: translate3d(10px, 0, 0); + transform: translate3d(10px, 0, 0); + } + + 90% { + -webkit-transform: translate3d(-5px, 0, 0); + transform: translate3d(-5px, 0, 0); + } + + 100% { + -webkit-transform: none; + transform: none; + } +} + +.bounceInRight { + -webkit-animation-name: bounceInRight; + animation-name: bounceInRight; +} + +@-webkit-keyframes bounceInUp { + 0%, 60%, 75%, 90%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, -5px, 0); + transform: translate3d(0, -5px, 0); + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes bounceInUp { + 0%, 60%, 75%, 90%, 100% { + -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 3000px, 0); + transform: translate3d(0, 3000px, 0); + } + + 60% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + 75% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 90% { + -webkit-transform: translate3d(0, -5px, 0); + transform: translate3d(0, -5px, 0); + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.bounceInUp { + -webkit-animation-name: bounceInUp; + animation-name: bounceInUp; +} + +@-webkit-keyframes bounceOut { + 20% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9); + } + + 50%, 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 100% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } +} + +@keyframes bounceOut { + 20% { + -webkit-transform: scale3d(.9, .9, .9); + transform: scale3d(.9, .9, .9); + } + + 50%, 55% { + opacity: 1; + -webkit-transform: scale3d(1.1, 1.1, 1.1); + transform: scale3d(1.1, 1.1, 1.1); + } + + 100% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } +} + +.bounceOut { + -webkit-animation-name: bounceOut; + animation-name: bounceOut; +} + +@-webkit-keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +@keyframes bounceOutDown { + 20% { + -webkit-transform: translate3d(0, 10px, 0); + transform: translate3d(0, 10px, 0); + } + + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +.bounceOutDown { + -webkit-animation-name: bounceOutDown; + animation-name: bounceOutDown; +} + +@-webkit-keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0); + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +@keyframes bounceOutLeft { + 20% { + opacity: 1; + -webkit-transform: translate3d(20px, 0, 0); + transform: translate3d(20px, 0, 0); + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +.bounceOutLeft { + -webkit-animation-name: bounceOutLeft; + animation-name: bounceOutLeft; +} + +@-webkit-keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0); + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +@keyframes bounceOutRight { + 20% { + opacity: 1; + -webkit-transform: translate3d(-20px, 0, 0); + transform: translate3d(-20px, 0, 0); + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +.bounceOutRight { + -webkit-animation-name: bounceOutRight; + animation-name: bounceOutRight; +} + +@-webkit-keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +@keyframes bounceOutUp { + 20% { + -webkit-transform: translate3d(0, -10px, 0); + transform: translate3d(0, -10px, 0); + } + + 40%, 45% { + opacity: 1; + -webkit-transform: translate3d(0, 20px, 0); + transform: translate3d(0, 20px, 0); + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +.bounceOutUp { + -webkit-animation-name: bounceOutUp; + animation-name: bounceOutUp; +} + +@-webkit-keyframes fadeIn { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +@keyframes fadeIn { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +.fadeIn { + -webkit-animation-name: fadeIn; + animation-name: fadeIn; +} + +@-webkit-keyframes fadeInDown { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInDown { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInDown { + -webkit-animation-name: fadeInDown; + animation-name: fadeInDown; +} + +@-webkit-keyframes fadeInDownBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInDownBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInDownBig { + -webkit-animation-name: fadeInDownBig; + animation-name: fadeInDownBig; +} + +@-webkit-keyframes fadeInLeft { + 0% { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInLeft { + 0% { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInLeft { + -webkit-animation-name: fadeInLeft; + animation-name: fadeInLeft; +} + +@-webkit-keyframes fadeInLeftBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInLeftBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInLeftBig { + -webkit-animation-name: fadeInLeftBig; + animation-name: fadeInLeftBig; +} + +@-webkit-keyframes fadeInRight { + 0% { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInRight { + 0% { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInRight { + -webkit-animation-name: fadeInRight; + animation-name: fadeInRight; +} + +@-webkit-keyframes fadeInRightBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInRightBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInRightBig { + -webkit-animation-name: fadeInRightBig; + animation-name: fadeInRightBig; +} + +@-webkit-keyframes fadeInUp { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInUp { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInUp { + -webkit-animation-name: fadeInUp; + animation-name: fadeInUp; +} + +@-webkit-keyframes fadeInUpBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes fadeInUpBig { + 0% { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.fadeInUpBig { + -webkit-animation-name: fadeInUpBig; + animation-name: fadeInUpBig; +} + +@-webkit-keyframes fadeOut { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@keyframes fadeOut { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.fadeOut { + -webkit-animation-name: fadeOut; + animation-name: fadeOut; +} + +@-webkit-keyframes fadeOutDown { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +@keyframes fadeOutDown { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +.fadeOutDown { + -webkit-animation-name: fadeOutDown; + animation-name: fadeOutDown; +} + +@-webkit-keyframes fadeOutDownBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +@keyframes fadeOutDownBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, 2000px, 0); + transform: translate3d(0, 2000px, 0); + } +} + +.fadeOutDownBig { + -webkit-animation-name: fadeOutDownBig; + animation-name: fadeOutDownBig; +} + +@-webkit-keyframes fadeOutLeft { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +@keyframes fadeOutLeft { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +.fadeOutLeft { + -webkit-animation-name: fadeOutLeft; + animation-name: fadeOutLeft; +} + +@-webkit-keyframes fadeOutLeftBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +@keyframes fadeOutLeftBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(-2000px, 0, 0); + transform: translate3d(-2000px, 0, 0); + } +} + +.fadeOutLeftBig { + -webkit-animation-name: fadeOutLeftBig; + animation-name: fadeOutLeftBig; +} + +@-webkit-keyframes fadeOutRight { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +@keyframes fadeOutRight { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +.fadeOutRight { + -webkit-animation-name: fadeOutRight; + animation-name: fadeOutRight; +} + +@-webkit-keyframes fadeOutRightBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +@keyframes fadeOutRightBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(2000px, 0, 0); + transform: translate3d(2000px, 0, 0); + } +} + +.fadeOutRightBig { + -webkit-animation-name: fadeOutRightBig; + animation-name: fadeOutRightBig; +} + +@-webkit-keyframes fadeOutUp { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +@keyframes fadeOutUp { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +.fadeOutUp { + -webkit-animation-name: fadeOutUp; + animation-name: fadeOutUp; +} + +@-webkit-keyframes fadeOutUpBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +@keyframes fadeOutUpBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(0, -2000px, 0); + transform: translate3d(0, -2000px, 0); + } +} + +.fadeOutUpBig { + -webkit-animation-name: fadeOutUpBig; + animation-name: fadeOutUpBig; +} + +@-webkit-keyframes flip { + 0% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 40% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 80% { + -webkit-transform: perspective(400px) scale3d(.95, .95, .95); + transform: perspective(400px) scale3d(.95, .95, .95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 100% { + -webkit-transform: perspective(400px); + transform: perspective(400px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} + +@keyframes flip { + 0% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 40% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 80% { + -webkit-transform: perspective(400px) scale3d(.95, .95, .95); + transform: perspective(400px) scale3d(.95, .95, .95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 100% { + -webkit-transform: perspective(400px); + transform: perspective(400px); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } +} + +.animated.flip { + -webkit-backface-visibility: visible; + backface-visibility: visible; + -webkit-animation-name: flip; + animation-name: flip; +} + +@-webkit-keyframes flipInX { + 0% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-transition-timing-function: ease-in; + transition-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-transition-timing-function: ease-in; + transition-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + } + + 100% { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +@keyframes flipInX { + 0% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + -webkit-transition-timing-function: ease-in; + transition-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + -webkit-transition-timing-function: ease-in; + transition-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + } + + 100% { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +.flipInX { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInX; + animation-name: flipInX; +} + +@-webkit-keyframes flipInY { + 0% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-transition-timing-function: ease-in; + transition-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-transition-timing-function: ease-in; + transition-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + } + + 100% { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +@keyframes flipInY { + 0% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + -webkit-transition-timing-function: ease-in; + transition-timing-function: ease-in; + opacity: 0; + } + + 40% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + -webkit-transition-timing-function: ease-in; + transition-timing-function: ease-in; + } + + 60% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; + } + + 80% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + } + + 100% { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +.flipInY { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipInY; + animation-name: flipInY; +} + +@-webkit-keyframes flipOutX { + 0% { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; + } + + 100% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; + } +} + +@keyframes flipOutX { + 0% { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; + } + + 100% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; + } +} + +.flipOutX { + -webkit-animation-name: flipOutX; + animation-name: flipOutX; + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; +} + +@-webkit-keyframes flipOutY { + 0% { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; + } + + 100% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; + } +} + +@keyframes flipOutY { + 0% { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + + 30% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; + } + + 100% { + -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; + } +} + +.flipOutY { + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; + -webkit-animation-name: flipOutY; + animation-name: flipOutY; +} + +@-webkit-keyframes lightSpeedIn { + 0% { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + opacity: 1; + } + + 100% { + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes lightSpeedIn { + 0% { + -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; + } + + 60% { + -webkit-transform: skewX(20deg); + transform: skewX(20deg); + opacity: 1; + } + + 80% { + -webkit-transform: skewX(-5deg); + transform: skewX(-5deg); + opacity: 1; + } + + 100% { + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.lightSpeedIn { + -webkit-animation-name: lightSpeedIn; + animation-name: lightSpeedIn; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; +} + +@-webkit-keyframes lightSpeedOut { + 0% { + opacity: 1; + } + + 100% { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; + } +} + +@keyframes lightSpeedOut { + 0% { + opacity: 1; + } + + 100% { + -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; + } +} + +.lightSpeedOut { + -webkit-animation-name: lightSpeedOut; + animation-name: lightSpeedOut; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; +} + +@-webkit-keyframes rotateIn { + 0% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; + } + + 100% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes rotateIn { + 0% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, -200deg); + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; + } + + 100% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.rotateIn { + -webkit-animation-name: rotateIn; + animation-name: rotateIn; +} + +@-webkit-keyframes rotateInDownLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } + + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes rotateInDownLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } + + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.rotateInDownLeft { + -webkit-animation-name: rotateInDownLeft; + animation-name: rotateInDownLeft; +} + +@-webkit-keyframes rotateInDownRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes rotateInDownRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.rotateInDownRight { + -webkit-animation-name: rotateInDownRight; + animation-name: rotateInDownRight; +} + +@-webkit-keyframes rotateInUpLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes rotateInUpLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.rotateInUpLeft { + -webkit-animation-name: rotateInUpLeft; + animation-name: rotateInUpLeft; +} + +@-webkit-keyframes rotateInUpRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; + } + + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +@keyframes rotateInUpRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -90deg); + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; + } + + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: none; + transform: none; + opacity: 1; + } +} + +.rotateInUpRight { + -webkit-animation-name: rotateInUpRight; + animation-name: rotateInUpRight; +} + +@-webkit-keyframes rotateOut { + 0% { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1; + } + + 100% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; + } +} + +@keyframes rotateOut { + 0% { + -webkit-transform-origin: center; + transform-origin: center; + opacity: 1; + } + + 100% { + -webkit-transform-origin: center; + transform-origin: center; + -webkit-transform: rotate3d(0, 0, 1, 200deg); + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; + } +} + +.rotateOut { + -webkit-animation-name: rotateOut; + animation-name: rotateOut; +} + +@-webkit-keyframes rotateOutDownLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } +} + +@keyframes rotateOutDownLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, 45deg); + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } +} + +.rotateOutDownLeft { + -webkit-animation-name: rotateOutDownLeft; + animation-name: rotateOutDownLeft; +} + +@-webkit-keyframes rotateOutDownRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +@keyframes rotateOutDownRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +.rotateOutDownRight { + -webkit-animation-name: rotateOutDownRight; + animation-name: rotateOutDownRight; +} + +@-webkit-keyframes rotateOutUpLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +@keyframes rotateOutUpLeft { + 0% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + opacity: 1; + } + + 100% { + -webkit-transform-origin: left bottom; + transform-origin: left bottom; + -webkit-transform: rotate3d(0, 0, 1, -45deg); + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +.rotateOutUpLeft { + -webkit-animation-name: rotateOutUpLeft; + animation-name: rotateOutUpLeft; +} + +@-webkit-keyframes rotateOutUpRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; + } +} + +@keyframes rotateOutUpRight { + 0% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + opacity: 1; + } + + 100% { + -webkit-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate3d(0, 0, 1, 90deg); + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; + } +} + +.rotateOutUpRight { + -webkit-animation-name: rotateOutUpRight; + animation-name: rotateOutUpRight; +} + +@-webkit-keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 20%, 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 40%, 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + + 100% { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; + } +} + +@keyframes hinge { + 0% { + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 20%, 60% { + -webkit-transform: rotate3d(0, 0, 1, 80deg); + transform: rotate3d(0, 0, 1, 80deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + } + + 40%, 80% { + -webkit-transform: rotate3d(0, 0, 1, 60deg); + transform: rotate3d(0, 0, 1, 60deg); + -webkit-transform-origin: top left; + transform-origin: top left; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; + opacity: 1; + } + + 100% { + -webkit-transform: translate3d(0, 700px, 0); + transform: translate3d(0, 700px, 0); + opacity: 0; + } +} + +.hinge { + -webkit-animation-name: hinge; + animation-name: hinge; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes rollIn { + 0% { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +@keyframes rollIn { + 0% { + opacity: 0; + -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + } + + 100% { + opacity: 1; + -webkit-transform: none; + transform: none; + } +} + +.rollIn { + -webkit-animation-name: rollIn; + animation-name: rollIn; +} + +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@-webkit-keyframes rollOut { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + } +} + +@keyframes rollOut { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + } +} + +.rollOut { + -webkit-animation-name: rollOut; + animation-name: rollOut; +} + +@-webkit-keyframes zoomIn { + 0% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + 50% { + opacity: 1; + } +} + +@keyframes zoomIn { + 0% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + 50% { + opacity: 1; + } +} + +.zoomIn { + -webkit-animation-name: zoomIn; + animation-name: zoomIn; +} + +@-webkit-keyframes zoomInDown { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomInDown { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInDown { + -webkit-animation-name: zoomInDown; + animation-name: zoomInDown; +} + +@-webkit-keyframes zoomInLeft { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomInLeft { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInLeft { + -webkit-animation-name: zoomInLeft; + animation-name: zoomInLeft; +} + +@-webkit-keyframes zoomInRight { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomInRight { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInRight { + -webkit-animation-name: zoomInRight; + animation-name: zoomInRight; +} + +@-webkit-keyframes zoomInUp { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomInUp { + 0% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInUp { + -webkit-animation-name: zoomInUp; + animation-name: zoomInUp; +} + +@-webkit-keyframes zoomOut { + 0% { + opacity: 1; + } + + 50% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + 100% { + opacity: 0; + } +} + +@keyframes zoomOut { + 0% { + opacity: 1; + } + + 50% { + opacity: 0; + -webkit-transform: scale3d(.3, .3, .3); + transform: scale3d(.3, .3, .3); + } + + 100% { + opacity: 0; + } +} + +.zoomOut { + -webkit-animation-name: zoomOut; + animation-name: zoomOut; +} + +@-webkit-keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 100% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomOutDown { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 100% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomOutDown { + -webkit-animation-name: zoomOutDown; + animation-name: zoomOutDown; +} + +@-webkit-keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); + } + + 100% { + opacity: 0; + -webkit-transform: scale(.1) translate3d(-2000px, 0, 0); + transform: scale(.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center; + } +} + +@keyframes zoomOutLeft { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); + } + + 100% { + opacity: 0; + -webkit-transform: scale(.1) translate3d(-2000px, 0, 0); + transform: scale(.1) translate3d(-2000px, 0, 0); + -webkit-transform-origin: left center; + transform-origin: left center; + } +} + +.zoomOutLeft { + -webkit-animation-name: zoomOutLeft; + animation-name: zoomOutLeft; +} + +@-webkit-keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); + } + + 100% { + opacity: 0; + -webkit-transform: scale(.1) translate3d(2000px, 0, 0); + transform: scale(.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center; + } +} + +@keyframes zoomOutRight { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); + transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); + } + + 100% { + opacity: 0; + -webkit-transform: scale(.1) translate3d(2000px, 0, 0); + transform: scale(.1) translate3d(2000px, 0, 0); + -webkit-transform-origin: right center; + transform-origin: right center; + } +} + +.zoomOutRight { + -webkit-animation-name: zoomOutRight; + animation-name: zoomOutRight; +} + +@-webkit-keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 100% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +@keyframes zoomOutUp { + 40% { + opacity: 1; + -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 100% { + opacity: 0; + -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + -webkit-transform-origin: center bottom; + transform-origin: center bottom; + -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomOutUp { + -webkit-animation-name: zoomOutUp; + animation-name: zoomOutUp; +} + +@-webkit-keyframes slideInDown { + 0% { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInDown { + 0% { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInDown { + -webkit-animation-name: slideInDown; + animation-name: slideInDown; +} + +@-webkit-keyframes slideInLeft { + 0% { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInLeft { + 0% { + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + visibility: visible; + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInLeft { + -webkit-animation-name: slideInLeft; + animation-name: slideInLeft; +} + +@-webkit-keyframes slideInRight { + 0% { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInRight { + 0% { + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + visibility: visible; + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInRight { + -webkit-animation-name: slideInRight; + animation-name: slideInRight; +} + +@-webkit-keyframes slideInUp { + 0% { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInUp { + 0% { + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +.slideInUp { + -webkit-animation-name: slideInUp; + animation-name: slideInUp; +} + +@-webkit-keyframes slideOutDown { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +@keyframes slideOutDown { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); + } +} + +.slideOutDown { + -webkit-animation-name: slideOutDown; + animation-name: slideOutDown; +} + +@-webkit-keyframes slideOutLeft { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +@keyframes slideOutLeft { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } +} + +.slideOutLeft { + -webkit-animation-name: slideOutLeft; + animation-name: slideOutLeft; +} + +@-webkit-keyframes slideOutRight { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +@keyframes slideOutRight { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } +} + +.slideOutRight { + -webkit-animation-name: slideOutRight; + animation-name: slideOutRight; +} + +@-webkit-keyframes slideOutUp { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +@keyframes slideOutUp { + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + } +} + +.slideOutUp { + -webkit-animation-name: slideOutUp; + animation-name: slideOutUp; +} \ No newline at end of file diff --git a/fast-api/bower_components/animate.css/animate.min.css b/fast-api/bower_components/animate.css/animate.min.css new file mode 100755 index 0000000..8d97527 --- /dev/null +++ b/fast-api/bower_components/animate.css/animate.min.css @@ -0,0 +1,6 @@ +@charset "UTF-8";/*! +Animate.css - http://daneden.me/animate +Licensed under the MIT license - http://opensource.org/licenses/MIT + +Copyright (c) 2015 Daniel Eden +*/.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.hinge{-webkit-animation-duration:2s;animation-duration:2s}.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s}@-webkit-keyframes bounce{0%,100%,20%,53%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{0%,100%,20%,53%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-transition-timing-function:cubic-bezier(0.755,.050,.855,.060);transition-timing-function:cubic-bezier(0.755,.050,.855,.060);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes pulse{0%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{0%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(0.75,1.25,1);transform:scale3d(0.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes rubberBand{0%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%{-webkit-transform:scale3d(0.75,1.25,1);transform:scale3d(0.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}65%{-webkit-transform:scale3d(.95,1.05,1);transform:scale3d(.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,.95,1);transform:scale3d(1.05,.95,1)}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{0%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{0%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}100%{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}100%{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{0%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);transform:scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}100%{-webkit-transform:none;transform:none}}@keyframes wobble{0%{-webkit-transform:none;transform:none}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}100%{-webkit-transform:none;transform:none}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes bounceIn{0%,100%,20%,40%,60%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{0%,100%,20%,40%,60%,80%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}100%{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bounceIn{-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}@keyframes bounceInDown{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}100%{-webkit-transform:none;transform:none}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes bounceInLeft{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes bounceInRight{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}100%{-webkit-transform:none;transform:none}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(0.215,.61,.355,1);transition-timing-function:cubic-bezier(0.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}100%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}.bounceOut{-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInDownBig{0%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInLeftBig{0%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{0%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpBig{0%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{0%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-360deg);transform:perspective(400px) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(.95,.95,.95);transform:perspective(400px) scale3d(.95,.95,.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}100%{-webkit-transform:perspective(400px);transform:perspective(400px);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}100%{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{0%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}100%{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}100%{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{0%{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}100%{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}100%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}100%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.flipOutX{-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}100%{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}100%{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.flipOutY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}100%{-webkit-transform:none;transform:none;opacity:1}}@keyframes lightSpeedIn{0%{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg);opacity:1}100%{-webkit-transform:none;transform:none;opacity:1}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{0%{opacity:1}100%{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{0%{opacity:1}100%{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}100%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateIn{0%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}100%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}@keyframes rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{0%{-webkit-transform-origin:center;transform-origin:center;opacity:1}100%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{0%{-webkit-transform-origin:center;transform-origin:center;opacity:1}100%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}100%{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes rollIn{0%{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}100%{opacity:1;-webkit-transform:none;transform:none}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInDown{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInLeft{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(10px,0,0);transform:scale3d(.475,.475,.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInRight{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomInUp{0%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}60%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}100%{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}100%{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}100%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}100%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}100%{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(42px,0,0);transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}100%{opacity:0;-webkit-transform:scale(.1) translate3d(-2000px,0,0);transform:scale(.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}100%{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(-42px,0,0);transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}100%{opacity:0;-webkit-transform:scale(.1) translate3d(2000px,0,0);transform:scale(.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}100%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(.475,.475,.475) translate3d(0,60px,0);transform:scale3d(.475,.475,.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,.055,.675,.19);animation-timing-function:cubic-bezier(0.55,.055,.675,.19)}100%{opacity:0;-webkit-transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,.885,.32,1);animation-timing-function:cubic-bezier(0.175,.885,.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{0%{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{0%{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}100%{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}100%{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}100%{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}100%{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}100%{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}100%{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}100%{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}100%{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp} \ No newline at end of file diff --git a/fast-api/bower_components/animate.css/bower.json b/fast-api/bower_components/animate.css/bower.json new file mode 100644 index 0000000..e04ecf0 --- /dev/null +++ b/fast-api/bower_components/animate.css/bower.json @@ -0,0 +1,13 @@ +{ + "name": "animate.css", + "version": "3.2.6", + "main": "./animate.css", + "ignore": [ + ".*", + "src", + "*.yml", + "Gemfile", + "Gemfile.lock", + "*.md" + ] +} diff --git a/fast-api/bower_components/animate.css/package.json b/fast-api/bower_components/animate.css/package.json new file mode 100644 index 0000000..86a185a --- /dev/null +++ b/fast-api/bower_components/animate.css/package.json @@ -0,0 +1,19 @@ +{ + "name": "animate.css", + "version": "3.2.6", + "repository": { + "type": "git", + "url": "https://github.com/daneden/animate.css.git" + }, + "devDependencies": { + "grunt": "~0.4.1", + "grunt-autoprefixer": "~0.4.0", + "grunt-contrib-watch": "~0.5.3", + "grunt-contrib-concat": "~0.3.0", + "grunt-contrib-cssmin": "~0.8.0", + "load-grunt-tasks": "~0.2.0" + }, + "spm": { + "main": "./animate.css" + } +} diff --git a/fast-api/bower_components/animate.css/source/_base.css b/fast-api/bower_components/animate.css/source/_base.css new file mode 100644 index 0000000..05bf646 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/_base.css @@ -0,0 +1,30 @@ +@charset "UTF-8"; +/*! +Animate.css - http://daneden.me/animate +Licensed under the MIT license - http://opensource.org/licenses/MIT + +Copyright (c) 2015 Daniel Eden +*/ + +.animated { + animation-duration: 1s; + animation-fill-mode: both; +} + +.animated.infinite { + animation-iteration-count: infinite; +} + +.animated.hinge { + animation-duration: 2s; +} + +.animated.bounceIn, +.animated.bounceOut { + animation-duration: .75s; +} + +.animated.flipOutX, +.animated.flipOutY { + animation-duration: .75s; +} diff --git a/fast-api/bower_components/animate.css/source/attention_seekers/bounce.css b/fast-api/bower_components/animate.css/source/attention_seekers/bounce.css new file mode 100644 index 0000000..6c37ff8 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/attention_seekers/bounce.css @@ -0,0 +1,25 @@ +@keyframes bounce { + 0%, 20%, 53%, 80%, 100% { + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + transform: translate3d(0,0,0); + } + + 40%, 43% { + transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + transform: translate3d(0, -30px, 0); + } + + 70% { + transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060); + transform: translate3d(0, -15px, 0); + } + + 90% { + transform: translate3d(0,-4px,0); + } +} + +.bounce { + animation-name: bounce; + transform-origin: center bottom; +} diff --git a/fast-api/bower_components/animate.css/source/attention_seekers/flash.css b/fast-api/bower_components/animate.css/source/attention_seekers/flash.css new file mode 100644 index 0000000..b41036a --- /dev/null +++ b/fast-api/bower_components/animate.css/source/attention_seekers/flash.css @@ -0,0 +1,13 @@ +@keyframes flash { + 0%, 50%, 100% { + opacity: 1; + } + + 25%, 75% { + opacity: 0; + } +} + +.flash { + animation-name: flash; +} diff --git a/fast-api/bower_components/animate.css/source/attention_seekers/pulse.css b/fast-api/bower_components/animate.css/source/attention_seekers/pulse.css new file mode 100644 index 0000000..8591205 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/attention_seekers/pulse.css @@ -0,0 +1,19 @@ +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@keyframes pulse { + 0% { + transform: scale3d(1, 1, 1); + } + + 50% { + transform: scale3d(1.05, 1.05, 1.05); + } + + 100% { + transform: scale3d(1, 1, 1); + } +} + +.pulse { + animation-name: pulse; +} diff --git a/fast-api/bower_components/animate.css/source/attention_seekers/rubberBand.css b/fast-api/bower_components/animate.css/source/attention_seekers/rubberBand.css new file mode 100644 index 0000000..25f44d6 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/attention_seekers/rubberBand.css @@ -0,0 +1,33 @@ +@keyframes rubberBand { + 0% { + transform: scale3d(1, 1, 1); + } + + 30% { + transform: scale3d(1.25, 0.75, 1); + } + + 40% { + transform: scale3d(0.75, 1.25, 1); + } + + 50% { + transform: scale3d(1.15, 0.85, 1); + } + + 65% { + transform: scale3d(.95, 1.05, 1); + } + + 75% { + transform: scale3d(1.05, .95, 1); + } + + 100% { + transform: scale3d(1, 1, 1); + } +} + +.rubberBand { + animation-name: rubberBand; +} diff --git a/fast-api/bower_components/animate.css/source/attention_seekers/shake.css b/fast-api/bower_components/animate.css/source/attention_seekers/shake.css new file mode 100644 index 0000000..24a5766 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/attention_seekers/shake.css @@ -0,0 +1,17 @@ +@keyframes shake { + 0%, 100% { + transform: translate3d(0, 0, 0); + } + + 10%, 30%, 50%, 70%, 90% { + transform: translate3d(-10px, 0, 0); + } + + 20%, 40%, 60%, 80% { + transform: translate3d(10px, 0, 0); + } +} + +.shake { + animation-name: shake; +} diff --git a/fast-api/bower_components/animate.css/source/attention_seekers/swing.css b/fast-api/bower_components/animate.css/source/attention_seekers/swing.css new file mode 100644 index 0000000..ce6a211 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/attention_seekers/swing.css @@ -0,0 +1,26 @@ +@keyframes swing { + 20% { + transform: rotate3d(0, 0, 1, 15deg); + } + + 40% { + transform: rotate3d(0, 0, 1, -10deg); + } + + 60% { + transform: rotate3d(0, 0, 1, 5deg); + } + + 80% { + transform: rotate3d(0, 0, 1, -5deg); + } + + 100% { + transform: rotate3d(0, 0, 1, 0deg); + } +} + +.swing { + transform-origin: top center; + animation-name: swing; +} diff --git a/fast-api/bower_components/animate.css/source/attention_seekers/tada.css b/fast-api/bower_components/animate.css/source/attention_seekers/tada.css new file mode 100644 index 0000000..511ba4e --- /dev/null +++ b/fast-api/bower_components/animate.css/source/attention_seekers/tada.css @@ -0,0 +1,25 @@ +@keyframes tada { + 0% { + transform: scale3d(1, 1, 1); + } + + 10%, 20% { + transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); + } + + 30%, 50%, 70%, 90% { + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); + } + + 40%, 60%, 80% { + transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); + } + + 100% { + transform: scale3d(1, 1, 1); + } +} + +.tada { + animation-name: tada; +} diff --git a/fast-api/bower_components/animate.css/source/attention_seekers/wobble.css b/fast-api/bower_components/animate.css/source/attention_seekers/wobble.css new file mode 100644 index 0000000..5a653a3 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/attention_seekers/wobble.css @@ -0,0 +1,35 @@ +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@keyframes wobble { + 0% { + transform: none; + } + + 15% { + transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); + } + + 30% { + transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); + } + + 45% { + transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); + } + + 60% { + transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); + } + + 75% { + transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); + } + + 100% { + transform: none; + } +} + +.wobble { + animation-name: wobble; +} diff --git a/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceIn.css b/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceIn.css new file mode 100644 index 0000000..1e893e7 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceIn.css @@ -0,0 +1,36 @@ +@keyframes bounceIn { + 0%, 20%, 40%, 60%, 80%, 100% { + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + transform: scale3d(.3, .3, .3); + } + + 20% { + transform: scale3d(1.1, 1.1, 1.1); + } + + 40% { + transform: scale3d(.9, .9, .9); + } + + 60% { + opacity: 1; + transform: scale3d(1.03, 1.03, 1.03); + } + + 80% { + transform: scale3d(.97, .97, .97); + } + + 100% { + opacity: 1; + transform: scale3d(1, 1, 1); + } +} + +.bounceIn { + animation-name: bounceIn; +} diff --git a/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInDown.css b/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInDown.css new file mode 100644 index 0000000..34269e7 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInDown.css @@ -0,0 +1,31 @@ +@keyframes bounceInDown { + 0%, 60%, 75%, 90%, 100% { + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + transform: translate3d(0, -3000px, 0); + } + + 60% { + opacity: 1; + transform: translate3d(0, 25px, 0); + } + + 75% { + transform: translate3d(0, -10px, 0); + } + + 90% { + transform: translate3d(0, 5px, 0); + } + + 100% { + transform: none; + } +} + +.bounceInDown { + animation-name: bounceInDown; +} diff --git a/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInLeft.css b/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInLeft.css new file mode 100644 index 0000000..56fff9c --- /dev/null +++ b/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInLeft.css @@ -0,0 +1,31 @@ +@keyframes bounceInLeft { + 0%, 60%, 75%, 90%, 100% { + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + transform: translate3d(-3000px, 0, 0); + } + + 60% { + opacity: 1; + transform: translate3d(25px, 0, 0); + } + + 75% { + transform: translate3d(-10px, 0, 0); + } + + 90% { + transform: translate3d(5px, 0, 0); + } + + 100% { + transform: none; + } +} + +.bounceInLeft { + animation-name: bounceInLeft; +} diff --git a/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInRight.css b/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInRight.css new file mode 100644 index 0000000..816b1fb --- /dev/null +++ b/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInRight.css @@ -0,0 +1,31 @@ +@keyframes bounceInRight { + 0%, 60%, 75%, 90%, 100% { + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + transform: translate3d(3000px, 0, 0); + } + + 60% { + opacity: 1; + transform: translate3d(-25px, 0, 0); + } + + 75% { + transform: translate3d(10px, 0, 0); + } + + 90% { + transform: translate3d(-5px, 0, 0); + } + + 100% { + transform: none; + } +} + +.bounceInRight { + animation-name: bounceInRight; +} diff --git a/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInUp.css b/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInUp.css new file mode 100644 index 0000000..8a42889 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/bouncing_entrances/bounceInUp.css @@ -0,0 +1,31 @@ +@keyframes bounceInUp { + 0%, 60%, 75%, 90%, 100% { + transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); + } + + 0% { + opacity: 0; + transform: translate3d(0, 3000px, 0); + } + + 60% { + opacity: 1; + transform: translate3d(0, -20px, 0); + } + + 75% { + transform: translate3d(0, 10px, 0); + } + + 90% { + transform: translate3d(0, -5px, 0); + } + + 100% { + transform: translate3d(0, 0, 0); + } +} + +.bounceInUp { + animation-name: bounceInUp; +} diff --git a/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOut.css b/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOut.css new file mode 100644 index 0000000..dfb6445 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOut.css @@ -0,0 +1,19 @@ +@keyframes bounceOut { + 20% { + transform: scale3d(.9, .9, .9); + } + + 50%, 55% { + opacity: 1; + transform: scale3d(1.1, 1.1, 1.1); + } + + 100% { + opacity: 0; + transform: scale3d(.3, .3, .3); + } +} + +.bounceOut { + animation-name: bounceOut; +} diff --git a/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutDown.css b/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutDown.css new file mode 100644 index 0000000..c9766ca --- /dev/null +++ b/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutDown.css @@ -0,0 +1,19 @@ +@keyframes bounceOutDown { + 20% { + transform: translate3d(0, 10px, 0); + } + + 40%, 45% { + opacity: 1; + transform: translate3d(0, -20px, 0); + } + + 100% { + opacity: 0; + transform: translate3d(0, 2000px, 0); + } +} + +.bounceOutDown { + animation-name: bounceOutDown; +} diff --git a/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutLeft.css b/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutLeft.css new file mode 100644 index 0000000..5c6bef1 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutLeft.css @@ -0,0 +1,15 @@ +@keyframes bounceOutLeft { + 20% { + opacity: 1; + transform: translate3d(20px, 0, 0); + } + + 100% { + opacity: 0; + transform: translate3d(-2000px, 0, 0); + } +} + +.bounceOutLeft { + animation-name: bounceOutLeft; +} diff --git a/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutRight.css b/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutRight.css new file mode 100644 index 0000000..70b1633 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutRight.css @@ -0,0 +1,15 @@ +@keyframes bounceOutRight { + 20% { + opacity: 1; + transform: translate3d(-20px, 0, 0); + } + + 100% { + opacity: 0; + transform: translate3d(2000px, 0, 0); + } +} + +.bounceOutRight { + animation-name: bounceOutRight; +} diff --git a/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutUp.css b/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutUp.css new file mode 100644 index 0000000..93af49c --- /dev/null +++ b/fast-api/bower_components/animate.css/source/bouncing_exits/bounceOutUp.css @@ -0,0 +1,19 @@ +@keyframes bounceOutUp { + 20% { + transform: translate3d(0, -10px, 0); + } + + 40%, 45% { + opacity: 1; + transform: translate3d(0, 20px, 0); + } + + 100% { + opacity: 0; + transform: translate3d(0, -2000px, 0); + } +} + +.bounceOutUp { + animation-name: bounceOutUp; +} diff --git a/fast-api/bower_components/animate.css/source/fading_entrances/fadeIn.css b/fast-api/bower_components/animate.css/source/fading_entrances/fadeIn.css new file mode 100644 index 0000000..eab85fc --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_entrances/fadeIn.css @@ -0,0 +1,8 @@ +@keyframes fadeIn { + 0% {opacity: 0;} + 100% {opacity: 1;} +} + +.fadeIn { + animation-name: fadeIn; +} diff --git a/fast-api/bower_components/animate.css/source/fading_entrances/fadeInDown.css b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInDown.css new file mode 100644 index 0000000..100c195 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInDown.css @@ -0,0 +1,15 @@ +@keyframes fadeInDown { + 0% { + opacity: 0; + transform: translate3d(0, -100%, 0); + } + + 100% { + opacity: 1; + transform: none; + } +} + +.fadeInDown { + animation-name: fadeInDown; +} diff --git a/fast-api/bower_components/animate.css/source/fading_entrances/fadeInDownBig.css b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInDownBig.css new file mode 100644 index 0000000..222fd89 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInDownBig.css @@ -0,0 +1,15 @@ +@keyframes fadeInDownBig { + 0% { + opacity: 0; + transform: translate3d(0, -2000px, 0); + } + + 100% { + opacity: 1; + transform: none; + } +} + +.fadeInDownBig { + animation-name: fadeInDownBig; +} diff --git a/fast-api/bower_components/animate.css/source/fading_entrances/fadeInLeft.css b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInLeft.css new file mode 100644 index 0000000..294a50e --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInLeft.css @@ -0,0 +1,15 @@ +@keyframes fadeInLeft { + 0% { + opacity: 0; + transform: translate3d(-100%, 0, 0); + } + + 100% { + opacity: 1; + transform: none; + } +} + +.fadeInLeft { + animation-name: fadeInLeft; +} diff --git a/fast-api/bower_components/animate.css/source/fading_entrances/fadeInLeftBig.css b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInLeftBig.css new file mode 100644 index 0000000..fa580e9 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInLeftBig.css @@ -0,0 +1,15 @@ +@keyframes fadeInLeftBig { + 0% { + opacity: 0; + transform: translate3d(-2000px, 0, 0); + } + + 100% { + opacity: 1; + transform: none; + } +} + +.fadeInLeftBig { + animation-name: fadeInLeftBig; +} diff --git a/fast-api/bower_components/animate.css/source/fading_entrances/fadeInRight.css b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInRight.css new file mode 100644 index 0000000..ce1bbbf --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInRight.css @@ -0,0 +1,15 @@ +@keyframes fadeInRight { + 0% { + opacity: 0; + transform: translate3d(100%, 0, 0); + } + + 100% { + opacity: 1; + transform: none; + } +} + +.fadeInRight { + animation-name: fadeInRight; +} diff --git a/fast-api/bower_components/animate.css/source/fading_entrances/fadeInRightBig.css b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInRightBig.css new file mode 100644 index 0000000..deabf19 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInRightBig.css @@ -0,0 +1,15 @@ +@keyframes fadeInRightBig { + 0% { + opacity: 0; + transform: translate3d(2000px, 0, 0); + } + + 100% { + opacity: 1; + transform: none; + } +} + +.fadeInRightBig { + animation-name: fadeInRightBig; +} diff --git a/fast-api/bower_components/animate.css/source/fading_entrances/fadeInUp.css b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInUp.css new file mode 100644 index 0000000..1094129 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInUp.css @@ -0,0 +1,15 @@ +@keyframes fadeInUp { + 0% { + opacity: 0; + transform: translate3d(0, 100%, 0); + } + + 100% { + opacity: 1; + transform: none; + } +} + +.fadeInUp { + animation-name: fadeInUp; +} diff --git a/fast-api/bower_components/animate.css/source/fading_entrances/fadeInUpBig.css b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInUpBig.css new file mode 100644 index 0000000..20a0c10 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_entrances/fadeInUpBig.css @@ -0,0 +1,15 @@ +@keyframes fadeInUpBig { + 0% { + opacity: 0; + transform: translate3d(0, 2000px, 0); + } + + 100% { + opacity: 1; + transform: none; + } +} + +.fadeInUpBig { + animation-name: fadeInUpBig; +} diff --git a/fast-api/bower_components/animate.css/source/fading_exits/fadeOut.css b/fast-api/bower_components/animate.css/source/fading_exits/fadeOut.css new file mode 100644 index 0000000..aef78c1 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_exits/fadeOut.css @@ -0,0 +1,8 @@ +@keyframes fadeOut { + 0% {opacity: 1;} + 100% {opacity: 0;} +} + +.fadeOut { + animation-name: fadeOut; +} diff --git a/fast-api/bower_components/animate.css/source/fading_exits/fadeOutDown.css b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutDown.css new file mode 100644 index 0000000..e5daaec --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutDown.css @@ -0,0 +1,14 @@ +@keyframes fadeOutDown { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + transform: translate3d(0, 100%, 0); + } +} + +.fadeOutDown { + animation-name: fadeOutDown; +} diff --git a/fast-api/bower_components/animate.css/source/fading_exits/fadeOutDownBig.css b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutDownBig.css new file mode 100644 index 0000000..40ffc80 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutDownBig.css @@ -0,0 +1,14 @@ +@keyframes fadeOutDownBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + transform: translate3d(0, 2000px, 0); + } +} + +.fadeOutDownBig { + animation-name: fadeOutDownBig; +} diff --git a/fast-api/bower_components/animate.css/source/fading_exits/fadeOutLeft.css b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutLeft.css new file mode 100644 index 0000000..349c900 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutLeft.css @@ -0,0 +1,14 @@ +@keyframes fadeOutLeft { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + transform: translate3d(-100%, 0, 0); + } +} + +.fadeOutLeft { + animation-name: fadeOutLeft; +} diff --git a/fast-api/bower_components/animate.css/source/fading_exits/fadeOutLeftBig.css b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutLeftBig.css new file mode 100644 index 0000000..4d7aa62 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutLeftBig.css @@ -0,0 +1,14 @@ +@keyframes fadeOutLeftBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + transform: translate3d(-2000px, 0, 0); + } +} + +.fadeOutLeftBig { + animation-name: fadeOutLeftBig; +} diff --git a/fast-api/bower_components/animate.css/source/fading_exits/fadeOutRight.css b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutRight.css new file mode 100644 index 0000000..687df49 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutRight.css @@ -0,0 +1,14 @@ +@keyframes fadeOutRight { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + transform: translate3d(100%, 0, 0); + } +} + +.fadeOutRight { + animation-name: fadeOutRight; +} diff --git a/fast-api/bower_components/animate.css/source/fading_exits/fadeOutRightBig.css b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutRightBig.css new file mode 100644 index 0000000..2a0f8ab --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutRightBig.css @@ -0,0 +1,14 @@ +@keyframes fadeOutRightBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + transform: translate3d(2000px, 0, 0); + } +} + +.fadeOutRightBig { + animation-name: fadeOutRightBig; +} diff --git a/fast-api/bower_components/animate.css/source/fading_exits/fadeOutUp.css b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutUp.css new file mode 100644 index 0000000..d07d68e --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutUp.css @@ -0,0 +1,14 @@ +@keyframes fadeOutUp { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + transform: translate3d(0, -100%, 0); + } +} + +.fadeOutUp { + animation-name: fadeOutUp; +} diff --git a/fast-api/bower_components/animate.css/source/fading_exits/fadeOutUpBig.css b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutUpBig.css new file mode 100644 index 0000000..4408b5d --- /dev/null +++ b/fast-api/bower_components/animate.css/source/fading_exits/fadeOutUpBig.css @@ -0,0 +1,14 @@ +@keyframes fadeOutUpBig { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + transform: translate3d(0, -2000px, 0); + } +} + +.fadeOutUpBig { + animation-name: fadeOutUpBig; +} diff --git a/fast-api/bower_components/animate.css/source/flippers/flip.css b/fast-api/bower_components/animate.css/source/flippers/flip.css new file mode 100644 index 0000000..297c23b --- /dev/null +++ b/fast-api/bower_components/animate.css/source/flippers/flip.css @@ -0,0 +1,31 @@ +@keyframes flip { + 0% { + transform: perspective(400px) rotate3d(0, 1, 0, -360deg); + animation-timing-function: ease-out; + } + + 40% { + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg); + animation-timing-function: ease-out; + } + + 50% { + transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg); + animation-timing-function: ease-in; + } + + 80% { + transform: perspective(400px) scale3d(.95, .95, .95); + animation-timing-function: ease-in; + } + + 100% { + transform: perspective(400px); + animation-timing-function: ease-in; + } +} + +.animated.flip { + backface-visibility: visible; + animation-name: flip; +} diff --git a/fast-api/bower_components/animate.css/source/flippers/flipInX.css b/fast-api/bower_components/animate.css/source/flippers/flipInX.css new file mode 100644 index 0000000..40ffa5a --- /dev/null +++ b/fast-api/bower_components/animate.css/source/flippers/flipInX.css @@ -0,0 +1,30 @@ +@keyframes flipInX { + 0% { + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + transition-timing-function: ease-in; + opacity: 0; + } + + 40% { + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + transition-timing-function: ease-in; + } + + 60% { + transform: perspective(400px) rotate3d(1, 0, 0, 10deg); + opacity: 1; + } + + 80% { + transform: perspective(400px) rotate3d(1, 0, 0, -5deg); + } + + 100% { + transform: perspective(400px); + } +} + +.flipInX { + backface-visibility: visible !important; + animation-name: flipInX; +} diff --git a/fast-api/bower_components/animate.css/source/flippers/flipInY.css b/fast-api/bower_components/animate.css/source/flippers/flipInY.css new file mode 100644 index 0000000..696b565 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/flippers/flipInY.css @@ -0,0 +1,30 @@ +@keyframes flipInY { + 0% { + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + transition-timing-function: ease-in; + opacity: 0; + } + + 40% { + transform: perspective(400px) rotate3d(0, 1, 0, -20deg); + transition-timing-function: ease-in; + } + + 60% { + transform: perspective(400px) rotate3d(0, 1, 0, 10deg); + opacity: 1; + } + + 80% { + transform: perspective(400px) rotate3d(0, 1, 0, -5deg); + } + + 100% { + transform: perspective(400px); + } +} + +.flipInY { + backface-visibility: visible !important; + animation-name: flipInY; +} diff --git a/fast-api/bower_components/animate.css/source/flippers/flipOutX.css b/fast-api/bower_components/animate.css/source/flippers/flipOutX.css new file mode 100644 index 0000000..dbbdba5 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/flippers/flipOutX.css @@ -0,0 +1,20 @@ +@keyframes flipOutX { + 0% { + transform: perspective(400px); + } + + 30% { + transform: perspective(400px) rotate3d(1, 0, 0, -20deg); + opacity: 1; + } + + 100% { + transform: perspective(400px) rotate3d(1, 0, 0, 90deg); + opacity: 0; + } +} + +.flipOutX { + animation-name: flipOutX; + backface-visibility: visible !important; +} diff --git a/fast-api/bower_components/animate.css/source/flippers/flipOutY.css b/fast-api/bower_components/animate.css/source/flippers/flipOutY.css new file mode 100644 index 0000000..1238b0c --- /dev/null +++ b/fast-api/bower_components/animate.css/source/flippers/flipOutY.css @@ -0,0 +1,20 @@ +@keyframes flipOutY { + 0% { + transform: perspective(400px); + } + + 30% { + transform: perspective(400px) rotate3d(0, 1, 0, -15deg); + opacity: 1; + } + + 100% { + transform: perspective(400px) rotate3d(0, 1, 0, 90deg); + opacity: 0; + } +} + +.flipOutY { + backface-visibility: visible !important; + animation-name: flipOutY; +} diff --git a/fast-api/bower_components/animate.css/source/lightspeed/lightSpeedIn.css b/fast-api/bower_components/animate.css/source/lightspeed/lightSpeedIn.css new file mode 100644 index 0000000..be6497a --- /dev/null +++ b/fast-api/bower_components/animate.css/source/lightspeed/lightSpeedIn.css @@ -0,0 +1,26 @@ +@keyframes lightSpeedIn { + 0% { + transform: translate3d(100%, 0, 0) skewX(-30deg); + opacity: 0; + } + + 60% { + transform: skewX(20deg); + opacity: 1; + } + + 80% { + transform: skewX(-5deg); + opacity: 1; + } + + 100% { + transform: none; + opacity: 1; + } +} + +.lightSpeedIn { + animation-name: lightSpeedIn; + animation-timing-function: ease-out; +} diff --git a/fast-api/bower_components/animate.css/source/lightspeed/lightSpeedOut.css b/fast-api/bower_components/animate.css/source/lightspeed/lightSpeedOut.css new file mode 100644 index 0000000..d768746 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/lightspeed/lightSpeedOut.css @@ -0,0 +1,15 @@ +@keyframes lightSpeedOut { + 0% { + opacity: 1; + } + + 100% { + transform: translate3d(100%, 0, 0) skewX(30deg); + opacity: 0; + } +} + +.lightSpeedOut { + animation-name: lightSpeedOut; + animation-timing-function: ease-in; +} diff --git a/fast-api/bower_components/animate.css/source/rotating_entrances/rotateIn.css b/fast-api/bower_components/animate.css/source/rotating_entrances/rotateIn.css new file mode 100644 index 0000000..3003792 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/rotating_entrances/rotateIn.css @@ -0,0 +1,17 @@ +@keyframes rotateIn { + 0% { + transform-origin: center; + transform: rotate3d(0, 0, 1, -200deg); + opacity: 0; + } + + 100% { + transform-origin: center; + transform: none; + opacity: 1; + } +} + +.rotateIn { + animation-name: rotateIn; +} diff --git a/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInDownLeft.css b/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInDownLeft.css new file mode 100644 index 0000000..93b953b --- /dev/null +++ b/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInDownLeft.css @@ -0,0 +1,17 @@ +@keyframes rotateInDownLeft { + 0% { + transform-origin: left bottom; + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } + + 100% { + transform-origin: left bottom; + transform: none; + opacity: 1; + } +} + +.rotateInDownLeft { + animation-name: rotateInDownLeft; +} diff --git a/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInDownRight.css b/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInDownRight.css new file mode 100644 index 0000000..826a129 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInDownRight.css @@ -0,0 +1,17 @@ +@keyframes rotateInDownRight { + 0% { + transform-origin: right bottom; + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + 100% { + transform-origin: right bottom; + transform: none; + opacity: 1; + } +} + +.rotateInDownRight { + animation-name: rotateInDownRight; +} diff --git a/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInUpLeft.css b/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInUpLeft.css new file mode 100644 index 0000000..31d623e --- /dev/null +++ b/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInUpLeft.css @@ -0,0 +1,17 @@ +@keyframes rotateInUpLeft { + 0% { + transform-origin: left bottom; + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } + + 100% { + transform-origin: left bottom; + transform: none; + opacity: 1; + } +} + +.rotateInUpLeft { + animation-name: rotateInUpLeft; +} diff --git a/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInUpRight.css b/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInUpRight.css new file mode 100644 index 0000000..43004ad --- /dev/null +++ b/fast-api/bower_components/animate.css/source/rotating_entrances/rotateInUpRight.css @@ -0,0 +1,17 @@ +@keyframes rotateInUpRight { + 0% { + transform-origin: right bottom; + transform: rotate3d(0, 0, 1, -90deg); + opacity: 0; + } + + 100% { + transform-origin: right bottom; + transform: none; + opacity: 1; + } +} + +.rotateInUpRight { + animation-name: rotateInUpRight; +} diff --git a/fast-api/bower_components/animate.css/source/rotating_exits/rotateOut.css b/fast-api/bower_components/animate.css/source/rotating_exits/rotateOut.css new file mode 100644 index 0000000..576e807 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/rotating_exits/rotateOut.css @@ -0,0 +1,16 @@ +@keyframes rotateOut { + 0% { + transform-origin: center; + opacity: 1; + } + + 100% { + transform-origin: center; + transform: rotate3d(0, 0, 1, 200deg); + opacity: 0; + } +} + +.rotateOut { + animation-name: rotateOut; +} diff --git a/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutDownLeft.css b/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutDownLeft.css new file mode 100644 index 0000000..409d540 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutDownLeft.css @@ -0,0 +1,16 @@ +@keyframes rotateOutDownLeft { + 0% { + transform-origin: left bottom; + opacity: 1; + } + + 100% { + transform-origin: left bottom; + transform: rotate3d(0, 0, 1, 45deg); + opacity: 0; + } +} + +.rotateOutDownLeft { + animation-name: rotateOutDownLeft; +} diff --git a/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutDownRight.css b/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutDownRight.css new file mode 100644 index 0000000..44284a7 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutDownRight.css @@ -0,0 +1,16 @@ +@keyframes rotateOutDownRight { + 0% { + transform-origin: right bottom; + opacity: 1; + } + + 100% { + transform-origin: right bottom; + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +.rotateOutDownRight { + animation-name: rotateOutDownRight; +} diff --git a/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutUpLeft.css b/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutUpLeft.css new file mode 100644 index 0000000..eaad38a --- /dev/null +++ b/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutUpLeft.css @@ -0,0 +1,16 @@ +@keyframes rotateOutUpLeft { + 0% { + transform-origin: left bottom; + opacity: 1; + } + + 100% { + transform-origin: left bottom; + transform: rotate3d(0, 0, 1, -45deg); + opacity: 0; + } +} + +.rotateOutUpLeft { + animation-name: rotateOutUpLeft; +} diff --git a/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutUpRight.css b/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutUpRight.css new file mode 100644 index 0000000..183f3da --- /dev/null +++ b/fast-api/bower_components/animate.css/source/rotating_exits/rotateOutUpRight.css @@ -0,0 +1,16 @@ +@keyframes rotateOutUpRight { + 0% { + transform-origin: right bottom; + opacity: 1; + } + + 100% { + transform-origin: right bottom; + transform: rotate3d(0, 0, 1, 90deg); + opacity: 0; + } +} + +.rotateOutUpRight { + animation-name: rotateOutUpRight; +} diff --git a/fast-api/bower_components/animate.css/source/sliding_entrances/slideInDown.css b/fast-api/bower_components/animate.css/source/sliding_entrances/slideInDown.css new file mode 100644 index 0000000..8f31004 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/sliding_entrances/slideInDown.css @@ -0,0 +1,14 @@ +@keyframes slideInDown { + 0% { + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + 100% { + transform: translate3d(0, 0, 0); + } +} + +.slideInDown { + animation-name: slideInDown; +} diff --git a/fast-api/bower_components/animate.css/source/sliding_entrances/slideInLeft.css b/fast-api/bower_components/animate.css/source/sliding_entrances/slideInLeft.css new file mode 100644 index 0000000..b47e954 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/sliding_entrances/slideInLeft.css @@ -0,0 +1,14 @@ +@keyframes slideInLeft { + 0% { + transform: translate3d(-100%, 0, 0); + visibility: visible; + } + + 100% { + transform: translate3d(0, 0, 0); + } +} + +.slideInLeft { + animation-name: slideInLeft; +} diff --git a/fast-api/bower_components/animate.css/source/sliding_entrances/slideInRight.css b/fast-api/bower_components/animate.css/source/sliding_entrances/slideInRight.css new file mode 100644 index 0000000..c74f45d --- /dev/null +++ b/fast-api/bower_components/animate.css/source/sliding_entrances/slideInRight.css @@ -0,0 +1,14 @@ +@keyframes slideInRight { + 0% { + transform: translate3d(100%, 0, 0); + visibility: visible; + } + + 100% { + transform: translate3d(0, 0, 0); + } +} + +.slideInRight { + animation-name: slideInRight; +} diff --git a/fast-api/bower_components/animate.css/source/sliding_entrances/slideInUp.css b/fast-api/bower_components/animate.css/source/sliding_entrances/slideInUp.css new file mode 100644 index 0000000..2601c98 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/sliding_entrances/slideInUp.css @@ -0,0 +1,14 @@ +@keyframes slideInUp { + 0% { + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + 100% { + transform: translate3d(0, 0, 0); + } +} + +.slideInUp { + animation-name: slideInUp; +} diff --git a/fast-api/bower_components/animate.css/source/sliding_exits/slideOutDown.css b/fast-api/bower_components/animate.css/source/sliding_exits/slideOutDown.css new file mode 100644 index 0000000..1277900 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/sliding_exits/slideOutDown.css @@ -0,0 +1,14 @@ +@keyframes slideOutDown { + 0% { + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + transform: translate3d(0, 100%, 0); + } +} + +.slideOutDown { + animation-name: slideOutDown; +} diff --git a/fast-api/bower_components/animate.css/source/sliding_exits/slideOutLeft.css b/fast-api/bower_components/animate.css/source/sliding_exits/slideOutLeft.css new file mode 100644 index 0000000..eaff3fb --- /dev/null +++ b/fast-api/bower_components/animate.css/source/sliding_exits/slideOutLeft.css @@ -0,0 +1,14 @@ +@keyframes slideOutLeft { + 0% { + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + transform: translate3d(-100%, 0, 0); + } +} + +.slideOutLeft { + animation-name: slideOutLeft; +} diff --git a/fast-api/bower_components/animate.css/source/sliding_exits/slideOutRight.css b/fast-api/bower_components/animate.css/source/sliding_exits/slideOutRight.css new file mode 100644 index 0000000..20f47b6 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/sliding_exits/slideOutRight.css @@ -0,0 +1,14 @@ +@keyframes slideOutRight { + 0% { + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + transform: translate3d(100%, 0, 0); + } +} + +.slideOutRight { + animation-name: slideOutRight; +} diff --git a/fast-api/bower_components/animate.css/source/sliding_exits/slideOutUp.css b/fast-api/bower_components/animate.css/source/sliding_exits/slideOutUp.css new file mode 100644 index 0000000..7618a11 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/sliding_exits/slideOutUp.css @@ -0,0 +1,14 @@ +@keyframes slideOutUp { + 0% { + transform: translate3d(0, 0, 0); + } + + 100% { + visibility: hidden; + transform: translate3d(0, -100%, 0); + } +} + +.slideOutUp { + animation-name: slideOutUp; +} diff --git a/fast-api/bower_components/animate.css/source/specials/hinge.css b/fast-api/bower_components/animate.css/source/specials/hinge.css new file mode 100644 index 0000000..5b838fb --- /dev/null +++ b/fast-api/bower_components/animate.css/source/specials/hinge.css @@ -0,0 +1,28 @@ +@keyframes hinge { + 0% { + transform-origin: top left; + animation-timing-function: ease-in-out; + } + + 20%, 60% { + transform: rotate3d(0, 0, 1, 80deg); + transform-origin: top left; + animation-timing-function: ease-in-out; + } + + 40%, 80% { + transform: rotate3d(0, 0, 1, 60deg); + transform-origin: top left; + animation-timing-function: ease-in-out; + opacity: 1; + } + + 100% { + transform: translate3d(0, 700px, 0); + opacity: 0; + } +} + +.hinge { + animation-name: hinge; +} diff --git a/fast-api/bower_components/animate.css/source/specials/rollIn.css b/fast-api/bower_components/animate.css/source/specials/rollIn.css new file mode 100644 index 0000000..3b27783 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/specials/rollIn.css @@ -0,0 +1,17 @@ +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@keyframes rollIn { + 0% { + opacity: 0; + transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); + } + + 100% { + opacity: 1; + transform: none; + } +} + +.rollIn { + animation-name: rollIn; +} diff --git a/fast-api/bower_components/animate.css/source/specials/rollOut.css b/fast-api/bower_components/animate.css/source/specials/rollOut.css new file mode 100644 index 0000000..f9cd813 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/specials/rollOut.css @@ -0,0 +1,16 @@ +/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ + +@keyframes rollOut { + 0% { + opacity: 1; + } + + 100% { + opacity: 0; + transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); + } +} + +.rollOut { + animation-name: rollOut; +} diff --git a/fast-api/bower_components/animate.css/source/zooming_entrances/zoomIn.css b/fast-api/bower_components/animate.css/source/zooming_entrances/zoomIn.css new file mode 100644 index 0000000..d03fa83 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/zooming_entrances/zoomIn.css @@ -0,0 +1,14 @@ +@keyframes zoomIn { + 0% { + opacity: 0; + transform: scale3d(.3, .3, .3); + } + + 50% { + opacity: 1; + } +} + +.zoomIn { + animation-name: zoomIn; +} diff --git a/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInDown.css b/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInDown.css new file mode 100644 index 0000000..6e70bf4 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInDown.css @@ -0,0 +1,17 @@ +@keyframes zoomInDown { + 0% { + opacity: 0; + transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInDown { + animation-name: zoomInDown; +} diff --git a/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInLeft.css b/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInLeft.css new file mode 100644 index 0000000..3ee2df1 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInLeft.css @@ -0,0 +1,17 @@ +@keyframes zoomInLeft { + 0% { + opacity: 0; + transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInLeft { + animation-name: zoomInLeft; +} diff --git a/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInRight.css b/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInRight.css new file mode 100644 index 0000000..04c7d8f --- /dev/null +++ b/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInRight.css @@ -0,0 +1,17 @@ +@keyframes zoomInRight { + 0% { + opacity: 0; + transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInRight { + animation-name: zoomInRight; +} diff --git a/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInUp.css b/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInUp.css new file mode 100644 index 0000000..2518fa1 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/zooming_entrances/zoomInUp.css @@ -0,0 +1,17 @@ +@keyframes zoomInUp { + 0% { + opacity: 0; + transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 60% { + opacity: 1; + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomInUp { + animation-name: zoomInUp; +} diff --git a/fast-api/bower_components/animate.css/source/zooming_exits/zoomOut.css b/fast-api/bower_components/animate.css/source/zooming_exits/zoomOut.css new file mode 100644 index 0000000..f400e35 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/zooming_exits/zoomOut.css @@ -0,0 +1,18 @@ +@keyframes zoomOut { + 0% { + opacity: 1; + } + + 50% { + opacity: 0; + transform: scale3d(.3, .3, .3); + } + + 100% { + opacity: 0; + } +} + +.zoomOut { + animation-name: zoomOut; +} diff --git a/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutDown.css b/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutDown.css new file mode 100644 index 0000000..aeff012 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutDown.css @@ -0,0 +1,18 @@ +@keyframes zoomOutDown { + 40% { + opacity: 1; + transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 100% { + opacity: 0; + transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); + transform-origin: center bottom; + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomOutDown { + animation-name: zoomOutDown; +} diff --git a/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutLeft.css b/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutLeft.css new file mode 100644 index 0000000..1975221 --- /dev/null +++ b/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutLeft.css @@ -0,0 +1,16 @@ +@keyframes zoomOutLeft { + 40% { + opacity: 1; + transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0); + } + + 100% { + opacity: 0; + transform: scale(.1) translate3d(-2000px, 0, 0); + transform-origin: left center; + } +} + +.zoomOutLeft { + animation-name: zoomOutLeft; +} diff --git a/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutRight.css b/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutRight.css new file mode 100644 index 0000000..f3a068b --- /dev/null +++ b/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutRight.css @@ -0,0 +1,16 @@ +@keyframes zoomOutRight { + 40% { + opacity: 1; + transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0); + } + + 100% { + opacity: 0; + transform: scale(.1) translate3d(2000px, 0, 0); + transform-origin: right center; + } +} + +.zoomOutRight { + animation-name: zoomOutRight; +} diff --git a/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutUp.css b/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutUp.css new file mode 100644 index 0000000..efa76aa --- /dev/null +++ b/fast-api/bower_components/animate.css/source/zooming_exits/zoomOutUp.css @@ -0,0 +1,18 @@ +@keyframes zoomOutUp { + 40% { + opacity: 1; + transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0); + animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); + } + + 100% { + opacity: 0; + transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0); + transform-origin: center bottom; + animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); + } +} + +.zoomOutUp { + animation-name: zoomOutUp; +} diff --git a/fast-api/bower_components/jquery/.bower.json b/fast-api/bower_components/jquery/.bower.json new file mode 100644 index 0000000..fe42ed4 --- /dev/null +++ b/fast-api/bower_components/jquery/.bower.json @@ -0,0 +1,38 @@ +{ + "name": "jquery", + "version": "2.1.4", + "main": "dist/jquery.js", + "license": "MIT", + "ignore": [ + "**/.*", + "build", + "dist/cdn", + "speed", + "test", + "*.md", + "AUTHORS.txt", + "Gruntfile.js", + "package.json" + ], + "devDependencies": { + "sizzle": "2.1.1-jquery.2.1.2", + "requirejs": "2.1.10", + "qunit": "1.14.0", + "sinon": "1.8.1" + }, + "keywords": [ + "jquery", + "javascript", + "library" + ], + "homepage": "https://github.com/jquery/jquery-dist", + "_release": "2.1.4", + "_resolution": { + "type": "version", + "tag": "2.1.4", + "commit": "7751e69b615c6eca6f783a81e292a55725af6b85" + }, + "_source": "https://github.com/jquery/jquery-dist.git", + "_target": "~2.1.4", + "_originalSource": "jquery" +} \ No newline at end of file diff --git a/fast-api/bower_components/jquery/MIT-LICENSE.txt b/fast-api/bower_components/jquery/MIT-LICENSE.txt new file mode 100644 index 0000000..cdd31b5 --- /dev/null +++ b/fast-api/bower_components/jquery/MIT-LICENSE.txt @@ -0,0 +1,21 @@ +Copyright 2014 jQuery Foundation and other contributors +http://jquery.com/ + +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/fast-api/bower_components/jquery/bower.json b/fast-api/bower_components/jquery/bower.json new file mode 100644 index 0000000..0c80cd5 --- /dev/null +++ b/fast-api/bower_components/jquery/bower.json @@ -0,0 +1,28 @@ +{ + "name": "jquery", + "version": "2.1.4", + "main": "dist/jquery.js", + "license": "MIT", + "ignore": [ + "**/.*", + "build", + "dist/cdn", + "speed", + "test", + "*.md", + "AUTHORS.txt", + "Gruntfile.js", + "package.json" + ], + "devDependencies": { + "sizzle": "2.1.1-jquery.2.1.2", + "requirejs": "2.1.10", + "qunit": "1.14.0", + "sinon": "1.8.1" + }, + "keywords": [ + "jquery", + "javascript", + "library" + ] +} diff --git a/fast-api/bower_components/jquery/dist/jquery.js b/fast-api/bower_components/jquery/dist/jquery.js new file mode 100644 index 0000000..eed1777 --- /dev/null +++ b/fast-api/bower_components/jquery/dist/jquery.js @@ -0,0 +1,9210 @@ +/*! + * jQuery JavaScript Library v2.1.4 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2015-04-28T16:01Z + */ + +(function( global, factory ) { + + if ( typeof module === "object" && typeof module.exports === "object" ) { + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Support: Firefox 18+ +// Can't be in strict mode, several libs including ASP.NET trace +// the stack via arguments.caller.callee and Firefox dies if +// you try to trace through "use strict" call chains. (#13335) +// + +var arr = []; + +var slice = arr.slice; + +var concat = arr.concat; + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var support = {}; + + + +var + // Use the correct document accordingly with window argument (sandbox) + document = window.document, + + version = "2.1.4", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }, + + // Support: Android<4.1 + // Make sure we trim BOM and NBSP + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }; + +jQuery.fn = jQuery.prototype = { + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // Start with an empty selector + selector: "", + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num != null ? + + // Return just the one element from the set + ( num < 0 ? this[ num + this.length ] : this[ num ] ) : + + // Return all the elements in a clean array + slice.call( this ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + ret.context = this.context; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray, + + isWindow: function( obj ) { + return obj != null && obj === obj.window; + }, + + isNumeric: function( obj ) { + // parseFloat NaNs numeric-cast false positives (null|true|false|"") + // ...but misinterprets leading-number strings, particularly hex literals ("0x...") + // subtraction forces infinities to NaN + // adding 1 corrects loss of precision from parseFloat (#15100) + return !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0; + }, + + isPlainObject: function( obj ) { + // Not plain objects: + // - Any object or value whose internal [[Class]] property is not "[object Object]" + // - DOM nodes + // - window + if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + if ( obj.constructor && + !hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) { + return false; + } + + // If the function hasn't returned already, we're confident that + // |obj| is a plain object, created by {} or constructed with new Object + return true; + }, + + isEmptyObject: function( obj ) { + var name; + for ( name in obj ) { + return false; + } + return true; + }, + + type: function( obj ) { + if ( obj == null ) { + return obj + ""; + } + // Support: Android<4.0, iOS<6 (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call(obj) ] || "object" : + typeof obj; + }, + + // Evaluates a script in a global context + globalEval: function( code ) { + var script, + indirect = eval; + + code = jQuery.trim( code ); + + if ( code ) { + // If the code includes a valid, prologue position + // strict mode pragma, execute code by injecting a + // script tag into the document. + if ( code.indexOf("use strict") === 1 ) { + script = document.createElement("script"); + script.text = code; + document.head.appendChild( script ).parentNode.removeChild( script ); + } else { + // Otherwise, avoid the DOM node creation, insertion + // and removal by using an indirect global eval + indirect( code ); + } + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Support: IE9-11+ + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + }, + + // args is for internal usage only + each: function( obj, callback, args ) { + var value, + i = 0, + length = obj.length, + isArray = isArraylike( obj ); + + if ( args ) { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } + } + + return obj; + }, + + // Support: Android<4.1 + trim: function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArraylike( Object(arr) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, + i = 0, + length = elems.length, + isArray = isArraylike( elems ), + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var tmp, args, proxy; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || jQuery.guid++; + + return proxy; + }, + + now: Date.now, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +}); + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +function isArraylike( obj ) { + + // Support: iOS 8.2 (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = "length" in obj && obj.length, + type = jQuery.type( obj ); + + if ( type === "function" || jQuery.isWindow( obj ) ) { + return false; + } + + if ( obj.nodeType === 1 && length ) { + return true; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.2.0-pre + * http://sizzlejs.com/ + * + * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2014-12-16 + */ +(function( window ) { + +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // General-purpose constants + MAX_NEGATIVE = 1 << 31, + + // Instance methods + hasOwn = ({}).hasOwnProperty, + arr = [], + pop = arr.pop, + push_native = arr.push, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf as it's faster than native + // http://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[i] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + // http://www.w3.org/TR/css3-syntax/#characters + characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", + + // Loosely modeled on CSS identifier characters + // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors + // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = characterEncoding.replace( "w", "w#" ), + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + characterEncoding + ")(?:" + whitespace + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + + "*\\]", + + pseudos = ":(" + characterEncoding + ")(?:\\((" + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), + + rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + characterEncoding + ")" ), + "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), + "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + rescape = /'|\\/g, + + // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), + funescape = function( _, escaped, escapedWhitespace ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + // Support: Firefox<24 + // Workaround erroneous numeric interpretation of +"0x" + return high !== high || escapedWhitespace ? + escaped : + high < 0 ? + // BMP codepoint + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }; + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + (arr = slice.call( preferredDoc.childNodes )), + preferredDoc.childNodes + ); + // Support: Android<4.0 + // Detect silently failing push.apply + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + push_native.apply( target, slice.call(els) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + // Can't trust NodeList.length + while ( (target[j++] = els[i++]) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var match, elem, m, nodeType, + // QSA vars + i, groups, old, nid, newContext, newSelector; + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + + context = context || document; + results = results || []; + nodeType = context.nodeType; + + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + if ( !seed && documentIsHTML ) { + + // Try to shortcut find operations when possible (e.g., not under DocumentFragment) + if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { + // Speed-up: Sizzle("#ID") + if ( (m = match[1]) ) { + if ( nodeType === 9 ) { + elem = context.getElementById( m ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document (jQuery #6963) + if ( elem && elem.parentNode ) { + // Handle the case where IE, Opera, and Webkit return items + // by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + } else { + // Context is not a document + if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && + contains( context, elem ) && elem.id === m ) { + results.push( elem ); + return results; + } + } + + // Speed-up: Sizzle("TAG") + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Speed-up: Sizzle(".CLASS") + } else if ( (m = match[3]) && support.getElementsByClassName ) { + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // QSA path + if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + nid = old = expando; + newContext = context; + newSelector = nodeType !== 1 && selector; + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + groups = tokenize( selector ); + + if ( (old = context.getAttribute("id")) ) { + nid = old.replace( rescape, "\\$&" ); + } else { + context.setAttribute( "id", nid ); + } + nid = "[id='" + nid + "'] "; + + i = groups.length; + while ( i-- ) { + groups[i] = nid + toSelector( groups[i] ); + } + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context; + newSelector = groups.join(","); + } + + if ( newSelector ) { + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch(qsaError) { + } finally { + if ( !old ) { + context.removeAttribute("id"); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {Function(string, Object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key + " " ] = value); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created div and expects a boolean result + */ +function assert( fn ) { + var div = document.createElement("div"); + + try { + return !!fn( div ); + } catch (e) { + return false; + } finally { + // Remove from its parent by default + if ( div.parentNode ) { + div.parentNode.removeChild( div ); + } + // release memory in IE + div = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split("|"), + i = attrs.length; + + while ( i-- ) { + Expr.attrHandle[ arr[i] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + ( ~b.sourceIndex || MAX_NEGATIVE ) - + ( ~a.sourceIndex || MAX_NEGATIVE ); + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, parent, + doc = node ? node.ownerDocument || node : preferredDoc; + + // If no document and documentElement is available, return + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Set our document + document = doc; + docElem = doc.documentElement; + parent = doc.defaultView; + + // Support: IE>8 + // If iframe document is assigned to "document" variable and if iframe has been reloaded, + // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936 + // IE6-8 do not support the defaultView property so parent will be undefined + if ( parent && parent !== parent.top ) { + // IE11 does not have attachEvent, so all must suffer + if ( parent.addEventListener ) { + parent.addEventListener( "unload", unloadHandler, false ); + } else if ( parent.attachEvent ) { + parent.attachEvent( "onunload", unloadHandler ); + } + } + + /* Support tests + ---------------------------------------------------------------------- */ + documentIsHTML = !isXML( doc ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert(function( div ) { + div.className = "i"; + return !div.getAttribute("className"); + }); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert(function( div ) { + div.appendChild( doc.createComment("") ); + return !div.getElementsByTagName("*").length; + }); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( doc.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert(function( div ) { + docElem.appendChild( div ).id = expando; + return !doc.getElementsByName || !doc.getElementsByName( expando ).length; + }); + + // ID find and filter + if ( support.getById ) { + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var m = context.getElementById( id ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [ m ] : []; + } + }; + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + } else { + // Support: IE6/7 + // getElementById is not reliable as a find shortcut + delete Expr.find["ID"]; + + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + } + + // Tag + Expr.find["TAG"] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { + if ( documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See http://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( div ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // http://bugs.jquery.com/ticket/12359 + docElem.appendChild( div ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( div.querySelectorAll("[msallowcapture^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !div.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+ + if ( !div.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push("~="); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibing-combinator selector` fails + if ( !div.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push(".#.+[+~]"); + } + }); + + assert(function( div ) { + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = doc.createElement("input"); + input.setAttribute( "type", "hidden" ); + div.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( div.querySelectorAll("[name=d]").length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":enabled").length ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + div.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( div ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( div, "div" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( div, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully does not implement inclusive descendent + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { + + // Choose the first element that is related to our preferred document + if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { + return -1; + } + if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + return a === doc ? -1 : + b === doc ? 1 : + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + return doc; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + if ( support.matchesSelector && documentIsHTML && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch (e) {} + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + (val = elem.getAttributeNode(name)) && val.specified ? + val.value : + null; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( (elem = results[i++]) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + while ( (node = elem[i++]) ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[6] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[3] ) { + match[2] = match[4] || match[5] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { return true; } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, outerCache, node, diff, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + // Seek `elem` from a previously-cached index + outerCache = parent[ expando ] || (parent[ expando ] = {}); + cache = outerCache[ type ] || []; + nodeIndex = cache[0] === dirruns && cache[1]; + diff = cache[0] === dirruns && cache[2]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + outerCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + // Use previously-cached element index if available + } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { + diff = cache[1]; + + // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) + } else { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { + // Cache the index of each encountered element + if ( useCache ) { + (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + // Don't keep the element (issue #299) + input[0] = null; + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifier + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": function( elem ) { + return elem.disabled === false; + }, + + "disabled": function( elem ) { + return elem.disabled === true; + }, + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( (tokens = []) ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push({ + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + }); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push({ + value: matched, + type: type, + matches: match + }); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + checkNonElements = base && dir === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + if ( (oldCache = outerCache[ dir ]) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return (newCache[ 2 ] = oldCache[ 2 ]); + } else { + // Reuse newcache so results back-propagate to previous elements + outerCache[ dir ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { + return true; + } + } + } + } + } + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), + len = elems.length; + + if ( outermost ) { + outermostContext = context !== document && context; + } + + // Add elements passing elementMatchers directly to results + // Keep `i` a string if there are no elements so `matchedCount` will be "00" below + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // Apply set filters to unmatched elements + matchedCount += i; + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( (selector = compiled.selector || selector) ); + + results = results || []; + + // Try to minimize operations if there is no seed and only one group + if ( match.length === 1 ) { + + // Take a shortcut and set the context if the root selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + support.getById && context.nodeType === 9 && documentIsHTML && + Expr.relative[ tokens[1].type ] ) { + + context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert(function( div1 ) { + // Should return 1, but returns 4 (following) + return div1.compareDocumentPosition( document.createElement("div") ) & 1; +}); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert(function( div ) { + div.innerHTML = ""; + return div.firstChild.getAttribute("href") === "#" ; +}) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + }); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert(function( div ) { + div.innerHTML = ""; + div.firstChild.setAttribute( "value", "" ); + return div.firstChild.getAttribute( "value" ) === ""; +}) ) { + addHandle( "value", function( elem, name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + }); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert(function( div ) { + return div.getAttribute("disabled") == null; +}) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + (val = elem.getAttributeNode( name )) && val.specified ? + val.value : + null; + } + }); +} + +return Sizzle; + +})( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.pseudos; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + + +var rneedsContext = jQuery.expr.match.needsContext; + +var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); + + + +var risSimple = /^.[^:#\[\.,]*$/; + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + /* jshint -W018 */ + return !!qualifier.call( elem, i, elem ) !== not; + }); + + } + + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + }); + + } + + if ( typeof qualifier === "string" ) { + if ( risSimple.test( qualifier ) ) { + return jQuery.filter( qualifier, elements, not ); + } + + qualifier = jQuery.filter( qualifier, elements ); + } + + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) >= 0 ) !== not; + }); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 && elem.nodeType === 1 ? + jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : + jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + })); +}; + +jQuery.fn.extend({ + find: function( selector ) { + var i, + len = this.length, + ret = [], + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }) ); + } + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + // Needed because $( selector, context ) becomes $( context ).find( selector ) + ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); + ret.selector = this.selector ? this.selector + " " + selector : selector; + return ret; + }, + filter: function( selector ) { + return this.pushStack( winnow(this, selector || [], false) ); + }, + not: function( selector ) { + return this.pushStack( winnow(this, selector || [], true) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +}); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, + + init = jQuery.fn.init = function( selector, context ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[0] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[1], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + // Properties of context are called as methods if possible + if ( jQuery.isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[2] ); + + // Support: Blackberry 4.6 + // gEBID returns nodes no longer in the document (#6963) + if ( elem && elem.parentNode ) { + // Inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return typeof rootjQuery.ready !== "undefined" ? + rootjQuery.ready( selector ) : + // Execute immediately if ready is not present + selector( jQuery ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.extend({ + dir: function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( (elem = elem[ dir ]) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; + }, + + sibling: function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; + } +}); + +jQuery.fn.extend({ + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter(function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( ; i < l; i++ ) { + for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) { + // Always skip document fragments + if ( cur.nodeType < 11 && (pos ? + pos.index(cur) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector(cur, selectors)) ) { + + matched.push( cur ); + break; + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.unique( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter(selector) + ); + } +}); + +function sibling( cur, dir ) { + while ( (cur = cur[dir]) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return elem.contentDocument || jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.unique( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +}); +var rnotwhite = (/\S+/g); + + + +// String to Object options format cache +var optionsCache = {}; + +// Convert String-formatted options into Object-formatted ones and store in cache +function createOptions( options ) { + var object = optionsCache[ options ] = {}; + jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { + object[ flag ] = true; + }); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + ( optionsCache[ options ] || createOptions( options ) ) : + jQuery.extend( {}, options ); + + var // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list was already fired + fired, + // Flag to know if list is currently firing + firing, + // First callback to fire (used internally by add and fireWith) + firingStart, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = !options.once && [], + // Fire callbacks + fire = function( data ) { + memory = options.memory && data; + fired = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + firing = true; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { + memory = false; // To prevent further calls using add + break; + } + } + firing = false; + if ( list ) { + if ( stack ) { + if ( stack.length ) { + fire( stack.shift() ); + } + } else if ( memory ) { + list = []; + } else { + self.disable(); + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + // First, we save the current length + var start = list.length; + (function add( args ) { + jQuery.each( args, function( _, arg ) { + var type = jQuery.type( arg ); + if ( type === "function" ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && type !== "string" ) { + // Inspect recursively + add( arg ); + } + }); + })( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away + } else if ( memory ) { + firingStart = start; + fire( memory ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + // Handle firing indexes + if ( firing ) { + if ( index <= firingLength ) { + firingLength--; + } + if ( index <= firingIndex ) { + firingIndex--; + } + } + } + }); + } + return this; + }, + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); + }, + // Remove all callbacks from the list + empty: function() { + list = []; + firingLength = 0; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( list && ( !fired || stack ) ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + if ( firing ) { + stack.push( args ); + } else { + fire( args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +jQuery.extend({ + + Deferred: function( func ) { + var tuples = [ + // action, add listener, listener list, final state + [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], + [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], + [ "notify", "progress", jQuery.Callbacks("memory") ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + then: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + return jQuery.Deferred(function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; + // deferred[ done | fail | progress ] for forwarding actions to newDefer + deferred[ tuple[1] ](function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise() + .done( newDefer.resolve ) + .fail( newDefer.reject ) + .progress( newDefer.notify ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); + } + }); + }); + fns = null; + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Keep pipe for back-compat + promise.pipe = promise.then; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 3 ]; + + // promise[ done | fail | progress ] = list.add + promise[ tuple[1] ] = list.add; + + // Handle state + if ( stateString ) { + list.add(function() { + // state = [ resolved | rejected ] + state = stateString; + + // [ reject_list | resolve_list ].disable; progress_list.lock + }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); + } + + // deferred[ resolve | reject | notify ] + deferred[ tuple[0] ] = function() { + deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); + return this; + }; + deferred[ tuple[0] + "With" ] = list.fireWith; + }); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( subordinate /* , ..., subordinateN */ ) { + var i = 0, + resolveValues = slice.call( arguments ), + length = resolveValues.length, + + // the count of uncompleted subordinates + remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, + + // the master Deferred. If resolveValues consist of only a single Deferred, just use that. + deferred = remaining === 1 ? subordinate : jQuery.Deferred(), + + // Update function for both resolve and progress values + updateFunc = function( i, contexts, values ) { + return function( value ) { + contexts[ i ] = this; + values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( values === progressValues ) { + deferred.notifyWith( contexts, values ); + } else if ( !( --remaining ) ) { + deferred.resolveWith( contexts, values ); + } + }; + }, + + progressValues, progressContexts, resolveContexts; + + // Add listeners to Deferred subordinates; treat others as resolved + if ( length > 1 ) { + progressValues = new Array( length ); + progressContexts = new Array( length ); + resolveContexts = new Array( length ); + for ( ; i < length; i++ ) { + if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { + resolveValues[ i ].promise() + .done( updateFunc( i, resolveContexts, resolveValues ) ) + .fail( deferred.reject ) + .progress( updateFunc( i, progressContexts, progressValues ) ); + } else { + --remaining; + } + } + } + + // If we're not waiting on anything, resolve the master + if ( !remaining ) { + deferred.resolveWith( resolveContexts, resolveValues ); + } + + return deferred.promise(); + } +}); + + +// The deferred used on DOM ready +var readyList; + +jQuery.fn.ready = function( fn ) { + // Add the callback + jQuery.ready.promise().done( fn ); + + return this; +}; + +jQuery.extend({ + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.triggerHandler ) { + jQuery( document ).triggerHandler( "ready" ); + jQuery( document ).off( "ready" ); + } + } +}); + +/** + * The ready event handler and self cleanup method + */ +function completed() { + document.removeEventListener( "DOMContentLoaded", completed, false ); + window.removeEventListener( "load", completed, false ); + jQuery.ready(); +} + +jQuery.ready.promise = function( obj ) { + if ( !readyList ) { + + readyList = jQuery.Deferred(); + + // Catch cases where $(document).ready() is called after the browser event has already occurred. + // We once tried to use readyState "interactive" here, but it caused issues like the one + // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + setTimeout( jQuery.ready ); + + } else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed, false ); + } + } + return readyList.promise( obj ); +}; + +// Kick off the DOM ready check even if the user does not +jQuery.ready.promise(); + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( jQuery.type( key ) === "object" ) { + chainable = true; + for ( i in key ) { + jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !jQuery.isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); + } + } + } + + return chainable ? + elems : + + // Gets + bulk ? + fn.call( elems ) : + len ? fn( elems[0], key ) : emptyGet; +}; + + +/** + * Determines whether an object can have data + */ +jQuery.acceptData = function( owner ) { + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + /* jshint -W018 */ + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + +function Data() { + // Support: Android<4, + // Old WebKit does not have Object.preventExtensions/freeze method, + // return new empty object instead with no [[set]] accessor + Object.defineProperty( this.cache = {}, 0, { + get: function() { + return {}; + } + }); + + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; +Data.accepts = jQuery.acceptData; + +Data.prototype = { + key: function( owner ) { + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return the key for a frozen object. + if ( !Data.accepts( owner ) ) { + return 0; + } + + var descriptor = {}, + // Check if the owner object already has a cache key + unlock = owner[ this.expando ]; + + // If not, create one + if ( !unlock ) { + unlock = Data.uid++; + + // Secure it in a non-enumerable, non-writable property + try { + descriptor[ this.expando ] = { value: unlock }; + Object.defineProperties( owner, descriptor ); + + // Support: Android<4 + // Fallback to a less secure definition + } catch ( e ) { + descriptor[ this.expando ] = unlock; + jQuery.extend( owner, descriptor ); + } + } + + // Ensure the cache object + if ( !this.cache[ unlock ] ) { + this.cache[ unlock ] = {}; + } + + return unlock; + }, + set: function( owner, data, value ) { + var prop, + // There may be an unlock assigned to this node, + // if there is no entry for this "owner", create one inline + // and set the unlock as though an owner entry had always existed + unlock = this.key( owner ), + cache = this.cache[ unlock ]; + + // Handle: [ owner, key, value ] args + if ( typeof data === "string" ) { + cache[ data ] = value; + + // Handle: [ owner, { properties } ] args + } else { + // Fresh assignments by object are shallow copied + if ( jQuery.isEmptyObject( cache ) ) { + jQuery.extend( this.cache[ unlock ], data ); + // Otherwise, copy the properties one-by-one to the cache object + } else { + for ( prop in data ) { + cache[ prop ] = data[ prop ]; + } + } + } + return cache; + }, + get: function( owner, key ) { + // Either a valid cache is found, or will be created. + // New caches will be created and the unlock returned, + // allowing direct access to the newly created + // empty data object. A valid owner object must be provided. + var cache = this.cache[ this.key( owner ) ]; + + return key === undefined ? + cache : cache[ key ]; + }, + access: function( owner, key, value ) { + var stored; + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ((key && typeof key === "string") && value === undefined) ) { + + stored = this.get( owner, key ); + + return stored !== undefined ? + stored : this.get( owner, jQuery.camelCase(key) ); + } + + // [*]When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, name, camel, + unlock = this.key( owner ), + cache = this.cache[ unlock ]; + + if ( key === undefined ) { + this.cache[ unlock ] = {}; + + } else { + // Support array or space separated string of keys + if ( jQuery.isArray( key ) ) { + // If "name" is an array of keys... + // When data is initially created, via ("key", "val") signature, + // keys will be converted to camelCase. + // Since there is no way to tell _how_ a key was added, remove + // both plain key and camelCase key. #12786 + // This will only penalize the array argument path. + name = key.concat( key.map( jQuery.camelCase ) ); + } else { + camel = jQuery.camelCase( key ); + // Try the string as a key before any manipulation + if ( key in cache ) { + name = [ key, camel ]; + } else { + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + name = camel; + name = name in cache ? + [ name ] : ( name.match( rnotwhite ) || [] ); + } + } + + i = name.length; + while ( i-- ) { + delete cache[ name[ i ] ]; + } + } + }, + hasData: function( owner ) { + return !jQuery.isEmptyObject( + this.cache[ owner[ this.expando ] ] || {} + ); + }, + discard: function( owner ) { + if ( owner[ this.expando ] ) { + delete this.cache[ owner[ this.expando ] ]; + } + } +}; +var data_priv = new Data(); + +var data_user = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /([A-Z])/g; + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + // Only convert to a number if it doesn't change the string + +data + "" === data ? +data : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + data_user.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend({ + hasData: function( elem ) { + return data_user.hasData( elem ) || data_priv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return data_user.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + data_user.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to data_priv methods, these can be deprecated. + _data: function( elem, name, data ) { + return data_priv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + data_priv.remove( elem, name ); + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = data_user.get( elem ); + + if ( elem.nodeType === 1 && !data_priv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE11+ + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = jQuery.camelCase( name.slice(5) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + data_priv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each(function() { + data_user.set( this, key ); + }); + } + + return access( this, function( value ) { + var data, + camelKey = jQuery.camelCase( key ); + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + // Attempt to get data from the cache + // with the key as-is + data = data_user.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to get data from the cache + // with the key camelized + data = data_user.get( elem, camelKey ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, camelKey, undefined ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each(function() { + // First, attempt to store a copy or reference of any + // data that might've been store with a camelCased key. + var data = data_user.get( this, camelKey ); + + // For HTML5 data-* attribute interop, we have to + // store property names with dashes in a camelCase form. + // This might not apply to all properties...* + data_user.set( this, camelKey, value ); + + // *... In the case of properties that might _actually_ + // have dashes, we need to also store a copy of that + // unchanged property. + if ( key.indexOf("-") !== -1 && data !== undefined ) { + data_user.set( this, key, value ); + } + }); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each(function() { + data_user.remove( this, key ); + }); + } +}); + + +jQuery.extend({ + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = data_priv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || jQuery.isArray( data ) ) { + queue = data_priv.access( elem, type, jQuery.makeArray(data) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return data_priv.get( elem, key ) || data_priv.access( elem, key, { + empty: jQuery.Callbacks("once memory").add(function() { + data_priv.remove( elem, [ type + "queue", key ] ); + }) + }); + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[0], type ); + } + + return data === undefined ? + this : + this.each(function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = data_priv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +}); +var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var isHidden = function( elem, el ) { + // isHidden might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); + }; + +var rcheckableType = (/^(?:checkbox|radio)$/i); + + + +(function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Safari<=5.1 + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Safari<=5.1, Android<4.2 + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE<=11+ + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; +})(); +var strundefined = typeof undefined; + + + +support.focusinBubbles = "onfocusin" in window; + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = data_priv.get( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !(events = elemData.events) ) { + events = elemData.events = {}; + } + if ( !(eventHandle = elemData.handle) ) { + eventHandle = elemData.handle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== strundefined && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnotwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !(handlers = events[ type ]) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = data_priv.hasData( elem ) && data_priv.get( elem ); + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnotwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + delete elemData.handle; + data_priv.remove( elem, "events" ); + } + }, + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; + + cur = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf(".") >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf(":") < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join("."); + event.namespace_re = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === (elem.ownerDocument || document) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { + + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( data_priv.get( cur, "events" ) || {} )[ event.type ] && data_priv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && jQuery.acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) && + jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + elem[ type ](); + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event ); + + var i, j, ret, matched, handleObj, + handlerQueue = [], + args = slice.call( arguments ), + handlers = ( data_priv.get( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { + + // Triggered event must either 1) have no namespace, or 2) have namespace(s) + // a subset or equal to those in the bound event (both can have no namespace). + if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( (event.result = ret) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, matches, sel, handleObj, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + // Black-hole SVG instance trees (#13180) + // Avoid non-left-click bubbling in Firefox (#3861) + if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.disabled !== true || event.type !== "click" ) { + matches = []; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matches[ sel ] === undefined ) { + matches[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) >= 0 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matches[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, handlers: matches }); + } + } + } + } + + // Add the remaining (directly-bound) handlers + if ( delegateCount < handlers.length ) { + handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); + } + + return handlerQueue; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var eventDoc, doc, body, + button = original.button; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, copy, + type = event.type, + originalEvent = event, + fixHook = this.fixHooks[ type ]; + + if ( !fixHook ) { + this.fixHooks[ type ] = fixHook = + rmouseEvent.test( type ) ? this.mouseHooks : + rkeyEvent.test( type ) ? this.keyHooks : + {}; + } + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = new jQuery.Event( originalEvent ); + + i = copy.length; + while ( i-- ) { + prop = copy[ i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Support: Cordova 2.5 (WebKit) (#13255) + // All events should have a target; Cordova deviceready doesn't + if ( !event.target ) { + event.target = document; + } + + // Support: Safari 6.0+, Chrome<28 + // Target should not be a text node (#504, #13143) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; + }, + + special: { + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + focus: { + // Fire native event if possible so blur/focus sequence is correct + trigger: function() { + if ( this !== safeActiveElement() && this.focus ) { + this.focus(); + return false; + } + }, + delegateType: "focusin" + }, + blur: { + trigger: function() { + if ( this === safeActiveElement() && this.blur ) { + this.blur(); + return false; + } + }, + delegateType: "focusout" + }, + click: { + // For checkbox, fire native event so checked state will be right + trigger: function() { + if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) { + this.click(); + return false; + } + }, + + // For cross-browser consistency, don't fire native .click() on links + _default: function( event ) { + return jQuery.nodeName( event.target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +jQuery.removeEvent = function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } +}; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + // Support: Android<4.0 + src.returnValue === false ? + returnTrue : + returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && e.preventDefault ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && e.stopPropagation ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && e.stopImmediatePropagation ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +// Support: Chrome 15+ +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// Support: Firefox, Chrome, Safari +// Create "bubbling" focus and blur events +if ( !support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + var doc = this.ownerDocument || this, + attaches = data_priv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + data_priv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this, + attaches = data_priv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + data_priv.remove( doc, fix ); + + } else { + data_priv.access( doc, fix, attaches ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on( types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + var elem = this[0]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +}); + + +var + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, + rtagName = /<([\w:]+)/, + rhtml = /<|&#?\w+;/, + rnoInnerhtml = /<(?:script|style|link)/i, + // checked="checked" or checked + rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, + rscriptType = /^$|\/(?:java|ecma)script/i, + rscriptTypeMasked = /^true\/(.*)/, + rcleanScript = /^\s*\s*$/g, + + // We have to close these tags to support XHTML (#13200) + wrapMap = { + + // Support: IE9 + option: [ 1, "" ], + + thead: [ 1, "", "
" ], + col: [ 2, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + _default: [ 0, "", "" ] + }; + +// Support: IE9 +wrapMap.optgroup = wrapMap.option; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: 1.x compatibility +// Manipulating tables requires a tbody +function manipulationTarget( elem, content ) { + return jQuery.nodeName( elem, "table" ) && + jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? + + elem.getElementsByTagName("tbody")[0] || + elem.appendChild( elem.ownerDocument.createElement("tbody") ) : + elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = (elem.getAttribute("type") !== null) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + var match = rscriptTypeMasked.exec( elem.type ); + + if ( match ) { + elem.type = match[ 1 ]; + } else { + elem.removeAttribute("type"); + } + + return elem; +} + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + data_priv.set( + elems[ i ], "globalEval", !refElements || data_priv.get( refElements[ i ], "globalEval" ) + ); + } +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( data_priv.hasData( src ) ) { + pdataOld = data_priv.access( src ); + pdataCur = data_priv.set( dest, pdataOld ); + events = pdataOld.events; + + if ( events ) { + delete pdataCur.handle; + pdataCur.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( data_user.hasData( src ) ) { + udataOld = data_user.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + data_user.set( dest, udataCur ); + } +} + +function getAll( context, tag ) { + var ret = context.getElementsByTagName ? context.getElementsByTagName( tag || "*" ) : + context.querySelectorAll ? context.querySelectorAll( tag || "*" ) : + []; + + return tag === undefined || tag && jQuery.nodeName( context, tag ) ? + jQuery.merge( [ context ], ret ) : + ret; +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +jQuery.extend({ + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = jQuery.contains( elem.ownerDocument, elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + buildFragment: function( elems, context, scripts, selection ) { + var elem, tmp, tag, wrap, contains, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( jQuery.type( elem ) === "object" ) { + // Support: QtWebKit, PhantomJS + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement("div") ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + elem.replace( rxhtmlTag, "<$1>" ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: QtWebKit, PhantomJS + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( (elem = nodes[ i++ ]) ) { + + // #4087 - If origin and destination elements are the same, and this is + // that element, do not do anything + if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { + continue; + } + + contains = jQuery.contains( elem.ownerDocument, elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( contains ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( (elem = tmp[ j++ ]) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; + }, + + cleanData: function( elems ) { + var data, elem, type, key, + special = jQuery.event.special, + i = 0; + + for ( ; (elem = elems[ i ]) !== undefined; i++ ) { + if ( jQuery.acceptData( elem ) ) { + key = elem[ data_priv.expando ]; + + if ( key && (data = data_priv.cache[ key ]) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + if ( data_priv.cache[ key ] ) { + // Discard any remaining `private` data + delete data_priv.cache[ key ]; + } + } + } + // Discard any remaining `user` data + delete data_user.cache[ elem[ data_user.expando ] ]; + } + } +}); + +jQuery.fn.extend({ + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each(function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + }); + }, null, value, arguments.length ); + }, + + append: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + }); + }, + + prepend: function() { + return this.domManip( arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + }); + }, + + before: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + }); + }, + + after: function() { + return this.domManip( arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + }); + }, + + remove: function( selector, keepData /* Internal Use Only */ ) { + var elem, + elems = selector ? jQuery.filter( selector, this ) : this, + i = 0; + + for ( ; (elem = elems[i]) != null; i++ ) { + if ( !keepData && elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem ) ); + } + + if ( elem.parentNode ) { + if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { + setGlobalEval( getAll( elem, "script" ) ); + } + elem.parentNode.removeChild( elem ); + } + } + + return this; + }, + + empty: function() { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map(function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + }); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = value.replace( rxhtmlTag, "<$1>" ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var arg = arguments[ 0 ]; + + // Make the changes, replacing each context element with the new content + this.domManip( arguments, function( elem ) { + arg = this.parentNode; + + jQuery.cleanData( getAll( this ) ); + + if ( arg ) { + arg.replaceChild( elem, this ); + } + }); + + // Force removal if there was no new content (e.g., from empty arguments) + return arg && (arg.length || arg.nodeType) ? this : this.remove(); + }, + + detach: function( selector ) { + return this.remove( selector, true ); + }, + + domManip: function( args, callback ) { + + // Flatten any nested arrays + args = concat.apply( [], args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = this.length, + set = this, + iNoClone = l - 1, + value = args[ 0 ], + isFunction = jQuery.isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( isFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return this.each(function( index ) { + var self = set.eq( index ); + if ( isFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + self.domManip( args, callback ); + }); + } + + if ( l ) { + fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + if ( first ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + // Support: QtWebKit + // jQuery.merge because push.apply(_, arraylike) throws + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( this[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !data_priv.access( node, "globalEval" ) && jQuery.contains( doc, node ) ) { + + if ( node.src ) { + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl ) { + jQuery._evalUrl( node.src ); + } + } else { + jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) ); + } + } + } + } + } + } + + return this; + } +}); + +jQuery.each({ + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: QtWebKit + // .get() because push.apply(_, arraylike) throws + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +}); + + +var iframe, + elemdisplay = {}; + +/** + * Retrieve the actual display of a element + * @param {String} name nodeName of the element + * @param {Object} doc Document object + */ +// Called only from within defaultDisplay +function actualDisplay( name, doc ) { + var style, + elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), + + // getDefaultComputedStyle might be reliably used only on attached element + display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ? + + // Use of this method is a temporary fix (more like optimization) until something better comes along, + // since it was removed from specification and supported only in FF + style.display : jQuery.css( elem[ 0 ], "display" ); + + // We don't have any data stored on the element, + // so use "detach" method as fast way to get rid of the element + elem.detach(); + + return display; +} + +/** + * Try to determine the default display value of an element + * @param {String} nodeName + */ +function defaultDisplay( nodeName ) { + var doc = document, + display = elemdisplay[ nodeName ]; + + if ( !display ) { + display = actualDisplay( nodeName, doc ); + + // If the simple way fails, read from inside an iframe + if ( display === "none" || !display ) { + + // Use the already-created iframe if possible + iframe = (iframe || jQuery( "